*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--green:#64B25F;--green-dark:#4a9146;--yellow:#FFCE12;--yellow-hover:#e6b800;--white:#fff;--bg:#f9f9f9;--text:#333;--text-light:#555;--border:#ddd;--shadow:0 2px 8px rgba(0,0,0,.08);--radius:8px;--max-w:1100px;--header-h:64px}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 16px);-webkit-text-size-adjust:100%;overflow-x:hidden}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;font-size:16px;line-height:1.6;color:var(--text);background:var(--bg);overflow-x:hidden;width:100%}
img{max-width:100%;height:auto;display:block}
a{color:var(--green);text-decoration:none}
a:hover{text-decoration:underline}
ul,ol{list-style:none}
.container{max-width:var(--max-w);margin:0 auto;padding:0 20px}
.text-center{text-align:center}

/* HEADER */
.site-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--white);box-shadow:0 2px 6px rgba(0,0,0,.1);height:var(--header-h);display:flex;align-items:center}
.header-container{max-width:var(--max-w);margin:0 auto;padding:0 20px;display:flex;align-items:center;justify-content:space-between;width:100%}
.header-logo img{height:30px;width:auto}
.main-nav{display:flex;align-items:center}
.nav-list{display:flex;gap:20px;list-style:none}
.nav-list a{color:var(--text);font-size:.9rem;font-weight:500;padding:6px 0;transition:color .2s}
.nav-list a:hover{color:var(--green);text-decoration:none}
.btn-header-cta{background:var(--yellow);color:var(--text);font-weight:700;padding:10px 22px;border-radius:var(--radius);font-size:.95rem;text-decoration:none;white-space:nowrap;transition:background .2s,transform .1s}
.btn-header-cta:hover{background:var(--yellow-hover);text-decoration:none;transform:translateY(-1px)}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;flex-direction:column;gap:5px}
.menu-bar{display:block;width:24px;height:3px;background:var(--text);border-radius:2px;transition:transform .3s}
@media(max-width:768px){
.main-nav{display:none;position:absolute;top:var(--header-h);left:0;right:0;background:var(--white);box-shadow:0 4px 12px rgba(0,0,0,.1);padding:16px 20px}
.main-nav.open{display:block}
.nav-list{flex-direction:column;gap:12px}
.nav-list a{font-size:1rem;display:block;padding:8px 0}
.menu-toggle{display:flex}
}

/* HERO */
.hero{background:linear-gradient(135deg,var(--green) 0%,#4a9146 100%);color:var(--white);padding-top:calc(var(--header-h) + 40px);padding-bottom:60px}
.hero-container{max-width:var(--max-w);margin:0 auto;padding:0 20px;display:flex;align-items:center;gap:40px}
.hero-image{flex:0 0 300px;text-align:center}
.hero-image img{max-width:280px;margin:0 auto;height:auto}
.hero-content{flex:1}
.hero-content h1{font-size:2.2rem;line-height:1.2;margin-bottom:8px}
.hero-sub{display:block;font-size:1.2rem;font-weight:400;opacity:.9}
.hero-desc{font-size:1.05rem;margin:16px 0;opacity:.95;line-height:1.7}
.hero-social-proof{margin:16px 0}
.hero-stars{font-size:1.2rem;color:var(--yellow)}
.hero-stars span{color:var(--white);font-weight:600}
.hero-trust{font-size:.9rem;opacity:.85;margin-top:4px}
.hero-price{font-size:1.3rem;margin:16px 0}
@media(max-width:768px){
.hero{padding-top:calc(var(--header-h) + 20px);padding-bottom:40px}
.hero-container{flex-direction:column;text-align:center}
.hero-image{flex:none;order:-1}
.hero-image img{max-width:200px}
.hero-content h1{font-size:1.6rem}
.hero-desc{font-size:.95rem}
}

/* CTA BUTTONS */
.btn-cta{display:inline-block;background:var(--yellow);color:var(--text);font-weight:700;font-size:1.15rem;padding:16px 48px;border-radius:var(--radius);border:none;cursor:pointer;text-decoration:none;transition:background .2s,transform .1s,box-shadow .2s;box-shadow:0 4px 12px rgba(255,206,18,.3)}
.btn-cta:hover{background:var(--yellow-hover);transform:translateY(-2px);box-shadow:0 6px 20px rgba(255,206,18,.4);text-decoration:none}
.cta-sub{font-size:.85rem;color:var(--text-light);margin-top:8px;font-weight:500}
.hero .cta-sub{color:rgba(255,255,255,.8)}

/* SECTIONS */
section{padding:60px 0}
section:nth-child(even){background:var(--white)}
section h2{font-size:1.8rem;color:var(--green-dark);margin-bottom:20px;text-align:center;line-height:1.3}
section>div>p{max-width:800px;margin-left:auto;margin-right:auto}

/* SNIPPET */
.snippet{font-size:1.05rem;line-height:1.7;margin-bottom:16px;font-weight:500;max-width:800px;margin-left:auto;margin-right:auto}

/* BENEFITS */
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin:40px 0}
.benefit-card{background:var(--white);border-radius:var(--radius);padding:30px 20px;text-align:center;box-shadow:var(--shadow);transition:transform .2s}
.benefit-card:hover{transform:translateY(-4px)}
.benefit-card img{width:120px;height:120px;margin:0 auto 16px;object-fit:contain}
.benefit-card h3{font-size:1.1rem;color:var(--green-dark);margin-bottom:10px}
.benefit-card p{font-size:.93rem;color:var(--text-light)}
@media(max-width:768px){
.benefits-grid{grid-template-columns:1fr;gap:20px}
}

/* STEPS */
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin:30px 0}
.step-card{text-align:center;padding:24px;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow)}
.step-num{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:var(--green);color:var(--white);font-size:1.3rem;font-weight:700;margin-bottom:12px}
.step-card h3{font-size:1.05rem;color:var(--green-dark);margin-bottom:8px}
.step-card p{font-size:.9rem;color:var(--text-light)}
@media(max-width:768px){
.steps-grid{grid-template-columns:1fr;gap:16px}
}

/* ORDER FORM */
.section-order{background:var(--bg);padding:60px 0}
.order-intro{display:flex;align-items:center;gap:20px;max-width:600px;margin:0 auto 30px;text-align:left}
.order-product-img{width:60px;height:auto;flex-shrink:0}
.order-intro p{font-size:.95rem;color:var(--text-light)}
.order-form{max-width:500px;margin:0 auto;background:var(--white);padding:30px;border-radius:var(--radius);box-shadow:0 4px 20px rgba(0,0,0,.08)}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-weight:600;font-size:.9rem;margin-bottom:6px;color:var(--text)}
.form-group input{width:100%;padding:14px 16px;border:2px solid var(--border);border-radius:var(--radius);font-size:1rem;transition:border-color .2s;background:var(--white)}
.form-group input:focus{border-color:var(--green);outline:none;box-shadow:0 0 0 3px rgba(100,178,95,.15)}
.form-group input.error{border-color:#e53e3e}
.required{color:#e53e3e}
.field-error{display:none;font-size:.8rem;color:#e53e3e;margin-top:4px}
.field-error.visible{display:block}
.form-row{display:flex;gap:16px}
.form-group-city{flex:2}
.form-group-cap{flex:1}
@media(max-width:480px){
.form-row{flex-direction:column;gap:0}
}
.form-trust{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:20px 0}
.trust-badge{font-size:.85rem;font-weight:600;color:var(--text);padding:6px 12px;background:var(--bg);border-radius:20px}
.btn-submit{width:100%;padding:16px;font-size:1.2rem;position:relative}
.btn-submit .btn-spinner{display:none;width:20px;height:20px;border:3px solid rgba(0,0,0,.2);border-top-color:var(--text);border-radius:50%;animation:spin .6s linear infinite;position:absolute;right:20px;top:50%;margin-top:-10px}
.btn-submit.loading .btn-text{opacity:.6}
.btn-submit.loading .btn-spinner{display:block}
.btn-submit.loading{pointer-events:none}
@keyframes spin{to{transform:rotate(360deg)}}
.form-legal{font-size:.78rem;color:var(--text-light);text-align:center;margin-top:14px;line-height:1.5}
.form-legal a{color:var(--green)}

/* INGREDIENTS */
.ingredients-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin:40px 0}
.ingredient-card{background:var(--white);border-radius:var(--radius);padding:24px;text-align:center;box-shadow:var(--shadow);transition:transform .2s}
.ingredient-card:hover{transform:translateY(-4px)}
.ingredient-card img{width:140px;height:140px;margin:0 auto 16px;object-fit:contain}
.ingredient-card h3{font-size:1.05rem;color:var(--green-dark);margin-bottom:10px}
.ingredient-card p{font-size:.9rem;color:var(--text-light)}
.inci-text{font-size:.85rem;color:var(--text-light);background:var(--white);padding:16px;border-radius:var(--radius);border:1px solid var(--border);margin:20px auto;max-width:800px;word-break:break-word}
@media(max-width:768px){
.ingredients-grid{grid-template-columns:1fr;gap:20px}
}

/* USAGE */
.usage-steps{max-width:700px;margin:20px auto 30px;list-style:none;counter-reset:usage}
.usage-steps li{counter-increment:usage;padding:16px 16px 16px 60px;position:relative;margin-bottom:12px;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow)}
.usage-steps li::before{content:counter(usage);position:absolute;left:16px;top:16px;width:32px;height:32px;border-radius:50%;background:var(--green);color:var(--white);font-weight:700;display:flex;align-items:center;justify-content:center;font-size:.9rem}

/* REVIEWS */
.reviews-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin:30px 0}
.review-card{display:flex;gap:16px;background:var(--white);padding:24px;border-radius:var(--radius);box-shadow:var(--shadow)}
.review-card img{width:70px;height:70px;border-radius:50%;object-fit:cover;flex-shrink:0}
.review-content{flex:1}
.review-stars{color:var(--yellow);font-size:1rem;margin-bottom:6px}
.review-text{font-size:.9rem;color:var(--text-light);font-style:italic;margin-bottom:8px;line-height:1.6}
.review-card cite{font-size:.85rem;font-weight:600;color:var(--text);font-style:normal}
.rating-summary{margin:30px 0 20px}
.rating-summary .rating-stars{font-size:1.5rem;color:var(--yellow)}
@media(max-width:768px){
.reviews-grid{grid-template-columns:1fr}
}

/* WHERE TO BUY / PRICE */
.price-box{display:flex;gap:30px;align-items:center;max-width:700px;margin:30px auto;background:var(--white);padding:30px;border-radius:var(--radius);box-shadow:var(--shadow);border:2px solid var(--green)}
.price-img{width:140px;height:auto;flex-shrink:0}
.price-details{flex:1}
.price-details h3{font-size:1.2rem;color:var(--green-dark);margin-bottom:12px}
.price-details ul{list-style:none;margin-bottom:16px}
.price-details li{font-size:.95rem;margin-bottom:6px;color:var(--text)}
.price-tag{font-size:1.6rem;font-weight:700;color:var(--green-dark);margin-bottom:16px}
@media(max-width:600px){
.price-box{flex-direction:column;text-align:center}
.price-img{width:120px;margin:0 auto}
}

/* FAQ */
.faq-list{max-width:750px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border);margin-bottom:8px}
.faq-question{display:flex;justify-content:space-between;align-items:center;width:100%;padding:18px 0;font-size:1rem;font-weight:600;color:var(--text);background:none;border:none;cursor:pointer;text-align:left;line-height:1.4}
.faq-question::after{content:"+";font-size:1.4rem;font-weight:400;color:var(--green);transition:transform .3s;flex-shrink:0;margin-left:12px}
.faq-question[aria-expanded="true"]::after{content:"−"}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-answer.open{max-height:500px}
.faq-answer p{padding:0 0 18px;font-size:.93rem;color:var(--text-light);line-height:1.7}

/* WARNINGS */
.section-warnings ul{max-width:700px;margin:16px auto;list-style:disc;padding-left:24px}
.section-warnings li{margin-bottom:8px;font-size:.93rem;color:var(--text-light)}

/* FOOTER */
.site-footer{background:#2d2d2d;color:#ccc;padding:50px 0 30px}
.footer-container{max-width:var(--max-w);margin:0 auto;padding:0 20px}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-brand p{font-size:.88rem;margin-top:12px;line-height:1.6;opacity:.8}
.footer-brand img{height:28px;width:auto;filter:brightness(2)}
.footer-links h3,.footer-legal h3{color:var(--white);font-size:1rem;margin-bottom:12px}
.footer-links ul,.footer-legal ul{list-style:none}
.footer-links li,.footer-legal li{margin-bottom:8px}
.footer-links a,.footer-legal a{color:#aaa;font-size:.88rem;transition:color .2s}
.footer-links a:hover,.footer-legal a:hover{color:var(--white);text-decoration:none}
.footer-bottom{border-top:1px solid #444;padding-top:24px;text-align:center}
.footer-disclaimer{font-size:.78rem;color:#999;max-width:800px;margin:0 auto 16px;line-height:1.7}
.footer-update{font-size:.8rem;color:#888;margin-bottom:8px}
.footer-copy{font-size:.82rem;color:#888}
@media(max-width:768px){
.footer-top{grid-template-columns:1fr;gap:24px}
}

/* LEGAL / CONTACT PAGES */
.page-content{padding-top:calc(var(--header-h) + 40px);padding-bottom:60px}
.page-content .container{max-width:800px}
.page-content h1{font-size:1.8rem;color:var(--green-dark);margin-bottom:24px}
.page-content h2{font-size:1.3rem;text-align:left;margin-top:30px;margin-bottom:12px}
.page-content h3{font-size:1.1rem;text-align:left;margin-top:20px;margin-bottom:10px}
.page-content p,.page-content li{font-size:.93rem;line-height:1.7;color:var(--text-light);margin-bottom:10px}
.page-content ul,.page-content ol{padding-left:24px;list-style:disc}

/* CONTACT FORM */
.contact-form{max-width:500px;margin:30px auto 0;background:var(--white);padding:30px;border-radius:var(--radius);box-shadow:var(--shadow)}
.contact-form .form-group textarea{width:100%;padding:14px 16px;border:2px solid var(--border);border-radius:var(--radius);font-size:1rem;font-family:inherit;resize:vertical;min-height:120px;transition:border-color .2s}
.contact-form .form-group textarea:focus{border-color:var(--green);outline:none;box-shadow:0 0 0 3px rgba(100,178,95,.15)}
.contact-form .form-group textarea.error{border-color:#e53e3e}
.checkbox-group{display:flex;align-items:flex-start;gap:8px;margin-bottom:18px}
.checkbox-group input[type="checkbox"]{margin-top:4px;width:18px;height:18px;flex-shrink:0}
.checkbox-group label{font-size:.85rem;color:var(--text-light);font-weight:400}

/* SERVER ERRORS */
.server-errors{max-width:500px;margin:0 auto 20px;background:#fff5f5;border:1px solid #feb2b2;border-radius:var(--radius);padding:16px}
.server-errors p{color:#c53030;font-size:.9rem;margin-bottom:4px}

/* THANK YOU */
.thank-you-section{min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;padding-top:calc(var(--header-h) + 40px)}
.thank-you-section h1{color:var(--green-dark);margin-bottom:16px}
.thank-you-section p{font-size:1.05rem;color:var(--text-light);max-width:600px;margin:0 auto 20px}

/* UTILITIES */
@media(max-width:768px){
section{padding:40px 0}
section h2{font-size:1.4rem}
.order-intro{flex-direction:column;text-align:center}
.order-product-img{width:50px}
}
