:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-light: #ff6b8a;
    --text-dark: #0f0f0f;
    --text-light: #f1f1f1;
    --text-gray: #6b6b6b;
    --bg-light: #fafafa;
    --bg-dark: #16213e;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-floating .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--accent-color);
}

.hero-visual {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(22, 33, 62, 0.85);
    padding: 60px 30px;
    width: 100%;
    text-align: center;
}

.hero-text-block h1 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.story-intro {
    padding: 80px 20px;
    background: var(--bg-light);
}

.intro-lead {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.highlight-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 30px;
    font-style: italic;
}

.problem-section {
    padding: 80px 20px;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-gray);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.emphasis {
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insight-reveal {
    padding: 80px 20px;
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-title-center {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
}

.insight-reveal p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-box {
    background: rgba(233, 69, 96, 0.15);
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin: 40px 0;
}

.insight-statement {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.visual-showcase {
    padding: 80px 20px;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.showcase-item {
    display: flex;
    flex-direction: column;
}

.showcase-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.showcase-caption h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.showcase-caption p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-inline-block {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.cta-card {
    text-align: center;
    color: white;
}

.cta-card h3 {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
}

.trust-building {
    padding: 80px 20px;
    background: var(--bg-light);
}

.trust-building h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 48px;
    color: var(--success-color);
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.testimonials-flow {
    padding: 80px 20px;
}

.testimonials-flow h2 {
    color: var(--primary-color);
}

.testimonial-block {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
}

.testimonial-block blockquote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-block cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    color: var(--text-gray);
    font-style: normal;
    font-weight: 600;
}

.services-reveal {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    padding: 30px;
    background: var(--secondary-color);
}

.service-header h3 {
    font-size: 26px;
    color: white;
    margin: 0;
}

.service-body {
    padding: 30px;
    flex: 1;
}

.service-body p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-details h4 {
    font-size: 17px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 15px;
}

.service-footer {
    padding: 25px 30px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
}

.btn-select-service {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn-select-service:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}

.urgency-section {
    padding: 60px 20px;
    background: var(--primary-color);
}

.urgency-box {
    text-align: center;
    color: white;
}

.urgency-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 17px;
    margin-bottom: 15px;
}

.urgency-timer {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-light);
}

.form-section {
    padding: 80px 20px;
    background: white;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.form-checkbox input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-gray);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.final-cta {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.btn-primary-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
    color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 15px 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.sticky-text {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.btn-sticky {
    background: white;
    color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 33, 62, 0.98);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    color: white;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: var(--accent-color);
    color: white;
}

.btn-cookie.reject {
    background: white;
    color: var(--text-dark);
}

.btn-cookie:hover {
    transform: scale(1.05);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.page-header {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content,
.legal-content {
    padding: 80px 20px;
}

.about-content h2,
.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.about-content h3,
.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.about-content h4,
.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.about-content p,
.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-content ul,
.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.about-content ul li,
.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-gray);
}

.legal-intro {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 40px;
}

.quote-block {
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    margin: 40px 0;
}

.quote-block p {
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.mission-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.values-section {
    padding: 80px 20px;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.numbers-section {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: white;
}

.numbers-section h2 {
    color: white;
    margin-bottom: 50px;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.number-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.number-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.team-expertise {
    list-style: none;
    margin: 30px 0;
}

.team-expertise li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 17px;
}

.team-expertise li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: bold;
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.services-detail {
    padding: 60px 20px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-intro p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
}

.guarantees-section {
    padding: 80px 20px;
    background: white;
}

.guarantees-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guarantee-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.guarantee-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2,
.contact-map h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-item {
    margin: 30px 0;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-gray);
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(22, 33, 62, 0.9);
    padding: 15px 25px;
    border-radius: 8px;
}

.map-overlay p {
    color: white;
    font-weight: 600;
    margin: 0;
}

.faq-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px 60px;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.thanks-info p {
    font-size: 17px;
    color: var(--text-dark);
    margin: 0;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.thanks-note {
    background: #fff9e6;
    border: 2px solid #ffd700;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-note p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.additional-info {
    padding: 80px 20px;
    background: var(--bg-light);
}

.additional-info h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    padding: 25px;
    background: white;
    border-radius: 10px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background: var(--secondary-color);
    color: white;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    font-size: 14px;
}

.cookie-table td {
    font-size: 14px;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        padding: 0;
        width: auto;
        box-shadow: none;
        background: transparent;
        left: auto;
    }

    .nav-menu li {
        margin: 0 0 0 30px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .hero-text-block h1 {
        font-size: 48px;
    }

    .hero-subtext {
        font-size: 22px;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

    .showcase-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .showcase-item {
        flex: 1 1 calc(33.333% - 30px);
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 calc(33.333% - 20px);
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .service-footer {
        flex-direction: row;
        justify-content: space-between;
    }

    .btn-select-service {
        width: auto;
    }

    .sticky-content {
        flex-wrap: nowrap;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-item {
        flex: 1 1 calc(25% - 20px);
    }

    .guarantees-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .info-grid {
        flex-direction: row;
    }

    .info-item {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-text-block h1 {
        font-size: 56px;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}