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

        :root {
            --purple: #6C63FF;
            --purple-light: #8B85FF;
            --pink: #FF6584;
            --pink-light: #FF8BA0;
            --green: #43E97B;
            --green-light: #38F9D7;
            --orange: #FA709A;
            --orange-light: #FEE140;
            --bg: #F5F5FA;
            --surface: #FFFFFF;
            --text: #2D2D3A;
            --text-secondary: #8E8E9A;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(245, 245, 250, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(108, 99, 255, 0.08);
            transition: box-shadow 0.3s;
        }

        .header.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.06);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 22px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--purple);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
            color: white !important;
            padding: 10px 24px;
            border-radius: 12px;
            font-weight: 600 !important;
            transition: transform 0.2s, box-shadow 0.2s !important;
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: 0.3s;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 24px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(108,99,255,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,101,132,0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(108, 99, 255, 0.08);
            border: 1px solid rgba(108, 99, 255, 0.15);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--purple);
            margin-bottom: 24px;
        }

        .hero-badge img {
            width: 16px;
            height: 16px;
            object-fit: contain;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 20px;
        }

        .hero h1 .gradient {
            background: linear-gradient(135deg, var(--purple), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 36px;
            max-width: 480px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
            color: white;
            padding: 16px 32px;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(108, 99, 255, 0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            color: var(--text);
            padding: 16px 32px;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(0,0,0,0.08);
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(0,0,0,0.06);
        }

        .hero-stat-number {
            font-size: 28px;
            font-weight: 800;
            color: var(--text);
        }

        .hero-stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-mockup {
            position: relative;
            width: 300px;
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
        }

        .phone-mockup img {
            width: 100%;
            display: block;
            filter: drop-shadow(0px 30px 80px rgba(0,0,0,0.18));
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            font-size: 14px;
            font-weight: 600;
            animation: float 3s ease-in-out infinite;
        }

        .floating-card.card-1 {
            top: 10%;
            right: -30px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 15%;
            left: -40px;
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Магазинные бейджи (вместо старых плавающих карточек) */
        .store-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px !important;
            text-decoration: none;
            color: var(--text) !important;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .store-badge:not(.disabled):hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.25);
            border-color: var(--purple);
        }

        .store-icon {
            color: var(--purple);
            flex-shrink: 0;
        }

        .store-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            text-align: left;
        }

        .store-label, .store-status {
            font-size: 11px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .store-name {
            font-size: 16px;
            font-weight: 800;
            letter-spacing: -0.3px;
        }

        .store-badge.disabled {
            cursor: default;
            opacity: 0.8;
            background: rgba(255, 255, 255, 0.9);
        }

        .store-badge.disabled .store-icon {
            color: #8E8E9A;
        }

        .store-status {
            color: var(--pink);
            font-weight: 700;
        }

        /* Section common */
        section {
            padding: 100px 24px;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--purple);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 900;
            letter-spacing: -1.5px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 560px;
            line-height: 1.7;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header .section-subtitle {
            margin: 0 auto;
        }

        /* Features */
        .features {
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: var(--bg);
            border-radius: 24px;
            padding: 36px 32px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
            border-color: rgba(108, 99, 255, 0.1);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
        }

        .feature-icon.purple { background: rgba(108, 99, 255, 0.1); }
        .feature-icon.pink { background: rgba(255, 101, 132, 0.1); }
        .feature-icon.green { background: rgba(67, 233, 123, 0.1); }
        .feature-icon.orange { background: rgba(250, 112, 154, 0.1); }
        .feature-icon.blue { background: rgba(56, 249, 215, 0.1); }
        .feature-icon.yellow { background: rgba(254, 225, 64, 0.15); }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* SVG Flags styling */
        .flag-svg {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        /* Screenshots */
        .screenshots {
            overflow: hidden;
        }

        .screenshots-scroll {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding: 20px 0 40px;
            scroll-snap-type: x mandatory;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .screenshots-scroll::-webkit-scrollbar {
            display: none;
        }

        .screenshot-item {
            flex: 0 0 260px;
            scroll-snap-align: center;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.04);
            background: white;
            transition: transform 0.3s;
        }

        .screenshot-item:hover {
            transform: scale(1.03);
        }

        .screenshot-item img {
            width: 100%;
            display: block;
        }

        .screenshot-label {
            padding: 16px 20px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
        }

        /* Languages */
        .languages {
            background: white;
        }

        .languages-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .language-chip {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg);
            padding: 16px 28px;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid transparent;
        }

        .language-chip:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            border-color: rgba(108, 99, 255, 0.12);
        }

        /* Pricing */
        .pricing {
            position: relative;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            max-width: 920px;
            margin: 0 auto;
            align-items: stretch;
            position: relative;
            z-index: 1;
        }

        .pricing-card {
            border-radius: 28px;
            padding: 44px 36px 40px;
            text-align: center;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Free — приглушённый неоморфизм */
        .pricing-card--free {
            background: linear-gradient(160deg, #eceef3 0%, #e4e7ee 100%);
            border: 1px solid rgba(255, 255, 255, 0.75);
            box-shadow:
                10px 10px 22px rgba(163, 177, 198, 0.45),
                -10px -10px 24px rgba(255, 255, 255, 0.95),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            order: 0;
        }

        .pricing-card--free .pricing-name {
            color: #5c6070;
        }

        .pricing-card--free .pricing-desc {
            color: #7a7f8f;
        }

        .pricing-tier-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #8b90a0;
            margin-bottom: 6px;
        }

        .pricing-card--free .pricing-tier-label {
            color: #7d8294;
        }

        .pricing-amount--free {
            margin-top: 4px;
        }

        .pricing-value--free {
            font-size: 52px;
            font-weight: 800;
            letter-spacing: -2px;
            color: #6b7080;
            background: none;
            -webkit-text-fill-color: #6b7080;
        }

        .pricing-currency--free {
            font-size: 22px;
            font-weight: 700;
            color: #8b90a0;
        }

        .pricing-card--free .pricing-period {
            color: #7a7f8f;
        }

        .pricing-card--free .pricing-features li {
            border-bottom-color: rgba(0, 0, 0, 0.06);
            color: #4a4f5c;
        }

        .pricing-card--free .check {
            background: rgba(108, 99, 255, 0.12);
            color: #5a52d4;
        }

        .pricing-features .cross {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            background: rgba(120, 120, 130, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
            color: #9a9daa;
        }

        .pricing-feature-muted {
            color: #8b90a0 !important;
        }

        /* Premium — контраст и акцент */
        .pricing-card--premium {
            background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
            border: 2px solid rgba(108, 99, 255, 0.22);
            box-shadow:
                0 24px 64px rgba(108, 99, 255, 0.18),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset,
                0 -2px 24px rgba(255, 101, 132, 0.06) inset;
            order: 1;
        }

        .pricing-popular {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white;
            padding: 8px 24px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
        }

        .pricing-name {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
            margin-top: 8px;
        }

        .pricing-card--premium .pricing-name {
            color: var(--text);
        }

        .pricing-desc {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.55;
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin-bottom: 8px;
        }

        .pricing-currency {
            font-size: 24px;
            font-weight: 700;
            color: var(--purple);
        }

        .pricing-value {
            font-size: 64px;
            font-weight: 900;
            letter-spacing: -3px;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-period {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 500;
            margin-bottom: 28px;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 32px;
            flex: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            font-size: 15px;
            font-weight: 500;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            line-height: 1.45;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features .check {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            background: rgba(67, 233, 123, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .pricing-card--premium .check {
            background: rgba(67, 233, 123, 0.18);
            color: #1a9b4a;
        }

        .pricing-btn {
            width: 100%;
            padding: 18px;
            font-size: 17px;
            font-weight: 700;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
            color: white;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .pricing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(108, 99, 255, 0.35);
        }

        .pricing-btn.pricing-btn--free {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: auto;
            background: linear-gradient(160deg, #f2f3f7, #e2e5ec);
            color: #4a4f5c;
            box-shadow:
                6px 6px 14px rgba(163, 177, 198, 0.4),
                -4px -4px 12px rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .pricing-btn.pricing-btn--free:hover {
            transform: translateY(-2px);
            box-shadow:
                8px 8px 18px rgba(163, 177, 198, 0.45),
                -6px -6px 14px rgba(255, 255, 255, 0.9);
            color: #3d4250;
        }

        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 440px;
            }

            .pricing-card--free {
                order: 0;
            }

            .pricing-card--premium {
                order: 1;
            }
        }

        /* How it works */
        .how-it-works {
            background: white;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 44px;
            left: 16.66%;
            right: 16.66%;
            height: 2px;
            background: linear-gradient(90deg, var(--purple), var(--pink), var(--green));
            border-radius: 2px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            margin: 0 auto 24px;
            position: relative;
            z-index: 1;
        }

        .step h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .step p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 280px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            background: var(--text);
            color: rgba(255,255,255,0.7);
            padding: 64px 24px 32px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .logo {
            font-size: 24px;
            margin-bottom: 16px;
            display: inline-block;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-col a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 13px;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }

        .footer-bottom a:hover {
            color: white;
        }

        .oferta-btn {
            background: none;
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.6);
            padding: 10px 24px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }

        .oferta-btn:hover {
            border-color: rgba(255,255,255,0.3);
            color: white;
        }

        /* Modal Overlay & Base styling */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 24px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            max-width: 720px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 48px;
            position: relative;
            box-shadow: 0 24px 80px rgba(0,0,0,0.15);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--bg);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-secondary);
            transition: background 0.2s;
        }

        .modal-close:hover {
            background: rgba(108, 99, 255, 0.1);
            color: var(--purple);
        }

        .modal-content h2 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .modal-content .modal-date {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .modal-content h3 {
            font-size: 16px;
            font-weight: 700;
            margin: 24px 0 12px;
        }

        .modal-content p, .modal-content li {
            font-size: 14px;
            line-height: 1.8;
            color: #555;
        }

        .modal-content ul, .modal-content ol {
            padding-left: 20px;
            margin-bottom: 12px;
        }

        .modal-content li {
            margin-bottom: 6px;
        }

        .modal-content strong {
            color: var(--text);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 44px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .steps::before {
                display: none;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

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

            .mobile-toggle {
                display: flex;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 36px;
                letter-spacing: -1px;
            }

            .hero-subtitle {
                margin: 0 auto 32px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                order: -1;
            }

            .phone-mockup {
                width: 240px;
            }

            .floating-card {
                display: none;
            }

            .section-title {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                gap: 20px;
            }

            .pricing-card {
                padding: 40px 28px 36px;
            }

            .pricing-value {
                font-size: 52px;
            }

            .pricing-value--free {
                font-size: 44px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .modal-content {
                padding: 32px 24px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 100px 16px 60px;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero-stats {
                gap: 24px;
            }

            .hero-stat-number {
                font-size: 22px;
            }

            section {
                padding: 64px 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .btn-primary, .btn-secondary {
                padding: 14px 24px;
                font-size: 15px;
            }
        }
