/* ================================
   SMOOTH SCROLLING
   ================================ */
html {
    scroll-behavior: smooth;
}

/* ================================
   PREMIUM ELEGANT THEME - TRUESIP
   ================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

:root {
    /* Premium Color Palette */
    --primary-gold: #D4AF37;
    --primary-dark: #B8941E;
    --accent-sage: #8B9D83;
    --accent-cream: #F5F1E8;
    --accent-taupe: #9B8B7E;
    
    /* Neutrals */
    --charcoal: #2C2C2C;
    --warm-grey: #5C5C5C;
    --soft-grey: #8C8C8C;
    --light-cream: #FAF8F3;
    --pure-white: #FFFFFF;
    
    /* Shadows */
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-elegant: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 12px 32px rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--light-cream);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo h2 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0;
    letter-spacing: -0.02em;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* Fallback for logo if image doesn't load */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo::before {
    content: 'TrueSip';
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    display: none; /* Hidden by default, shown only if image fails */
}

.nav-logo img:not([src]),
.nav-logo img[src=""] {
    display: none;
}

.nav-logo:not(:has(img[src]))::before {
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-links a {
    color: var(--warm-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: var(--pure-white);
    border: none;
    outline: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #B8860B 0%, #9A7209 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.nav-cta:focus {
    outline: none;
    border: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.nav-cta:active {
    background: linear-gradient(135deg, #B8860B 0%, #9A7209 100%);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transform: translateY(0);
}

/* Override nav-cta when combined with gold-button */
.nav-cta.gold-button {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta.gold-button:hover {
    background: linear-gradient(135deg, #B8860B 0%, #9A7209 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.nav-cta.gold-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--pure-white);
    color: var(--primary-gold);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
    letter-spacing: -0.03em;
}

.highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--warm-grey);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--soft-grey);
    margin-top: var(--spacing-xs);
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: var(--pure-white);
    border: none;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-elegant);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--soft-grey);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-guarantee i {
    color: var(--accent-sage);
}

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

.hero-image {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Removed frame background effects */

.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: pixelated;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.image-placeholder {
    text-align: center;
    color: var(--primary-gold);
    position: relative;
    z-index: 1;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--warm-grey);
}

/* ================================
   VALUE PROMISE SECTION
   ================================ */

.value-promise {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.value-content p {
    font-size: 1.125rem;
    color: var(--warm-grey);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.value-content strong {
    color: var(--charcoal);
    font-weight: 700;
}

.highlight-text {
    color: var(--primary-gold);
    font-style: italic;
}

/* ================================
   PAIN CLARITY SECTION
   ================================ */

.pain-clarity {
    padding: 4rem 0;
    background: var(--pure-white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.pain-card {
    background: var(--light-cream);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary-gold);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.pain-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.pain-card p {
    color: var(--warm-grey);
    line-height: 1.6;
}

.pain-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.pain-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-lg);
}

/* ================================
   TREASURE → SHIP → CAPTAIN SECTION
   ================================ */

.treasure-ship {
    padding: 4rem 0;
    background: var(--light-cream);
}

.tsc-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.tsc-card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 2px solid var(--accent-cream);
    transition: all 0.3s ease;
    position: relative;
}

.tsc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.tsc-card.highlight-card {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
}

.tsc-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--pure-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.tsc-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.tsc-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
}

.tsc-subtitle {
    font-size: 0.938rem;
    color: var(--soft-grey);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.tsc-card p {
    color: var(--warm-grey);
    line-height: 1.6;
}

.tsc-arrow {
    font-size: 2rem;
    color: var(--primary-gold);
}

.tsc-reveal {
    text-align: center;
    background: var(--pure-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-gold);
}

.tsc-reveal h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.tsc-reveal p {
    font-size: 1.125rem;
    color: var(--warm-grey);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

/* ================================
   SAMPLE OUTPUTS SECTION
   ================================ */

.sample-outputs {
    padding: 4rem 0;
    background: var(--pure-white);
}

.outputs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.output-card {
    background: var(--light-cream);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.output-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary-gold);
}

.output-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.output-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.output-card p {
    color: var(--warm-grey);
    line-height: 1.6;
}

.outputs-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ================================
   STARTER PACK PITCH (SLO)
   ================================ */

.starter-pack-pitch {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-cream), var(--light-cream));
}

.pack-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-premium);
    border: 2px solid var(--primary-gold);
}

.pack-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--pure-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

/* Countdown Timer Styles */
.countdown-timer {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: var(--pure-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.timer-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    min-width: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--pure-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-top: 2px;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pure-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 0.25rem;
    line-height: 1;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Timer warning states */
.countdown-timer.warning {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    animation: pulse-warning 1s infinite;
}

@keyframes pulse-warning {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown-timer.danger {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    animation: pulse-danger 0.5s infinite;
}

@keyframes pulse-danger {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Closing Statement Styles */
.closing-statement {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: var(--pure-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.closing-statement p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.pack-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.pack-subtitle {
    font-size: 1.125rem;
    color: var(--warm-grey);
    margin-bottom: var(--spacing-xl);
}

.pack-contents {
    margin-bottom: var(--spacing-xl);
}

.pack-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light-cream);
    border-radius: var(--radius-md);
}

.pack-check {
    background: var(--accent-sage);
    color: var(--pure-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pack-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.pack-item p {
    font-size: 0.938rem;
    color: var(--warm-grey);
    line-height: 1.5;
}

.pack-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--light-cream);
    border-radius: var(--radius-lg);
}

.price-strike {
    text-align: center;
}

.old-price {
    font-size: 1.5rem;
    color: var(--soft-grey);
    text-decoration: line-through;
    display: block;
}

.value-label {
    font-size: 0.875rem;
    color: var(--soft-grey);
}

.price-current {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: inline;
    line-height: 1;
}

.price-label {
    font-size: 0.938rem;
    color: var(--warm-grey);
    font-weight: 600;
    margin-right: 0.25rem;
}

.pack-pricing .price-note {
    font-size: 0.875rem;
    color: var(--soft-grey);
    margin-left: 0.25rem;
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    white-space: nowrap;
    line-height: 1.2;
}

.pack-cta {
    text-align: center;
}

.pack-guarantee {
    text-align: center;
    font-size: 0.938rem;
    color: var(--warm-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.pack-guarantee i {
    color: var(--accent-sage);
}

/* Pack Limit Text Styling */
.pack-limit {
    font-size: 1rem;
    color: var(--warm-grey);
    line-height: 1.6;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
    padding: 3rem 0;
    background: var(--pure-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.faq-item {
    background: var(--light-cream);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0;
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--warm-grey);
    line-height: 1.7;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials-section {
    padding: 3rem 0;
    background: var(--light-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-rating {
    color: var(--primary-gold);
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--warm-grey);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--accent-cream);
}

.testimonial-author strong {
    display: block;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--soft-grey);
}

/* ================================
   FINAL CTA SECTION
   ================================ */

.final-cta {
    padding: 4rem 0;
    background: var(--pure-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--warm-grey);
    margin-bottom: var(--spacing-lg);
}

/* ================================
   IDENTITY & RESULTS STYLING
   ================================ */

.identity-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--primary-gold);
}

.identity-card h4 {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--soft-grey);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.identity-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-sm);
}

.identity-card p {
    color: var(--warm-grey);
    line-height: 1.6;
}

.top-fixes {
    background: var(--light-cream);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.top-fixes h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.top-fixes ol {
    margin-left: 1.5rem;
}

.top-fixes li {
    color: var(--warm-grey);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.week-plan {
    background: var(--accent-cream);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(139, 157, 131, 0.2);
}

.week-plan h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.week-plan p {
    color: var(--warm-grey);
    line-height: 1.6;
}

.pack-price {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--light-cream);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.pack-price.cta-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pack-price.cta-clickable:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.pack-price.cta-clickable::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.pack-price.cta-clickable:hover::before {
    left: 100%;
}

.price-label {
    font-size: 0.938rem;
    color: var(--soft-grey);
    margin-right: var(--spacing-sm);
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-right: var(--spacing-xs);
}

.price-note {
    font-size: 0.875rem;
    color: var(--soft-grey);
}

/* ================================
   PROBLEM SECTION
   ================================ */

.problem-section {
    padding: 3rem 0;
    background: var(--pure-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--warm-grey);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.problem-card {
    background: var(--light-cream);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary-gold);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.problem-card p {
    color: var(--warm-grey);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-lg);
}

/* ================================
   BENEFITS SECTION
   ================================ */

.benefits-section {
    padding: 3rem 0;
    background: var(--light-cream);
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-sage);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
}

.benefit-text p {
    color: var(--warm-grey);
    line-height: 1.6;
}

/* ================================
   SOLUTION REVEAL SECTION
   ================================ */

.solution-reveal {
    margin-bottom: var(--spacing-2xl);
}

.solution-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-premium);
}

.solution-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--pure-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.solution-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-lg);
}

.ingredient-highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: var(--pure-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
}

.ingredient-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.ingredient-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-xs);
}

.ingredient-info p {
    color: var(--warm-grey);
    line-height: 1.6;
}

.clinical-proof {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--primary-gold);
    border-radius: var(--radius-sm);
    font-size: 0.938rem;
}

.clinical-proof strong {
    color: var(--primary-gold);
}

.solution-benefits h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.solution-benefits ul {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
}

.solution-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--warm-grey);
    font-weight: 500;
}

.solution-benefits i {
    color: var(--primary-gold);
}

.social-proof {
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: var(--light-cream);
    border-radius: var(--radius-lg);
}

.social-proof p {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.global-trust {
    font-size: 0.938rem;
    color: var(--warm-grey);
    text-align: center;
    margin-top: var(--spacing-sm);
}

.global-trust i {
    color: var(--primary-gold);
    margin-top: 0.25rem;
    display: block;
    text-align: center;
}

/* ================================
   QUIZ SECTION
   ================================ */

.quiz-section {
    padding: 2rem 0;
    background: var(--pure-white);
    min-height: 70vh;
    display: none; /* Hidden by default */
    align-items: flex-start;
    scroll-margin-top: 6rem; /* offset for fixed navbar when using anchor */
    padding-top: 4rem; /* Add space from header */
}

/* Modify navigation when quiz is active */
body.quiz-active .navbar {
    display: flex !important;
}

/* Hide individual navigation links when quiz is active but keep container for spacing */
body.quiz-active .nav-links a,
.nav-links.quiz-mode a {
    display: none !important;
}

/* QUIZ MODE NAVIGATION LAYOUT - FORCE LEFT/RIGHT POSITIONING */
body.quiz-active .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 var(--spacing-md) !important;
    height: 4rem !important;
}

/* Logo stays on the left - OVERRIDE ALL OTHER STYLES */
body.quiz-active .nav-logo {
    flex: 0 0 auto !important;
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    transition: none !important;
    animation: none !important;
}

/* Disable ALL transitions on logo */
.nav-logo,
.nav-logo *,
.logo-image {
    transition: none !important;
    animation: none !important;
}

/* Disable ALL transitions on navbar and its children */
.navbar,
.navbar *,
.nav-container,
.nav-container *,
.nav-links,
.nav-links * {
    transition: none !important;
    animation: none !important;
}

/* Nav-links takes center space (but links are hidden) */
body.quiz-active .nav-links.quiz-mode {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    order: 2 !important;
    min-height: 40px !important;
    margin: 0 !important;
}

/* CTA button stays on the right - OVERRIDE ALL OTHER STYLES */
body.quiz-active .nav-cta {
    flex: 0 0 auto !important;
    order: 3 !important;
    display: flex !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transition: none !important;
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    justify-content: center !important;
}

/* Smooth transition for button content changes */
.nav-cta {
    transition: none !important;
    min-width: 140px !important;
    text-align: center !important;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.nav-cta:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%) !important;
}

/* Home button styling when quiz is active */
body.quiz-active .nav-cta i {
    margin-right: 0.5rem;
}

/* Allow animations for nav-cta but disable unwanted ones */
.nav-cta * {
    animation: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
}

/* ================================
   HAMBURGER MENU & MOBILE NAVIGATION
   ================================ */

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 1rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s ease;
    border: 1px solid var(--light-grey);
    display: none;
}

.mobile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mobile-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--light-grey);
}

.mobile-dropdown a:last-child {
    border-bottom: none;
}

.mobile-dropdown a:hover {
    background: var(--light-grey);
    color: var(--primary-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Ensure full width on mobile */
    * {
        box-sizing: border-box;
    }
    
    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0 1rem;
        margin: 0;
    }
    
    /* Fix all sections to use full viewport width */
    .hero,
    .problem-section,
    .truth-section,
    .quiz-benefits,
    .example-identity,
    .slimbiome-intro,
    .starter-pack-pitch,
    .faq-section,
    .final-cta,
    .results-section,
    .thank-you-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Quiz section specific spacing for mobile - make it fit properly */
    .quiz-section {
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: auto;
    }
    
    .quiz-container {
        max-width: none;
        margin: 0;
        padding: 1rem 0.5rem;
        min-height: auto;
    }
    
    /* Quiz mobile responsiveness */
    .quiz-header h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .quiz-header p {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .quiz-progress {
        margin-bottom: 1rem;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    .question {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .answer-option {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .answer-text {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .quiz-navigation {
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .nav-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Simple mobile sizing - make everything smaller and fit better */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Fix statistics alignment */
    .hero-stats {
        display: flex;
        justify-content: space-between;
        gap: 0.5rem;
        margin: 1.5rem 0;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.25rem;
        display: block;
    }
    
    .stat-text {
        font-size: 0.8rem;
        line-height: 1.2;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix limited time offer section */
    .pack-badge {
        margin-bottom: 1rem;
    }
    
    .countdown-timer {
        margin: 1rem 0;
    }
    
    .pack-pricing {
        margin: 1rem 0;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar {
        width: 100vw;
        padding: 0 1rem;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        flex-shrink: 0;
    }
    
    .nav-cta {
        display: flex;
        flex-shrink: 0;
    }
    
    .mobile-dropdown {
        display: block;
    }
    
    /* Hide hamburger menu when quiz is active */
    body.quiz-active .hamburger-menu {
        display: none;
    }
    
    body.quiz-active .mobile-dropdown {
        display: none;
    }
    
    /* Fix background pattern on mobile */
    .hero::before,
    .problem-section::before,
    .truth-section::before,
    .quiz-benefits::before,
    .example-identity::before,
    .slimbiome-intro::before,
    .starter-pack-pitch::before,
    .faq-section::before,
    .final-cta::before {
        background-size: 80px 80px;
        background-repeat: repeat;
        background-position: 0 0;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .mobile-menu-overlay.active .mobile-menu {
        right: 0;
    }
}

/* Show quiz section when active */
.quiz-section.active {
    display: flex !important;
}

/* Hide main content when quiz is active */
body.quiz-active .hero,
body.quiz-active .problem-section,
body.quiz-active .truth-section,
body.quiz-active .quiz-benefits,
body.quiz-active .example-identity,
body.quiz-active .slimbiome-intro,
body.quiz-active .starter-pack-pitch,
body.quiz-active .faq-section,
body.quiz-active .final-cta {
    display: none !important;
}

/* Fallback: if user clicks an anchor to #quizSection, ensure it's visible even if JS fails */
#quizSection:target {
    display: block !important;
}

.quiz-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

.quiz-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.quiz-header p {
    font-size: 1.125rem;
    color: var(--warm-grey);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
    box-shadow: var(--shadow-elegant);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Quiz Content */
.quiz-content {
    margin-top: var(--spacing-lg);
}

.question {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    text-align: center;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.answer-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--pure-white);
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
}

.answer-option:hover {
    border-color: var(--primary-gold);
    background: #faf8f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.answer-option.selected {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.answer-icon {
    font-size: 1.5rem;
    width: 35px;
    text-align: center;
    flex-shrink: 0;
}

.answer-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
}

.question-reflection {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-gold);
    margin-top: var(--spacing-md);
}

.question-reflection p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Parallax Stack Animation */
.question-container {
    position: relative;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.question-container.slide-in-next {
    transform: translateX(100%);
    animation: slideInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.question-container.slide-out-next {
    transform: translateX(-100%);
    animation: slideOutToLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.question-container.slide-in-prev {
    transform: translateX(-100%);
    animation: slideInFromLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.question-container.slide-out-prev {
    transform: translateX(100%);
    animation: slideOutToRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}


.quiz-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.nav-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--accent-cream);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-dark));
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--soft-grey);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
}

.quiz-content {
    min-height: 500px;
}

.question-container {
    margin-bottom: var(--spacing-xl);
}

.question {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.answers {
    display: grid;
    gap: var(--spacing-sm);
}

.answer-option {
    background: var(--light-cream);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    min-height: 50px;
}

.answer-option:hover {
    border-color: var(--primary-gold);
    background: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.answer-option.selected {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.answer-icon {
    font-size: 1.5rem;
    width: 35px;
    text-align: center;
    flex-shrink: 0;
}

.answer-text {
    flex: 1;
    font-weight: 500;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.4;
}

.question-reflection {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(139, 157, 131, 0.1), rgba(139, 157, 131, 0.05));
    border-radius: var(--radius-md);
    color: var(--accent-sage);
    font-style: italic;
    font-size: 0.938rem;
    border-left: 3px solid var(--accent-sage);
    display: none;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-button {
    background: var(--light-cream);
    border: 2px solid var(--accent-cream);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: var(--charcoal);
    min-height: 44px;
}

.nav-button:hover:not(:disabled) {
    background: var(--primary-gold);
    color: var(--pure-white);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.next-button {
    margin-left: auto;
}

/* ================================
   RESULTS SECTION
   ================================ */

.results-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
    min-height: 80vh;
}

.results-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-sage);
    margin-bottom: var(--spacing-md);
}

.results-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.results-header p {
    font-size: 1.25rem;
    color: var(--warm-grey);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.profile-card,
.offer-card,
.slimbiome-card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-elegant);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.slimbiome-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid var(--accent-gold);
}

.slimbiome-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.slimbiome-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    border-radius: 50%;
    color: white;
}

.slimbiome-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
    letter-spacing: -0.01em;
}

.slimbiome-description {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.slimbiome-benefits h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.slimbiome-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slimbiome-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    font-size: 0.95rem;
    color: var(--warm-grey);
}

.slimbiome-benefits i {
    color: var(--accent-gold);
    font-size: 0.875rem;
}

.exclusive-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4af37 100%);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.exclusive-badge i {
    color: white;
    font-size: 1rem;
}

.profile-card h3,
.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.offer-header.cta-clickable h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--charcoal);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-md);
    width: 100%;
}

.offer-header.cta-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #D4AF37, #B8860B, #D4AF37, #F4E4BC, #D4AF37);
    background-size: 300% 300%;
    animation: continuousShine 3s ease-in-out infinite;
    text-align: center;
    justify-content: center;
}

.offer-header.cta-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}


@keyframes continuousShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: var(--pure-white);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
    min-width: 120px;
}

.discount-percentage {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.discount-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.offer-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.offer-benefits {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
}

.offer-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--warm-grey);
    font-weight: 500;
    font-size: 1rem;
}

.offer-benefits i {
    color: var(--accent-sage);
    font-size: 1rem;
}

.profile-results {
    display: grid;
    gap: var(--spacing-md);
}

.result-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--light-cream);
    border-radius: var(--radius-md);
}

.result-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    color: var(--primary-gold);
}

/* ================================
   EMAIL CAPTURE
   ================================ */

.email-capture {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: var(--pure-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elegant);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.email-capture h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.email-capture p {
    font-size: 1.125rem;
    color: var(--warm-grey);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.form-group {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group input {
    flex: 1;
    padding: 1.125rem var(--spacing-lg);
    border: 2px solid var(--accent-cream);
    border-radius: var(--radius-md);
    background: var(--light-cream);
    color: var(--charcoal);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--pure-white);
}

.form-group input::placeholder {
    color: var(--soft-grey);
}

.submit-button {
    background: linear-gradient(45deg, #D4AF37, #B8860B, #D4AF37, #F4E4BC, #D4AF37);
    background-size: 300% 300%;
    animation: continuousShine 3s ease-in-out infinite;
    color: var(--pure-white);
    border: none;
    padding: 1.125rem var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.privacy-note {
    font-size: 0.75rem;
    color: var(--soft-grey);
    text-align: center;
    line-height: 1.3;
}

.privacy-note i {
    color: var(--accent-sage);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

/* ================================
   THANK YOU SECTION
   ================================ */

.thank-you-section {
    padding: 3rem 0;
    background: var(--pure-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-animation {
    font-size: 5rem;
    color: var(--accent-sage);
    margin-bottom: var(--spacing-lg);
}

.thank-you-container h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.thank-you-container p {
    font-size: 1.25rem;
    color: var(--warm-grey);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.next-steps {
    display: grid;
    gap: var(--spacing-lg);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: left;
    background: var(--light-cream);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: var(--pure-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
}

.step-content p {
    color: var(--warm-grey);
    margin: 0;
    font-size: 1rem;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-lg);
    }
    
    .pack-card {
        max-width: 100%;
        margin: 0 var(--spacing-md);
    }
    
    .quiz-container {
        max-width: 100%;
        margin: 0 var(--spacing-md);
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero .container {
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .right-column {
        gap: var(--spacing-md);
    }
    
    .slimbiome-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .slimbiome-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .pack-card {
        padding: var(--spacing-xl);
    }
    
    .pack-card h2 {
        font-size: 2.25rem;
    }
    
    .timer-display {
        gap: var(--spacing-xs);
    }
    
    .timer-unit {
        min-width: 50px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .timer-number {
        font-size: 1.75rem;
    }
    
    /* Tablet logo adjustments */
    .logo-image {
        height: 50px;
        max-width: 250px;
    }
    
    /* Tablet hero image adjustments */
    .hero-image {
        max-width: 500px;
    }
    
    .hero-main-image {
        object-fit: contain;
        image-rendering: high-quality;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-container {
        padding: 0 var(--spacing-md);
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        font-size: 0.813rem;
        padding: 0.625rem 1.25rem;
    }
    
    .problems-grid,
    .pain-grid,
    .outputs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .tsc-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .tsc-arrow {
        transform: rotate(90deg);
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--spacing-lg);
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .pack-card {
        padding: var(--spacing-lg);
        margin: 0;
    }
    
    .pack-card h2 {
        font-size: 2rem;
    }
    
    .pack-subtitle {
        font-size: 1rem;
    }
    
    .pack-contents {
        gap: var(--spacing-md);
    }
    
    .pack-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .pack-pricing {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .quiz-container {
        padding: var(--spacing-xl);
        margin: 0;
        max-width: 100%;
    }
    
    .quiz-section {
        padding-top: 4rem;
    }
    
    .question {
        font-size: 1.75rem;
    }
    
    .answer-text {
        font-size: 1.125rem;
    }
    
    .quiz-progress {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: stretch;
    }
    
    .nav-buttons {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .next-button {
        margin-left: 0;
    }
    
    .form-group {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .form-group input {
        text-align: center;
        padding: 1rem var(--spacing-lg);
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .email-capture h3 {
        text-align: center;
    }
    
    .email-capture p {
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .timer-display {
        flex-direction: row;
        gap: var(--spacing-xs);
    }
    
    .timer-unit {
        min-width: 80px;
    }
    
    .timer-number {
        font-size: 2.5rem;
    }
    
    .timer-separator {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        padding: var(--spacing-md);
    }
    
    .closing-statement {
        padding: var(--spacing-md);
    }
    
    .closing-statement p {
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding: 3rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .pack-card {
        padding: var(--spacing-md);
        border-radius: var(--radius-lg);
    }
    
    .pack-card h2 {
        font-size: 1.75rem;
    }
    
    .pack-subtitle {
        font-size: 0.95rem;
    }
    
    .pack-item h4 {
        font-size: 1rem;
    }
    
    .pack-item p {
        font-size: 0.875rem;
    }
    
    .pack-pricing {
        gap: var(--spacing-xs);
    }
    
    .old-price {
        font-size: 1.25rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .quiz-container {
        padding: var(--spacing-md);
        border-radius: var(--radius-lg);
        max-width: 100%;
        margin: 0 var(--spacing-sm);
        width: calc(100% - 2rem);
    }
    
    .quiz-section {
        padding-top: 3rem;
        padding-left: 0;
        padding-right: 0;
    }
    
    .quiz-progress {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }
    
    .progress-container {
        width: 100%;
        order: 2;
    }
    
    .quiz-navigation {
        order: 1;
        width: 100%;
        justify-content: space-between;
    }
    
    .question {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-lg);
    }
    
    .answer-option {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
        min-height: 60px;
    }
    
    .answer-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .slimbiome-header h3 {
        font-size: 1.25rem;
    }
    
    .slimbiome-description {
        font-size: 0.9rem;
    }
    
    .question {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .answer-text {
        font-size: 1rem;
    }
    
    .nav-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
        min-height: 50px;
    }
    
    .answer-option {
        padding: var(--spacing-md);
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }
    
    .quiz-progress {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .answer-icon {
        font-size: 1.5rem;
    }
    
    .answer-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .timer-display {
        gap: var(--spacing-xs);
    }
    
    .timer-unit {
        min-width: 60px;
        padding: var(--spacing-xs);
    }
    
    .timer-number {
        font-size: 1.75rem;
    }
    
    .timer-text {
        font-size: 0.7rem;
    }
    
    .timer-separator {
        font-size: 1.75rem;
    }
    
    .countdown-timer {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .timer-label {
        font-size: 0.8rem;
    }
    
    .closing-statement {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .closing-statement p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: 1.125rem;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .privacy-note {
        font-size: 0.7rem;
    }
    
    .privacy-note i {
        font-size: 0.7rem;
        margin-right: 0.1rem;
    }
}

/* iPhone 15 Pro Max and similar large phones */
@media (max-width: 430px) and (min-width: 390px) {
    .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0 1rem;
    }
    
    .hero,
    .problem-section,
    .truth-section,
    .quiz-benefits,
    .example-identity,
    .slimbiome-intro,
    .starter-pack-pitch,
    .faq-section,
    .final-cta,
    .results-section,
    .thank-you-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Quiz section specific for iPhone 15 Pro Max - make it fit properly */
    .quiz-section {
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: auto;
    }
    
    .quiz-container {
        max-width: none;
        margin: 0;
        padding: 1rem 0.5rem;
        min-height: auto;
    }
    
    /* iPhone 15 Pro Max quiz responsiveness */
    .quiz-header h2 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .quiz-header p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .question {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .answer-option {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    
    .answer-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .nav-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* iPhone 15 Pro Max specific sizing - make content fit better */
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* Fix statistics alignment for iPhone 15 Pro Max */
    .hero-stats {
        display: flex;
        justify-content: space-between;
        gap: 0.4rem;
        margin: 1rem 0;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
        display: block;
    }
    
    .stat-text {
        font-size: 0.75rem;
        line-height: 1.1;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .navbar {
        width: 100vw;
        padding: 0 1rem;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .nav-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero,
    .problem-section,
    .truth-section,
    .quiz-benefits,
    .example-identity,
    .slimbiome-intro,
    .starter-pack-pitch,
    .faq-section,
    .final-cta,
    .results-section,
    .thank-you-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .quiz-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .quiz-container {
        max-width: none;
        margin: 0;
        padding: 1rem 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .pack-card h2 {
        font-size: 1.5rem;
    }
    
    .question {
        font-size: 1.125rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .new-price {
        font-size: 2.25rem;
    }
    
    .cta-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
    }
    
    .privacy-note {
        font-size: 0.65rem;
    }
    
    .privacy-note i {
        font-size: 0.65rem;
        margin-right: 0.1rem;
    }
    
    /* Extra small mobile logo */
    .logo-image {
        height: 50px;
        max-width: 250px;
    }
    
    /* Extra small mobile hero image */
    .hero-image {
        max-width: 350px;
    }
    
    .hero-main-image {
        object-fit: contain;
        image-rendering: high-quality;
    }
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Focus styles for accessibility */
button:focus,
input:focus,
.answer-option:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Ensure all interactive elements use Poppins */
button,
input,
textarea,
select,
a,
h1, h2, h3, h4, h5, h6,
p,
span,
div,
li,
ul,
ol {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

/* Elegant font weight adjustments */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

.hero-title {
    font-weight: 600;
}

.section-header h2 {
    font-weight: 500;
}

.pack-card h2 {
    font-weight: 500;
}

.final-cta h2 {
    font-weight: 500;
}

.results-header h2 {
    font-weight: 500;
}

.quiz-header h2 {
    font-weight: 500;
}

.thank-you-container h2 {
    font-weight: 500;
}

/* Reduce heavy weights for better elegance */
.stat-number {
    font-weight: 500;
}

.timer-number {
    font-weight: 600;
}

.timer-separator {
    font-weight: 600;
}

.new-price {
    font-weight: 600;
}

.discount-percentage {
    font-weight: 600;
}

.price-value {
    font-weight: 600;
}

/* Keep some elements with medium weight for emphasis */
.cta-button,
.nav-cta,
.submit-button {
    font-weight: 500;
}

.pack-badge,
.solution-badge {
    font-weight: 500;
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .answer-option {
        min-height: 60px;
        touch-action: manipulation;
    }
    
    .cta-button,
    .nav-cta,
    .submit-button {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Mobile touch effects */
    .nav-cta:active {
        background: linear-gradient(135deg, #B8860B 0%, #9A7209 100%);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }
    
    .quiz-navigation button {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Prevent zoom on input focus */
    input[type="email"] {
        font-size: 16px;
    }
    
    /* Mobile logo adjustments */
    .logo-image {
        height: 50px;
        max-width: 250px;
    }
    
    /* Mobile hero image adjustments */
    .hero-image {
        max-width: 400px;
    }
    
    .hero-main-image {
        object-fit: contain;
        image-rendering: high-quality;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .timer-display {
        flex-direction: row;
        gap: var(--spacing-sm);
    }
    
    .timer-unit {
        min-width: 50px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .timer-separator {
        font-size: 1.5rem;
    }
    
    /* Landscape mobile hero image */
    .hero-image {
        max-width: 300px;
    }
    
    .hero-main-image {
        object-fit: contain;
        image-rendering: high-quality;
    }
}

/* ========================================
   NEW PREMIUM SECTIONS STYLING
   ======================================== */

/* Remove underlines from all action buttons */
.cta-button,
.gold-button,
.nav-cta,
button,
a.cta-button,
a.gold-button {
    text-decoration: none !important;
}

.cta-button:hover,
.gold-button:hover,
.nav-cta:hover,
button:hover,
a.cta-button:hover,
a.gold-button:hover {
    text-decoration: none !important;
}

/* Gold Button Styling */
.gold-button {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: var(--pure-white);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.gold-button:hover {
    text-decoration: none;
    color: var(--pure-white);
}

.gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.gold-button:hover::before {
    left: 100%;
}

.gold-button:hover {
    background: linear-gradient(135deg, #B8860B 0%, #9A7209 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.gold-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23D4AF37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23D4AF37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23D4AF37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    background-size: 100px 100px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.3;
}

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

.problem-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.problem-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.problem-item i {
    font-size: 1.5rem;
    color: #28a745;
}

.problem-item.negative i {
    color: #dc3545;
}

.problem-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.result-highlight {
    text-align: center;
    margin-top: 3rem;
}

.result-highlight h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.stats-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Truth Section */
.truth-section {
    padding: 4rem 0;
    background: var(--pure-white);
    position: relative;
}

.truth-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.truth-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.truth-main h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.truth-main p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.truth-main .highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quiz Benefits Section */
.quiz-benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quiz-benefits-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quiz-benefits h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.benefits-list {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #28a745;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.testimonial {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-gold);
    font-family: serif;
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Example Identity Section */
.example-identity {
    padding: 4rem 0;
    background: var(--pure-white);
}

.example-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.example-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.identity-example {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mistake-section {
    margin-bottom: 2rem;
}

.mistake-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 1rem;
}

.mistake-section p {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

.fixes-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.fix-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fix-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fix-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.fix-number {
    background: var(--primary-gold);
    color: var(--pure-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.fix-item span:last-child {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.example-note {
    margin-bottom: 3rem;
}

.example-note p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* SlimBiome Introduction Section */
.slimbiome-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.slimbiome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.slimbiome-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.slimbiome-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.slimbiome-reveal {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.slimbiome-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #B8860B);
}

.slimbiome-reveal h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.slimbiome-reveal p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #2c3e50 100%);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.3"/><circle cx="80" cy="30" r="0.5" fill="%23D4AF37" opacity="0.2"/><circle cx="40" cy="70" r="0.8" fill="%23D4AF37" opacity="0.25"/><circle cx="90" cy="80" r="0.6" fill="%23D4AF37" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    background-size: 100px 100px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.1;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    line-height: 1.6;
    color: var(--warm-grey);
}

.cta-actions {
    margin: 3rem 0;
}

.cta-actions p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--warm-grey);
    opacity: 1;
}

.final-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.final-buttons .cta-button {
    min-width: 200px;
}

.final-buttons .cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.final-buttons .cta-button.secondary:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
}

/* ========================================
   TIMER AND BADGE STYLING
   ======================================== */

/* Pack Badge - Limited Time Offer */
.pack-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

/* Countdown Timer */
.countdown-timer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--pure-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    min-width: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--pure-white);
    margin-bottom: 0.25rem;
}

.timer-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    color: var(--pure-white);
}

.timer-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pure-white);
    opacity: 0.8;
    margin: 0 0.25rem;
}

/* Timer warning states */
.timer-display.warning {
    animation: pulse 1s infinite;
}

.timer-display.critical {
    animation: pulse 0.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-placeholder {
        grid-template-columns: 1fr;
    }
    
    .truth-content h2 {
        font-size: 2rem;
    }
    
    .truth-main h3 {
        font-size: 2rem;
    }
    
    .quiz-benefits h2,
    .example-content h2,
    .slimbiome-content h2 {
        font-size: 2rem;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .timer-display {
        gap: 0.25rem;
    }
    
    .timer-unit {
        min-width: 50px;
        padding: 0.5rem 0.75rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .timer-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .problem-section,
    .truth-section,
    .quiz-benefits,
    .example-identity,
    .slimbiome-intro,
    .final-cta {
        padding: 2rem 0;
    }
    
    .identity-example,
    .slimbiome-reveal {
        padding: 2rem;
    }
    
    .truth-content h2 {
        font-size: 1.75rem;
    }
    
    .truth-main h3 {
        font-size: 1.75rem;
    }
}