:root {
  --ink: #12201b;
  --muted: #607068;
  --line: #dce8e1;
  --paper: #ffffff;
  --wash: #f3f8f5;
  --green: #159a63;
  --green-dark: #0f714a;
  --mint: #dff5e9;
  --blue: #1667d9;
  --shadow: 0 18px 55px rgba(19, 58, 40, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(220,232,225,.8);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 20px rgba(21,154,99,.24);
}
.brand-mark svg { width: 20px; height: 20px; }
.desktop-nav { display: flex; align-items: center; gap: 7px; }
.desktop-nav a {
  padding: 10px 13px;
  color: #43524a;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--wash);
}
.nav-cta {
  color: #fff !important;
  background: var(--green) !important;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}
.mobile-nav {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
}
.mobile-nav.is-open { display: grid; }
.mobile-nav a {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.hero { padding: 74px 0 58px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: var(--green-dark);
  border: 1px solid #cde8da;
  border-radius: 999px;
  background: #f3fbf7;
  font-size: 13px;
  font-weight: 800;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: .99;
  letter-spacing: -.06em;
}
.hero h1 span { color: var(--green); }
.lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: #fff;
  background: var(--green);
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); }
.button.secondary { color: var(--ink); border-color: var(--line); background: #fff; }
.button.secondary:hover { background: var(--wash); }
.button.small { min-height: 42px; padding: 0 15px; border-radius: 12px; font-size: 14px; }
.hero-photo {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 7% -8% -7% 10%;
  z-index: -1;
  border-radius: 40px;
  background: var(--mint);
  transform: rotate(3deg);
}
.hero-photo img {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
  object-position: center;
  border: 10px solid #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.photo-note {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 230px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 38px rgba(19,58,40,.14);
  font-size: 14px;
  font-weight: 760;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.stat strong { display: block; font-size: 22px; letter-spacing: -.03em; }
.stat span { color: var(--muted); font-size: 13px; }

.section { padding: 78px 0; }
.section.alt { background: var(--wash); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.section-head p { max-width: 560px; margin-bottom: 3px; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.card.soft { background: var(--wash); }
.card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  border-radius: 14px;
  background: var(--green);
  font-weight: 900;
}
.card h3 { margin-bottom: 10px; font-size: 22px; letter-spacing: -.025em; }
.card p { margin-bottom: 0; color: var(--muted); }
.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green-dark);
  font-weight: 820;
  text-decoration: none;
}
.price-card strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 38px;
  letter-spacing: -.04em;
}
.price-card .label { color: var(--muted); font-size: 14px; font-weight: 750; }
.price-card.featured { color: #fff; border-color: var(--green-dark); background: var(--green-dark); }
.price-card.featured p, .price-card.featured .label { color: #d8f0e4; }

.locations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.location {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.location small { color: var(--green-dark); font-weight: 820; text-transform: uppercase; letter-spacing: .08em; }
.location h3 { margin: 8px 0 16px; }
.location a { color: var(--green-dark); font-weight: 780; text-decoration: none; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.feature {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
.feature strong { display: block; margin-bottom: 7px; font-size: 18px; }
.feature span { color: var(--muted); font-size: 14px; }

.franchise-banner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
  padding: 46px;
  color: #fff;
  border-radius: 32px;
  background: #102b20;
  box-shadow: var(--shadow);
}
.franchise-banner h2 { margin-bottom: 14px; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.franchise-banner p { margin-bottom: 0; color: #c8ddd3; }
.franchise-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.franchise-kpi { padding: 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.06); }
.franchise-kpi strong { display: block; font-size: 26px; }
.franchise-kpi span { color: #c8ddd3; font-size: 13px; }

.page-hero { padding: 66px 0 42px; }
.page-hero h1 { max-width: 900px; font-size: clamp(40px, 5vw, 64px); }
.page-hero .lead { margin-bottom: 0; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(19,58,40,.07);
}
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #102b20; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-copy { padding: 24px; }
.video-copy h2 { margin-bottom: 8px; font-size: 26px; letter-spacing: -.03em; }
.mini-steps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.mini-step { padding: 7px 10px; color: #3d5047; border-radius: 999px; background: var(--wash); font-size: 12px; font-weight: 780; }

.offer-card { display: flex; flex-direction: column; }
.offer-top { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.offer-badge { padding: 7px 10px; color: var(--green-dark); border-radius: 999px; background: var(--mint); font-size: 12px; font-weight: 850; }
.offer-card h2 { margin-bottom: 8px; font-size: 30px; letter-spacing: -.035em; }
.offer-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
.metric { padding: 16px; border-radius: 16px; background: var(--wash); }
.metric strong { display: block; font-size: 22px; }
.metric span { color: var(--muted); font-size: 12px; }
.disclaimer { margin-top: 22px; padding: 16px 18px; color: #66562a; border: 1px solid #ebdfb2; border-radius: 15px; background: #fff9e8; font-size: 13px; }

.login-wrap { max-width: 760px; margin: 0 auto; }
.login-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 16px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 820; }
.field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid #cad9d0;
  border-radius: 13px;
  outline: none;
}
.field input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(21,154,99,.10); }
.status { margin-top: 14px; font-size: 14px; font-weight: 750; }
.status.error { color: #b42318; }
.hidden { display: none !important; }
.material-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.material-card { padding: 23px; border: 1px solid var(--line); border-radius: 20px; background: var(--wash); }
.material-card h3 { margin-bottom: 7px; }
.material-card p { color: var(--muted); }
.material-preview { display: grid; place-items: center; height: 190px; margin: -9px -9px 19px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.material-preview.dark { background: #050505; }
.material-preview img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.material-preview:hover img { transform: scale(1.025); }
.material-preview.wide { height: 145px; }
.download-row { display: flex; flex-wrap: wrap; gap: 8px; }

.faq { display: grid; gap: 10px; }
.faq details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 820; }
.faq p { margin: 12px 0 0; color: var(--muted); }

.footer { padding: 44px 0; color: #d6e7de; background: #10251c; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; }
.footer .brand { color: #fff; }
.footer p { max-width: 440px; margin: 16px 0 0; color: #9eb7aa; font-size: 14px; }
.footer h3 { margin-bottom: 12px; color: #fff; font-size: 15px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #c4d8ce; font-size: 14px; text-decoration: none; }
.legal { margin-top: 28px; padding-top: 22px; color: #799488; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-grid, .franchise-banner { grid-template-columns: 1fr; }
  .hero-photo { max-width: 620px; margin: 18px auto 0; }
  .grid-3, .locations { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding: 48px 0 38px; }
  h1 { font-size: 43px; }
  .photo-note { right: 8px; bottom: 12px; }
  .stat-row, .grid-3, .grid-2, .locations, .offer-metrics, .form-grid, .material-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature, .feature:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .franchise-banner { padding: 28px; }
  .franchise-kpis { grid-template-columns: 1fr; }
  .page-hero { padding-top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
