        /* ========================================
           CSS CUSTOM PROPERTIES
        ======================================== */
        :root {
            --nexus-primary: #7C5DD3;
            --nexus-primary-light: #9B8AE8;
            --nexus-primary-lighter: #F3E8FF;
            --nexus-primary-dark: #6B5DD3;
            --nexus-text-dark: #1F2937;
            --nexus-text-medium: #4B5563;
            --nexus-text-light: #6B7280;
            --nexus-bg-white: #ffffff;
            --nexus-bg-light: #F8F9FC;
            --nexus-bg-dark: #1a1a2e;
            --nexus-shadow-sm: 0 2px 8px rgba(124, 93, 211, 0.08);
            --nexus-shadow-md: 0 4px 20px rgba(124, 93, 211, 0.12);
            --nexus-shadow-lg: 0 8px 30px rgba(124, 93, 211, 0.15);
            --nexus-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
            --nexus-radius-sm: 4px;
            --nexus-radius-md: 6px;
            --nexus-radius-lg: 8px;
            --nexus-radius-xl: 12px;
            --nexus-radius-full: 50px;
            --nexus-transition: 0.3s ease;
            --nexus-transition-fast: 0.2s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--nexus-bg-light);
            min-height: 100vh;
            overflow-x: hidden;
            color: var(--nexus-text-dark);
        }

        /* ========================================
           STICKY NAVIGATION
        ======================================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 8%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all var(--nexus-transition);
        }

        .nav--scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 12px 8%;
        }

        .nav__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav__logo-icon {
            width: 32px;
            height: 32px;
            transition: var(--nexus-transition);
        }

        .nav__logo-text {
            font-size: 20px;
            font-weight: 600;
            color: white;
            letter-spacing: -0.5px;
            transition: var(--nexus-transition);
        }

        .nav--scrolled .nav__logo-icon circle,
        .nav--scrolled .nav__logo-icon line {
            stroke: var(--nexus-primary);
        }

        .nav--scrolled .nav__logo-icon circle {
            fill: var(--nexus-primary);
        }

        .nav--scrolled .nav__logo-text {
            color: var(--nexus-text-dark);
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }

        .nav__link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: var(--nexus-transition-fast);
        }

        .nav__link:hover {
            color: white;
        }

        .nav--scrolled .nav__link {
            color: var(--nexus-text-medium);
        }

        .nav--scrolled .nav__link:hover {
            color: var(--nexus-primary);
        }

        .nav__cta {
            background: white;
            color: var(--nexus-primary-dark);
            padding: 10px 24px;
            border-radius: var(--nexus-radius-full);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--nexus-transition-fast);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .nav__cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .nav--scrolled .nav__cta {
            background: var(--nexus-primary);
            color: white;
        }

        /* Mobile Menu Toggle */
        .nav__toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .nav__toggle-bar {
            width: 24px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: var(--nexus-transition);
        }

        .nav--scrolled .nav__toggle-bar {
            background: var(--nexus-text-dark);
        }

        /* Mobile Menu */
        .nav__menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav__menu--mobile {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all var(--nexus-transition);
        }

        .nav__menu--mobile.active {
            opacity: 1;
            visibility: visible;
        }

        .nav__menu--mobile .nav__link {
            color: var(--nexus-text-dark);
            font-size: 24px;
            font-weight: 600;
        }

        .nav__menu--mobile .nav__cta {
            background: var(--nexus-primary);
            color: white;
            padding: 14px 32px;
            font-size: 16px;
        }

        .nav__close {
            position: absolute;
            top: 20px;
            right: 8%;
            background: none;
            border: none;
            font-size: 32px;
            color: var(--nexus-text-dark);
            cursor: pointer;
        }

        /* ========================================
           SCROLL ANIMATIONS
        ======================================== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .slide-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Stagger delays for children */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero-wrapper {
            background: linear-gradient(160deg, #9B8AE8 0%, #8B7DD8 35%, #6B8DD9 65%, #7BB8E0 100%);
            position: relative;
        }

        /* Hero bottom connector - gradient fade */
        .hero-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, transparent 0%, var(--nexus-bg-light) 100%);
            pointer-events: none;
        }

        /* ========================================
           SECTION COMMON STYLES
        ======================================== */
        .section {
            padding: 100px 8%;
        }

        .section--light {
            background: var(--nexus-bg-light);
        }

        .section--white {
            background: var(--nexus-bg-white);
        }

        .section__header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section__title {
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            color: var(--nexus-text-dark);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .section__subtitle {
            font-size: 18px;
            color: var(--nexus-text-medium);
            line-height: 1.6;
        }

        /* ========================================
           PROBLEM/SOLUTION SECTION
        ======================================== */
        .problems {
            background: var(--nexus-bg-light);
        }

        .problems__pairs {
            display: flex;
            flex-direction: column;
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .problems__pair {
            display: flex;
            align-items: stretch;
            gap: 24px;
        }

        .problem-card {
            background: var(--nexus-bg-white);
            border-radius: var(--nexus-radius-lg);
            padding: 28px;
            box-shadow: var(--nexus-shadow-card);
            transition: all var(--nexus-transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--nexus-shadow-lg);
        }

        .problem-card--problem {
            border-top: 3px solid #FCA5A5;
        }

        .problem-card--solution {
            border-top: 3px solid #86EFAC;
        }

        .problem-card__label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .problem-card__label--problem {
            color: #DC2626;
        }

        .problem-card__label--solution {
            color: #16A34A;
        }

        .problem-card__label svg {
            width: 14px;
            height: 14px;
        }

        .problem-card__image {
            width: 100%;
            height: 140px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .problem-card__title {
            font-size: 18px;
            font-weight: 600;
            color: var(--nexus-text-dark);
            margin-bottom: 8px;
        }

        .problem-card__description {
            font-size: 14px;
            color: var(--nexus-text-light);
            line-height: 1.6;
            flex: 1;
        }

        .problems__arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 60px;
        }

        .problems__arrow svg {
            width: 40px;
            height: 40px;
            color: var(--nexus-primary);
            opacity: 0.6;
        }

        /* ========================================
           FEATURES SECTION
        ======================================== */
        .features {
            background: var(--nexus-bg-white);
        }

        .features__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--nexus-bg-light);
            border-radius: var(--nexus-radius-lg);
            padding: 40px 32px;
            transition: all var(--nexus-transition);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--nexus-shadow-md);
            border-color: var(--nexus-primary-lighter);
        }

        .feature-card__icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
        }

        .feature-card__title {
            font-size: 20px;
            font-weight: 600;
            color: var(--nexus-text-dark);
            margin-bottom: 10px;
        }

        .feature-card__description {
            font-size: 15px;
            color: var(--nexus-text-medium);
            line-height: 1.6;
        }

        /* ========================================
           SOCIAL PROOF SECTION
        ======================================== */
        .social-proof {
            background: var(--nexus-bg-light);
        }

        .social-proof__stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .stat-card {
            background: var(--nexus-bg-white);
            border-radius: var(--nexus-radius-lg);
            padding: 32px;
            text-align: center;
            box-shadow: var(--nexus-shadow-card);
            border: 2px solid transparent;
            transition: all var(--nexus-transition);
        }

        .stat-card:hover {
            border-color: var(--nexus-primary-lighter);
        }

        .stat-card__icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 16px;
        }

        .stat-card__value {
            font-size: 36px;
            font-weight: 700;
            color: var(--nexus-text-dark);
            margin-bottom: 4px;
        }

        .stat-card__label {
            font-size: 14px;
            color: var(--nexus-text-medium);
        }

        .social-proof__testimonials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--nexus-bg-white);
            border-radius: var(--nexus-radius-lg);
            padding: 32px;
            box-shadow: var(--nexus-shadow-card);
            border: 2px solid transparent;
            transition: all var(--nexus-transition);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 24px;
            font-size: 60px;
            font-family: Georgia, serif;
            color: var(--nexus-primary-lighter);
            line-height: 1;
        }

        .testimonial-card:hover {
            border-color: var(--nexus-primary-lighter);
            transform: translateY(-3px);
        }

        .testimonial-card__quote {
            font-size: 15px;
            color: var(--nexus-text-medium);
            line-height: 1.7;
            margin-bottom: 24px;
            padding-top: 24px;
            font-style: italic;
        }

        .testimonial-card__author {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--nexus-bg-light);
            padding-top: 20px;
        }

        .testimonial-card__avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--nexus-primary-light), var(--nexus-primary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .testimonial-card__info {
            flex: 1;
        }

        .testimonial-card__name {
            font-size: 15px;
            font-weight: 600;
            color: var(--nexus-text-dark);
        }

        .testimonial-card__role {
            font-size: 13px;
            color: var(--nexus-text-light);
        }

        .testimonial-card__stars {
            display: flex;
            gap: 2px;
        }

        .testimonial-card__stars svg {
            width: 16px;
            height: 16px;
            fill: #FBBF24;
        }

        /* ========================================
           HOW IT WORKS SECTION
        ======================================== */
        .how-it-works {
            background: var(--nexus-bg-white);
        }

        .how-it-works__steps {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .step {
            flex: 1;
            max-width: 300px;
            text-align: center;
        }

        .step__number {
            width: 48px;
            height: 48px;
            background: var(--nexus-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step__title {
            font-size: 20px;
            font-weight: 600;
            color: var(--nexus-text-dark);
            margin-bottom: 8px;
        }

        .step__description {
            font-size: 14px;
            color: var(--nexus-text-medium);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .step__image {
            width: 100%;
            max-width: 260px;
            height: auto;
            border-radius: var(--nexus-radius-md);
            box-shadow: var(--nexus-shadow-md);
        }

        .step-arrow {
            display: flex;
            align-items: center;
            padding-top: 100px;
            color: var(--nexus-text-light);
        }

        .step-arrow svg {
            width: 32px;
            height: 32px;
        }

        /* ========================================
           PRICING SECTION
        ======================================== */
        .pricing {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
            padding: 100px 8%;
        }

        .pricing__container {
            display: grid;
            grid-template-columns: 2fr 1.5fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

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

        .pricing-card {
            background: var(--nexus-bg-white);
            border-radius: var(--nexus-radius-lg);
            padding: 32px 24px;
            position: relative;
            transition: all var(--nexus-transition);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card--popular {
            border: 2px solid var(--nexus-primary);
        }

        .pricing-card__badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--nexus-primary);
            color: white;
            padding: 4px 16px;
            border-radius: var(--nexus-radius-full);
            font-size: 12px;
            font-weight: 600;
        }

        .pricing-card__price {
            margin-bottom: 8px;
        }

        .pricing-card__amount {
            font-size: 36px;
            font-weight: 700;
            color: var(--nexus-text-dark);
        }

        .pricing-card__period {
            font-size: 16px;
            color: var(--nexus-text-light);
        }

        .pricing-card__name {
            font-size: 20px;
            font-weight: 600;
            color: var(--nexus-text-dark);
            margin-bottom: 4px;
        }

        .pricing-card__description {
            font-size: 14px;
            color: var(--nexus-text-light);
            margin-bottom: 24px;
        }

        .pricing-card__features {
            list-style: none;
            margin-bottom: 24px;
        }

        .pricing-card__feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--nexus-text-medium);
            padding: 8px 0;
        }

        .pricing-card__feature svg {
            width: 18px;
            height: 18px;
            color: var(--nexus-primary);
            flex-shrink: 0;
        }

        .pricing-card__cta {
            display: block;
            width: 100%;
            padding: 14px;
            border-radius: var(--nexus-radius-md);
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all var(--nexus-transition-fast);
            cursor: pointer;
            border: none;
        }

        .pricing-card__cta--primary {
            background: var(--nexus-primary);
            color: white;
        }

        .pricing-card__cta--primary:hover {
            background: var(--nexus-primary-dark);
        }

        .pricing-card__cta--secondary {
            background: var(--nexus-bg-light);
            color: var(--nexus-text-dark);
        }

        .pricing-card__cta--secondary:hover {
            background: var(--nexus-primary-lighter);
        }

        /* Right side - CTA and FAQ */
        .pricing__right {
            color: white;
        }

        .pricing__cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .pricing__cta-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .pricing__guarantee {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
        }

        /* FAQ Accordion */
        .faq {
            margin-top: 32px;
        }

        .faq__item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq__question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            transition: color var(--nexus-transition-fast);
        }

        .faq__question:hover {
            color: white;
        }

        .faq__icon {
            width: 20px;
            height: 20px;
            transition: transform var(--nexus-transition);
        }

        .faq__item.active .faq__icon {
            transform: rotate(45deg);
        }

        .faq__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--nexus-transition);
        }

        .faq__item.active .faq__answer {
            max-height: 200px;
        }

        .faq__answer-text {
            padding-bottom: 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            background: #0f0f1a;
            padding: 80px 8% 40px;
            color: white;
        }

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

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer__brand {
            max-width: 300px;
        }

        .footer__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer__logo-icon {
            width: 32px;
            height: 32px;
        }

        .footer__logo-icon circle,
        .footer__logo-icon line {
            stroke: white;
            fill: white;
        }

        .footer__logo-text {
            font-size: 20px;
            font-weight: 600;
            color: white;
        }

        .footer__tagline {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer__social {
            display: flex;
            gap: 12px;
        }

        .footer__social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all var(--nexus-transition-fast);
        }

        .footer__social-link:hover {
            background: var(--nexus-primary);
            transform: translateY(-3px);
        }

        .footer__social-link svg {
            width: 18px;
            height: 18px;
        }

        .footer__column-title {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer__links {
            list-style: none;
        }

        .footer__link {
            margin-bottom: 12px;
        }

        .footer__link a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color var(--nexus-transition-fast);
        }

        .footer__link a:hover {
            color: white;
        }

        .footer__bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer__copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer__legal {
            display: flex;
            gap: 24px;
        }

        .footer__legal a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color var(--nexus-transition-fast);
        }

        .footer__legal a:hover {
            color: white;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 40px 8%;
            position: relative;
        }

        .hero__content {
            flex: 1;
            max-width: 550px;
            z-index: 2;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 60px;
        }

        .logo__icon {
            width: 40px;
            height: 40px;
        }

        .logo__text {
            font-size: 24px;
            font-weight: 600;
            color: white;
            letter-spacing: -0.5px;
        }

        /* Headline */
        .hero__title {
            font-size: clamp(48px, 6vw, 72px);
            font-weight: 700;
            color: white;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -2px;
        }

        .hero__subtitle {
            font-size: clamp(18px, 2vw, 22px);
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            margin-bottom: 40px;
            font-weight: 400;
        }

        /* CTA Button */
        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: #6B5DD3;
            font-size: 18px;
            font-weight: 600;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* Section CTA - less rounded */
        .cta-btn--section {
            border-radius: var(--nexus-radius-lg);
        }

        .cta-note {
            display: block;
            margin-top: 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Apple Badge */
        .apple-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.9);
            padding: 12px 20px;
            border-radius: 8px;
            margin-top: 48px;
        }

        .apple-badge__icon {
            width: 28px;
            height: 28px;
        }

        .apple-badge__text {
            display: flex;
            flex-direction: column;
        }

        .apple-badge__label {
            font-size: 10px;
            color: rgba(0, 0, 0, 0.6);
            letter-spacing: 0.5px;
        }

        .apple-badge__title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        /* Phone Mockup */
        .hero__mockup {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .phone-mockup {
            max-width: 380px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
            animation: float 6s ease-in-out infinite;
        }

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

        /* Responsive */
        @media (max-width: 1024px) {
            .section {
                padding: 80px 5%;
            }

            .problems__pairs {
                gap: 24px;
            }

            .problem-card {
                padding: 24px;
            }

            .problem-card__image {
                height: 120px;
            }

            .problems__arrow {
                width: 50px;
            }

            .problems__arrow svg {
                width: 32px;
                height: 32px;
            }

            .features__grid {
                gap: 20px;
            }

            .feature-card {
                padding: 32px 24px;
            }

            .social-proof__stats {
                gap: 20px;
            }

            .stat-card {
                padding: 24px;
            }

            .stat-card__value {
                font-size: 32px;
            }

            .social-proof__testimonials {
                gap: 20px;
            }

            .testimonial-card {
                padding: 28px;
            }

            .how-it-works__steps {
                gap: 16px;
            }

            .step__image {
                max-width: 220px;
            }

            .step-arrow {
                padding-top: 80px;
            }

            .step-arrow svg {
                width: 24px;
                height: 24px;
            }

            .pricing {
                padding: 80px 5%;
            }

            .pricing__container {
                gap: 40px;
            }

            .pricing__cards {
                gap: 16px;
            }

            .pricing-card {
                padding: 24px 20px;
            }

            .pricing-card__amount {
                font-size: 28px;
            }

            .pricing-card__name {
                font-size: 18px;
            }

            .pricing__cta-title {
                font-size: 26px;
            }

            .nav__links {
                gap: 30px;
            }

            .hero {
                padding: 40px 5%;
            }

            .hero__content {
                max-width: 55%;
                flex: 1;
            }

            .logo {
                margin-bottom: 30px;
            }

            .hero__title {
                font-size: clamp(36px, 5vw, 48px);
            }

            .hero__subtitle {
                font-size: 16px;
            }

            .phone-mockup {
                max-width: 280px;
            }

            .apple-badge {
                margin-top: 32px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 4%;
            }

            .section__header {
                margin-bottom: 40px;
            }

            .section__title {
                font-size: 28px;
            }

            .section__subtitle {
                font-size: 16px;
            }

            .problems__pairs {
                gap: 24px;
            }

            .problems__pair {
                flex-direction: column;
                gap: 0;
            }

            .problems__arrow {
                width: auto;
                height: 40px;
                transform: rotate(90deg);
            }

            .problems__arrow svg {
                width: 28px;
                height: 28px;
            }

            .problem-card {
                padding: 24px;
            }

            .problem-card__image {
                height: 120px;
            }

            .problem-card__title {
                font-size: 16px;
            }

            .problem-card__description {
                font-size: 13px;
            }

            .features__grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .feature-card {
                padding: 28px 24px;
            }

            .feature-card__icon {
                width: 40px;
                height: 40px;
            }

            .feature-card__title {
                font-size: 18px;
            }

            .social-proof__stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
                margin-bottom: 40px;
            }

            .stat-card {
                padding: 20px 16px;
            }

            .stat-card__icon {
                width: 32px;
                height: 32px;
            }

            .stat-card__value {
                font-size: 24px;
            }

            .stat-card__label {
                font-size: 12px;
            }

            .social-proof__testimonials {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .testimonial-card {
                padding: 24px;
            }

            .how-it-works__steps {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .step {
                max-width: 100%;
            }

            .step__image {
                max-width: 280px;
            }

            .step-arrow {
                display: none;
            }

            .pricing {
                padding: 60px 4%;
            }

            .pricing__container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .pricing__cards {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .pricing-card {
                padding: 28px 24px;
            }

            .pricing__right {
                text-align: center;
            }

            .pricing__cta-title {
                font-size: 24px;
            }

            .faq__question {
                font-size: 13px;
            }

            .footer {
                padding: 60px 4% 30px;
            }

            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px 30px;
            }

            .footer__brand {
                grid-column: 1 / -1;
                max-width: 100%;
                text-align: center;
            }

            .footer__social {
                justify-content: center;
            }

            .footer__column-title {
                font-size: 13px;
            }

            .footer__bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .footer__legal {
                gap: 16px;
            }

            .nav__menu {
                display: none;
            }

            .nav__toggle {
                display: flex;
            }

            .nav__menu--mobile {
                display: flex;
            }

            .hero {
                padding: 30px 4%;
                gap: 10px;
            }

            .hero__content {
                max-width: 60%;
                flex: 1;
            }

            .logo {
                margin-bottom: 24px;
            }

            .logo__icon {
                width: 32px;
                height: 32px;
            }

            .logo__text {
                font-size: 20px;
            }

            .hero__title {
                font-size: clamp(28px, 6vw, 40px);
                margin-bottom: 16px;
            }

            .hero__subtitle {
                font-size: 14px;
                margin-bottom: 24px;
            }

            .cta-btn {
                padding: 14px 28px;
                font-size: 15px;
            }

            .cta-note {
                font-size: 12px;
                margin-top: 12px;
            }

            .apple-badge {
                margin-top: 24px;
                padding: 10px 16px;
            }

            .apple-badge__icon {
                width: 20px;
                height: 20px;
            }

            .apple-badge__label {
                font-size: 10px;
            }

            .apple-badge__title {
                font-size: 14px;
            }

            .hero__mockup {
                flex: 0 0 45%;
                justify-content: flex-end;
            }

            .phone-mockup {
                max-width: 220px;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 50px 3%;
            }

            .problems__pairs {
                gap: 20px;
            }

            .problems__arrow {
                height: 32px;
            }

            .problems__arrow svg {
                width: 24px;
                height: 24px;
            }

            .problem-card {
                padding: 20px;
            }

            .problem-card__image {
                height: 110px;
            }

            .hero {
                padding: 20px 3%;
                gap: 0;
                align-items: flex-start;
                padding-top: 40px;
            }

            .hero__content {
                flex: 1;
                max-width: 55%;
            }

            .logo {
                margin-bottom: 20px;
            }

            .logo__icon {
                width: 28px;
                height: 28px;
            }

            .logo__text {
                font-size: 18px;
            }

            .hero__title {
                font-size: clamp(28px, 8vw, 36px);
                margin-bottom: 12px;
                letter-spacing: -1px;
            }

            .hero__subtitle {
                font-size: 14px;
                margin-bottom: 20px;
                line-height: 1.4;
            }

            .cta-btn {
                padding: 14px 28px;
                font-size: 15px;
            }

            .cta-note {
                font-size: 12px;
                margin-top: 10px;
            }

            .apple-badge {
                margin-top: 20px;
                padding: 10px 16px;
                border-radius: 8px;
            }

            .apple-badge__icon {
                width: 26px;
                height: 26px;
            }

            .apple-badge__label {
                font-size: 10px;
            }

            .apple-badge__title {
                font-size: 15px;
            }

            .hero__mockup {
                flex: 0 0 50%;
                margin-top: 60px;
            }

            .phone-mockup {
                max-width: 200px;
            }
        }
