@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/plus-jakarta-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --green: #0d3d23;
  --green-2: #174d31;
  --green-3: #092c1a;
  --lime: #d6f549;
  --lime-soft: #efffc0;
  --ink: #1a1a1a;
  --muted: #626861;
  --paper: #f4f4f1;
  --cream: #fafaf6;
  --white: #fff;
  --line: rgba(13, 61, 35, .15);
  --shadow: 0 24px 70px rgba(4, 29, 15, .18);
  --radius: 24px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.form-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--lime);
  color: var(--green);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }
.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;
}
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(244, 244, 241, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(13, 61, 35, .08); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 190px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 24px; }
.header-phone { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--green); font-weight: 800; line-height: 1.15; }
.header-phone small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.phone-icon { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(214, 245, 73, .75); outline-offset: 3px; }
.button-small { min-height: 46px; padding: 11px 18px; font-size: 14px; }
.button-dark { background: var(--green); color: var(--white); box-shadow: 0 10px 24px rgba(13, 61, 35, .17); }
.button-dark:hover { background: var(--green-2); }
.button-lime { background: var(--lime); color: var(--green-3); box-shadow: 0 12px 30px rgba(214, 245, 73, .16); }
.button-lime:hover { background: #e0fa69; box-shadow: 0 16px 32px rgba(214, 245, 73, .23); }
.button-ghost { background: transparent; color: var(--green); border-color: var(--line); }
.button-full { width: 100%; }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link.light { color: var(--white); }

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}
.hero-image, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-image { background: url("assets/hero-villa.webp") center 52% / cover no-repeat; transform: scale(1.02); }
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 25, 14, .93) 0%, rgba(4, 30, 16, .84) 39%, rgba(5, 28, 16, .36) 66%, rgba(4, 22, 12, .48) 100%),
    linear-gradient(0deg, rgba(4, 25, 14, .55), transparent 45%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(390px, .75fr); gap: 70px; align-items: center; min-height: 760px; padding-block: 76px; }
.eyebrow { margin: 0 0 16px; color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.eyebrow.light { color: var(--lime); }
.hero h1, .section h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 680;
}
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,.86); font-size: clamp(17px, 2vw, 21px); line-height: 1.6; }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 690px; margin: 46px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.24); }
.trust-row li { padding: 20px 18px 0 0; }
.trust-row strong { display: block; color: var(--lime); font-size: 19px; }
.trust-row li > span { display: block; color: rgba(255,255,255,.7); font-size: 12px; }

.lead-card {
  scroll-margin-top: 105px;
  padding: 30px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lead-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.lead-card h2 { margin: 3px 0 0; font-size: 25px; line-height: 1.2; letter-spacing: -.035em; }
.form-kicker { color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.step-count { display: grid; place-items: center; flex: 0 0 50px; width: 50px; height: 50px; color: var(--green); background: var(--lime-soft); border-radius: 50%; font-weight: 700; }
.progress { height: 4px; margin: 22px 0 26px; overflow: hidden; background: #e9ede8; border-radius: 99px; }
.progress span { display: block; width: 33.333%; height: 100%; background: var(--lime); border-radius: inherit; transition: width .35s ease; }
.form-step { animation: slideIn .32s ease both; }
.form-step[hidden], .form-success[hidden] { display: none; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
fieldset { margin: 0; padding: 0; border: 0; }
.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid #dfe5df;
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.choice-card:hover { border-color: var(--green); transform: translateY(-1px); }
.choice-card:has(input:checked) { border-color: var(--green); background: #f3f8f1; box-shadow: inset 0 0 0 1px var(--green); }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--green); background: var(--lime-soft); border-radius: 12px; font-size: 22px; font-weight: 800; }
.choice-card strong { display: block; color: var(--green-3); font-size: 15px; }
.choice-card small { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.choice-arrow { color: var(--green); font-size: 18px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.full { grid-column: 1 / -1; }
.field > span { display: block; margin-bottom: 7px; color: var(--green-3); font-size: 12px; font-weight: 800; }
.field input, .field select {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d9dfd8;
  border-radius: 10px;
}
.field input::placeholder { color: #92978f; }
.field input.is-invalid, .field select.is-invalid, .consent input.is-invalid { border-color: #b23a33; box-shadow: 0 0 0 3px rgba(178,58,51,.09); }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin-top: 16px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--green); }
.consent a { color: var(--green); font-weight: 700; }
.form-nav { display: grid; grid-template-columns: .7fr 1.3fr; gap: 12px; margin-top: 18px; }
.form-error { min-height: 20px; margin-top: 8px; color: #a12d27; font-size: 11px; font-weight: 700; }
.privacy-note { margin: 14px 0 0; color: #747a73; font-size: 10px; line-height: 1.5; text-align: center; }
.button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-success { padding: 26px 4px 12px; text-align: center; }
.success-icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 18px; color: var(--green); background: var(--lime); border-radius: 50%; font-size: 29px; font-weight: 900; }
.form-success h3 { margin: 0 0 10px; color: var(--green-3); font-size: 25px; }
.form-success p { color: var(--muted); font-size: 13px; }
.success-actions { display: grid; gap: 14px; margin-top: 22px; }

.signal-strip { background: var(--lime); color: var(--green-3); }
.signal-grid { display: grid; grid-template-columns: 1.45fr 1fr 1.2fr; }
.signal-grid span { padding: 20px 26px; border-left: 1px solid rgba(13,61,35,.18); font-size: 12px; font-weight: 800; text-align: center; }
.signal-grid span:last-child { border-right: 1px solid rgba(13,61,35,.18); }

.section { padding-block: 112px; }
.section-light { background: var(--paper); }
.section-heading { max-width: 770px; margin-bottom: 48px; }
.section h2 { color: var(--green-3); font-size: clamp(35px, 5vw, 58px); }
.section-heading > p:last-child { max-width: 650px; margin: 23px 0 0; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card { position: relative; min-height: 520px; padding: 42px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.service-card-dark { color: var(--white); background: var(--green); }
.service-card-capital { background: linear-gradient(145deg, var(--lime-soft), var(--white) 68%); }
.service-card-capital .service-icon { color: var(--lime); background: var(--green); }
.service-card-dark h3, .service-card-dark .card-link { color: var(--white); }
.card-number { position: absolute; top: 28px; right: 30px; color: rgba(13,61,35,.25); font-size: 12px; font-weight: 800; }
.service-card-dark .card-number { color: rgba(255,255,255,.35); }
.service-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 32px; color: var(--green); background: var(--lime); border-radius: 16px; font-size: 29px; }
.service-card h3 { margin: 0; color: var(--green-3); font-size: 30px; letter-spacing: -.035em; }
.service-card.service-card-dark h3 { color: var(--white); }
.service-card > p { max-width: 510px; margin: 18px 0 0; color: var(--muted); }
.service-card-dark > p { color: rgba(255,255,255,.72); }
.check-list { margin: 26px 0 36px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 28px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 650; }
.service-card-dark .check-list li { border-color: rgba(255,255,255,.13); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.service-card-dark .check-list li::before { color: var(--lime); }
.card-link { position: absolute; left: 42px; bottom: 38px; display: inline-flex; gap: 10px; color: var(--green); font-weight: 800; text-decoration: none; }
.card-link span { color: var(--lime); }

.process-section { color: var(--white); background: var(--green-3); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-copy { position: sticky; top: 130px; align-self: start; }
.process-copy h2 { color: var(--white); }
.process-copy > p:not(.eyebrow) { max-width: 500px; margin: 24px 0 32px; color: rgba(255,255,255,.66); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list li > span { color: var(--lime); font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.process-list h3 { margin: -3px 0 7px; font-size: 23px; }
.process-list p { margin: 0; color: rgba(255,255,255,.63); font-size: 14px; }

.advisor-section { background: var(--white); }
.advisor-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
.advisor-photo { position: relative; }
.advisor-photo img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; border-radius: var(--radius); filter: saturate(.8); }
.advisor-badge { position: absolute; right: -24px; bottom: 38px; display: grid; place-items: center; width: 142px; height: 142px; color: var(--green); background: var(--lime); border: 8px solid var(--white); border-radius: 50%; text-align: center; }
.advisor-badge strong { display: block; margin-bottom: -7px; font-size: 45px; line-height: 1; }
.advisor-badge span { max-width: 80px; font-size: 11px; font-weight: 800; line-height: 1.25; }
.advisor-copy .lead { margin: 28px 0 22px; color: var(--green); font-size: 21px; font-weight: 700; line-height: 1.55; }
.advisor-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.signature { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.signature-mark { display: grid; place-items: center; width: 52px; height: 52px; color: var(--lime); background: var(--green); border-radius: 50%; font-weight: 900; }
.signature strong, .signature small { display: block; }
.signature small { color: var(--muted); font-size: 11px; }
.advisor-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }

.proof-section { color: var(--white); background: var(--green); }
.proof-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: center; }
.rating { min-height: 330px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); }
.rating-score { color: var(--lime); font-size: 86px; font-weight: 760; line-height: 1; letter-spacing: -.06em; }
.stars { margin: 16px 0 8px; color: var(--lime); letter-spacing: .15em; }
.rating small { margin-top: 5px; color: rgba(255,255,255,.6); }
.proof-copy h2 { color: var(--white); }
.proof-copy > p:not(.eyebrow) { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }
.proof-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.proof-points span { padding: 9px 13px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: 12px; font-weight: 750; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-grid .section-heading { margin: 0; }
.faq-grid .section-heading > p { margin-bottom: 20px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; color: var(--green-3); font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { flex: 0 0 auto; color: var(--green); font-size: 25px; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 680px; margin: -6px 0 26px; color: var(--muted); font-size: 14px; }

.final-cta { padding-block: 80px; color: var(--white); background: var(--green-3); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 760px; font-size: clamp(35px, 5vw, 56px); }
.final-cta p:not(.eyebrow) { margin: 18px 0 0; color: rgba(255,255,255,.66); }
.final-cta .button { flex: 0 0 auto; }

.site-footer { padding: 68px 0 24px; color: rgba(255,255,255,.75); background: #061c10; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr .7fr; gap: 46px; }
.footer-logo { width: 170px; height: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-grid p { max-width: 260px; color: rgba(255,255,255,.52); }
.footer-grid strong { display: block; margin-bottom: 13px; color: var(--white); }
.footer-grid address { font-style: normal; }
.footer-grid a { display: block; margin: 6px 0; text-decoration: none; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: 11px; }
.mobile-bar { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes slideIn { from { opacity: 0; transform: translateX(8px); } to { 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 { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding-block: 80px; }
  .hero-copy { max-width: 780px; }
  .lead-card { width: min(620px, 100%); }
  .hero-shade { background: linear-gradient(90deg, rgba(4,25,14,.92), rgba(4,28,15,.72)); }
  .process-grid, .advisor-grid, .faq-grid { gap: 55px; }
  .advisor-grid { grid-template-columns: .85fr 1.15fr; }
  .signal-grid span { padding-inline: 14px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card-capital { grid-column: 1 / -1; min-height: 430px; }
  .service-card-capital > p, .service-card-capital .check-list { max-width: 760px; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 30px, 680px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 150px; }
  .header-phone { display: none; }
  .header-actions .button { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding: 70px 0 54px; }
  .hero h1 { font-size: clamp(41px, 12vw, 64px); }
  .hero-lead { font-size: 17px; }
  .trust-row { margin-top: 38px; }
  .trust-row li { padding-right: 8px; }
  .trust-row strong { font-size: 16px; }
  .lead-card { padding: 24px 20px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid span { border-left: 0; border-right: 0 !important; border-top: 1px solid rgba(13,61,35,.15); padding: 14px; }
  .section { padding-block: 78px; }
  .service-grid, .process-grid, .advisor-grid, .proof-grid, .faq-grid { grid-template-columns: 1fr; }
  .service-card-capital { grid-column: auto; min-height: 520px; }
  .service-card { min-height: 520px; padding: 32px 28px; }
  .card-link { left: 28px; }
  .process-copy { position: static; }
  .advisor-photo { max-width: 520px; }
  .advisor-badge { right: -8px; bottom: 24px; }
  .proof-grid { gap: 42px; }
  .rating { min-height: 260px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-bar {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 70;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(4,29,15,.23);
    backdrop-filter: blur(12px);
  }
  .mobile-bar > a:first-child { display: grid; place-items: center; color: var(--green); font-weight: 800; text-decoration: none; }
  .mobile-bar .button { min-height: 46px; }
  .site-footer { padding-bottom: 100px; }
}

@media (max-width: 540px) {
  .hero-grid { padding-top: 54px; }
  .hero-ctas { align-items: flex-start; flex-direction: column; }
  .hero-ctas .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 14px 0; }
  .trust-row li:last-child { grid-column: 1 / -1; }
  .lead-card h2 { font-size: 21px; }
  .choice-card { grid-template-columns: 42px 1fr auto; gap: 10px; }
  .choice-icon { width: 42px; height: 42px; }
  .field-grid { grid-template-columns: 1fr; }
  .field { grid-column: 1 !important; }
  .form-nav { grid-template-columns: 1fr; }
  .form-nav .button-ghost { order: 2; }
  .section h2 { font-size: 37px; }
  .service-card { min-height: 560px; }
  .process-list li { grid-template-columns: 45px 1fr; gap: 14px; }
  .advisor-badge { width: 118px; height: 118px; }
  .advisor-badge strong { font-size: 38px; }
  .advisor-actions { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
