        /* ===== CSS RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --ivory: #FDFCF0;
            --sage: #5F7464;
            --sage-light: #7A9382;
            --saffron: #B45309;
            --saffron-hover: #D4690E;
            --gold: #B89D62;
            --gold-light: #D4BA82;
            --umber: #2D241B;
            --umber-light: #4A3F33;
            --cream: #F5F0E1;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(45,36,27,0.06);
            --shadow-md: 0 8px 30px rgba(45,36,27,0.1);
            --shadow-lg: 0 20px 60px rgba(45,36,27,0.12);
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            color: var(--umber);
            background: var(--ivory);
            line-height: 1.7;
            font-weight: 400;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', 'Georgia', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        .script-font {
            font-family: 'Cormorant Garamond', 'Georgia', serif;
            font-style: italic;
            font-weight: 400;
        }

        /* ===== UTILITY ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--umber);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--umber-light);
            max-width: 640px;
            line-height: 1.8;
            font-weight: 300;
        }

        .gold-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            margin: 24px 0;
        }

        .center-text { text-align: center; }
        .center-text .section-subtitle { margin-left: auto; margin-right: auto; }
        .center-text .gold-divider { margin-left: auto; margin-right: auto; }

        /* ===== ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.15s; }
        .reveal-delay-2 { transition-delay: 0.3s; }
        .reveal-delay-3 { transition-delay: 0.45s; }
        .reveal-delay-4 { transition-delay: 0.6s; }
        .reveal-delay-5 { transition-delay: 0.75s; }
        .reveal-delay-6 { transition-delay: 0.9s; }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(253, 252, 240, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 14px 0;
            box-shadow: 0 1px 20px rgba(45,36,27,0.06);
        }

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

        .nav-logo {
            text-decoration: none;
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.05;
            color: var(--umber);
        }

        .nav-logo-mark {
            position: relative;
            display: inline-block;
            line-height: 0;
        }
        .nav-logo-mark img {
            display: block;
            height: 56px;
            width: auto;
            transition: height var(--transition);
        }
        .navbar.scrolled .nav-logo-mark img { height: 46px; }

        .nav-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 0.72rem;
            color: var(--umber-light);
            letter-spacing: 1.2px;
            margin-top: -2px;
            text-transform: none;
            font-weight: 400;
        }
        @media (max-width: 768px) {
            .nav-logo-mark img { height: 44px; }
            .navbar.scrolled .nav-logo-mark img { height: 38px; }
            .nav-tagline { display: none; }
        }

        /* === Bindu aura animation (variant B) ===
           Coordinates match the cropped _nav SVG viewBox "320 50 384 470".
           Bindu at (510, 80) → left 49.5%, top 6.4%. */
        .bindu-halo {
            position: absolute;
            left: 49.5%;
            top: 6.4%;
            width: 22%;
            aspect-ratio: 1 / 1;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            pointer-events: none;
            background: radial-gradient(circle, rgba(107,68,35,.55) 0%, rgba(107,68,35,0) 65%);
            animation: bindu-aura 3.6s ease-out infinite;
        }
        .bindu-halo.delay { animation-delay: 1.8s; }
        .bindu-halo.ivory {
            background: radial-gradient(circle, rgba(253,252,240,.55) 0%, rgba(253,252,240,0) 65%);
        }
        @keyframes bindu-aura {
            0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
            25%  { opacity: 0.85; }
            100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
        }
        @media (prefers-reduced-motion: reduce) {
            .bindu-halo { animation: none; opacity: 0; }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 36px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--umber);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            transition: color var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--saffron);
            transition: width var(--transition);
        }

        .nav-links a:hover { color: var(--saffron); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            background: var(--saffron) !important;
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 500 !important;
            transition: background var(--transition) !important;
        }

        .nav-cta:hover {
            background: var(--saffron-hover) !important;
        }

        .nav-cta::after { display: none !important; }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--umber);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(165deg, var(--ivory) 0%, var(--cream) 40%, #E8E0CC 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(184,157,98,0.08) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -150px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(95,116,100,0.06) 0%, transparent 70%);
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.05); }
            66% { transform: translate(-20px, 20px) scale(0.95); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
            padding: 120px 0 80px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(180, 83, 9, 0.08);
            border: 1px solid rgba(180, 83, 9, 0.15);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--saffron);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 32px;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--saffron);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .hero h1 {
            font-size: clamp(2.8rem, 5.5vw, 4.2rem);
            color: var(--umber);
            margin-bottom: 8px;
            line-height: 1.1;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--saffron);
        }

        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-style: italic;
            color: var(--sage);
            margin-bottom: 28px;
            font-weight: 500;
        }

        .hero p {
            font-size: 1.05rem;
            color: var(--umber-light);
            max-width: 540px;
            margin-bottom: 40px;
            line-height: 1.85;
            font-weight: 300;
        }

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

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--saffron);
            color: var(--white);
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.03em;
            transition: all var(--transition);
            box-shadow: 0 4px 20px rgba(180, 83, 9, 0.25);
        }

        .btn-primary:hover {
            background: var(--saffron-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(180, 83, 9, 0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--umber);
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.03em;
            border: 1.5px solid var(--gold);
            transition: all var(--transition);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--umber);
            padding: 28px 0;
        }

        .trust-bar .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(253,252,240,0.85);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .trust-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(184,157,98,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        /* ===== STATS RIBBON ===== */
        .stats-ribbon {
            padding: 80px 0;
            background: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .stat-card {
            text-align: center;
            padding: 32px 20px;
            position: relative;
        }

        .stat-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700;
            color: var(--saffron);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--umber-light);
            font-weight: 400;
            line-height: 1.5;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 120px 0;
            background: var(--ivory);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-image-frame {
            background: linear-gradient(135deg, var(--cream), #E8E0CC);
            border-radius: 16px;
            padding: 48px;
            position: relative;
            overflow: hidden;
        }

        .about-image-frame::before {
            content: '';
            position: absolute;
            top: 16px;
            left: 16px;
            right: 16px;
            bottom: 16px;
            border: 1px solid var(--gold-light);
            border-radius: 12px;
            opacity: 0.4;
        }

        .about-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-style: italic;
            color: var(--umber);
            text-align: center;
            line-height: 1.5;
            padding: 40px 20px;
        }

        .about-quote-source {
            display: block;
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-size: 0.75rem;
            color: var(--gold);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-top: 20px;
            font-weight: 600;
        }

        .about-floating-badge {
            position: absolute;
            bottom: -20px;
            right: -10px;
            background: var(--saffron);
            color: var(--white);
            padding: 16px 24px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .about-floating-badge .number {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .about-floating-badge .label {
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .about-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 24px;
        }

        .about-content p {
            color: var(--umber-light);
            margin-bottom: 20px;
            font-weight: 300;
            line-height: 1.85;
        }

        .about-content p strong {
            color: var(--umber);
            font-weight: 600;
        }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 32px;
        }

        .about-value {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
        }

        .about-value-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: rgba(180, 83, 9, 0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .about-value span {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--umber);
        }

        /* ===== PRODUCT SECTION ===== */
        .product {
            padding: 120px 0;
            background: var(--umber);
            color: var(--ivory);
            position: relative;
            overflow: hidden;
        }

        .product::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 80% 20%, rgba(184,157,98,0.08) 0%, transparent 60%);
        }

        .product .section-label { color: var(--gold); }
        .product .section-title { color: var(--ivory); }
        .product .section-subtitle { color: rgba(253,252,240,0.7); }
        .product .gold-divider { opacity: 0.6; }

        .product-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .product-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .product-card {
            background: linear-gradient(145deg, rgba(253,252,240,0.06), rgba(253,252,240,0.02));
            border: 1px solid rgba(184,157,98,0.2);
            border-radius: 24px;
            padding: 60px 48px;
            text-align: center;
            backdrop-filter: blur(10px);
            width: 100%;
            max-width: 400px;
        }

        .product-icon-large {
            width: 120px;
            height: 120px;
            margin: 0 auto 32px;
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            box-shadow: 0 12px 40px rgba(180, 83, 9, 0.3);
        }

        .product-card h3 {
            font-size: 1.8rem;
            color: var(--ivory);
            margin-bottom: 8px;
        }

        .product-card .product-type {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .product-card .product-desc {
            font-size: 0.9rem;
            color: rgba(253,252,240,0.6);
            line-height: 1.7;
            font-weight: 300;
        }

        .product-info h3 {
            font-size: 1.6rem;
            color: var(--ivory);
            margin-bottom: 16px;
        }

        .product-info p {
            color: rgba(253,252,240,0.7);
            font-weight: 300;
            line-height: 1.85;
            margin-bottom: 24px;
        }

        .product-features {
            list-style: none;
            margin-bottom: 36px;
        }

        .product-features li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(184,157,98,0.1);
            color: rgba(253,252,240,0.8);
            font-size: 0.92rem;
            font-weight: 300;
        }

        .product-features li .feat-icon {
            color: var(--gold);
            font-size: 1.1rem;
            min-width: 24px;
            text-align: center;
        }

        /* ===== INGREDIENTS ===== */
        .ingredients {
            padding: 120px 0;
            background: var(--white);
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 60px;
        }

        .ingredient-card {
            background: var(--ivory);
            border-radius: 16px;
            padding: 36px 28px;
            transition: all var(--transition);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .ingredient-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--saffron));
            transform: scaleX(0);
            transition: transform var(--transition);
            transform-origin: left;
        }

        .ingredient-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(184,157,98,0.2);
        }

        .ingredient-card:hover::before {
            transform: scaleX(1);
        }

        .ingredient-emoji {
            font-size: 2rem;
            margin-bottom: 16px;
            display: block;
        }

        .ingredient-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--umber);
            margin-bottom: 4px;
        }

        .ingredient-sanskrit {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 0.9rem;
            color: var(--gold);
            margin-bottom: 14px;
        }

        .ingredient-desc {
            font-size: 0.88rem;
            color: var(--umber-light);
            line-height: 1.7;
            font-weight: 300;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 120px 0;
            background: var(--ivory);
        }

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

        .steps-container::before {
            content: '';
            position: absolute;
            top: 55px;
            left: 18%;
            right: 18%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold-light), var(--saffron), var(--gold-light));
            opacity: 0.3;
        }

        .step-card {
            text-align: center;
            padding: 0 20px;
            position: relative;
        }

        .step-number {
            width: 72px;
            height: 72px;
            margin: 0 auto 28px;
            background: var(--white);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all var(--transition);
        }

        .step-number span {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--saffron);
        }

        .step-card:hover .step-number {
            background: var(--saffron);
            border-color: var(--saffron);
        }

        .step-card:hover .step-number span {
            color: var(--white);
        }

        .step-card h3 {
            font-size: 1.2rem;
            margin-bottom: 6px;
            color: var(--umber);
        }

        .step-card .step-sanskrit {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--gold);
            font-size: 0.95rem;
            margin-bottom: 14px;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--umber-light);
            line-height: 1.75;
            font-weight: 300;
        }

        /* ===== WHY AYURMIGRA ===== */
        .why-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--white), var(--cream));
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 60px;
        }

        .why-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 36px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            border: 1px solid rgba(184,157,98,0.08);
        }

        .why-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .why-card-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, rgba(180,83,9,0.08), rgba(184,157,98,0.12));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 1.15rem;
            color: var(--umber);
            margin-bottom: 12px;
        }

        .why-card p {
            font-size: 0.9rem;
            color: var(--umber-light);
            line-height: 1.75;
            font-weight: 300;
        }

        /* ===== VISION & MISSION ===== */
        .vision-mission {
            padding: 120px 0;
            background: var(--umber);
            color: var(--ivory);
            position: relative;
            overflow: hidden;
        }

        .vision-mission::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(184,157,98,0.05) 0%, transparent 70%);
            transform: rotate(-15deg);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .vm-card {
            padding: 48px;
            border-radius: 20px;
            background: rgba(253,252,240,0.04);
            border: 1px solid rgba(184,157,98,0.15);
        }

        .vm-card .vm-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .vm-card h3 {
            font-size: 1.6rem;
            color: var(--ivory);
            margin-bottom: 20px;
            line-height: 1.35;
        }

        .vm-card p {
            color: rgba(253,252,240,0.65);
            font-weight: 300;
            line-height: 1.85;
            font-size: 0.95rem;
        }

        .tagline-section {
            text-align: center;
            margin-top: 80px;
            position: relative;
            z-index: 2;
        }

        .tagline-section .big-tagline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            color: var(--ivory);
            font-style: italic;
            line-height: 1.4;
            max-width: 700px;
            margin: 0 auto;
        }

        .tagline-section .big-tagline span {
            color: var(--gold);
        }

        /* ===== UPCOMING PRODUCTS ===== */
        .upcoming {
            padding: 120px 0;
            background: var(--ivory);
        }

        .upcoming-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .upcoming-card {
            background: var(--white);
            border-radius: 16px;
            padding: 36px 24px;
            text-align: center;
            transition: all var(--transition);
            border: 1px solid rgba(184,157,98,0.08);
            position: relative;
            overflow: hidden;
        }

        .upcoming-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .upcoming-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(95,116,100,0.1);
            color: var(--sage);
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
        }

        .upcoming-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(95,116,100,0.1), rgba(184,157,98,0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }

        .upcoming-card h3 {
            font-size: 1.1rem;
            color: var(--umber);
            margin-bottom: 4px;
        }

        .upcoming-card .upcoming-cat {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--gold);
            font-size: 0.85rem;
            margin-bottom: 14px;
        }

        .upcoming-card p {
            font-size: 0.82rem;
            color: var(--umber-light);
            line-height: 1.65;
            font-weight: 300;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 120px 0;
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--ivory);
            border-radius: 16px;
            padding: 36px 30px;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-stars {
            color: var(--saffron);
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 0.92rem;
            color: var(--umber-light);
            line-height: 1.8;
            font-weight: 300;
            font-style: italic;
            flex-grow: 1;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid rgba(184,157,98,0.15);
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sage-light), var(--sage));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: 0.85rem;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--umber);
            font-size: 0.9rem;
        }

        .testimonial-role {
            font-size: 0.78rem;
            color: var(--gold);
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--sage) 0%, #4A6050 100%);
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(184,157,98,0.1) 0%, transparent 70%);
        }

        .cta-section h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            color: var(--white);
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            font-size: 1.05rem;
            opacity: 0.85;
            max-width: 560px;
            margin: 0 auto 36px;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        .cta-section .btn-primary {
            background: var(--saffron);
            position: relative;
            z-index: 2;
            font-size: 1rem;
            padding: 18px 44px;
        }

        /* ===== DISCLAIMER BAR ===== */
        .disclaimer-bar {
            padding: 24px 0;
            background: var(--cream);
            border-top: 1px solid rgba(184,157,98,0.15);
        }

        .disclaimer-bar p {
            font-size: 0.72rem;
            color: var(--umber-light);
            text-align: center;
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.7;
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 80px 0 40px;
            background: var(--umber);
            color: rgba(253,252,240,0.7);
        }

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

        .footer-logo-mark {
            position: relative;
            display: inline-block;
            line-height: 0;
            margin: -8px 0 14px -8px;
        }
        .footer-logo-mark img {
            display: block;
            height: 96px;
            width: auto;
        }

        .footer-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 0.95rem;
            color: rgba(253, 252, 240, 0.7);
            margin: -8px 0 18px;
            letter-spacing: 0.4px;
        }

        .footer-brand p {
            font-size: 0.88rem;
            line-height: 1.75;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }

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

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

        .footer-col ul li a {
            color: rgba(253,252,240,0.6);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 300;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--gold);
        }

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

        .footer-bottom p {
            font-size: 0.78rem;
            opacity: 0.5;
        }

        .footer-certifications {
            display: flex;
            gap: 16px;
        }

        .footer-cert {
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(253,252,240,0.3);
            padding: 6px 14px;
            border: 1px solid rgba(253,252,240,0.1);
            border-radius: 4px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .about-grid { grid-template-columns: 1fr; gap: 48px; }
            .product-showcase { grid-template-columns: 1fr; gap: 48px; }
            .vm-grid { grid-template-columns: 1fr; gap: 28px; }
            .upcoming-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-card:nth-child(2)::after { display: none; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(253,252,240,0.98);
                backdrop-filter: blur(20px);
                padding: 24px;
                gap: 20px;
                box-shadow: var(--shadow-md);
            }
            .mobile-toggle { display: block; }

            .hero-content { padding: 100px 0 60px; }
            .hero h1 { font-size: 2.4rem; }

            .ingredients-grid { grid-template-columns: 1fr 1fr; }
            .steps-container { grid-template-columns: 1fr; gap: 32px; }
            .steps-container::before { display: none; }
            .why-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .upcoming-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .about-values { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero-ctas { flex-direction: column; }
            .hero-ctas a { text-align: center; justify-content: center; }
            .ingredients-grid { grid-template-columns: 1fr; }
            .trust-bar .container { gap: 24px; }
            .stats-grid { grid-template-columns: 1fr; }
            .stat-card::after { display: none; }
            .footer-certifications { flex-wrap: wrap; justify-content: center; }
        }

        /* ===== FAQ ===== */
        .faq { padding: 100px 0; background: var(--ivory); }
        .faq .section-label, .faq .section-title { text-align: center; }
        .faq .section-title { margin-bottom: 0; }
        .faq .gold-divider { margin: 24px auto 56px; }
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            border-top: 1px solid rgba(184, 157, 98, 0.25);
        }
        .faq-item {
            border-bottom: 1px solid rgba(184, 157, 98, 0.25);
        }
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 28px 56px 28px 8px;
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 500;
            font-size: 1.15rem;
            color: var(--umber);
            position: relative;
            transition: color var(--transition);
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after {
            content: '';
            position: absolute;
            right: 8px;
            top: 50%;
            width: 12px;
            height: 12px;
            border-right: 1.5px solid var(--gold);
            border-bottom: 1.5px solid var(--gold);
            transform: translateY(-70%) rotate(45deg);
            transition: transform var(--transition);
        }
        .faq-item[open] summary::after {
            transform: translateY(-30%) rotate(-135deg);
        }
        .faq-item:hover summary { color: var(--saffron); }
        .faq-item-body {
            padding: 0 8px 28px;
            color: var(--umber-light);
            line-height: 1.8;
            font-size: 1rem;
            max-width: 720px;
        }

        /* ===== FLOATING CTA ===== */
        .floating-cta {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 9998;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            pointer-events: none;
            opacity: 0;
            transform: translateY(14px);
            animation: floatCtaIn 0.7s ease-out 0.8s forwards;
        }
        @keyframes floatCtaIn {
            to { opacity: 1; transform: translateY(0); }
        }
        .floating-cta-buttons {
            pointer-events: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-end;
        }
        .floating-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 999px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-decoration: none;
            box-shadow: 0 6px 22px rgba(50, 40, 20, 0.18);
            transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
            min-width: 200px;
            justify-content: flex-start;
        }
        .floating-cta-btn svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
        .floating-cta-btn-book {
            background: #FDFCF0;
            color: var(--umber);
            border: 1.5px solid var(--gold);
        }
        .floating-cta-btn-book svg { stroke: var(--saffron); }
        .floating-cta-btn-order {
            background: linear-gradient(135deg, var(--saffron) 0%, #C46A12 100%);
            color: #FDFCF0;
            border: 1.5px solid transparent;
        }
        .floating-cta-btn-order svg { stroke: #FDFCF0; }
        .floating-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(50, 40, 20, 0.25);
            filter: brightness(1.03);
        }
        @media (max-width: 640px) {
            .floating-cta {
                right: 12px;
                bottom: 12px;
                gap: 8px;
            }
            .floating-cta-btn {
                min-width: 0;
                padding: 11px 16px;
                font-size: 0.82rem;
            }
            .floating-cta-btn span { display: none; }
            .floating-cta-btn {
                width: 48px;
                height: 48px;
                padding: 0;
                justify-content: center;
                border-radius: 50%;
            }
            .floating-cta-btn svg { width: 20px; height: 20px; }
        }
        @media (prefers-reduced-motion: reduce) {
            .floating-cta { animation: none; opacity: 1; transform: none; }
            .floating-cta-btn:hover { transform: none; }
        }

        /* ===== PRODUCT CATALOG (homepage) — live/upcoming variant ===== */
        a.upcoming-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .upcoming-card.is-live {
            border-color: rgba(180, 83, 9, 0.18);
            box-shadow: 0 4px 16px rgba(180, 83, 9, 0.06);
        }
        .upcoming-card.is-live .upcoming-badge {
            background: rgba(180, 83, 9, 0.1);
            color: var(--saffron);
        }
        .upcoming-card.is-live .upcoming-icon {
            background: linear-gradient(135deg, rgba(180, 83, 9, 0.14), rgba(184, 157, 98, 0.14));
        }
        .upcoming-card-cta {
            margin-top: 18px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--saffron);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        a.upcoming-card:hover .upcoming-card-cta {
            gap: 10px;
        }

        /* ===== DOSHA QUIZ ===== */
        .quiz-page {
            min-height: 100vh;
            padding: 140px 0 80px;
            background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
        }
        .quiz-hero {
            text-align: center;
            margin-bottom: 56px;
            padding: 0 24px;
        }
        .quiz-hero .section-label {
            color: var(--saffron);
            margin-bottom: 16px;
        }
        .quiz-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            font-weight: 500;
            color: var(--umber);
            line-height: 1.15;
            margin-bottom: 18px;
        }
        .quiz-hero h1 em {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--saffron);
            font-weight: 500;
        }
        .quiz-hero p {
            font-size: 1.05rem;
            color: var(--umber-light);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .quiz-stage {
            max-width: 760px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .quiz-card {
            background: var(--white);
            border-radius: 20px;
            padding: 56px 44px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(184, 157, 98, 0.12);
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .quiz-card[hidden] { display: none; }

        /* Intro */
        .quiz-intro-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(180, 83, 9, 0.14), rgba(184, 157, 98, 0.14));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 24px;
        }
        .quiz-intro h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--umber);
            text-align: center;
            margin-bottom: 16px;
        }
        .quiz-intro p {
            text-align: center;
            color: var(--umber-light);
            font-size: 0.98rem;
            line-height: 1.75;
            max-width: 520px;
            margin: 0 auto 14px;
        }
        .quiz-meta {
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            margin: 28px 0 32px;
            color: var(--sage);
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .quiz-meta span { display: inline-flex; align-items: center; gap: 8px; }
        .quiz-intro-cta { text-align: center; }

        /* Progress */
        .quiz-progress-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--sage);
        }
        .quiz-progress-bar {
            height: 4px;
            background: rgba(95, 116, 100, 0.15);
            border-radius: 100px;
            overflow: hidden;
            margin-bottom: 36px;
        }
        .quiz-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--saffron), var(--gold));
            border-radius: 100px;
            width: 0%;
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Question */
        .quiz-question {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            font-weight: 500;
            color: var(--umber);
            line-height: 1.3;
            margin-bottom: 32px;
            text-align: center;
        }

        /* Options */
        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .quiz-option {
            width: 100%;
            text-align: left;
            background: var(--ivory);
            border: 2px solid rgba(184, 157, 98, 0.18);
            border-radius: 14px;
            padding: 20px 22px;
            font-family: 'Inter', sans-serif;
            font-size: 0.98rem;
            color: var(--umber);
            line-height: 1.55;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .quiz-option:hover {
            border-color: var(--saffron);
            background: var(--white);
            transform: translateX(4px);
            box-shadow: var(--shadow-sm);
        }
        .quiz-option:focus-visible {
            outline: 2px solid var(--saffron);
            outline-offset: 2px;
        }
        .quiz-option-chip {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(180, 83, 9, 0.08);
            color: var(--saffron);
            font-weight: 600;
            font-size: 0.82rem;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0;
        }
        .quiz-option:hover .quiz-option-chip {
            background: var(--saffron);
            color: var(--ivory);
        }
        .quiz-option.is-selected {
            border-color: var(--saffron);
            background: rgba(180, 83, 9, 0.04);
        }
        .quiz-option.is-selected .quiz-option-chip {
            background: var(--saffron);
            color: var(--ivory);
        }

        .quiz-back {
            margin-top: 28px;
            display: flex;
            justify-content: center;
        }
        .quiz-back-btn {
            background: none;
            border: none;
            color: var(--umber-light);
            font-size: 0.82rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            padding: 8px 16px;
            transition: color 0.2s ease;
        }
        .quiz-back-btn:hover { color: var(--saffron); }
        .quiz-back-btn:disabled { opacity: 0.3; cursor: default; }

        /* Results */
        .quiz-results { text-align: center; }
        .dosha-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            color: var(--ivory);
            padding: 8px 22px;
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 22px;
        }
        .quiz-persona-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            font-weight: 500;
            color: var(--umber);
            line-height: 1.2;
            margin-bottom: 14px;
        }
        .quiz-persona-title em {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--saffron);
        }
        .quiz-persona-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--gold);
            font-size: 1.15rem;
            margin-bottom: 28px;
        }
        .quiz-persona-tip {
            background: var(--cream);
            border-left: 3px solid var(--saffron);
            padding: 22px 26px;
            border-radius: 8px;
            text-align: left;
            margin: 0 auto 32px;
            max-width: 560px;
            color: var(--umber-light);
            line-height: 1.75;
        }
        .quiz-persona-tip strong {
            color: var(--umber);
            display: block;
            margin-bottom: 6px;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .quiz-result-breakdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }
        .quiz-breakdown-pill {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 14px 22px;
            background: var(--ivory);
            border: 1px solid rgba(184, 157, 98, 0.2);
            border-radius: 12px;
            min-width: 96px;
        }
        .quiz-breakdown-pill .count {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--umber);
        }
        .quiz-breakdown-pill .label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--sage);
        }
        .quiz-breakdown-pill.is-dominant {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            border-color: transparent;
        }
        .quiz-breakdown-pill.is-dominant .count,
        .quiz-breakdown-pill.is-dominant .label { color: var(--ivory); }

        .quiz-cta {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .quiz-cta .btn-secondary {
            background: none;
            border: 1.5px solid rgba(45, 36, 27, 0.2);
            color: var(--umber);
            cursor: pointer;
        }
        .quiz-cta .btn-secondary:hover {
            border-color: var(--saffron);
            color: var(--saffron);
        }

        .quiz-disclaimer {
            margin-top: 32px;
            text-align: center;
            color: var(--umber-light);
            font-size: 0.78rem;
            opacity: 0.7;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 24px;
        }

        /* Homepage quiz callout */
        .quiz-callout {
            padding: 80px 0;
            background: var(--cream);
        }
        .quiz-callout-inner {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
            padding: 0 24px;
        }
        .quiz-callout .section-label { color: var(--saffron); }
        .quiz-callout h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            font-weight: 500;
            color: var(--umber);
            line-height: 1.25;
            margin: 14px 0 18px;
        }
        .quiz-callout h2 em {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--saffron);
        }
        .quiz-callout p {
            color: var(--umber-light);
            line-height: 1.75;
            margin-bottom: 26px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 640px) {
            .quiz-card { padding: 36px 24px; }
            .quiz-options { gap: 10px; }
            .quiz-option { padding: 16px 16px; font-size: 0.94rem; }
            .quiz-stage { padding: 0 14px; }
            .quiz-page { padding: 110px 0 60px; }
        }
