:root {
  --green: #16a34a;
  --green-2: #22c55e;
  --green-deep: #0f7a37;
  --green-soft: #e9f9ef;
  --green-soft-2: #d6f5e1;
  --ink: #0e1f16;
  --charcoal: #16261d;
  --body: #33463b;
  --muted: #63756a;
  --line: #e3ece6;
  --bg: #ffffff;
  --bg-soft: #f4faf6;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(15, 40, 26, 0.06);
  --shadow: 0 18px 44px rgba(15, 40, 26, 0.10);
  --shadow-lg: 0 30px 70px rgba(15, 40, 26, 0.16);
  --grad: linear-gradient(135deg, #22c55e 0%, #16a34a 55%, #0f7a37 100%);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1160px;
  --font: "Inter", "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--body); background: var(--bg); line-height: 1.68; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; letter-spacing: -0.02em; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.eyebrow { display: inline-block; color: var(--green-deep); background: var(--green-soft); border: 1px solid var(--green-soft-2); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; margin-bottom: 18px; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--grad); color: #fff; padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease; box-shadow: 0 12px 26px rgba(22, 163, 74, 0.34); }
.btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 18px 34px rgba(22, 163, 74, 0.44); filter: brightness(1.03); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); border-color: var(--green-soft-2); }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Header */
.topbar { background: var(--charcoal); color: #b9cabf; font-size: 0.84rem; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 6px 26px; align-items: center; justify-content: center; padding: 9px 24px; }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar a { color: #cfe0d5; }
.topbar a:hover { color: #fff; }
.topbar .lang a { color: var(--green-2); font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { height: 42px; width: auto; flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--charcoal); font-weight: 600; font-size: 0.96rem; }
.nav a:hover { color: var(--green-deep); }
.nav .lang-switch { color: var(--muted); font-weight: 700; border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; }
.nav .lang-switch:hover { border-color: var(--green-soft-2); color: var(--green-deep); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.7rem; line-height: 1; color: var(--ink); cursor: pointer; }

/* Hero */
.hero { position: relative; background: radial-gradient(1200px 520px at 80% -10%, rgba(34, 197, 94, 0.14), transparent 60%), linear-gradient(180deg, #f4faf6 0%, #ffffff 100%); padding: 74px 0 68px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.8vw, 3.3rem); font-weight: 800; }
.hero .lead { margin-top: 22px; font-size: 1.18rem; color: var(--body); max-width: 560px; }
.hero .cta-row { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero .meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.92rem; color: var(--muted); }
.hero .meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.hero-badge { position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 16px 20px; display: flex; align-items: center; gap: 12px; max-width: 240px; }
.hero-badge .ring { width: 44px; height: 44px; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.hero-badge b { color: var(--ink); font-size: 1.25rem; display: block; line-height: 1; }
.hero-badge small { color: var(--muted); font-size: 0.8rem; }

/* Trust bar */
.trustbar { background: var(--charcoal); color: #d5e4da; }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; padding: 22px 24px; text-align: center; }
.trustbar .lead-trust { font-weight: 700; color: #fff; font-size: 1.02rem; }
.trustbar .stars { color: #ffd257; letter-spacing: 2px; font-size: 1.05rem; }
.trustbar .chip { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #b9cabf; }

/* Pain section */
.pain { background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.pain-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.pain-card.warn { background: #fff5f3; border-color: #fbdcd4; }
.pain-card h3 { font-size: 1.3rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.pain-card p { color: var(--muted); margin-bottom: 12px; }
.pain-list { list-style: none; }
.pain-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--body); }
.pain-list.bad li::before { content: "\2715"; position: absolute; left: 0; top: 0; color: #e0523c; font-weight: 800; }
.pain-list.good li::before { content: "\2714"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }

/* Feature cards (Why) */
.why { background: var(--bg-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card .fico { width: 52px; height: 52px; border-radius: 14px; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.98rem; }

/* Myth blocks */
.myths { background: var(--bg); }
.myth { padding: 30px 0; }
.myth + .myth { border-top: 1px solid var(--line); }
.myth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.myth:nth-child(even) .myth-media { order: -1; }
.myth-num { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 14px; background: var(--grad); color: #fff; font-weight: 800; font-size: 1.35rem; margin-bottom: 18px; box-shadow: 0 10px 22px rgba(22, 163, 74, 0.3); }
.tag-myth { display: inline-block; background: #fdecea; color: #d0402a; border: 1px solid #f6cfc7; padding: 4px 14px; border-radius: 999px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 12px; }
.myth h3 { font-size: 1.42rem; margin-bottom: 16px; }
.tag-truth { display: inline-flex; align-items: center; gap: 7px; background: var(--green-soft); color: var(--green-deep); border: 1px solid var(--green-soft-2); padding: 4px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 800; margin-bottom: 14px; }
.myth p { color: var(--muted); margin-bottom: 14px; }
.myth-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* Mini blocks */
.mini { background: var(--charcoal); color: #e6f0ea; }
.mini .section-head h2 { color: #fff; }
.mini .section-head p { color: #a9bcb0; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mini-card { background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); padding: 30px 26px; }
.mini-card .mnum { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--grad); color: #fff; font-weight: 800; margin-bottom: 16px; }
.mini-card h3 { color: #fff; font-size: 1.14rem; margin-bottom: 10px; }
.mini-card p { color: #b8c9be; font-size: 0.97rem; }

/* Testimonials */
.testi { background: var(--bg-soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi-card .stars { color: #ffb800; letter-spacing: 1px; margin-bottom: 12px; }
.testi-card p { color: var(--body); font-style: italic; margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; }
.testi-who b { color: var(--ink); display: block; font-size: 0.98rem; }
.testi-who small { color: var(--muted); }

/* Audience cards */
.audience { background: var(--bg); }
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.aud-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; display: flex; align-items: flex-end; color: #fff; }
.aud-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.aud-card .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 31, 22, 0.15) 0%, rgba(14, 31, 22, 0.88) 100%); }
.aud-card .aud-body { position: relative; padding: 34px; }
.aud-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.aud-card p { color: #dbe8e0; margin-bottom: 18px; }
.aud-card .aud-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; border-bottom: 2px solid var(--green-2); padding-bottom: 3px; }

/* Objections / chat */
.objections { background: var(--bg-soft); }
.obj-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.chat { display: flex; flex-direction: column; gap: 16px; }
.bubble { border-radius: 18px; padding: 16px 20px; max-width: 88%; box-shadow: var(--shadow-sm); }
.bubble.q { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; font-weight: 600; color: var(--ink); }
.bubble.a { background: var(--grad); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble .who { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.75; margin-bottom: 4px; }

/* Process steps */
.process { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px 28px; }
.step .snum { position: absolute; top: -22px; left: 26px; width: 46px; height: 46px; border-radius: 12px; background: var(--grad); color: #fff; font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; box-shadow: 0 10px 22px rgba(22, 163, 74, 0.32); }
.step h3 { font-size: 1.12rem; margin: 14px 0 10px; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* Guarantees */
.guarantee { background: var(--charcoal); color: #e6f0ea; }
.guar-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: center; }
.guarantee h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 16px; }
.guarantee .g-lead { color: #b8c9be; margin-bottom: 20px; }
.guar-list { list-style: none; display: grid; gap: 14px; }
.guar-list li { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 16px 18px 16px 52px; position: relative; }
.guar-list li::before { content: "\2714"; position: absolute; left: 18px; top: 16px; width: 22px; height: 22px; }
.guar-list li b { color: #fff; }
.guar-list li span { color: #b8c9be; }
.guar-check { color: var(--green-2); }

/* FAQ */
.faq { background: var(--bg-soft); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-size: 1.05rem; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; font-size: 1.2rem; transition: transform 0.25s ease, background 0.25s ease; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { color: var(--muted); padding: 0 24px 20px; }

/* CTA + Form */
.cta-section { background: var(--bg); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.cta-grid h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 16px; }
.cta-grid > div > p { color: var(--muted); margin-bottom: 18px; }
.cta-grid ul { list-style: none; }
.cta-grid ul li { padding-left: 32px; position: relative; margin-bottom: 13px; font-weight: 600; color: var(--body); }
.cta-grid ul li::before { content: "\2714"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 0.96rem; background: #fbfdfb; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.13); background: #fff; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success { display: none; background: var(--green-soft); border: 1px solid var(--green-soft-2); color: var(--green-deep); padding: 16px; border-radius: 12px; margin-top: 16px; font-weight: 600; }
.form-success.show { display: block; }

/* Final CTA banner */
.finalcta { background: var(--grad); color: #fff; text-align: center; }
.finalcta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.finalcta p { color: #eafff1; max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }
.finalcta .btn { background: #fff; color: var(--green-deep); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18); }
.finalcta .btn:hover { color: var(--green-deep); background: #f3fff7; }

/* Footer */
.site-footer { background: var(--ink); color: #a9bcb0; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: 1.05rem; }
.site-footer p, .site-footer li { color: #93a89b; font-size: 0.92rem; margin-bottom: 10px; }
.site-footer ul { list-style: none; }
.site-footer a { color: #93a89b; }
.site-footer a:hover { color: var(--green-2); }
.footer-brand img { height: 40px; margin-bottom: 16px; background: #fff; padding: 10px 14px; border-radius: 10px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); margin-top: 40px; padding-top: 22px; text-align: center; font-size: 0.85rem; color: #74897d; }

/* Subpages */
.page-hero { background: radial-gradient(900px 380px at 85% -20%, rgba(34, 197, 94, 0.16), transparent 60%), var(--charcoal); color: #fff; padding: 66px 0 56px; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero p { color: #b8c9be; margin-top: 12px; }
.doc { padding: 60px 0 72px; }
.doc .container { max-width: 860px; }
.doc > .container > p { color: var(--muted); margin-bottom: 14px; }
.doc h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.doc h3 { color: var(--green-deep); font-size: 1.1rem; margin: 24px 0 8px; }
.doc p, .doc li { color: var(--muted); margin-bottom: 12px; }
.doc ul { margin: 0 0 16px 22px; }
.info-table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.info-table td { padding: 13px 16px; border: 1px solid var(--line); font-size: 0.95rem; }
.info-table td:first-child { font-weight: 700; color: var(--ink); width: 38%; background: var(--bg-soft); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 30px 0 40px; }
.contact-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-card .cico { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; font-size: 1.5rem; }
.contact-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.95rem; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .pain-grid, .obj-grid, .guar-grid, .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .feature-grid, .mini-grid, .testi-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .section { padding: 62px 0; }
  .site-header .container { gap: 12px; }
  .nav { display: none; }
  .menu-toggle { display: block; flex-shrink: 0; }
  .nav.open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 18px 24px; gap: 14px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open a { width: 100%; }
  .nav.open .lang-switch { text-align: center; }
  .nav.open .btn { justify-content: center; }
  .myth-grid { grid-template-columns: 1fr; gap: 26px; }
  .myth:nth-child(even) .myth-media { order: 0; }
  .aud-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { padding: 0 16px; }
  .topbar .container { justify-content: flex-start; gap: 6px 16px; }
  .topbar .hide-sm { display: none; }
  .feature-grid, .mini-grid, .testi-grid, .steps, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .brand img { height: 36px; }
  .hero-badge { left: 12px; bottom: -18px; }
  .step .snum { position: static; margin-bottom: 6px; }
}
