:root {
  --green: #a9cf3f;
  --green-bright: #b5dc49;
  --green-deep: #315f36;
  --green-dark: #17371f;
  --ink: #111a13;
  --ink-soft: #3f4c42;
  --cream: #f8f9f3;
  --mint: #edf4df;
  --white: #ffffff;
  --line: rgba(17, 26, 19, .12);
  --shadow: 0 24px 70px rgba(28, 52, 31, .16);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section-pad { padding: 106px 0; position: relative; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--ink); color: white; padding: 12px 18px; border-radius: 12px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: 78px; display: flex; align-items: center;
  background: rgba(248, 249, 243, .88);
  border-bottom: 1px solid rgba(17, 26, 19, .08);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 170px; }
.brand img { width: 76px; height: 48px; object-fit: contain; }
.brand span { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--green-deep); }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green); transition: .25s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 20px; border-radius: 999px; color: var(--white); background: var(--ink); box-shadow: 0 10px 26px rgba(17,26,19,.18); }
.nav-cta:hover { transform: translateY(-2px); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--ink); padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: white; border-radius: 2px; }

.hero {
  min-height: calc(100vh - 78px);
  display: flex; align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(169,207,63,.22), transparent 29%),
    linear-gradient(115deg, #fbfcf8 0%, #f2f6e7 55%, #e6f0cf 100%);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: radial-gradient(rgba(49,95,54,.24) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(to right, black, transparent 68%); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 46px; align-items: center; position: relative; z-index: 2; }
.hero-copy { padding: 24px 0; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--green-deep); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 900; }
.eyebrow { padding: 8px 13px; border: 1px solid rgba(49,95,54,.18); border-radius: 999px; background: rgba(255,255,255,.62); }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(169,207,63,.16); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(48px, 5.2vw, 78px); line-height: .98; letter-spacing: -.055em; max-width: 760px; }
h1 em { font-style: normal; color: var(--green-deep); position: relative; white-space: nowrap; }
h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 11px; background: rgba(169,207,63,.45); z-index: -1; border-radius: 99px; }
.hero-text { max-width: 650px; font-size: 19px; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.button { min-height: 54px; display: inline-flex; justify-content: center; align-items: center; gap: 14px; padding: 0 25px; border-radius: 999px; border: 1px solid transparent; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--green); box-shadow: 0 14px 34px rgba(132,172,45,.28); }
.button-primary:hover { background: var(--green-bright); box-shadow: 0 18px 38px rgba(132,172,45,.36); }
.button-ghost { border-color: rgba(17,26,19,.25); background: rgba(255,255,255,.48); }
.button-dark { width: 100%; background: var(--ink); color: white; }
.trust-row { display: flex; flex-wrap: wrap; gap: 11px 20px; color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.trust-row div { display: inline-flex; align-items: center; gap: 7px; }
.trust-icon { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--green); color: var(--ink); font-weight: 900; }

.hero-visual { min-height: 660px; position: relative; display: flex; justify-content: center; align-items: flex-end; overflow: visible; }
.hero-visual::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #6ca745); bottom: 36px; right: 6px; box-shadow: var(--shadow); }
.hero-visual::after { content: ""; position: absolute; width: 440px; height: 88px; border-radius: 50%; background: rgba(17,26,19,.18); filter: blur(20px); bottom: 5px; right: 34px; }
.hero-mascot { position: relative; z-index: 4; width: 430px; max-height: 650px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 24px 25px rgba(16,31,18,.2)); }
.visual-logo-card { position: absolute; z-index: 6; top: 26px; right: -34px; display: flex; align-items: center; gap: 12px; width: 225px; padding: 15px 18px; border-radius: 20px; background: rgba(255,255,255,.95); box-shadow: 0 18px 48px rgba(23,55,31,.18); backdrop-filter: blur(10px); }
.visual-logo-card img { width: 70px; height: 54px; object-fit: contain; }
.visual-logo-card strong, .visual-logo-card span { display: block; }
.visual-logo-card strong { font-size: 14px; }
.visual-logo-card span { font-size: 11px; color: var(--ink-soft); }
.visual-orbit { position: absolute; z-index: 2; border: 1px solid rgba(49,95,54,.25); border-radius: 50%; }
.orbit-one { width: 575px; height: 575px; right: -10px; bottom: 10px; }
.orbit-two { width: 630px; height: 410px; right: -48px; bottom: 78px; transform: rotate(-13deg); }
.floating-card { position: absolute; z-index: 7; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 18px; background: var(--white); box-shadow: 0 18px 50px rgba(17,26,19,.17); animation: float 4s ease-in-out infinite; }
.floating-card-one { left: -14px; top: 235px; }
.floating-card-two { right: 8px; bottom: 90px; animation-delay: -2s; }
.float-symbol { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--mint); color: var(--green-deep); font-weight: 900; font-size: 21px; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { color: var(--ink-soft); }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-shape-one { width: 130px; height: 130px; background: rgba(255,255,255,.55); left: 48%; top: 15%; }
.hero-shape-two { width: 70px; height: 70px; border: 16px solid rgba(169,207,63,.28); left: 4%; bottom: 10%; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .growth-copy h2, .plan-intro h2, .signup-copy h2 { margin: 12px 0 16px; font-size: clamp(36px, 4vw, 58px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading p, .growth-copy p, .plan-intro p, .signup-copy p { color: var(--ink-soft); font-size: 17px; }

.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 430px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfcf8; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 130px; height: 130px; border-radius: 50%; right: -75px; bottom: -65px; background: var(--mint); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(169,207,63,.65); }
.service-card:hover::after { transform: scale(1.45); }
.icon-box { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: var(--green); margin-bottom: 34px; }
.icon-box svg { width: 29px; height: 29px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-box .fill { fill: var(--ink); stroke: none; }
.card-number { position: absolute; top: 32px; right: 30px; color: rgba(17,26,19,.19); font-size: 28px; font-weight: 900; }
.service-card h3 { font-size: 22px; letter-spacing: -.02em; }
.service-card p { color: var(--ink-soft); }
.service-card ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; font-size: 14px; font-weight: 650; }
.service-card li::before { content: "✓"; margin-right: 9px; color: var(--green-deep); }

.growth { background: var(--ink); color: white; overflow: hidden; }
.growth::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(169,207,63,.2), transparent 65%); left: -270px; top: -260px; }
.growth-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; position: relative; }
.growth-copy p { color: rgba(255,255,255,.68); max-width: 540px; }
.kicker.light, .growth .kicker { color: var(--green); }
.text-link { display: inline-flex; gap: 13px; align-items: center; margin-top: 18px; font-weight: 850; color: var(--green); }
.benefit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.benefit-card { min-height: 205px; padding: 25px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.055); }
.benefit-card:hover { border-color: rgba(169,207,63,.5); background: rgba(255,255,255,.075); }
.benefit-icon { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 13px; background: var(--green); color: var(--ink); font-size: 20px; font-weight: 900; }
.benefit-card h3 { margin: 21px 0 8px; font-size: 18px; }
.benefit-card p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; }

.process { background: var(--cream); }
.process-line { height: 1px; background: linear-gradient(to right, transparent, rgba(49,95,54,.33), transparent); margin: 0 7% -28px; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.process-step { position: relative; display: flex; gap: 20px; padding: 38px 27px 27px; border-radius: 22px; background: white; border: 1px solid var(--line); }
.step-number { flex: 0 0 auto; display: grid; place-items: center; width: 52px; height: 52px; margin-top: -65px; border-radius: 50%; color: var(--ink); background: var(--green); border: 8px solid var(--cream); font-size: 18px; font-weight: 900; }
.process-step h3 { margin-bottom: 8px; font-size: 19px; }
.process-step p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.plan-section { background: linear-gradient(125deg, #315f36 0%, #214428 50%, #142c1b 100%); color: white; overflow: hidden; }
.plan-section::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; right: -250px; top: -250px; border: 110px solid rgba(169,207,63,.12); }
.plan-wrap { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 86px; position: relative; }
.plan-intro p { color: rgba(255,255,255,.68); max-width: 600px; }
.mini-proof { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.mini-proof span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 750; }
.price-card { position: relative; padding: 38px; border-radius: 30px; background: var(--green); color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.price-card::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.38); border-radius: 24px; pointer-events: none; }
.price-tag { display: inline-flex; position: relative; padding: 8px 12px; border-radius: 999px; background: white; color: var(--green-deep); font-size: 11px; letter-spacing: .12em; font-weight: 900; }
.price-line { position: relative; display: flex; align-items: flex-end; margin: 24px 0 12px; line-height: .85; }
.price-line > span { font-size: 23px; font-weight: 900; align-self: flex-start; margin-top: 10px; }
.price-line strong { font-size: 76px; letter-spacing: -.075em; }
.price-line.price-consultation { align-items: center; margin: 28px 0 18px; line-height: 1; }
.price-line.price-consultation strong { font-size: clamp(42px, 5vw, 64px); letter-spacing: -.045em; }
.price-line small { margin: 0 0 7px 7px; font-weight: 850; }
.price-description { position: relative; max-width: 410px; color: rgba(17,26,19,.72); }
.price-list { position: relative; list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 13px; font-weight: 740; }
.price-list span { display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 8px; border-radius: 50%; background: var(--ink); color: white; font-size: 11px; }
.price-card .button { position: relative; }
.price-note { position: relative; display: block; margin-top: 14px; text-align: center; color: rgba(17,26,19,.65); }

.signup { background: #eef4e2; overflow: hidden; }
.signup-decor { position: absolute; width: 390px; height: 390px; border: 75px solid rgba(169,207,63,.22); border-radius: 50%; left: -185px; bottom: -190px; }
.signup-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 52px; align-items: stretch; position: relative; }
.signup-copy { display: flex; flex-direction: column; }
.signup-mascot-wrap { position: relative; flex: 1; min-height: 430px; margin-top: 20px; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, var(--green), #7fac3f); }
.signup-mascot-wrap::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; border: 1px solid rgba(255,255,255,.42); right: -80px; top: 40px; }
.signup-mascot-wrap img { position: absolute; height: 510px; max-width: none; bottom: -120px; left: 50%; transform: translateX(-50%); filter: drop-shadow(0 25px 28px rgba(17,26,19,.24)); }
.speech-bubble { position: absolute; right: 18px; top: 28px; z-index: 2; padding: 13px 16px; border-radius: 18px 18px 4px 18px; background: white; font-size: 13px; font-weight: 850; box-shadow: 0 12px 30px rgba(17,26,19,.14); }
.lead-form { align-self: center; padding: 38px; border-radius: 30px; background: white; box-shadow: var(--shadow); border: 1px solid rgba(49,95,54,.12); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 24px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.form-heading span { font-size: 11px; letter-spacing: .13em; color: var(--green-deep); font-weight: 900; }
.form-heading strong { font-size: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-grid label { display: block; }
.form-grid label > span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.full-width { grid-column: 1 / -1; }
input, textarea { width: 100%; border: 1px solid rgba(17,26,19,.15); border-radius: 14px; background: #f8faf5; outline: none; color: var(--ink); transition: .2s ease; }
input { height: 51px; padding: 0 15px; }
textarea { resize: vertical; min-height: 100px; padding: 14px 15px; }
input:focus, textarea:focus { border-color: var(--green-deep); box-shadow: 0 0 0 4px rgba(169,207,63,.18); background: white; }
input.invalid, textarea.invalid { border-color: #b63838; box-shadow: 0 0 0 4px rgba(182,56,56,.09); }
.field-error { min-height: 16px; display: block; color: #a82e2e; font-size: 11px; margin-top: 3px; }
.form-submit { width: 100%; border: 0; margin-top: 23px; }
.form-disclaimer { margin: 12px 0 0; text-align: center; color: #687269; font-size: 11px; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 12px; background: var(--mint); color: var(--green-dark); font-size: 13px; font-weight: 700; }
.form-status.show { display: block; }

.faq { background: white; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 23px 44px 23px 0; position: relative; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 18px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--mint); color: var(--green-deep); font-size: 20px; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 50px 22px 0; color: var(--ink-soft); }

.site-footer { background: var(--ink); color: white; padding: 65px 0 20px; }
.footer-top { display: grid; grid-template-columns: 1.25fr .65fr 1fr; gap: 70px; padding-bottom: 50px; }
.brand-footer span { color: var(--green); }
.footer-brand p { max-width: 440px; color: rgba(255,255,255,.62); font-size: 14px; margin-top: 18px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.64); }
.footer-column strong { color: white; margin-bottom: 5px; font-size: 14px; }
.footer-column a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.44); font-size: 11px; }
.footer-bottom a:hover { color: var(--green); }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal-ready .reveal { opacity: 0; transform: translateY(24px); }
.reveal-ready .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .section-pad { padding: 84px 0; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 20px; }
  h1 { font-size: clamp(46px, 6.3vw, 68px); }
  .hero-visual { min-height: 610px; }
  .hero-visual::before { width: 420px; height: 420px; }
  .hero-mascot { width: 370px; max-height: 590px; }
  .orbit-one { width: 470px; height: 470px; }
  .orbit-two { width: 500px; }
  .floating-card-one { left: -10px; }
  .service-card { padding: 25px; }
  .growth-grid { gap: 42px; }
  .plan-wrap { gap: 50px; }
  .signup-grid { grid-template-columns: .7fr 1.3fr; gap: 30px; }
}

@media (max-width: 860px) {
  .site-header { height: 70px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 70px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border-radius: 20px; background: white; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px; }
  .main-nav .nav-cta { text-align: center; margin-top: 5px; }
  .hero { min-height: auto; padding-top: 78px; }
  .hero-grid, .growth-grid, .plan-wrap, .signup-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text, .hero-copy h1 { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 610px; width: min(570px, 100%); margin-inline: auto; }
  .hero-visual::before { right: 50%; transform: translateX(50%); }
  .visual-logo-card { right: -6px; top: 14px; }
  .floating-card-one { left: 8px; }
  .service-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .service-card { min-height: auto; }
  .growth-copy { text-align: center; }
  .growth-copy p { margin-inline: auto; }
  .benefit-grid { max-width: 700px; margin-inline: auto; }
  .process-grid { grid-template-columns: 1fr; gap: 45px; }
  .process-line { display: none; }
  .plan-intro { text-align: center; }
  .plan-intro p { margin-inline: auto; }
  .mini-proof { justify-content: center; }
  .price-card { max-width: 580px; width: 100%; margin-inline: auto; }
  .signup-copy { text-align: center; }
  .signup-mascot-wrap { width: min(560px, 100%); margin-inline: auto; }
  .faq-grid { gap: 20px; }
  .faq .section-heading { margin-bottom: 20px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 68px 0; }
  .brand img { width: 62px; }
  .brand span { font-size: 10px; }
  h1 { font-size: 44px; line-height: 1; }
  h1 em { white-space: normal; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; justify-content: start; max-width: 290px; margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 515px; }
  .hero-visual::before { width: 350px; height: 350px; bottom: 34px; }
  .hero-mascot { width: 310px; max-height: 500px; }
  .visual-logo-card { top: 16px; right: 0; width: 185px; padding: 11px; }
  .visual-logo-card img { width: 58px; }
  .floating-card { padding: 10px; }
  .floating-card-one { top: 205px; left: 0; }
  .floating-card-two { right: 0; bottom: 65px; }
  .float-symbol { width: 34px; height: 34px; }
  .section-heading h2, .growth-copy h2, .plan-intro h2, .signup-copy h2 { font-size: 38px; }
  .service-card { padding: 25px 22px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .process-step { padding-inline: 20px; }
  .price-card { padding: 30px 22px; }
  .price-line strong { font-size: 60px; }
  .signup-mascot-wrap { min-height: 340px; }
  .signup-mascot-wrap img { height: 430px; bottom: -112px; }
  .lead-form { padding: 26px 19px; border-radius: 24px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
}

/* Contato: WhatsApp e envio de lead */
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.button-whatsapp { width: 100%; margin-top: 12px; background: #25d366; color: #0b2917; }
.button-whatsapp:hover { background: #2be174; box-shadow: 0 14px 30px rgba(37,211,102,.22); }
.form-submit:disabled { opacity: .7; cursor: wait; transform: none; }
.form-status.error { background: #fdeaea; color: #8a2525; }
.footer-address { margin-top: 8px; max-width: 340px; line-height: 1.55; }

.footer-contact { color: rgba(255,255,255,.78); font-weight: 700; overflow-wrap: anywhere; }
.footer-contact:hover { color: var(--green); }

/* Ajustes de envio e ícone do WhatsApp */
.button-whatsapp { display: flex; align-items: center; justify-content: center; gap: 9px; }
.whatsapp-icon { width: 22px; height: 22px; flex: 0 0 22px; }
.form-status.sending { display: block; background: #eef7da; color: var(--green-dark); }
.form-status.show { display: block; }


/* Botão principal de WhatsApp — destaque visual */
.button-whatsapp {
  width: 100%;
  min-height: 58px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  background: #25d366;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: .1px;
  box-shadow: 0 12px 28px rgba(37,211,102,.28);
  text-decoration: none;
}
.button-whatsapp:hover {
  background: #20c55d;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(37,211,102,.36);
  transform: translateY(-2px);
}
.button-whatsapp:active { transform: translateY(0); }
.button-whatsapp .whatsapp-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: #ffffff;
}
@media (max-width: 640px) {
  .button-whatsapp { min-height: 56px; font-size: 15px; border-radius: 14px; }
}
