/* ============= CSS VARIABLES ============= */
        :root {
            --navy: #0A1628;
            --navy-light: #1a2a42;
            --pink: #E91E63;
            --pink-dark: #C2185B;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-400: #9ca3af;
            --gray-600: #4b5563;
            --gray-900: #111827;
            --font-display: 'DM Serif Display', serif;
            --font-body: 'DM Sans', sans-serif;
        }

        /* ============= RESET ============= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--gray-900);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; }
        a { color: inherit; text-decoration: none; }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============= TOP BAR ============= */
        .top-bar {
            background: var(--navy);
            color: var(--white);
            padding: 12px 20px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 2px solid var(--pink);
        }

        .top-bar span {
            color: var(--pink);
            font-weight: 700;
        }

        /* ============= HERO ============= */
        .hero {
            background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
            color: var(--white);
            padding: 80px 24px 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(233, 30, 99, 0.15);
            border: 1px solid rgba(233, 30, 99, 0.3);
            color: var(--pink);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--pink);
        }

        .hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 12px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-guarantee {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
        }

        .hero-guarantee strong {
            color: var(--pink);
        }

        .hero-cta {
            display: inline-block;
            background: var(--pink);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid var(--pink);
        }

        .hero-cta:hover {
            background: transparent;
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--pink);
            display: block;
        }

        .hero-stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        /* ============= INTRO / MATTHEW SECTION ============= */
        .intro-section {
            padding: 80px 24px;
            background: var(--white);
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 50px;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .intro-photo-ring{
          width: 200px;
          height: 200px;
          border-radius: 50%;
          padding: 2px; /* ring thickness */
          background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
          box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
        }
        
        .intro-photo{
          width: 100%;
          height: 100%;
          border-radius: 50%;
          overflow: hidden;
          background: var(--navy); /* shows if image fails to load */
        }
        
        .intro-photo img{
          width: 105%;
          height: 105%;
          display: block;
          object-fit: cover;
          object-position: center center;
          margin: -1%;
        }

        .intro-content h2 {
            font-family: var(--font-display);
            font-size: 28px;
            margin-bottom: 16px;
            color: var(--navy);
        }
        
        .intro-heading-mobile {
            display: none;
        }

        .intro-content p {
            color: var(--gray-600);
            font-size: 16px;
            margin-bottom: 12px;
            line-height: 1.7;
        }

        .intro-stats {
            display: flex;
            gap: 30px;
            margin-top: 20px;
        }

        .intro-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--gray-600);
        }

        .intro-stat strong {
            color: var(--pink);
            font-size: 18px;
        }

        /* ============= VIDEO SECTION ============= */
        .video-section {
            padding: 80px 24px;
            background: var(--gray-50);
        }

        .video-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .video-label {
            display: inline-block;
            background: var(--pink);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .video-container h2 {
            font-family: var(--font-display);
            font-size: 32px;
            margin-bottom: 12px;
            color: var(--navy);
        }

        .video-container > p {
            color: var(--gray-600);
            font-size: 17px;
            margin-bottom: 30px;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            background: var(--navy);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            gap: 16px;
        }

        .video-placeholder-icon {
            width: 80px;
            height: 80px;
            background: var(--pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 10px 40px rgba(233, 30, 99, 0.4);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .video-placeholder-icon:hover {
            transform: scale(1.1);
        }

        .video-placeholder p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* ============= RESULTS SECTION ============= */
        .results-section {
            padding: 80px 24px;
            background: var(--navy);
            color: var(--white);
        }

        .results-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .results-header h2 {
            font-family: var(--font-display);
            font-size: 32px;
            margin-bottom: 12px;
        }

        .results-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 17px;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .result-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .result-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(233, 30, 99, 0.3);
            transform: translateY(-4px);
        }

        .result-card-type {
            font-size: 12px;
            color: var(--pink);
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .result-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .result-metrics {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .result-metric {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }

        .result-metric-value {
            background: rgba(233, 30, 99, 0.15);
            color: var(--pink);
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 13px;
        }

        .results-note {
            text-align: center;
            margin-top: 40px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
        }

        /* ============= HOW IT WORKS ============= */
        .how-section {
            padding: 80px 24px;
            background: var(--white);
        }

        .how-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px;
        }

        .how-header h2 {
            font-family: var(--font-display);
            font-size: 32px;
            margin-bottom: 12px;
            color: var(--navy);
        }

        .how-header p {
            color: var(--gray-600);
            font-size: 17px;
        }

        .how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .how-step {
            text-align: center;
        }

        .how-step-number {
            width: 50px;
            height: 50px;
            background: var(--pink);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 16px;
        }

        .how-step h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--navy);
        }

        .how-step p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ============= CTA / FORM SECTION ============= */
        .cta-section {
            padding: 100px 24px;
            background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
            color: var(--white);
        }

        .cta-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-container h2 {
            font-family: var(--font-display);
            font-size: 36px;
            margin-bottom: 16px;
        }

        .cta-container > p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
        }

        .cta-form {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            text-align: left;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .cta-form h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 24px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
            margin-bottom: 6px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            font-family: var(--font-body);
            transition: border-color 0.2s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--pink);
        }

        .form-group input::placeholder {
            color: var(--gray-400);
        }

        .submit-btn {
            width: 100%;
            background: var(--pink);
            color: var(--white);
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--pink-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
        }

        .form-note {
            text-align: center;
            margin-top: 16px;
            font-size: 13px;
            color: var(--gray-400);
        }

        .cta-guarantee {
            margin-top: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .cta-guarantee p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 8px;
        }

        .cta-guarantee p:last-child {
            margin-bottom: 0;
        }

        .cta-guarantee strong {
            color: var(--pink);
        }

        /* ============= FAQ SECTION ============= */
        .faq-section {
            padding: 80px 24px;
            background: var(--gray-50);
        }

        .faq-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .faq-header h2 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--navy);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        .faq-item h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .faq-item p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ============= FOOTER ============= */
        .footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.7);
            padding: 50px 24px 30px;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--pink);
            margin-bottom: 16px;
        }

        .footer-content p {
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 30px;
        }

        .footer-links a {
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--pink);
        }

        .footer-bottom {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

       /* ============= RESPONSIVE - TABLET ============= */
    @media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .top-bar {
        font-size: 12px;
        padding: 10px 16px;
    }

    .hero {
        padding: 40px 16px 44px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .hero-guarantee {
        font-size: 13px;
        padding: 10px 16px;
        margin-bottom: 24px;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 15px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 40px;
    }

    .hero-stat-number {
        font-size: 26px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    /* Intro Section */
    .intro-section {
        padding: 50px 16px;
    }

    .intro-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .intro-photo {
        width: 100%;
        height: 100%x;
        margin: 0 auto;
        object-positon: center;
        font-size: 12px;
    }
    
    .intro-photo-ring {
        width: 160px;
        height: 160px;
        padding: 2px;
        margin: 0 auto;
        order: 2;
    }
    
    .intro-photo img {
        width: 105%;
        height: 105%;
        margin: 0;
        margin: -1%;
        object-fit: cover;
        object-position: center center;
    }


    .intro-heading-mobile {
        display: block;
        font-family: var(--font-display);
        font-size: 24px;
        margin-bottom: 0px;
        color: var(--navy);
        order: 1;
    }

    .intro-heading-desktop {
        display: none;
    }

    .intro-content {
        order: 3;
    }


    .intro-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .intro-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .intro-stat {
        font-size: 13px;
    }

    .intro-stat strong {
        font-size: 16px;
    }

    /* Video Section */
    .video-section {
        padding: 50px 16px;
    }

    .video-label {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .video-container h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .video-container > p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .video-wrapper {
        border-radius: 8px;
    }

    .video-placeholder-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .video-placeholder p {
        font-size: 13px;
    }

    /* Results Section */
    .results-section {
        padding: 50px 16px;
    }

    .results-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .results-header p {
        font-size: 15px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-card {
        padding: 24px 20px;
    }

    .result-card-type {
        font-size: 10px;
    }

    .result-card h3 {
        font-size: 18px;
    }

    .result-metric-value {
        font-size: 22px;
    }

    .result-metric span {
        font-size: 12px;
    }

    .results-note {
        font-size: 12px;
        margin-top: 24px;
    }

    /* How It Works */
    .how-section {
        padding: 50px 16px;
    }

    .how-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .how-header p {
        font-size: 15px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 14px;
    }

    .how-step h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .how-step p {
        font-size: 14px;
    }

    /* CTA / Form Section */
    .cta-section {
        padding: 60px 16px;
    }

    .cta-container h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .cta-container > p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-form {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .cta-form h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    .form-note {
        font-size: 12px;
    }

    .cta-guarantee {
        margin-top: 24px;
        padding: 16px;
    }

    .cta-guarantee p {
        font-size: 13px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 50px 16px;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .faq-item p {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 40px 16px 24px;
    }

    .footer-logo {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 16px;
        margin-bottom: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}

/* ============= RESPONSIVE - SMALL PHONES ============= */
@media (max-width: 400px) {
    .top-bar {
        font-size: 11px;
        padding: 8px 12px;
    }

    .hero {
        padding: 32px 12px 85px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-guarantee {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 20px;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 16px;
        margin-top: 32px;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

   /* Intro */
    .intro-section {
        padding: 40px 12px;
    }
    
    .intro-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .intro-heading-mobile {
        display: block;
        font-family: var(--font-display);
        font-size: 21px;
        margin-bottom: 10px;
        color: var(--navy);
        order: 1;
    }
    
    .intro-photo-ring {
        width: 140px;
        height: 140px;
        padding: 2px;
        margin: 0 auto;
        order: 2;
    }
    
    .intro-photo {
        width: 100%;
        height: 100%;
    }
    
    .intro-photo img {
        width: 105%;
        height: 105%;
        margin: -1%;
        object-fit: cover;
        object-position: center center;
    }
    
    .intro-content {
        order: 3;
    }
    
    .intro-heading-desktop {
        display: none;
    }
    
    .intro-content p {
        font-size: 14px;
    }
    
    .intro-stat {
        font-size: 12px;
    }
    
    .intro-stat strong {
        font-size: 15px;
    }

    /* Video */
    .video-section {
        padding: 40px 12px;
    }

    .video-label {
        font-size: 9px;
    }

    .video-container h2 {
        font-size: 21px;
    }

    .video-container > p {
        font-size: 14px;
    }

    .video-wrapper {
        border-radius: 6px;
    }

    .video-placeholder-icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .video-placeholder p {
        font-size: 12px;
    }

    /* Results */
    .results-section {
        padding: 40px 12px;
    }

    .results-header h2 {
        font-size: 21px;
    }

    .results-header p {
        font-size: 14px;
    }

    .result-card {
        padding: 20px 16px;
    }

    .result-card h3 {
        font-size: 16px;
    }

    .result-metric-value {
        font-size: 20px;
    }

    .result-metric span {
        font-size: 11px;
    }

    /* How It Works */
    .how-section {
        padding: 40px 12px;
    }

    .how-header h2 {
        font-size: 21px;
    }

    .how-header p {
        font-size: 14px;
    }

    .how-step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .how-step h3 {
        font-size: 16px;
    }

    .how-step p {
        font-size: 13px;
    }

    /* CTA */
    .cta-section {
        padding: 50px 12px;
    }

    .cta-container h2 {
        font-size: 22px;
    }

    .cta-container > p {
        font-size: 14px;
    }

    .cta-form {
        padding: 24px 16px;
    }

    .cta-form h3 {
        font-size: 16px;
    }

    .form-group input {
        padding: 11px 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 13px;
        font-size: 14px;
    }

    .cta-guarantee p {
        font-size: 12px;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 12px;
    }

    .faq-header h2 {
        font-size: 21px;
    }

    .faq-item {
        padding: 18px 16px;
    }

    .faq-item h3 {
        font-size: 14px;
    }

    .faq-item p {
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 32px 12px 20px;
    }

    .footer-logo {
        font-size: 14px;
    }

    .footer-content p {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 10px;
    }
}

/* ============= RESPONSIVE - LARGE SCREENS ============= */
@media (min-width: 1024px) {
    .hero {
        padding: 100px 24px 120px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-guarantee {
        font-size: 16px;
    }

    .hero-stats {
        gap: 50px;
        margin-top: 60px;
    }

    .hero-stat-number {
        font-size: 36px;
    }

    .hero-stat-label {
        font-size: 14px;
    }

    .intro-content h2 {
        font-size: 32px;
    }

    .video-container h2,
    .results-header h2,
    .how-header h2,
    .faq-header h2 {
        font-size: 36px;
    }

    .cta-container h2 {
        font-size: 40px;
    }
}