:root {
  --green-900: #063f35;
  --green-800: #0a5749;
  --green-700: #0f6b59;
  --green-100: #dff2e9;
  --navy-950: #101827;
  --navy-800: #1d2b3f;
  --gold: #c79a3b;
  --gold-soft: #fff3cf;
  --mint: #49d49d;
  --white: #ffffff;
  --gray-25: #fbfcfb;
  --gray-50: #f5f7f6;
  --gray-100: #e9eeec;
  --gray-500: #65716d;
  --gray-700: #34403c;
  --shadow: 0 24px 70px rgba(16, 24, 39, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy-950);
  background: var(--gray-25);
  line-height: 1.6;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 251, 0.88);
  border-bottom: 1px solid rgba(233, 238, 236, 0.85);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-logo {
  width: 38px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(6, 63, 53, 0.12));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-menu a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover {
  color: var(--green-800);
}

.nav-app {
  padding: 11px 16px;
  border: 1px solid var(--green-800);
  border-radius: var(--radius);
  color: var(--green-900);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-900);
}

.hero {
  overflow: hidden;
  padding-top: 78px;
  background:
    linear-gradient(130deg, rgba(6, 63, 53, 0.08), rgba(255, 243, 207, 0.38) 42%, rgba(255, 255, 255, 0.9)),
    var(--gray-25);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.06rem;
  line-height: 1.25;
}

p {
  color: var(--gray-500);
}

.hero-copy p {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: 1.13rem;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 18px 34px rgba(10, 87, 73, 0.22);
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-secondary,
.btn-plan {
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

.hero-proof {
  margin-top: 30px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(10, 87, 73, 0.16);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-product {
  position: relative;
  min-width: 0;
}

.product-shell {
  padding: 22px;
  border: 1px solid rgba(233, 238, 236, 0.92);
  border-radius: 8px;
  background: #eef3f7;
  box-shadow: var(--shadow);
}

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.product-topbar div {
  display: grid;
  gap: 2px;
}

.product-topbar strong {
  color: #223b5d;
  font-size: 1.12rem;
}

.product-topbar span {
  color: #425a7a;
  font-size: 0.85rem;
}

.product-pill {
  padding: 8px 11px;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: #10b981;
  font-size: 0.78rem !important;
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.metric-row div,
.mini-panel {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 24, 39, 0.06);
}

.metric-row div {
  display: grid;
  gap: 2px;
  min-height: 104px;
  padding: 18px;
}

.metric-row span,
.metric-row small,
.panel-head span,
.legend span {
  color: #425a7a;
  font-size: 0.78rem;
}

.metric-row strong {
  color: #223b5d;
  font-size: 1.55rem;
  line-height: 1.15;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 12px;
  margin-bottom: 12px;
}

.mini-panel {
  padding: 18px;
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.panel-head h3 {
  margin-bottom: 0;
  color: #112349;
  font-size: 0.98rem;
}

.lot-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
  min-height: 188px;
  padding: 22px;
  border: 1px solid #dbe5ef;
  background:
    linear-gradient(90deg, rgba(34, 59, 93, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(34, 59, 93, 0.08) 1px, transparent 1px),
    #f8fafc;
  background-size: 38px 38px;
}

.lot {
  display: block;
  width: 24px;
  height: 24px;
  align-self: center;
  justify-self: center;
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(16, 24, 39, 0.2);
}

.available {
  background: #18b979;
}

.reserved {
  background: #a855f7;
}

.sold {
  background: #3b82f6;
}

.chart-panel {
  display: grid;
  align-content: start;
}

.donut {
  width: min(100%, 178px);
  aspect-ratio: 1;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: conic-gradient(#18b979 0 84%, #3b82f6 84% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 27%;
  border-radius: 50%;
  background: var(--white);
}

.legend {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50%;
}

.legend .green {
  background: #18b979;
}

.legend .blue {
  background: #3b82f6;
}

.payments-panel {
  padding-bottom: 10px;
}

.table-preview {
  display: grid;
  color: #06183d;
  font-size: 0.82rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1.45fr 0.5fr 0.75fr 0.7fr;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  border-top: 1px solid #dbe5ef;
}

.table-head {
  color: #425a7a;
  font-weight: 800;
}

.table-row strong {
  color: #112349;
}

.table-row em {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 6px;
  color: #008b37;
  background: #d7f8e5;
  font-style: normal;
  font-weight: 800;
  font-size: 0.72rem;
}

.two-col,
.benefits-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.problem {
  background: var(--white);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.problem-list article,
.feature-card,
.price-card,
.trust article,
.contact-form {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 24, 39, 0.05);
}

.problem-list article {
  padding: 22px;
}

.problem-icon,
.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--green-800);
  background: var(--green-100);
}

.problem-icon {
  color: var(--gold);
  background: var(--gold-soft);
}

.problem-icon svg,
.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-icon {
  color: #2f68be;
  background: #e7f0ff;
}

.solution {
  background: linear-gradient(135deg, var(--green-900), var(--navy-950));
  color: var(--white);
}

.solution p,
.solution .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.solution .eyebrow::before {
  background: var(--mint);
}

.solution-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.solution-panel h2 {
  margin-bottom: 0;
}

.solution-panel p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 22px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.benefits {
  background: var(--gray-50);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-list div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-left: 4px solid var(--green-800);
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-list strong {
  color: var(--navy-950);
}

.benefit-list span {
  color: var(--gray-500);
}

.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
}

.price-card.recommended {
  border-color: rgba(199, 154, 59, 0.62);
  box-shadow: 0 28px 70px rgba(10, 87, 73, 0.14);
  transform: translateY(-12px);
}

.badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin: 12px 0 22px;
  color: var(--green-900);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--gray-500);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-700);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.trust {
  background: var(--gray-50);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust article {
  padding: 24px;
}

.trust span {
  color: var(--gold);
  font-weight: 800;
}

.final-cta {
  background: var(--white);
}

.final-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 44px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 63, 53, 0.96), rgba(16, 24, 39, 0.94)),
    var(--green-900);
}

.final-cta-panel p,
.final-cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.contact {
  background: var(--gray-50);
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.direct-contact a {
  width: fit-content;
  color: var(--green-800);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--navy-950);
  background: var(--gray-25);
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(73, 212, 157, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.86rem;
}

.footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
}

.footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 34px;
}

.footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.98rem;
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
}

.footer p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

@media (max-width: 1020px) {
  .hero-grid,
  .two-col,
  .benefits-grid,
  .contact-grid,
  .solution-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .price-card.recommended {
    transform: none;
  }

  .hero-copy p,
  .section-heading {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 64px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 8px 0;
  }

  .nav-app {
    text-align: center;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.5rem);
  }

  .problem-list,
  .feature-grid,
  .benefit-list,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-shell {
    padding: 14px;
  }

  .metric-row,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1.25fr 0.45fr 0.7fr;
  }

  .table-row span:last-child,
  .table-row em {
    display: none;
  }

  .final-cta-panel {
    display: grid;
    padding: 28px;
  }

  .final-cta-panel .btn {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-actions .btn,
  .hero-proof span {
    width: 100%;
  }

  .contact-form {
    padding: 18px;
  }

  .price-card {
    padding: 24px;
  }
}
