:root {
  --forest: #0d2419;
  --forest-2: #163729;
  --ink: #122018;
  --cream: #f3f0e7;
  --paper: #fbfaf6;
  --lime: #c9f24a;
  --moss: #61785f;
  --line: rgba(18, 32, 24, .16);
  --radius: 1.4rem;
  --shadow: 0 1.5rem 4rem rgba(13, 36, 25, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Manrope", sans-serif; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--lime); color: var(--ink); padding: .8rem 1rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }

.demo-bar { min-height: 2.25rem; padding: .35rem clamp(1.2rem, 4vw, 4.5rem); display: flex; justify-content: space-between; gap: 1rem; align-items: center; background: var(--forest); color: #dfe9df; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-header { position: sticky; top: 0; z-index: 50; height: 5.5rem; padding: 0 clamp(1.2rem, 4vw, 4.5rem); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(18,32,24,.12); background: rgba(251,250,246,.88); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand > span:last-child { display: grid; line-height: 1; }
.brand b { font-family: "DM Sans", sans-serif; letter-spacing: .08em; font-size: .92rem; }
.brand small { margin-top: .3rem; color: var(--moss); font-size: .7rem; letter-spacing: .12em; }
.brand-mark { position: relative; width: 2.3rem; height: 2.3rem; border-radius: 50%; display: grid; place-items: center; background: var(--lime); overflow: hidden; }
.brand-mark i { position: absolute; width: 1.15rem; height: 1.7rem; bottom: -.42rem; border-radius: 100% 0 100% 0; background: var(--forest); transform-origin: bottom center; }
.brand-mark i:nth-child(1) { transform: rotate(-48deg); }
.brand-mark i:nth-child(2) { transform: rotate(0); }
.brand-mark i:nth-child(3) { transform: rotate(48deg); }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); font-size: .86rem; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -.4rem; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .85rem 1.15rem; background: var(--forest); color: white; border-radius: 999px; }
.nav-cta span { margin-left: .45rem; color: var(--lime); }
.menu-toggle { display: none; border: 0; background: transparent; width: 2.5rem; height: 2.5rem; padding: .55rem; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: .32rem 0; background: var(--ink); transition: transform .25s, opacity .25s; }

.hero { min-height: calc(100vh - 7.75rem); display: grid; grid-template-columns: minmax(0,.88fr) minmax(32rem,1.12fr); align-items: stretch; }
.hero-copy { padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 6rem) clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 5.5rem); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 1.7rem; color: var(--moss); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: .55rem; height: .55rem; margin-right: .55rem; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 .28rem rgba(201,242,74,.2); }
h1, h2 { font-family: "DM Sans", sans-serif; letter-spacing: -.065em; line-height: .94; font-weight: 500; }
h1 { max-width: 11ch; margin: 0; font-size: clamp(3.8rem, 6.7vw, 7.7rem); }
h1 em, h2 em { color: var(--moss); font-style: italic; font-weight: 400; }
.hero-lead { max-width: 39rem; margin: 2rem 0 0; font-size: clamp(1rem, 1.25vw, 1.2rem); color: #526158; }
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.button { min-height: 3.4rem; display: inline-flex; align-items: center; justify-content: center; gap: .9rem; padding: .9rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-size: .83rem; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; }
.button-primary span { color: var(--lime); }
.button-muted { background: transparent; border-color: var(--line); color: var(--ink); }
.button-muted:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.button-light { background: var(--lime); color: var(--forest); }
.text-link { padding-block: .5rem; border-bottom: 1px solid currentColor; font-size: .84rem; font-weight: 700; }
.text-link span { margin-left: .4rem; }
.hero-notes { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0; margin: auto 0 0; list-style: none; }
.hero-notes li { padding: .45rem .75rem; border: 1px solid var(--line); border-radius: 999px; color: var(--moss); font-size: .72rem; font-weight: 600; }

.hero-visual { position: relative; min-height: 38rem; padding: 3.25rem 0 2.8rem 2.5rem; display: flex; flex-direction: column; justify-content: center; background: var(--forest); overflow: hidden; }
.hero-visual::before { content: ""; position: absolute; width: 32rem; height: 32rem; right: -12rem; top: -9rem; border: 1px solid rgba(201,242,74,.18); border-radius: 50%; }
.visual-heading { position: relative; z-index: 2; width: min(44rem, 92%); display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; color: #dce5dd; font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; }
.visual-heading span { font-weight: 700; }
.visual-heading i { display: inline-block; width: .55rem; height: .55rem; border-radius: 50%; margin-right: .5rem; background: var(--lime); }
.visual-heading small { color: #94a99b; font-size: .63rem; }
.compare { --position: 58%; position: relative; z-index: 2; width: min(44rem, 92%); aspect-ratio: 1.45; overflow: hidden; border-radius: .2rem; box-shadow: 0 2rem 5rem rgba(0,0,0,.3); isolation: isolate; }
.compare > img, .compare-before, .compare-before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-before { clip-path: inset(0 calc(100% - var(--position)) 0 0); z-index: 2; }
.compare-before img { filter: saturate(.22) brightness(.65) contrast(.88); }
.compare-shade { position: absolute; z-index: 3; inset: 0 calc(100% - var(--position)) 0 0; background: linear-gradient(130deg, rgba(13,36,25,.52), rgba(13,36,25,.08)); pointer-events: none; }
.compare-line { position: absolute; z-index: 5; top: 0; bottom: 0; left: var(--position); width: 2px; background: white; transform: translateX(-1px); pointer-events: none; }
.compare-line span { position: absolute; left: 50%; top: 50%; width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--forest); font-size: 1.1rem; font-weight: 700; transform: translate(-50%,-50%); box-shadow: 0 .4rem 1.5rem rgba(0,0,0,.25); }
.compare input { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.compare-label { position: absolute; z-index: 4; bottom: 1rem; padding: .45rem .65rem; background: rgba(13,36,25,.78); color: white; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(6px); pointer-events: none; }
.before-label { left: 1rem; }
.after-label { right: 1rem; }
.image-note { position: relative; z-index: 2; width: min(44rem, 92%); margin: .8rem 0 0; color: #8ca092; font-size: .64rem; }

.service-intro { padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 5vw, 5.5rem); background: var(--cream); }
.section-kicker { display: flex; align-items: center; gap: .8rem; margin-bottom: 2rem; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section-kicker span { width: 2rem; height: 2rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.section-heading { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(18rem,.6fr); gap: 4rem; align-items: end; margin-bottom: 4rem; }
.section-heading h2, .process-heading h2, .planner h2 { margin: 0; font-size: clamp(3rem, 5.7vw, 6.2rem); }
.section-heading p, .process-heading p, .planner-copy > p:not(.eyebrow) { margin: 0 0 .45rem; color: #59665e; font-size: 1rem; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.service-card { min-height: 24rem; padding: 1.5rem; display: flex; flex-direction: column; border: 1px solid var(--line); background: rgba(255,255,255,.34); transition: transform .3s, background .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-.45rem); background: var(--paper); box-shadow: var(--shadow); }
.service-card.featured { background: var(--forest); color: white; }
.service-number { align-self: flex-end; color: var(--moss); font-size: .72rem; }
.featured .service-number { color: #92a99a; }
.service-icon { width: 4rem; height: 4rem; margin-top: 1.5rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--moss); font-size: 1.35rem; }
.featured .service-icon { border-color: rgba(255,255,255,.18); color: var(--lime); }
.service-card h3 { margin: auto 0 .8rem; font-family: "DM Sans", sans-serif; font-size: clamp(1.5rem, 2.3vw, 2.25rem); line-height: 1.05; }
.service-card p { margin: 0 0 1.6rem; color: #68766e; font-size: .88rem; }
.featured p { color: #a9b8ae; }
.service-select { padding: .8rem 0; display: flex; justify-content: space-between; border: 0; border-top: 1px solid var(--line); background: transparent; color: inherit; font-size: .75rem; font-weight: 700; cursor: pointer; }
.featured .service-select { border-color: rgba(255,255,255,.18); }
.service-select span { color: var(--moss); }
.featured .service-select span { color: var(--lime); }

.planner { padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 5vw, 5.5rem); display: grid; grid-template-columns: minmax(17rem,.65fr) minmax(30rem,1fr); gap: clamp(3rem, 8vw, 9rem); background: var(--paper); }
.planner-copy { position: sticky; top: 8rem; align-self: start; }
.planner h2 { max-width: 8ch; }
.planner-copy > p:not(.eyebrow) { max-width: 27rem; margin-top: 1.6rem; }
.planner-progress { width: 100%; max-width: 27rem; height: 3px; margin-top: 3rem; background: #dfe2dc; overflow: hidden; }
.planner-progress span { display: block; width: 33.333%; height: 100%; background: var(--forest); transition: width .35s ease; }
.progress-label { margin-top: .75rem !important; color: var(--moss) !important; font-size: .72rem !important; }
.progress-label strong { color: var(--ink); font-size: 1rem; }
.planner-form { min-height: 31rem; padding: clamp(1.4rem, 3vw, 2.5rem); border: 1px solid var(--line); background: var(--cream); box-shadow: .8rem .8rem 0 var(--forest); }
.planner-step { display: none; padding: 0; margin: 0; border: 0; }
.planner-step.active { display: block; animation: step-in .35s ease both; }
@keyframes step-in { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: none; } }
.planner-step legend { width: 100%; margin-bottom: 2rem; font-family: "DM Sans", sans-serif; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.05; letter-spacing: -.045em; }
.option-grid { display: grid; gap: .65rem; }
.option-grid label { position: relative; display: block; cursor: pointer; }
.option-grid input { position: absolute; opacity: 0; pointer-events: none; }
.option-grid span { min-height: 5.25rem; padding: 1rem 1.1rem; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); background: rgba(255,255,255,.46); transition: border-color .2s, background .2s, transform .2s; }
.option-grid label:hover span { transform: translateX(.3rem); border-color: var(--moss); }
.option-grid input:checked + span { border-color: var(--forest); background: var(--lime); box-shadow: inset .3rem 0 0 var(--forest); }
.option-grid b { font-size: .92rem; }
.option-grid small { margin-top: .2rem; color: #66726a; font-size: .74rem; }
.planner-result { display: none; min-height: 15rem; align-items: center; gap: 1.2rem; animation: step-in .35s ease both; }
.planner-result.show { display: flex; }
.result-icon { flex: 0 0 auto; width: 4rem; height: 4rem; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-size: 1.35rem; }
.planner-result div { display: grid; }
.planner-result small { color: var(--moss); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.planner-result strong { margin-top: .45rem; font-family: "DM Sans", sans-serif; font-size: clamp(1.7rem, 3vw, 2.8rem); letter-spacing: -.04em; line-height: 1; }
.planner-result p { margin: .8rem 0 0; color: #5c6961; font-size: .86rem; }
.form-actions { display: flex; justify-content: flex-end; gap: .7rem; margin-top: 2.2rem; }
.hidden { display: none !important; }

.process { padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 5vw, 5.5rem); background: var(--forest); color: white; }
.process .section-kicker span { border-color: rgba(255,255,255,.2); }
.process-grid { display: grid; grid-template-columns: minmax(18rem,.7fr) minmax(28rem,1fr); gap: clamp(3rem, 9vw, 10rem); align-items: start; }
.process-heading h2 { max-width: 9ch; }
.process-heading p { max-width: 28rem; margin-top: 1.8rem; color: #a9b7ae; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.process-list li { padding: 1.7rem 0; display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-list > li > span { color: var(--lime); font-size: .7rem; }
.process-list h3 { margin: 0; font-family: "DM Sans", sans-serif; font-size: 1.25rem; }
.process-list p { max-width: 34rem; margin: .45rem 0 0; color: #9eaea4; font-size: .84rem; }

.closing { min-height: 80vh; padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 5vw, 5.5rem); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--lime); }
.closing > p { margin: 0; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.closing h2 { max-width: 9ch; margin: 1rem 0 2rem; font-size: clamp(4rem, 10vw, 10rem); }
.closing .button-light { background: var(--forest); color: white; }
.closing .button-light span { color: var(--lime); }
.closing-meta { width: 100%; margin-top: 5rem; padding-top: 1rem; display: flex; justify-content: space-between; border-top: 1px solid rgba(13,36,25,.28); font-size: .72rem; font-weight: 700; }

footer { padding: 2rem clamp(1.2rem, 5vw, 5.5rem); display: grid; grid-template-columns: auto 1fr auto; gap: 3rem; align-items: center; background: var(--paper); }
footer p { max-width: 42rem; margin: 0 auto; color: #69746d; font-size: .68rem; text-align: center; }
footer > a:last-child { font-size: .75rem; font-weight: 700; }
.floating-whatsapp { position: fixed; z-index: 40; right: 1rem; bottom: 1rem; min-height: 3.2rem; padding: .55rem .65rem .55rem 1.05rem; display: flex; align-items: center; gap: .8rem; border-radius: 999px; background: var(--forest); color: white; box-shadow: 0 .8rem 2.5rem rgba(13,36,25,.25); font-size: .72rem; font-weight: 700; transform: translateY(6rem); transition: transform .35s ease; }
.floating-whatsapp.show { transform: none; }
.floating-whatsapp i { width: 2.1rem; height: 2.1rem; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--forest); font-style: normal; }

.reveal { opacity: 0; transform: translateY(1.4rem); transition: opacity .7s ease, transform .7s ease; transition-delay: calc(var(--delay, 0) * 100ms); }
.reveal.visible { opacity: 1; transform: none; }
[data-delay="1"] { --delay: 1; }
[data-delay="2"] { --delay: 2; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 44rem; }
  .hero-visual { min-height: 42rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .planner { grid-template-columns: 1fr; }
  .planner-copy { position: static; }
  .planner h2 { max-width: 10ch; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .demo-bar { justify-content: center; text-align: center; font-size: .58rem; }
  .demo-bar span:last-child { display: none; }
  .site-header { height: 4.8rem; }
  .menu-toggle { display: block; position: relative; z-index: 52; }
  .menu-open .menu-toggle > span:nth-child(1) { transform: translateY(.42rem) rotate(45deg); }
  .menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-.42rem) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 51; inset: 0; padding: 7rem 1.4rem 2rem; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; background: var(--cream); transform: translateX(100%); transition: transform .35s ease; }
  .menu-open .main-nav { transform: none; }
  .main-nav > a { padding: 1.2rem 0; border-bottom: 1px solid var(--line); font-family: "DM Sans", sans-serif; font-size: 1.6rem; }
  .main-nav .nav-cta { margin-top: 1.3rem; padding: 1rem 1.2rem; border: 0; border-radius: 999px; text-align: center; font-family: "Manrope", sans-serif; font-size: .85rem; }
  .hero-copy { min-height: auto; padding-top: 5rem; }
  h1 { font-size: clamp(3.6rem, 17vw, 5.5rem); }
  .hero-notes { margin-top: 3rem; }
  .hero-visual { min-height: auto; padding: 3.2rem 1rem; }
  .visual-heading, .compare, .image-note { width: 100%; }
  .compare { aspect-ratio: .9; }
  .compare > img, .compare-before img { object-position: 60% center; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 20rem; }
  .planner { gap: 2.3rem; }
  .planner-form { min-height: 34rem; box-shadow: .45rem .45rem 0 var(--forest); }
  .form-actions { justify-content: stretch; }
  .form-actions .button { flex: 1; }
  .process-grid { gap: 3rem; }
  .closing { min-height: 70vh; }
  .closing-meta { gap: 1rem; flex-direction: column; }
  footer { grid-template-columns: 1fr; justify-items: center; gap: 1.5rem; text-align: center; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { padding: .55rem; }
}

@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 { opacity: 1; transform: none; }
}
