/* =====================
   VARIABLES & RESET
   ===================== */
:root {
  --bg: #FAF8F4;
  --bg-alt: #F0EBE2;
  --fg: #1A1A1A;
  --fg-muted: #6B6259;
  --primary: #1B4D3E;
  --primary-dark: #143A31;
  --accent: #D4622A;
  --accent-warm: #D9C5A0;
  --border: #E5DDD3;
  --radius: 8px;
  --max-w: 1100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--primary);
}

/* =====================
   LAYOUT UTILS
   ===================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.navbar__tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* =====================
   HERO
   ===================== */
.hero {
  padding: 80px 32px 60px;
  max-width: 780px;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__trust {}
.hero__badge {
  display: inline-block;
  font-size: 13px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  background: var(--bg-alt);
}

/* =====================
   TOWNS
   ===================== */
.towns {
  background: var(--primary);
  padding: 48px 32px;
}
.towns__inner {}
.towns__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.6);
  margin-bottom: 16px;
}
.towns__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin-bottom: 20px;
}
.towns__list span {
  font-size: 15px;
  font-weight: 500;
  color: #FAF8F4;
  display: inline-block;
}
.towns__dot {
  color: rgba(250,248,244,0.4) !important;
  margin: 0 10px;
}
.towns__note {
  font-size: 14px;
  color: rgba(250,248,244,0.7);
  font-style: italic;
}

/* =====================
   OFFER / PRICING
   ===================== */
.offer {
  padding: 96px 32px;
  background: var(--bg);
}
.offer__header {
  text-align: center;
  margin-bottom: 56px;
}
.offer__title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--primary);
  margin-bottom: 16px;
}
.offer__subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}
.offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.plan {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  background: white;
}
.plan--featured {
  border-color: var(--primary);
  background: var(--primary);
}
.plan--featured .plan__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.plan--featured .plan__name,
.plan--featured .plan__dollar,
.plan--featured .plan__period {
  color: #FAF8F4;
}
.plan--featured .plan__terms,
.plan--featured .plan__features li {
  color: rgba(250,248,244,0.8);
}
.plan--featured .plan__features li::before {
  background: var(--accent);
}
.plan__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--fg);
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.plan__dollar {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.plan__period {
  font-size: 15px;
  color: var(--fg-muted);
}
.plan__terms {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan__features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.plan__cta {
  font-size: 14px;
  font-weight: 600;
  color: #FAF8F4;
  background: var(--accent);
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
}
.offer__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.offer__guarantee svg { flex-shrink: 0; margin-top: 2px; }

/* =====================
   PROCESS
   ===================== */
.process {
  padding: 96px 32px;
  background: var(--bg-alt);
}
.process__header {
  text-align: center;
  margin-bottom: 56px;
}
.process__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.process__subtitle {
  font-size: 16px;
  color: var(--fg-muted);
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
}
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #FAF8F4;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}
.step__desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step__arrow {
  display: flex;
  align-items: center;
  padding-top: 16px;
  flex-shrink: 0;
}

/* =====================
   FEATURES
   ===================== */
.features {
  padding: 96px 32px;
  background: var(--bg);
}
.features__header {
  text-align: center;
  margin-bottom: 56px;
}
.features__title {
  font-size: clamp(28px, 4vw, 42px);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.feature__desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* =====================
   PROOF / DEMOS
   ===================== */
.proof {
  padding: 96px 32px;
  background: var(--bg-alt);
}
.proof__header {
  text-align: center;
  margin-bottom: 48px;
}
.proof__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.proof__subtitle {
  font-size: 16px;
  color: var(--fg-muted);
}
.proof__demos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 56px;
}
.demo {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  background: white;
}
.demo__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.demo__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.demo__name span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
  display: block;
}
.demo__desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.proof__quote {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 32px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: white;
}
.proof__quote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 12px;
}
.proof__quote cite {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
}

/* =====================
   CLOSING STATEMENT
   ===================== */
.closing {
  padding: 96px 32px;
  background: var(--primary);
}
.closing__inner { max-width: 700px; }
.closing__headline {
  font-size: clamp(24px, 4vw, 40px);
  color: #FAF8F4;
  margin-bottom: 20px;
  line-height: 1.3;
}
.closing__sub {
  font-size: 16px;
  color: rgba(250,248,244,0.75);
  margin-bottom: 40px;
  line-height: 1.7;
}
.closing__areas-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.5);
  margin-bottom: 12px;
}
.closing__areas-list {
  font-size: 15px;
  color: rgba(250,248,244,0.8);
  line-height: 1.8;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.footer__tagline {
  font-size: 14px;
  color: var(--fg);
}
.footer__location {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer__note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__demos { grid-template-columns: 1fr; }
  .process__steps { flex-wrap: wrap; gap: 24px; }
  .step { flex: 0 0 calc(50% - 12px); }
  .step__arrow { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 48px 20px 40px; }
  .hero__headline { font-size: 32px; }
  .offer { padding: 64px 20px; }
  .offer__grid { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
  .process { padding: 64px 20px; }
  .features { padding: 64px 20px; }
  .features__grid { grid-template-columns: 1fr; gap: 20px; }
  .proof { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .towns { padding: 40px 20px; }
  .navbar { padding: 16px 20px; }
  .navbar__tag { display: none; }
  .step { flex: 0 0 100%; }
  .step__arrow { display: none; }
}