/* ==========================================
   GLOBAL VARIABLES (ClearVue+ Palette)
=========================================== */
:root {
    --brand-teal: #2B6B6A;
    --brand-teal-dark: #1A4D4C;
    --brand-gold: #C29B57;
    --brand-gold-light: #DFBA76;
    --brand-sea-green: #54A090;
    --text-dark: #1A1A1A;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F4F7F6;
    --alert-red: #E53E3E;
}

/* ==========================================
   BASE RESET & TYPOGRAPHY
=========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    /* Adds space at the top so the sticky banner doesn't cover your hero section */
    padding-top: 45px; 
}

/* ==========================================
   STICKY BANNER STYLES
=========================================== */
.sticky-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Subtle gradient using your brand teal */
    background: linear-gradient(135deg, var(--brand-teal-dark) 0%, var(--brand-teal) 100%);
    color: #E2E8F0;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--brand-gold);
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.banner-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Typography Highlights */
.highlight-gold { color: var(--brand-gold); font-weight: 800; }
.highlight-white { color: #FFFFFF; }
.bold-text { font-weight: 700; font-variant-numeric: tabular-nums; }

/* The Call to Action Link */
.banner-cta {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.banner-cta:hover { color: var(--brand-gold-light); }

/* Banner Animations */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--alert-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
    animation: pulse 1.5s infinite;
}

.bounce-arrow {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(229, 62, 62, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
    60% { transform: translateY(-2px); }
}

/* ==========================================
   SECTION 1: HERO STYLES
=========================================== */
.hero-section {
    padding: 40px 20px;
    background-color: var(--bg-white);
    background: radial-gradient(circle at top, var(--bg-light-gray) 0%, var(--bg-white) 100%);
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Headline */
.hero-headline {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 35px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

/* Premium marker-highlight effect */
.highlight-red {
    color: var(--alert-red);
    position: relative;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

.highlight-red::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(194, 155, 87, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(43, 107, 106, 0.25), 0 0 0 1px rgba(0,0,0,0.03); 
    margin-bottom: 25px;
}

.video-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.overlay-content {
    text-align: center;
    color: #FFF;
    padding: 20px;
}

.overlay-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.overlay-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(180deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
    color: #FFF;
    box-shadow: 0 4px 10px rgba(194, 155, 87, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(194, 155, 87, 0.6);
}

.pulse-btn {
    animation: goldPulse 2s infinite;
}

.btn-secondary {
    background: transparent;
    color: #FFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFF;
}

.sound-prompt {
    font-size: 14px;
    color: #E2E8F0;
    opacity: 0.9;
}

/* Live Viewers */
.live-viewers {
    text-align: center;
    font-size: 15px;
    color: #4A5568;
    margin-bottom: 30px;
}

.eye-icon {
    color: var(--alert-red);
    margin-right: 5px;
}

/* As Seen On */
.as-seen-on {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.as-seen-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #718096;
    margin-bottom: 15px;
    font-weight: 600;
}

.logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Mimicking logos with CSS */
.mock-logo {
    color: #8A9BB2;
    font-weight: 800;
    font-size: 22px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mock-logo:hover {
    opacity: 1;
}

.fox-logo { 
    font-family: 'Arial Black', sans-serif; 
    letter-spacing: -1.5px; 
    text-transform: uppercase;
}

.webmd-logo { 
    font-family: 'Inter', sans-serif; 
    font-weight: 900; 
    letter-spacing: -1px; 
    text-transform: lowercase;
}

.abc-logo { 
    font-size: 20px; 
    border-radius: 50%; 
    border: 3px solid #8A9BB2; 
    padding: 4px 8px; 
}

.healthline-logo { 
    font-family: 'Inter', sans-serif; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    color: #8A9BB2; 
}

/* Animations */
@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(194, 155, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(194, 155, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 155, 87, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .banner-container {
        font-size: 12px;
        gap: 8px;
        justify-content: space-between;
    }
    .mobile-hide { display: none; }
    .hero-headline { font-size: 28px; }
    .overlay-title { font-size: 18px; }
    .overlay-buttons { flex-direction: column; width: 80%; margin: 0 auto 20px auto; }
    .logo-bar { gap: 15px; }
    .mock-logo { font-size: 16px; }
    .abc-logo { font-size: 18px; }
}
/* ==========================================
   SECTION 2: URGENCY RIBBON (COMPACT & SLEEK)
=========================================== */
.urgency-ribbon {
    background: linear-gradient(90deg, var(--brand-teal-dark) 0%, var(--brand-teal) 50%, var(--brand-teal-dark) 100%);
    padding: 35px 20px; 
    color: #FFF;
    text-align: center;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.2), inset 0 -5px 15px rgba(0,0,0,0.2);
}

.ribbon-container {
    max-width: 850x; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ribbon-headline {
    font-size: 30px;
    font-weight: 800;
    color: #FFF;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.highlight-gold-text {
    color: var(--brand-gold);
}

.compact-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-gold);
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(194, 155, 87, 0.3);
}

/* Animated Hourglass */
.timer-icon {
    font-size: 20px;
    margin-right: 8px;
    display: inline-block; 
    animation: rockGlass 2s ease-in-out infinite; 
}

.c-num {
    font-variant-numeric: tabular-nums;
    color: #FFF;
}

.c-lbl {
    font-size: 16px;
    font-weight: 600;
    color: #A0AEC0;
    margin-right: 4px;
}

.c-colon {
    animation: blink 1s infinite;
    margin: 0 2px;
    color: var(--brand-gold);
}

.ribbon-subtext {
    font-size: 16px;
    color: #E2E8F0;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Animated Glowing Badge */
.compact-badge {
    background: rgba(229, 62, 62, 0.15);
    border: 1px solid rgba(229, 62, 62, 0.4);
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    animation: urgentGlow 2s infinite;
}

.pulse-dot-red {
    width: 8px;
    height: 8px;
    background-color: var(--alert-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
    animation: pulse 1.5s infinite;
}

/* ==========================================
   SECTION 2 ANIMATION KEYFRAMES
=========================================== */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes rockGlass {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

@keyframes urgentGlow {
    0% { 
        box-shadow: 0 0 5px rgba(229, 62, 62, 0.2); 
        border-color: rgba(229, 62, 62, 0.4); 
    }
    50% { 
        box-shadow: 0 0 20px rgba(229, 62, 62, 0.7), inset 0 0 10px rgba(229, 62, 62, 0.2); 
        border-color: rgba(229, 62, 62, 0.9); 
    }
    100% { 
        box-shadow: 0 0 5px rgba(229, 62, 62, 0.2); 
        border-color: rgba(229, 62, 62, 0.4); 
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .urgency-ribbon { padding: 30px 15px; }
    .ribbon-headline { font-size: 24px; }
    .compact-timer { font-size: 24px; padding: 5px 15px; }
    .ribbon-subtext { font-size: 15px; }
}
/* ==========================================
   SECTION 3: PRICING PACKAGES
=========================================== */
.pricing-section {
    padding: 80px 20px;
    background-color: var(--bg-light-gray); 
}

.pricing-container {
    max-width: 1200px; /* Wider layout for desktop */
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Rating */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-headline {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.highlight-teal { color: var(--brand-teal); }

.rating-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #4A5568;
    flex-wrap: wrap;
}

.stars {
    color: var(--brand-gold);
    font-size: 20px;
    letter-spacing: 2px;
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 35px; /* Increased gap to utilize the wider layout */
    margin-bottom: 40px;
}

/* Individual Card Styling */
.pricing-card {
    background: #FFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    width: 32%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Highlight the Center Card (Best Value) */
.best-value-card {
    border: 3px solid var(--brand-gold);
    transform: scale(1.05); 
    z-index: 2;
    box-shadow: 0 20px 40px rgba(194, 155, 87, 0.2);
}

.best-value-card:hover { transform: scale(1.06); }

/* Badges */
.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gold);
    color: #1A1A1A;
    font-weight: 900;
    font-size: 14px;
    padding: 6px 20px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.secondary-badge {
    background: var(--brand-teal);
    color: #FFF;
}

/* Card Top Section */
.card-top {
    text-align: center;
    padding: 25px 15px 15px 15px;
    border-bottom: 1px solid #EDF2F7;
}

.bv-top {
    background: linear-gradient(180deg, rgba(194, 155, 87, 0.1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 13px 13px 0 0;
}

.package-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.package-qty {
    font-size: 26px;
    font-weight: 900;
    color: var(--brand-teal);
    margin: 5px 0;
}

.package-supply {
    font-size: 14px;
    color: #718096;
    font-weight: 600;
}

/* Images */
.card-image {
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle-img {
    height: 180px; 
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
}

/* Pricing Info */
.card-pricing {
    text-align: center;
    padding: 15px;
    background: #F8FAFC;
}

.price-main {
    font-size: 54px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency { font-size: 24px; margin-top: 5px; }
.per-bottle { font-size: 16px; color: #718096; align-self: flex-end; margin-bottom: 10px; margin-left: 2px; font-weight: 600;}

.total-price { font-weight: 800; color: var(--text-dark); font-size: 16px; margin-top: 5px; }
.retail-price { font-size: 14px; color: #A0AEC0; margin-top: 2px; }
.savings-text { font-size: 16px; font-weight: 800; color: var(--brand-sea-green); margin-top: 5px; }
.highlight-save { color: var(--alert-red); font-size: 18px; }

/* Features List */
.card-features {
    padding: 20px;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    font-size: 14px;
    color: #4A5568;
    line-height: 1.8;
}

.feature-list li { margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px;}
.check { color: var(--brand-sea-green); font-weight: bold; }
.cross { color: #A0AEC0; font-weight: bold; }
.bv-features { font-size: 15px; }

/* Action Buttons */
.card-action {
    padding: 0 20px 30px 20px;
    text-align: center;
}

.btn-buy {
    width: 100%;
    padding: 16px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(180deg, var(--brand-sea-green) 0%, var(--brand-teal) 100%);
    color: #FFF;
    box-shadow: 0 4px 15px rgba(43, 107, 106, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 107, 106, 0.6);
}

.btn-gold {
    background: linear-gradient(180deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
    color: #1A1A1A;
    box-shadow: 0 4px 15px rgba(194, 155, 87, 0.5);
}

.btn-gold:hover { box-shadow: 0 8px 20px rgba(194, 155, 87, 0.7); }

/* Custom Credit Card Image */
.cc-logos {
    height: 24px; 
    width: auto;
    object-fit: contain;
    margin-top: 5px;
}

/* Upgraded Pricing Footer Note */
.pricing-footer-wrapper {
    text-align: center; 
}

.pricing-footer-note {
    display: inline-block;
    font-size: 15px;
    color: #4A5568;
    font-weight: 600;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px dashed #CBD5E0; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.shield-icon {
    margin-right: 5px;
    font-size: 16px;
}

/* Glowing Red Text */
.glow-red-text {
    color: var(--alert-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: textGlowRed 2s infinite;
}

/* Keyframe for Text Glow */
@keyframes textGlowRed {
    0%, 100% { text-shadow: 0 0 4px rgba(229, 62, 62, 0.3); }
    50% { text-shadow: 0 0 15px rgba(229, 62, 62, 0.8), 0 0 4px rgba(229, 62, 62, 0.5); }
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .pricing-card { width: 100%; max-width: 400px; }
    
    .best-value-card { order: -1; transform: scale(1); margin-top: 15px; }
    .best-value-card:hover { transform: scale(1); }
    
    .pricing-headline { font-size: 28px; }
}
/* ==========================================
   SECTION 4: TRUST & GUARANTEE (PREMIUM)
=========================================== */
.trust-guarantee-section {
    padding: 60px 20px 80px 20px;
    background-color: var(--bg-light-gray); /* Gentle background to make white cards pop */
}

.tg-container {
    max-width: 950px; 
    margin: 0 auto;
}

/* Premium Vector Badges (Top) */
.trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px; 
}

.trust-card {
    background: #FFF;
    border: 2px solid var(--brand-teal);
    border-radius: 12px; /* Smoother, more modern curve */
    width: 140px; 
    height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(43, 107, 106, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-gold);
    box-shadow: 0 8px 20px rgba(194, 155, 87, 0.15);
}

.tc-icon {
    width: 42px;  /* Sized perfectly to match the text */
    height: 42px;
    margin-bottom: 12px;
    color: var(--brand-teal); /* Applies your exact brand color */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Specific fix so the 3 stars don't look stretched */
.tc-icon svg { 
    width: 100%; 
    height: 100%; 
}
.tc-icon:first-child svg {
    width: 150%; /* Makes the 3-stars wider */
}

.tc-text {
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

/* Guarantee Box (Bottom) */
.guarantee-box {
    background: #FFF; 
    border: 3px solid var(--brand-gold);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px dashed var(--brand-gold-light);
    border-radius: 8px;
    pointer-events: none; 
}

.guarantee-badge-container { flex-shrink: 0; z-index: 2; }

.css-seal {
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(194, 155, 87, 0.4);
}

.seal-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--brand-teal-dark) 0%, var(--brand-teal) 100%);
    border-radius: 50%; border: 2px dashed #FFF;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; color: #FFF; box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.seal-top { font-size: 16px; font-weight: 800; letter-spacing: 2px; color: var(--brand-gold-light); margin-bottom: -5px; }
.seal-mid { font-size: 48px; font-weight: 900; line-height: 1; text-shadow: 0 2px 5px rgba(0,0,0,0.4); }
.seal-bot { font-size: 12px; font-weight: 800; letter-spacing: 1px; margin-top: 2px; }

.guarantee-content { z-index: 2; }
.guarantee-headline { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; letter-spacing: -0.5px; }
.guarantee-text { font-size: 17px; color: #4A5568; line-height: 1.7; margin-bottom: 15px; }
.strong-finish { font-weight: 800; color: var(--brand-teal-dark); font-size: 19px; margin-bottom: 0; }

@media (max-width: 768px) {
    .guarantee-box { flex-direction: column; text-align: center; padding: 30px 20px; gap: 25px; }
    .css-seal { width: 140px; height: 140px; }
    .trust-badges-grid { gap: 10px; }
    .trust-card { width: 105px; height: 100px; }
    .tc-icon { width: 32px; height: 32px; margin-bottom: 8px;}
}
/* ==========================================
   SECTION 5: TESTIMONIALS (WIDER & BIGGER)
=========================================== */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--bg-light-gray);
    border-top: 1px solid #E2E8F0; 
}

.t-container {
    max-width: 1050px; /* Increased from 900px to make the whole section wider */
    margin: 0 auto;
}

/* Header */
.testimonials-header {
    text-align: center;
}

.t-headline {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.t-subheadline {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-teal);
}

/* Photo Collage Row (Polaroid Style - Enlarged) */
.t-photo-collage {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 55px;
}

.collage-frame {
    width: 170px;  /* Increased from 140px */
    height: 170px; /* Increased from 140px */
    background: #FFF;
    padding: 8px 8px 25px 8px; /* Slightly thicker border for bigger images */
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid #E2E8F0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0.4s ease;
    position: relative;
    cursor: pointer;
}

.collage-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #EDF2F7;
}

/* Tilts and overlapping adjusted for larger sizes */
.img-1 { transform: rotate(-8deg); z-index: 1; }
.img-2 { transform: rotate(5deg); z-index: 2; margin-left: -35px; } /* Increased overlap */
.img-3 { transform: rotate(-6deg); z-index: 3; margin-left: -35px; } /* Increased overlap */
.img-4 { transform: rotate(9deg); z-index: 4; margin-left: -35px; } /* Increased overlap */

/* Interactive Hover State */
.collage-frame:hover {
    transform: rotate(0deg) scale(1.15) translateY(-10px);
    z-index: 10;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* Reviews Wrapper */
.reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px; /* Slightly increased gap for the wider layout */
}

/* Individual Review Card */
.review-card {
    background: #FFF;
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-left: 6px solid var(--brand-teal);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 107, 106, 0.12);
}

/* Text Content (Left Side) */
.review-content {
    flex: 1;
}

.review-stars {
    color: var(--brand-gold);
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.review-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-teal-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.review-body {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

/* Author & Verification Footer */
.review-author {
    font-size: 14px;
    color: #718096;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.review-author strong {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 15px;
}

.t-divider { color: #CBD5E0; }

.verified-badge {
    color: var(--brand-sea-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge svg { width: 14px; height: 14px; }

/* Image Wrapper (Right Side) */
.review-image-wrapper {
    position: relative;
    width: 170px; /* Slightly increased to match the polaroids */
    height: 170px;
    flex-shrink: 0;
}

.review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 4px solid #FFF;
}

/* Premium overlapping quote icon */
.quote-icon {
    position: absolute;
    top: -15px;
    left: -15px;
    background: #FFF;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--alert-red); 
    padding: 10px;
}

.quote-icon svg { width: 100%; height: 100%; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .t-headline { font-size: 30px; }
    .t-subheadline { font-size: 18px; }
    
    /* Mobile Collage */
    .t-photo-collage { margin-top: 25px; margin-bottom: 40px; }
    .collage-frame { width: 100px; height: 100px; padding: 4px 4px 14px 4px; }
    .img-2, .img-3, .img-4 { margin-left: -20px; }
    
    /* Mobile Review Cards */
    .review-card {
        flex-direction: column-reverse; 
        padding: 30px 20px;
        gap: 25px;
        text-align: center;
        border-left: none;
        border-top: 6px solid var(--brand-teal);
    }
    .review-author { justify-content: center; }
    .review-image-wrapper { width: 130px; height: 130px; }
    .quote-icon { top: -10px; left: -10px; width: 36px; height: 36px; padding: 8px; }
}
/* ==========================================
   SECTION 6: FREE BONUSES
=========================================== */
.bonuses-section {
    /* Rich, dark teal background to make the bonuses pop */
    background: linear-gradient(135deg, var(--brand-teal-dark) 0%, #1a3a3a 100%);
    padding: 80px 20px;
    color: #FFF;
}

.bonuses-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.bonuses-header {
    text-align: center;
    margin-bottom: 60px;
}

.b-headline {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.b-subheadline {
    font-size: 20px;
    font-weight: 600;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Grid Layout */
.bonuses-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    position: relative;
}

/* The subtle vertical divider line between the two columns */
.bonuses-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.bonus-card {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2; /* Keeps it above the divider line */
}

/* Image Wrapper & Badges */
.bonus-img-wrapper {
    position: relative;
    margin-bottom: 35px;
    /* Soft glow behind the books */
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.05);
}

.bonus-img {
    width: 260px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-img {
    transform: translateY(-10px) scale(1.03);
}

/* Custom CSS "Sticker" Badges */
.sticker-free {
    position: absolute;
    top: -10px;
    right: -30px;
    background: var(--brand-gold);
    color: #111;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    transform: rotate(12deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 3px solid #FFF;
    z-index: 5;
    animation: gentleFloat 3s ease-in-out infinite;
}

.sticker-value {
    position: absolute;
    bottom: 20px;
    left: -25px;
    background: var(--alert-red);
    color: #FFF;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    transform: rotate(-10deg);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    border: 2px solid #FFF;
    z-index: 5;
}

.sticker-value strong {
    font-size: 20px;
    font-weight: 900;
}

/* Hover Animation for Free Sticker */
@keyframes gentleFloat {
    0%, 100% { transform: rotate(12deg) translateY(0); }
    50% { transform: rotate(12deg) translateY(-5px); }
}

/* Text Content */
.bonus-title {
    font-size: 24px;
    font-weight: 800;
    color: #FFF;
    line-height: 1.3;
    margin-bottom: 12px;
}

.bonus-price-text {
    font-size: 18px;
    font-weight: 700;
    color: #A0AEC0;
    margin-bottom: 20px;
}

.free-text-gold {
    color: var(--brand-gold);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}

.bonus-desc {
    font-size: 16px;
    color: #E2E8F0;
    line-height: 1.7;
}

/* Footer Box */
.bonus-footer-note {
    text-align: center;
    margin: 60px auto 0 auto;
    font-size: 19px;
    font-weight: 800;
    color: #FFF;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .bonuses-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    
    /* Hides the vertical line on mobile */
    .bonuses-grid::after { display: none; }
    
    .b-headline { font-size: 32px; }
    .b-subheadline { font-size: 18px; padding: 0 10px; }
    
    .sticker-free { right: -10px; width: 85px; height: 85px; font-size: 14px; }
    .sticker-value { left: -10px; }
    
    .bonus-title { font-size: 22px; }
    .bonus-footer-note { font-size: 16px; padding: 15px; }
}
/* ==========================================
   SECTION 8: WHY 6 BOTTLES (UPDATED DISPLAY)
=========================================== */
.upsell-section {
    padding: 90px 20px;
    /* Rich, angled gradient using brand colors */
    background: linear-gradient(115deg, var(--brand-teal-dark) 0%, var(--brand-teal) 50%, var(--brand-teal-dark) 100%);
    color: #FFF;
}

.upsell-container {
    max-width: 1100px;
    margin: 0 auto;
}

.upsell-split {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; /* Important for mobile stacking */
}

/* Visual Side */
.upsell-visual {
    flex: 1.1;
    display: flex;
    justify-content: center;
    min-width: 300px;
    position: relative;
}

.premium-bottle-display {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glowing backdrop spotlight */
.spotlight-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(238,206,140,0.25) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: spotlightPulse 4s infinite ease-in-out;
}

/* Your New Image - Cleaned Up */
.upsell-img-new {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the whole image is visible */
    z-index: 2;
    /* Subtle premium shadow, refined from the previous version */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}

/* Interactive Hover: Slight rise and scale */
.premium-bottle-display:hover .upsell-img-new {
    transform: translateY(-10px) scale(1.02);
}

@keyframes spotlightPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Content Side */
.upsell-content {
    flex: 1;
    min-width: 320px;
    z-index: 3;
}

.upsell-headline {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.upsell-checklist {
    list-style: none;
    font-size: 18px;
    line-height: 2;
    color: #F7FAFC;
    margin-bottom: 35px;
}

.upsell-checklist li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gold-check {
    color: var(--brand-gold);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.2;
}

.upsell-footer-note {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-left: 6px solid var(--brand-gold);
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Mobile Responsiveness for Section 8 */
@media (max-width: 900px) {
    .upsell-split { flex-direction: column; text-align: center; gap: 40px;}
    .upsell-headline { font-size: 32px; }
    .upsell-checklist { display: inline-block; text-align: left; font-size: 16px;}
    
    .premium-bottle-display { height: 350px; width: 350px; }
    .upsell-img-new { width: 90%; }
    
    .upsell-footer-note { font-size: 16px; width: 100%; text-align: left; }
}
/* ==========================================
   SECTION 9: PRODUCT DIFFERENTIATION (SCIENCE)
=========================================== */
.differentiation-section {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

.diff-container {
    max-width: 1000px; 
    margin: 0 auto;
    text-align: center;
}

.diff-headline {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.diff-intro-text {
    font-size: 19px;
    color: #4A5568;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.diff-intro-text strong {
    color: var(--brand-teal);
    font-weight: 900;
}

/* Premium Vector Icons Grid */
.diff-cards-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.diff-card {
    background: #FFF;
    border-radius: 16px;
    padding: 35px 30px;
    width: calc(50% - 15px);
    min-width: 300px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(43, 107, 106, 0.1);
    border-color: rgba(43, 107, 106, 0.3);
}

/* SVGs replacing the emojis */
.card-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-teal);
    margin-bottom: 10px;
    display: inline-block;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--brand-teal-dark);
}

.card-text {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .differentiation-section { padding: 60px 15px;}
    .diff-headline { font-size: 30px; }
    .diff-intro-text { font-size: 17px; margin-bottom: 40px;}
    .diff-cards-grid { flex-direction: column; align-items: center;}
    .diff-card { width: 100%; max-width: 450px; text-align: center; align-items: center; }
}
/* ==========================================
   SECTION 10: URGENCY REMINDER BANNER
=========================================== */
.reminder-banner {
    background: #FFFBEB; /* Soft alert gold/yellow */
    border-top: 4px solid var(--brand-gold);
    border-bottom: 4px solid var(--brand-gold);
    padding: 40px 20px;
    margin-top: 20px;
}

.text-center { text-align: center; }

.reminder-headline {
    color: var(--alert-red);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.reminder-text {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.reminder-urgency {
    font-size: 18px;
    color: #4A5568;
    font-style: italic;
    font-weight: 600;
}

/* ==========================================
   SECTION 10: URGENCY REMINDER BANNER (UPGRADED)
=========================================== */
.reminder-banner {
    /* Brand Teal Gradient */
    background: linear-gradient(135deg, var(--brand-teal-dark) 0%, var(--brand-teal) 100%);
    border-top: 4px solid var(--brand-gold);
    border-bottom: 4px solid var(--brand-gold);
    padding: 50px 20px;
    margin-top: 20px;
}

.reminder-container {
    max-width: 1100px; /* Widened to ensure the text fits on one line */
    margin: 0 auto;
}

.text-center { text-align: center; }

/* Glowing Badge Styling */
.reminder-badge-wrapper {
    margin-bottom: 25px;
}

.reminder-badge {
    background: var(--alert-red);
    color: #FFF;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 35px;
    border-radius: 50px;
    border: 2px solid var(--brand-gold);
    display: inline-block;
    /* CSS Glow Animation */
    box-shadow: 0 0 20px rgba(229, 62, 62, 0.6);
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 15px rgba(229, 62, 62, 0.5), 0 0 0 0 rgba(194, 155, 87, 0.4); }
    50% { box-shadow: 0 0 25px rgba(229, 62, 62, 0.9), 0 0 20px 5px rgba(194, 155, 87, 0.7); }
    100% { box-shadow: 0 0 15px rgba(229, 62, 62, 0.5), 0 0 0 0 rgba(194, 155, 87, 0); }
}

.reminder-text {
    font-size: 22px;
    color: #FFF; /* Changed to white for the dark background */
    font-weight: 700;
    margin-bottom: 12px;
    white-space: nowrap; /* FORCES THE TEXT TO STAY ON ONE SINGLE LINE */
}

.reminder-urgency {
    font-size: 18px;
    color: var(--brand-gold-light); /* Gold text pops beautifully against teal */
    font-style: italic;
    font-weight: 600;
}


/* ==========================================
   SECTION 11: FREQUENTLY ASKED QUESTIONS
=========================================== */
.faq-section {
    padding: 90px 20px;
    background-color: var(--bg-light-gray);
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Side: Visuals & CTA */
.faq-left {
    flex: 0 0 400px; 
    position: sticky;
    top: 40px; 
}

.faq-main-headline {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 20px; /* Tightened slightly */
}

.faq-image-wrapper { 
    margin-bottom: 15px; /* REDUCED FROM 40px to pull the button up! */
}

.faq-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    animation: gentleFloat 4s ease-in-out infinite;
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
}

/* Right Side: Accordion */
.faq-right {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #FFF;
    border: 2px solid #EDF2F7;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--brand-teal);
    box-shadow: 0 10px 25px rgba(43, 107, 106, 0.08);
}

.faq-item summary {
    padding: 22px 25px;
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { color: var(--brand-teal); }

.faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 400;
    color: var(--brand-teal);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px 25px;
    font-size: 17px;
    color: #4A5568;
    line-height: 1.7;
    animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .reminder-text {
        white-space: normal; /* Allows wrapping on phones so it doesn't break the screen */
        font-size: 18px;
    }
    .reminder-badge { font-size: 22px; padding: 8px 20px; }
    .reminder-urgency { font-size: 16px; }

    .faq-container { flex-direction: column; align-items: center; gap: 40px; }
    .faq-left { flex: none; width: 100%; max-width: 450px; position: static; text-align: center; }
    .faq-main-headline { font-size: 34px; br { display: none; } }
    .faq-img { max-width: 300px; margin: 0 auto; display: block; }
    .faq-right { width: 100%; }
    .faq-item summary { font-size: 17px; padding: 18px 20px; }
    .faq-answer { font-size: 16px; padding: 0 20px 20px 20px; }
}
/* ==========================================
   SECTION 12: SCIENTIFIC REFERENCES
=========================================== */
.references-section {
    padding: 70px 20px;
    background-color: #F8FAFC; /* Soft, clinical light blue/gray */
    border-top: 1px solid #E2E8F0;
}

.ref-container {
    max-width: 1200px; /* Wide container for the two columns */
    margin: 0 auto;
}

.ref-headline {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* CSS Drawn Logos Row */
.ref-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 20px;
    filter: grayscale(100%) opacity(0.7); /* Mutes the colors to look like a subtle footer */
    transition: all 0.3s ease;
}

.ref-logos:hover {
    filter: grayscale(0%) opacity(1); /* Brings color back on hover */
}

.css-logo {
    font-size: 24px;
    line-height: 1;
    user-select: none;
}

.css-logo.pubmed { font-family: Arial, sans-serif; color: #113f8c; }
.css-logo.wiley { font-family: "Times New Roman", Times, serif; font-weight: bold; letter-spacing: 2px; color: #000; }
.css-logo.jnc { font-family: Arial, sans-serif; font-weight: 900; letter-spacing: 1px; color: #231f20; }
.css-logo.sciencedirect { font-family: Arial, sans-serif; font-weight: 700; color: #000; letter-spacing: -0.5px; }
.css-logo.sciencedirect .sd-orange { color: #f26f21; }
.css-logo.mdpi { font-family: Arial, sans-serif; font-weight: 800; border: 2px solid #000; padding: 2px 6px; letter-spacing: 1px; }

/* Disclaimer */
.ref-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

/* Two-Column Reference List */
.ref-list {
    column-count: 2; /* Automatically splits into two columns! */
    column-gap: 50px;
    padding-left: 20px;
    font-size: 10px;
    line-height: 1.6;
    color: #4A5568;
}

.ref-list li {
    margin-bottom: 18px;
    break-inside: avoid; /* Prevents a single reference from splitting across columns */
}

.ref-list a {
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: color 0.2s ease;
}

.ref-list a:hover {
    text-decoration: underline;
    color: var(--brand-teal-dark);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .ref-list {
        column-count: 1; /* Stacks to a single column on phones */
    }
    .ref-logos {
        gap: 20px;
    }
    .css-logo {
        font-size: 18px;
    }
}
/* ==========================================
   SECTION 13: FOOTER
=========================================== */
.site-footer {
    background-color: #1A202C; /* Deep, professional slate gray */
    color: #A0AEC0;
    padding: 70px 20px 40px 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif; /* Clean system font for legal text */
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer Links Row */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-gold);
    text-decoration: underline;
}

.f-divider {
    color: #4A5568;
    font-size: 14px;
}

/* Security Badges Row */
.footer-security {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2D3748;
    border: 1px solid #4A5568;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: left;
    color: #E2E8F0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.security-badge strong {
    font-size: 14px;
    font-weight: 900;
    color: #FFF;
}

.security-badge svg {
    width: 28px;
    height: 28px;
}

/* Legal Disclaimer Text */
.footer-disclaimer {
    font-size: 12px;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 30px;
    text-align: justify;
    text-align-last: center; /* Keeps the last line centered */
    padding: 0 15px;
}

/* Copyright Line */
.footer-copyright {
    font-size: 14px;
    color: #CBD5E0;
    font-weight: 500;
    border-top: 1px solid #2D3748;
    padding-top: 30px;
}

.footer-copyright p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-links {
        gap: 10px;
        flex-direction: column;
    }
    .footer-links .f-divider {
        display: none; /* Hide dividers on mobile for a clean stacked list */
    }
    .footer-links a {
        padding: 8px 0;
    }
    
    .footer-security {
        gap: 15px;
    }
    .security-badge {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
    
    .footer-disclaimer {
        text-align: center;
        font-size: 11px;
    }
    
    .footer-copyright p {
        flex-direction: column;
        gap: 8px;
    }
    .footer-copyright .f-divider {
        display: none;
    }
}