/* === RESET & BASE === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;scroll-padding-top:80px}
body{font-family:'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;line-height:1.6;color:#333;background:#fff;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:#204D98;text-decoration:none;transition:color .2s}
a:hover{color:#163a73}
ul,ol{list-style:none}
h1,h2,h3,h4{line-height:1.25;color:#204D98}
h1{font-size:2rem}
h2{font-size:1.65rem}
h3{font-size:1.3rem}
p{margin-bottom:1rem}

/* === HEADER === */
.site-header{position:sticky;top:0;z-index:1000;background:#204D98;box-shadow:0 2px 8px rgba(0,0,0,.15)}
.header-container{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:.6rem 1rem}
.header-logo img{height:36px;width:auto}
.header-nav .nav-list{display:flex;align-items:center;gap:.2rem}
.header-nav .nav-list li a{color:#fff;font-size:.9rem;padding:.45rem .7rem;border-radius:4px;transition:background .2s,color .2s;white-space:nowrap}
.header-nav .nav-list li a:hover,.header-nav .nav-list li a:focus{background:rgba(255,255,255,.15)}
.nav-cta{background:#FFCE12!important;color:#1a1a1a!important;font-weight:700;border-radius:6px!important;padding:.5rem 1.1rem!important}
.nav-cta:hover{background:#e6b800!important}
.header-cta-mobile{display:none;background:#FFCE12;color:#1a1a1a;font-weight:700;padding:.5rem 1rem;border-radius:6px;font-size:.85rem;white-space:nowrap}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem;flex-direction:column;gap:4px}
.hamburger-line{display:block;width:24px;height:3px;background:#fff;border-radius:2px;transition:transform .3s,opacity .3s}

@media(max-width:900px){
    .header-nav .nav-list{display:none;position:absolute;top:100%;left:0;right:0;background:#204D98;flex-direction:column;padding:1rem;box-shadow:0 4px 12px rgba(0,0,0,.2)}
    .header-nav .nav-list.active{display:flex}
    .header-nav .nav-list li a{padding:.7rem 1rem;font-size:1rem}
    .menu-toggle{display:flex}
    .header-cta-mobile{display:inline-block}
    .nav-cta{display:none!important}
}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* === HERO === */
.hero{background:linear-gradient(135deg,#204D98 0%,#163a73 100%);color:#fff;padding:3rem 1rem 2.5rem;overflow:hidden}
.hero-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center}
.hero-content{order:1}
.hero-image{order:2;text-align:center}
.hero-image img{margin:0 auto;max-height:420px;width:auto;border-radius:12px}
.hero h1{font-size:2.2rem;color:#fff;margin-bottom:.8rem}
.hero h1 span{color:#FFCE12}
.hero-subtitle{font-size:1.15rem;margin-bottom:1.2rem;opacity:.95;line-height:1.5}
.hero-price{font-size:1.5rem;font-weight:700;color:#FFCE12;margin-bottom:1rem}
.hero-delivery{color:#fff}
.hero-social-proof{display:flex;align-items:center;gap:.6rem;margin-bottom:1.2rem;font-size:.95rem}
.hero-stars{color:#FFCE12;font-size:1.2rem}

@media(max-width:768px){
    .hero-container{grid-template-columns:1fr;text-align:center}
    .hero-content{order:2}
    .hero-image{order:1}
    .hero-image img{max-height:280px}
    .hero h1{font-size:1.6rem}
}

/* === CTA BUTTONS === */
.btn-cta{display:inline-block;background:#FFCE12;color:#1a1a1a;font-size:1.15rem;font-weight:700;padding:.9rem 2.2rem;border-radius:8px;border:none;cursor:pointer;transition:background .2s,transform .15s;text-align:center;min-width:220px;box-shadow:0 4px 14px rgba(255,206,18,.35)}
.btn-cta:hover{background:#e6b800;transform:translateY(-2px);color:#1a1a1a}
.btn-cta:active{transform:translateY(0)}
.btn-cta:focus-visible{outline:3px solid #204D98;outline-offset:3px}
.cta-subtext{font-size:.85rem;color:#666;margin-top:.4rem;text-align:center}
.hero .cta-subtext{color:#fff}
.section-cta{text-align:center;padding:1.5rem 0}

/* === SECTIONS === */
.section{padding:3rem 1rem}
.section-container{max-width:1100px;margin:0 auto}
.section-title{text-align:center;margin-bottom:2rem;font-size:1.8rem}
.section-alt{background:#f0f4fa}

/* === BENEFITS === */
.benefits-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.benefit-card{background:#fff;border-radius:12px;padding:1.8rem;box-shadow:0 2px 12px rgba(32,77,152,.08);border-left:4px solid #204D98;transition:box-shadow .2s}
.benefit-card:hover{box-shadow:0 4px 20px rgba(32,77,152,.15)}
.benefit-card h3{margin-bottom:.6rem;font-size:1.15rem}
.benefit-card p{margin-bottom:0;font-size:.95rem;color:#555}

/* === INGREDIENTS === */
.ingredients-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem}
.ingredient-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 2px 12px rgba(32,77,152,.08);text-align:center;transition:transform .2s}
.ingredient-card:hover{transform:translateY(-4px)}
.ingredient-card img{width:100%;height:200px;object-fit:cover}
.ingredient-card-body{padding:1.2rem}
.ingredient-card h3{margin-bottom:.5rem;color:#204D98}
.ingredient-card p{font-size:.9rem;color:#555;margin-bottom:.5rem}
.ingredient-study{font-size:.8rem}

/* === REVIEWS === */
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.review-card{background:#fff;border-radius:12px;padding:1.5rem;box-shadow:0 2px 12px rgba(32,77,152,.08)}
.review-header{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}
.review-avatar{width:56px;height:56px;border-radius:50%;object-fit:cover;flex-shrink:0}
.review-meta h4{margin-bottom:.15rem;color:#204D98;font-size:1rem}
.review-meta .review-location{font-size:.85rem;color:#888}
.review-stars{color:#FFCE12;font-size:1rem;margin-bottom:.5rem}
.review-text{font-size:.95rem;color:#555;font-style:italic}
.aggregate-rating{text-align:center;margin-bottom:2rem;padding:1rem;background:#204D98;color:#fff;border-radius:10px}
.aggregate-rating .big-stars{font-size:1.8rem;color:#FFCE12}
.aggregate-rating .rating-text{font-size:1.05rem;margin-top:.3rem}

/* === HOW TO ORDER === */
.steps-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;counter-reset:step}
.step-card{text-align:center;padding:1.5rem;background:#fff;border-radius:12px;box-shadow:0 2px 12px rgba(32,77,152,.08);position:relative}
.step-number{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:#204D98;color:#fff;font-size:1.3rem;font-weight:700;margin-bottom:.8rem}
.step-card h3{margin-bottom:.5rem;font-size:1.05rem}
.step-card p{font-size:.9rem;color:#555;margin-bottom:0}

/* === ORDER FORM === */
.order-section{padding:3rem 1rem;background:#f0f4fa}
.order-wrapper{max-width:600px;margin:0 auto}
.order-intro{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;justify-content:center;flex-wrap:wrap}
.order-intro img{width:80px;height:auto;flex-shrink:0;border-radius:8px}
.order-intro p{font-size:.95rem;color:#555;max-width:440px}
.order-form-box{background:#fff;border-radius:14px;padding:2rem;box-shadow:0 4px 24px rgba(32,77,152,.1)}
.form-group{margin-bottom:1.2rem}
.form-group label{display:block;font-weight:600;margin-bottom:.35rem;color:#204D98;font-size:.95rem}
.form-group input{width:100%;padding:.75rem 1rem;border:2px solid #dde3ee;border-radius:8px;font-size:1rem;transition:border-color .2s;background:#fafbfd}
.form-group input:focus{border-color:#204D98;outline:none;box-shadow:0 0 0 3px rgba(32,77,152,.12)}
.form-group .field-error{color:#d32f2f;font-size:.82rem;margin-top:.25rem;display:none}
.form-group.has-error input{border-color:#d32f2f}
.form-group.has-error .field-error{display:block}
.form-submit-btn{width:100%;padding:1rem;font-size:1.15rem;font-weight:700;background:#FFCE12;color:#1a1a1a;border:none;border-radius:8px;cursor:pointer;transition:background .2s;position:relative;min-height:52px}
.form-submit-btn:hover{background:#e6b800}
.form-submit-btn:disabled{opacity:.7;cursor:wait}
.form-submit-btn .spinner{display:none;width:22px;height:22px;border:3px solid rgba(0,0,0,.2);border-top-color:#1a1a1a;border-radius:50%;animation:spin .7s linear infinite;position:absolute;right:1rem;top:50%;margin-top:-11px}
.form-submit-btn.loading .spinner{display:block}
.form-submit-btn.loading .btn-text{opacity:.6}
@keyframes spin{to{transform:rotate(360deg)}}
.form-disclaimer{font-size:.78rem;color:#888;text-align:center;margin-top:1rem;line-height:1.5}
.form-disclaimer a{color:#204D98}
.trust-badges{display:flex;justify-content:center;gap:1.5rem;margin-top:1.2rem;flex-wrap:wrap}
.trust-badge{display:flex;align-items:center;gap:.4rem;font-size:.85rem;color:#555;font-weight:600}
.trust-badge svg{width:20px;height:20px;fill:#204D98;flex-shrink:0}

/* === WHERE TO BUY === */
.where-to-buy-content{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center}
.where-to-buy-content img{border-radius:12px}
@media(max-width:768px){.where-to-buy-content{grid-template-columns:1fr}}

/* === HOW TO USE === */
.usage-content{display:grid;grid-template-columns:auto 1fr;gap:2rem;align-items:center;max-width:800px;margin:0 auto}
.usage-content img{border-radius:12px;max-width:200px}
@media(max-width:600px){
    .usage-content{grid-template-columns:1fr;text-align:center}
    .usage-content img{margin:0 auto}
}

/* === FAQ === */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{border-bottom:1px solid #dde3ee;overflow:hidden}
.faq-question{width:100%;background:none;border:none;padding:1.2rem 2.5rem 1.2rem 0;font-size:1.05rem;font-weight:600;color:#204D98;text-align:left;cursor:pointer;position:relative;font-family:inherit;line-height:1.4}
.faq-question::after{content:'+';position:absolute;right:0;top:50%;transform:translateY(-50%);font-size:1.5rem;font-weight:300;transition:transform .3s}
.faq-item.open .faq-question::after{transform:translateY(-50%) rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease;padding:0 0 0 0}
.faq-item.open .faq-answer{padding:0 0 1.2rem 0}
.faq-answer p{font-size:.95rem;color:#555;margin-bottom:.5rem}

/* === WARNINGS === */
.warnings-section{background:#fff3e0;border-radius:12px;padding:1.5rem;max-width:800px;margin:0 auto}
.warnings-section h3{color:#e65100;margin-bottom:.8rem}
.warnings-section ul{list-style:disc;padding-left:1.5rem}
.warnings-section li{margin-bottom:.5rem;font-size:.95rem;color:#555}

/* === FOOTER === */
.site-footer{background:#1a2a4a;color:#c8d4e8;padding:2.5rem 1rem 1.5rem;font-size:.88rem;line-height:1.6}
.footer-container{max-width:1100px;margin:0 auto}
.footer-studies{margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-studies h3{color:#fff;font-size:1rem;margin-bottom:.8rem}
.studies-list{list-style:decimal;padding-left:1.5rem}
.studies-list li{margin-bottom:.5rem}
.studies-list a{color:#8bb3e0;font-size:.85rem}
.studies-list a:hover{color:#FFCE12}
.footer-links{margin-bottom:1.2rem}
.footer-links ul{display:flex;flex-wrap:wrap;gap:.8rem 1.5rem;justify-content:center}
.footer-links a{color:#8bb3e0;font-size:.88rem;transition:color .2s}
.footer-links a:hover{color:#FFCE12}
.footer-update{text-align:center;margin-bottom:.8rem;font-size:.82rem;opacity:.7}
.footer-disclaimer{text-align:center;margin-bottom:1rem;font-size:.8rem;opacity:.7;max-width:900px;margin-left:auto;margin-right:auto}
.footer-copy{text-align:center;font-size:.8rem;opacity:.6}

/* === LEGAL PAGES === */
.legal-page{padding:2rem 1rem;max-width:900px;margin:5rem auto 2rem}
.legal-page h1{font-size:1.8rem;margin-bottom:1.5rem}
.legal-page h2{font-size:1.3rem;margin-top:1.5rem;margin-bottom:.8rem}
.legal-page h3{font-size:1.1rem;margin-top:1.2rem;margin-bottom:.6rem}
.legal-page p,.legal-page li{font-size:.95rem;color:#555}
.legal-page ol,.legal-page ul{padding-left:1.5rem;margin-bottom:1rem}
.legal-page ol{list-style:decimal}
.legal-page ul{list-style:disc}
.legal-page table{width:100%;border-collapse:collapse;margin:1rem 0;font-size:.82rem;overflow-x:auto;display:block}
.legal-page th,.legal-page td{border:1px solid #dde3ee;padding:.5rem;text-align:left;vertical-align:top}
.legal-page th{background:#f0f4fa;font-weight:600;color:#204D98}

/* === CONTACT FORM === */
.contact-form-box{background:#fff;border-radius:14px;padding:2rem;box-shadow:0 4px 24px rgba(32,77,152,.1);max-width:600px;margin:0 auto}
.contact-form-box textarea{width:100%;padding:.75rem 1rem;border:2px solid #dde3ee;border-radius:8px;font-size:1rem;font-family:inherit;transition:border-color .2s;background:#fafbfd;min-height:120px;resize:vertical}
.contact-form-box textarea:focus{border-color:#204D98;outline:none;box-shadow:0 0 0 3px rgba(32,77,152,.12)}
.checkbox-group{display:flex;align-items:flex-start;gap:.5rem;margin-bottom:1.2rem}
.checkbox-group input[type="checkbox"]{margin-top:.3rem;width:18px;height:18px;flex-shrink:0}
.checkbox-group label{font-size:.88rem;color:#555}

/* === THANK YOU === */
.thankyou-section{text-align:center;padding:4rem 1rem;min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center}
.thankyou-section h1{margin-bottom:1rem}
.thankyou-section p{font-size:1.1rem;color:#555;max-width:600px;margin:0 auto 1.5rem}
.checkmark-circle{width:80px;height:80px;border-radius:50%;background:#204D98;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}
.checkmark-circle svg{width:40px;height:40px;fill:#fff}

/* === UTILITIES === */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.text-center{text-align:center}

/* === RESPONSIVE === */
@media(max-width:600px){
    h1{font-size:1.5rem}
    h2{font-size:1.3rem}
    .section{padding:2rem .8rem}
    .order-form-box{padding:1.2rem}
    .btn-cta{font-size:1rem;padding:.8rem 1.5rem;min-width:180px}
    .benefits-grid,.ingredients-grid,.reviews-grid,.steps-container{grid-template-columns:1fr}
    .footer-links ul{flex-direction:column;align-items:center;gap:.5rem}
}
