/* ===== CSS Variables ===== */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #DBEAFE;
    --secondary: #F59E0B;
    --secondary-light: #FEF3C7;
    --accent: #10B981;
    --accent-light: #D1FAE5;
    --text: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-alt: #F1F5F9;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.2; }

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-white {
    border: 2px solid white;
    color: white;
}
.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* ===== Consent Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
}
.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}
.modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text);
}
.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.consent-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}
.consent-links a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}
.consent-links a:hover { color: var(--primary-dark); }
.consent-links span { color: var(--text-light); }
.consent-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    user-select: none;
}
.consent-checkbox input { display: none; }
.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.consent-checkbox input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}
.consent-checkbox input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}
.btn-consent { width: 100%; }
.btn-consent:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text { color: var(--text); }
.logo-dot { color: var(--primary); }
.nav-list {
    display: flex;
    gap: 4px;
}
.mobile-contacts {
    display: none;
}
.nav-list a {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-list a:hover {
    color: var(--primary);
    background: var(--primary-light);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.header-phone {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.header-phone:hover { color: var(--primary); }
.header-tg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #229ED9;
    color: white;
    transition: all var(--transition);
}
.header-tg:hover { transform: scale(1.1); }
.header-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: white;
    transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    min-width: 140px;
    z-index: 100;
}
.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li {
    padding: 10px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition);
}
.lang-dropdown li:hover { background: var(--bg-soft); }

/* Hamburger */
.hamburger { display: none; width: 28px; height: 20px; position: relative; }
.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* ===== Hero ===== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 50%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
}
.check-icon { width: 22px; height: 22px; flex-shrink: 0; }
.btn-hero { font-size: 1.125rem; padding: 16px 40px; }
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* Hero Illustration */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}
.hero-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), rgba(37, 99, 235, 0.15));
    animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.hero-icon-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-float {
    position: absolute;
    font-size: 36px;
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-float-1 { top: 10%; left: 10%; animation-delay: 0s; }
.hero-float-2 { top: 15%; right: 10%; animation-delay: 1s; }
.hero-float-3 { bottom: 15%; left: 20%; animation-delay: 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== Stats ===== */
.stats {
    padding: 80px 0;
    background: var(--bg);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.stat-icon { font-size: 40px; margin-bottom: 12px; }
.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.stat-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== Section Title ===== */
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* ===== Process ===== */
.process {
    padding: 80px 0;
    background: var(--bg-soft);
}
.process-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.process-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 220px;
    flex: 1;
    min-width: 180px;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-card h3 {
    margin-top: auto;
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.process-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.process-icon { font-size: 40px; margin-bottom: 16px; }
.process-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-top: auto;
}
.process-arrow {
    display: flex;
    align-items: center;
    align-self: center;
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}

/* ===== Pricing ===== */
.pricing {
    padding: 80px 0;
    background: var(--bg);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.price-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.price-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}
.price-card-featured:hover {
    transform: scale(1.02) translateY(-4px);
}
.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 4px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.price-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.price-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}
.price-currency {
    font-size: 1rem;
    color: var(--text-secondary);
}
.price-features {
    flex: 1;
    margin-bottom: 24px;
}
.price-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.price-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.price-card .btn { width: 100%; }

/* ===== Services ===== */
.services {
    padding: 80px 0;
    background: var(--bg-soft);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.service-icon {
    font-size: 36px;
    margin-bottom: 14px;
}
.service-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--bg);
}
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 16px;
    background: white;
    transition: all var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p, .faq-answer ul {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.faq-answer ul {
    padding-left: 44px;
    list-style: disc;
}
.faq-answer li { margin-bottom: 6px; }

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-soft);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}
.cta-inner { text-align: center; }
.cta-inner h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-inner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--text);
    color: white;
    padding: 60px 0 32px;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo-text { color: white; }
.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.footer-contacts h4, .footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}
.footer-contacts a, .footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer-contacts a:hover, .footer-links a:hover { color: var(--secondary); }
.footer-bottom {
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}
.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}
.legal-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--text);
}
.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}
.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.legal-content li { margin-bottom: 8px; line-height: 1.7; }
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 500;
}
.legal-back:hover { color: var(--primary-dark); }

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .nav { display: none; }
    .hamburger { display: block; }
    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        background: white;
        flex-direction: column;
        padding: 0;
        z-index: 999;
        border-top: 1px solid var(--border);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav.open .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 16px;
    }
    .nav.open .nav-list li {
        border-bottom: 1px solid var(--border);
    }
    .nav.open .nav-list li:last-child {
        border-bottom: none;
    }
    .nav.open .nav-list a {
        display: flex;
        align-items: center;
        padding: 18px 20px;
        font-size: 1.1rem;
        border-radius: 0;
        background: transparent;
        white-space: normal;
        min-height: 56px;
    }
    .nav.open .nav-list a:hover,
    .nav.open .nav-list a:active {
        background: var(--primary-light);
        color: var(--primary);
    }
    .nav.open .mobile-contacts {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: auto;
        padding: 16px;
        border-top: 1px solid var(--border);
        width: 100%;
        background: var(--bg-soft);
    }
    .nav.open .mobile-contacts a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 20px;
        background: transparent;
        border-radius: 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--primary);
        border-bottom: 1px solid var(--border);
    }
    .nav.open .mobile-contacts a:last-child {
        border-bottom: none;
    }
    .nav.open .mobile-contacts a:hover {
        background: var(--primary-light);
    }
    .header-contacts { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-title { font-size: 2.75rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: none; margin: 0; }
    .pricing-grid .price-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
    .price-card-featured { transform: none; }
    .price-card-featured:hover { transform: translateY(-4px); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .process-arrow { display: none; }
    .process-grid { gap: 20px; }
}

@media (max-width: 640px) {
    .hero { padding: 120px 0 80px; }
    .hero-title { font-size: 2.2rem; }
    .hero-features li { font-size: 1rem; }
    .section-title { font-size: 1.75rem; margin-bottom: 36px; }
    .stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .stat-card { display: flex; align-items: center; gap: 16px; text-align: left; padding: 16px 20px; }
    .stat-icon { font-size: 28px; margin-bottom: 0; flex-shrink: 0; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-grid .price-card:last-child { grid-column: auto; max-width: none; margin: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .faq-question { padding: 16px 18px; font-size: 0.95rem; }
    .cta-inner h2 { font-size: 1.75rem; }
    .modal-content { padding: 28px 20px; }
    .process-card { min-width: 140px; padding: 24px 16px; }
    .legal-page h1 { font-size: 1.75rem; }
}
