:root {
  --ink: #10251f;
  --ink-soft: #385149;
  --cream: #f6f4ec;
  --paper: #fffef9;
  --green: #d9ff43;
  --green-deep: #bfe52c;
  --line: rgba(16, 37, 31, .14);
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "DM Sans", sans-serif; }
button, input { font: inherit; }
a { color: inherit; }

.site-header { height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(22px, 5vw, 78px); background: var(--paper); border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; letter-spacing: .04em; }
.brand-mark { width: 46px; height: 46px; display: block; flex: 0 0 auto; object-fit: contain; }
.brand strong, .brand small { display: block; font-family: "Manrope"; }
.brand strong { font-size: 14px; line-height: 1.05; }
.brand small { margin-top: 4px; font-size: 10px; letter-spacing: .34em; color: var(--ink-soft); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 13px 18px; border-radius: 4px; background: var(--ink); color: var(--white); text-decoration: none; font-size: 14px; font-weight: 700; }

.hero { min-height: 760px; padding: 72px clamp(22px, 6vw, 92px); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(420px, .75fr); gap: clamp(45px, 7vw, 112px); align-items: center; position: relative; overflow: hidden; background: var(--ink); color: white; }
.hero::after { content: ""; position: absolute; left: -7%; bottom: -19%; width: 47%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .7; }
.hero-glow-one { width: 430px; height: 430px; background: radial-gradient(circle, rgba(217,255,67,.18), transparent 68%); top: -190px; left: 30%; }
.hero-glow-two { width: 370px; height: 370px; background: radial-gradient(circle, rgba(58,183,156,.14), transparent 70%); right: -150px; bottom: -80px; }
.hero-copy, .form-card { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; background: var(--green); }
.eyebrow.dark { color: #5b6c66; }
.hero h1 { max-width: 750px; margin: 0; font: 800 clamp(48px, 6vw, 86px)/.98 "Manrope", sans-serif; letter-spacing: -.055em; }
.hero h1 em { display: block; color: var(--green); font-style: normal; }
.hero-lede { max-width: 630px; margin: 28px 0 26px; color: rgba(255,255,255,.74); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; }
.benefit-list { display: flex; flex-wrap: wrap; gap: 12px 25px; padding: 0; margin: 0 0 35px; list-style: none; font-weight: 600; }
.benefit-list span { color: var(--green); margin-right: 6px; }
.service-area { display: inline-flex; align-items: center; gap: 10px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 99px; color: rgba(255,255,255,.74); font-size: 13px; }
.pulse { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(217,255,67,.12); }

.form-card { padding: 29px; background: var(--paper); color: var(--ink); border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.form-topline { display: flex; justify-content: space-between; color: #6f7d78; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-topline strong { color: var(--ink); }
.progress { height: 4px; margin: 13px 0 28px; overflow: hidden; border-radius: 99px; background: #e5e7df; }
.progress span { display: block; width: 33.333%; height: 100%; background: var(--green-deep); transition: width .3s ease; }
.form-step { display: none; }
.form-step.active { display: block; animation: reveal .28s ease; }
@keyframes reveal { from { opacity: 0; transform: translateY(5px); } }
.form-kicker { margin: 0 0 7px; color: #74827d; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-card h2 { margin: 0 0 24px; font: 800 29px/1.16 "Manrope"; letter-spacing: -.03em; }
fieldset { margin: 0 0 20px; padding: 0; border: 0; }
legend, .field-label { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 700; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.choice-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.choice input { position: absolute; opacity: 0; }
.choice span { display: grid; min-height: 48px; place-items: center; padding: 8px; border: 1px solid #d7dcd7; border-radius: 5px; color: #50615b; font-weight: 700; cursor: pointer; transition: .18s ease; }
.choice input:checked + span { border-color: var(--ink); background: var(--ink); color: white; box-shadow: inset 0 -3px var(--green); }
input[type="text"], input[type="tel"], input[type="date"] { width: 100%; height: 51px; margin: 0 0 18px; padding: 0 14px; border: 1px solid #d7dcd7; border-radius: 5px; background: white; color: var(--ink); outline: none; }
input:focus { border-color: #758f84; box-shadow: 0 0 0 3px rgba(16,37,31,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.primary-button { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 13px 20px; border: 0; border-radius: 5px; background: var(--green); color: var(--ink); font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.primary-button:hover { transform: translateY(-2px); background: #e2ff6b; }
.primary-button span { font-size: 20px; }
.button-row { display: grid; grid-template-columns: 92px 1fr; gap: 10px; }
.back-button { border: 1px solid #d7dcd7; border-radius: 5px; background: transparent; color: #607069; font-weight: 700; cursor: pointer; }
.consent { display: flex; gap: 9px; margin: 0 0 18px; color: #6d7975; font-size: 10px; line-height: 1.45; }
.consent input { flex: 0 0 auto; margin-top: 2px; accent-color: var(--ink); }
.website-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-note { margin: 15px 0 0; text-align: center; color: #7e8985; font-size: 10px; }
.invalid-note { margin: -10px 0 15px; color: #a02d2d; font-size: 12px; }
.form-success { text-align: center; padding: 10px 0 5px; }
.success-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--green); font-size: 25px; font-weight: 800; }
.form-success p:not(.form-kicker) { color: #62716c; line-height: 1.6; }
.whatsapp-button { margin-top: 20px; background: #28d368; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-strip div { padding: 28px 20px; text-align: center; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font: 800 19px "Manrope"; }
.trust-strip span { margin-top: 4px; color: #73817c; font-size: 12px; }
.section-pad { padding: 105px clamp(22px, 7vw, 110px); }
.section-heading h2 { margin: 0; font: 800 clamp(38px, 4.5vw, 64px)/1.05 "Manrope"; letter-spacing: -.045em; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.steps-grid article { min-height: 300px; padding: 30px; position: relative; background: var(--paper); border: 1px solid var(--line); }
.step-index { color: #87938e; font-size: 12px; font-weight: 700; }
.step-icon { width: 48px; height: 48px; display: grid; place-items: center; margin: 47px 0 24px; border-radius: 50%; background: var(--ink); color: var(--green); font-size: 20px; }
.steps-grid h3 { margin: 0 0 12px; font: 800 21px "Manrope"; }
.steps-grid p { margin: 0; color: #687772; line-height: 1.65; }
.reassurance { padding-top: 0; }
.reassurance-card { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: clamp(40px, 6vw, 82px); background: var(--ink); color: white; }
.reassurance-card h2 { max-width: 620px; margin: 0 0 22px; font: 800 clamp(36px, 4vw, 58px)/1.06 "Manrope"; letter-spacing: -.045em; }
.reassurance-card > div:first-child > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.68); line-height: 1.7; }
.text-link { display: inline-flex; gap: 12px; margin-top: 18px; color: var(--green); font-weight: 800; text-decoration: none; }
.reassurance-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.reassurance-points > div > span { color: var(--green); font-size: 12px; font-weight: 800; }
.reassurance-points p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.55; }
.reassurance-points strong { display: block; margin-bottom: 4px; color: white; font: 700 18px "Manrope"; }
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; background: var(--paper); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; font: 700 17px "Manrope"; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 22px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 24px; max-width: 700px; color: #6c7975; line-height: 1.65; }
.final-cta { padding: 90px 22px; text-align: center; background: var(--green); }
.final-cta p { margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.final-cta h2 { margin: 0 0 31px; font: 800 clamp(38px, 5vw, 68px)/1 "Manrope"; letter-spacing: -.05em; }
.light-button { display: inline-flex; align-items: center; gap: 14px; padding: 15px 24px; border-radius: 4px; background: var(--ink); color: white; font-weight: 800; text-decoration: none; }
footer { padding: 58px clamp(22px, 7vw, 110px) 28px; background: #0a1915; color: rgba(255,255,255,.62); }
.footer-brand { color: white; }
.footer-brand small { color: rgba(255,255,255,.6); }
footer > p { max-width: 820px; margin: 30px 0 50px; font-size: 12px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lede { margin-left: auto; margin-right: auto; }
  .hero .eyebrow, .benefit-list { justify-content: center; }
  .form-card { width: min(100%, 570px); margin: 0 auto; }
  .reassurance-card, .faq { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 700px) {
  .site-header { height: 70px; padding: 0 16px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 8px; }
  .header-cta { display: none; }
  .hero { min-height: 0; padding: 53px 16px 46px; gap: 42px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lede { font-size: 16px; }
  .benefit-list { display: grid; justify-content: start; text-align: left; }
  .form-card { padding: 22px 18px; }
  .form-card h2 { font-size: 25px; }
  .choice-grid { gap: 6px; }
  .choice span { font-size: 13px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-pad { padding: 75px 20px; }
  .steps-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .reassurance { padding-top: 0; }
  .reassurance-card { padding: 39px 24px; }
  .faq { gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
