<style>
:root{
    --primary:#06b6d4;
    --primary-dark:#0891b2;
    --accent:#0f766e;
    --bg-light:#ecfeff;
    --bg-cream:#f0fdf4;
    --text-main:#0f172a;
    --text-muted:#4b5563;
    --danger:#cc0000;
    --success:#16a34a;
    --border-soft:#e5e7eb;
    --shadow-soft:0 12px 25px rgba(15,23,42,0.08);
    --radius-lg:18px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Lato",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
    color:var(--text-main);
    background:#ffffff;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.page-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:0 16px 60px;
}

/* Top bar */
.top-bar{
    background:#022c22;
    color:#e0f2fe;
    padding:10px 16px;
    font-size:18px;
    text-align:center;
}
.top-bar span{
    font-weight:600;
    color:var(--primary);
}
/* Header / Nav */
header{
    border-bottom:1px solid #e5e7eb;
    padding:18px 0;
    background:#020617;
    color:#e5f9ff;
    position:sticky;       
    top:0;                 
    z-index:1000;          
    box-shadow:0 4px 20px rgba(0,0,0,0.3); 
}

.header-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.logo{
    display:flex;
    flex-direction:column;
    gap:2px;
}
.logo-title{
    font-family:"Montserrat",sans-serif;
    font-weight:700;
    letter-spacing:0.08em;
    font-size:18px;
}

.logo-sub{
    font-size:10px;
    text-transform:uppercase;
    color:#9ca3af;
    letter-spacing:0.18em;
}

nav{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:18px;
}

nav a{
    color:#e5e7eb;
}
nav a:hover{
    color:#ffffff;
}

.nav-cta{
    background:var(--primary-dark);
    color:#ffffff;
    padding:8px 18px;
    border-radius:999px;
    font-weight:700;
    font-size:16px;
    box-shadow:0 6px 18px rgba(0,0,0,0.24);
}
.nav-cta:hover{
    background:#046a8a;
}


/* HERO */
.hero{
    padding:30px 0 40px;
    background:linear-gradient(135deg,#022c22 0%,#0f172a 40%,#082f49 100%);
    color:#e5f9ff;
    border-radius:0 0 26px 26px;
    box-shadow:0 15px 40px rgba(15,23,42,0.5);
    margin-bottom:40px;
}
.hero-inner{
    display:grid;
    grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);
    align-items:center;
    gap:30px;
    max-width:1200px;
    margin:0 auto;
    padding:24px 16px 32px;
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:4px 12px;
    border-radius:999px;
    background:rgba(45,212,191,0.16);
    color:#a5f3fc;
    font-size:12px;
    margin-bottom:12px;
}
.hero-badge span{
    font-size:9px;
    background:#22c55e;
    color:#022c22;
    border-radius:999px;
    padding:2px 7px;
    text-transform:uppercase;
    font-weight:700;
}
.hero-title{
    font-family:"Montserrat",sans-serif;
    font-size:30px;
    line-height:1.2;
    margin-bottom:10px;
}
.hero-title span{
    color:var(--primary);
}
.hero-sub{
    font-size:16px;
    color:#e5e7eb;
    margin-bottom:12px;
}
.hero-price-line{
    font-size:18px;
    color:#ccfbf1;
    margin-bottom:16px;
}
.hero-price-line span{
    color:#facc15;
    font-weight:700;
}
.hero-list{
    list-style:none;
    margin-bottom:18px;
    font-size:18px;
}
.hero-list li{
    display:flex;
    gap:8px;
    margin-bottom:6px;
}
.hero-list li::before{
    content:"✓";
    color:#22c55e;
    font-weight:900;
    margin-top:1px;
}
.hero-cta-row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px 18px;
    margin-top:6px;
}
.btn-primary{
    background:#0891b2;
    color:#ffffff;
    padding:12px 22px;
    border-radius:999px;
    font-weight:800;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:0.06em;
    box-shadow:0 16px 30px rgba(0,0,0,0.4);
    border:2px solid #0891b2;
}
.btn-primary:hover{
    background:var(--primary-dark);
}
.hero-safe-text{
    font-size:11px;
    color:#9ca3af;
}
.hero-seals{
    margin-top:12px;
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    font-size:11px;
    color:#e5e7eb;
}
.hero-seals span{
    padding:4px 10px;
    border-radius:999px;
    background:rgba(15,23,42,0.7);
    border:1px solid rgba(148,163,184,0.5);
}

/* hero image – no bg box, only big image */
.hero-image-wrap{
    padding:0;
    background:none;
    box-shadow:none;
    border:none;
    text-align:center;
}
.hero-image-wrap img{
    max-width:500px;
    width:100%;
    margin:0 auto;
}
.hero-rating{
    margin-top:16px;
    font-size:18px;
    color:#e5e7eb;
}
.hero-rating span{
    color:#facc15;
}

/* Section generic */
.section{
    margin-bottom:40px;
}
.section-title{
    font-family:"Montserrat",sans-serif;
    font-size:24px;
    margin-bottom:10px;
    text-align:center;
}
.section-title span{
    color:var(--danger);
}
.section-sub{
    text-align:center;
    color:var(--text-muted);
    max-width:680px;
    margin:0 auto 24px;
    font-size:18px;
}

#how .how-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: left;
}

#how {
    text-align: left !important;
}

#how .section-title {
    text-align: left !important;
}

#how .pill-badge {
    text-align: left !important;
    margin-left: 0 !important;
}

#how p {
    text-align: left !important;
}

/* BONUS SECTION */
#bonuses{
    margin-top:20px;
    margin-bottom:40px;
}
.bonus-wrap{
    background:#0b3f96;
    padding:65px 22px 55px;
    border-radius:0 0 26px 26px;
    box-shadow:0 18px 40px rgba(15,23,42,0.45);
    color:#0f172a;
}
.bonus-inner{
    max-width:980px;
    margin:0 auto;
}
.bonus-heading{
    text-align:center;
    color:#ffffff;
    margin-bottom:24px;
    font-family:"Montserrat",sans-serif;
}
.bonus-heading h2{
    font-size:26px;
    line-height:1.3;
    margin-bottom:6px;
}
.bonus-heading h2 span{
    color:#facc15;
    font-weight:800;
}
.bonus-heading p{
    font-size:16px;
    opacity:.9;
}
.bonus-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
}
.bonus-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(15,23,42,0.35);
}
.bonus-card img{
    width:50%;
    margin:0 auto;
    display:block;
    border-radius:18px 18px 0 0;
}
.bonus-body{
    padding:16px 18px 20px;
}
.bonus-tag{
    text-align:center;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:0.06em;
    color:#dc2626;
    margin-bottom:4px;
}
.bonus-title{
    text-align:center;
    font-family:"Montserrat",sans-serif;
    font-size:20px;
    font-weight:800;
    color:#1d4ed8;
    margin-bottom:10px;
}
.bonus-retail{
    text-align:left;
    font-size:16px;
    margin-bottom:12px;
}
.bonus-retail .old{
    text-decoration:line-through;
    color:#9ca3af;
}
.bonus-retail .free{
    color:#16a34a;
    font-weight:800;
}
.bonus-text{
    font-size:16px;
    color:#4b5563;
    line-height:1.7;
}
.bonus-text + .bonus-text{
    margin-top:8px;
}

/* BONUS – mobile */
@media (max-width: 900px){
    .bonus-grid{
        grid-template-columns: 1fr;  
    }
    .bonus-card{
        max-width: 420px;
        margin: 0 auto;           
    }
    .bonus-wrap{
        padding: 40px 16px 45px;   
    }
}

/* Features 3-columns */
.features-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.feature-card{
    background:var(--bg-light);
    border-radius:var(--radius-lg);
    padding:16px 18px;
    border:1px solid var(--border-soft);
    box-shadow:var(--shadow-soft);
}
.feature-label{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.18em;
    color:var(--accent);
    margin-bottom:4px;
}
.feature-title{
    font-weight:700;
    margin-bottom:6px;
    font-size:15px;
}
.feature-text{
    font-size:16px;
    color:var(--text-muted);
}

#ingredients .benefits-list li {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Two column content */
.two-column{
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
    gap:22px;
    align-items:center;
}
.two-column img{
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-soft);
}
.pill-badge{
    display:inline-flex;
    padding:2px 10px;
    border-radius:999px;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.16em;
    background:rgba(56,189,248,0.08);
    color:var(--accent);
    margin-bottom:6px;
}

/* Pricing */
.pricing-area{
    padding:35px 20px 45px;
}
.pricing-grid{
    display:flex;
    gap:18px;
    align-items:stretch;
    justify-content:center;
    flex-wrap:wrap;
}
.price-card{
    flex:1 1 0;
    max-width:340px;
    background:#ffffff;
    border-radius:16px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 25px rgba(15,23,42,0.08);
    padding:16px 18px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    min-height:480px;
}
.price-tag{
    background:#6b7280;
    color:#ffffff;
    padding:7px 0;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    text-align:center;
    width:100%;
    border-radius:8px 8px 0 0;
    margin:-16px -18px 14px;
    letter-spacing:0.05em;
}
.price-card:nth-child(2) .price-tag{
    background:#dc2626;
}
.price-card img{
    max-width:190px;
    margin:8px auto 14px;
    display:block;
}
.price-main{
    font-family:"Montserrat",sans-serif;
    font-size:26px;
    font-weight:900;
    color:#1e3a8a;
    margin-bottom:4px;
    text-align:center;
}
.price-card:nth-child(2) .price-main{
    font-size:30px;
}
.price-small{
    font-size:13px;
    color:#374151;
    text-align:center;
    margin-bottom:4px;
}
.price-save{
    font-size:12px;
    color:#16a34a;
    text-align:center;
    margin-bottom:10px;
}
.price-card .btn-price{
    font-size:16px;
    font-weight:900;
    padding:12px 28px;
    background:#fbbf24;
    border-radius:999px;
    border:none;
    margin-top:14px;
    width:85%;
    text-align:center;
}
.price-card:nth-child(2){
    border:3px solid #dc2626;
    box-shadow:0 22px 45px rgba(220,38,38,0.26);
    transform:translateY(-10px) scale(1.05);
    z-index:5;
}
.pricing-header{
    text-align:center;
    margin-bottom:24px;
}
.pricing-header h2{
    font-family:"Montserrat",sans-serif;
    font-size:28px;
    margin-bottom:6px;
}
.pricing-header p{
    font-size:14px;
    color:var(--text-muted);
    max-width:640px;
    margin:0 auto;
}

/* Guarantee */
.guarantee{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:18px;
    align-items:center;
    background:var(--bg-cream);
    border-radius:var(--radius-lg);
    padding:20px 18px;
    border:1px solid var(--border-soft);
}
.guarantee img{
    max-width:150px;
}
.guarantee-title{
    font-family:"Montserrat",sans-serif;
    font-size:20px;
    margin-bottom:4px;
}
.guarantee p{
    font-size:16px;
    color:var(--text-muted);
}

/* Benefits list */
.checkstyle{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 30px;
    margin-top:10px;
}
.checkstyle li{
    list-style:none;
    position:relative;
    padding-left:24px;
    font-size:15px;
    color:var(--text-main);
}
.checkstyle li::before{
    content:"✔";
    font-size:16px;
    font-weight:700;
    color:#16a34a;
    position:absolute;
    left:0;
    top:2px;
}

/* FAQ */
.faq-item{
    border-bottom:1px solid var(--border-soft);
    padding:10px 0;
}
.faq-q{
    font-weight:600;
    font-size:18px;
    margin-bottom:4px;
}
.faq-a{
    font-size:16px;
    color:var(--text-muted);
}

/* CTA strip */
.bottom-cta{
    margin-top:40px;
    padding:18px 16px;
    border-radius:999px;
    background:linear-gradient(90deg,#22c55e,#0f766e);
    color:#ecfdf3;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.bottom-cta p{
    font-size:18px;
    font-weight:600;
}
.bottom-cta .btn-primary{
    box-shadow:0 18px 24px rgba(22,163,74,0.5);
    border-color:#22c55e;
}

/* Footer */
.footer{
    background:#ffffff;
    border-top:1px solid #e5e7eb;
    margin-top:40px;
    font-size:13px;
    color:#1f2937;
    padding:25px 0;
    text-align:center;
}
.footer-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}
.footer-links{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.footer-links a{
    color:#1f2937;
    text-decoration:none;
    font-size:13px;
}
.footer-links a:hover{
    text-decoration:underline;
}
.footer-copy{
    font-size:13px;
    opacity:.95;
    margin:4px 0 0;
}
.footer-social{
    display:flex;
    gap:14px;
    justify-content:center;
}
.footer-social img{
    width:22px;
    height:22px;
    transition:.22s ease;
}
.footer-social img:hover{
    transform:scale(1.2);
}

/* RESPONSIVE */
@media(max-width:900px){
    .hero-inner,
    .two-column,
    .guarantee{
        grid-template-columns:1fr;
    }
    .features-grid{
        grid-template-columns:1fr 1fr;
    }
    .pricing-grid{
        flex-direction:column;
        align-items:stretch;
    }
    .price-card{
        max-width:100%;
        transform:none !important;
    }
    nav{
        display:none;
    }
    .hero{
        border-radius:0 0 22px 22px;
    }
    .pricing-area{
        padding:18px 18px;
    }
    .bottom-cta{
        border-radius:18px;
    }
    .checkstyle{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .footer-links{
        gap:12px;
    }
}

@media(max-width:640px){
    .hero-title{
        font-size:24px;
    }
    .section-title{
        font-size:20px;
    }
    .hero-image-wrap img{
        max-width:350px;
    }
    .features-grid{
        grid-template-columns:1fr;
    }
}
</style>
