:root {
  --bg: #FDF8F0;
  --bg-alt: #F5EFE0;
  --fg: #1B1A18;
  --fg-muted: #6B6356;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --cream-dark: #EDE5D5;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-info { display: flex; align-items: center; gap: 24px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--green); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
  align-items: center;
}
.hero-left {
  padding: 80px 0 80px;
  padding-right: 60px;
  border-right: 1px solid var(--cream-dark);
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-dark { background: var(--green); color: #fff; }
.btn-dark:hover { background: var(--green-mid); }

.hero-right {
  padding: 80px 0 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.06);
}
.hero-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}
.hero-card-2::before { background: var(--green-light); }
.hero-card-3::before { background: var(--green-mid); }
.hero-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}
.hero-card-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── TRUSTBAR ── */
.trustbar {
  background: var(--green);
  padding: 32px 24px;
}
.trustbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.trust-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-weight: 400;
}

/* ── SERVICES ── */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  overflow: hidden;
}
.service-card {
  background: #fff;
  padding: 36px 32px;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}
.service-card:nth-child(4n) { border-right: none; }
.service-card:nth-child(n+5) { border-bottom: none; }
.service-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}
.service-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
  margin-top: 4px;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── WHY ── */
.why {
  background: var(--bg-alt);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.why-left {
  padding: 100px 60px 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  grid-column: 1;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.why-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.why-headline em { font-style: italic; color: var(--gold); }
.why-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.why-actions { margin-top: 36px; }
.why-right {
  background: var(--green);
  padding: 100px 60px 100px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}
.why-stat-block {}
.why-big {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}
.why-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.why-stat-block-2 { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 40px; }

/* ── SERVICE AREAS ── */
.serviceareas {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.sa-header { text-align: center; margin-bottom: 56px; }
.sa-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 12px;
}
.sa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.sa-city {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sa-city::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.sa-city:hover::after { transform: scaleX(1); }
.sa-map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}
.sa-map-inner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ── AI FEATURE ── */
.aifeature {
  background: var(--bg-alt);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.ai-left {
  padding: 100px 60px 100px max(24px, calc((100vw - 1200px) / 2 + 24px));
  padding-right: 60px;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.ai-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.ai-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.ai-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.ai-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}
.ai-check { flex-shrink: 0; margin-top: 2px; }

.ai-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 80px 0;
}
.ai-visual {
  width: 100%;
  max-width: 360px;
}
.ai-phone {
  background: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 24px 80px rgba(27, 67, 50, 0.25);
}
.phone-top {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  padding: 10px 0 8px;
}
.phone-cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}
.phone-speaker {
  width: 48px;
  height: 6px;
  border-radius: 4px;
  background: #333;
}
.phone-screen {
  background: #fff;
  border-radius: 28px;
  padding: 20px 16px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.phone-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.phone-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #2D8A4E;
  font-weight: 600;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2D8A4E;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.phone-transcript {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.transcript-ai {
  background: var(--green);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 12px;
  line-height: 1.5;
}
.transcript-caller {
  background: #F0EDE5;
  color: var(--fg);
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  font-size: 12px;
  line-height: 1.5;
  align-self: flex-end;
}
.phone-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.action-btn {
  background: #E8E4DC;
  color: var(--fg-muted);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}
.action-book { background: var(--gold); color: #fff; }
.phone-bottom {
  display: flex;
  justify-content: center;
  padding: 14px 0 8px;
}
.phone-home {
  width: 32px;
  height: 5px;
  background: #555;
  border-radius: 4px;
}

/* ── PROCESS ── */
.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-top: 1px solid var(--cream-dark);
  padding-top: 56px;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
}
.step-arrow {
  flex-shrink: 0;
  padding-top: 16px;
  padding-right: 40px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--green);
  padding: 100px 24px;
}
.phil-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.phil-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.35;
  margin-bottom: 20px;
}
.phil-cite {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.phil-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg-alt);
  padding: 100px 24px;
  border-top: 1px solid var(--cream-dark);
}
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-cta { margin-bottom: 28px; }
.closing-note {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── FOOTER ── */
.footer {
  background: var(--green);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-info a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-info a:hover { color: #fff; }
.footer-sep { opacity: 0.4; }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
    padding-bottom: 48px;
  }
  .hero-right { padding-left: 0; padding-top: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(n+5) { border-bottom: 1px solid var(--cream-dark); }
  .service-card:nth-child(n+7) { border-bottom: none; }
  .why { grid-template-columns: 1fr; }
  .why-right { padding: 60px 24px; }
  .aifeature { grid-template-columns: 1fr; }
  .ai-right { padding: 0 24px 60px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-arrow { display: none; }
  .sa-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar-inner { flex-direction: column; gap: 24px; }
  .trust-sep { display: none; }
  .trust-stat { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .trust-stat:last-child { border-bottom: none; }
}
/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
}
.floating-cta .btn {
  padding: 14px 24px;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.35);
  animation: float-bounce 3s ease-in-out infinite;
}
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (max-width: 600px) {
  .floating-cta { bottom: 20px; right: 16px; }
  .floating-cta .btn { padding: 12px 20px; font-size: 14px; }
}

/* ── MODAL OVERLAY ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 26, 24, 0.6);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  transform: translateY(20px);
  transition: transform 0.2s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--fg-muted);
  transition: background 0.15s;
  z-index: 1;
}
.modal-close:hover { background: var(--cream-dark); color: var(--fg); }

/* ── CONTACT FORM ── */
.contact-form-wrap { padding: 40px 40px 36px; }
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contact-form-wrap p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  background: #fff;
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 88px; }
.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 15px;
}
.form-note {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 60px 40px;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--fg-muted); margin-bottom: 24px; }

/* ── QUOTE WIDGET ── */
.quote-widget-wrap { padding: 40px 40px 36px; }
.quote-step { display: none; }
.quote-step.active { display: block; }
.quote-step h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.quote-step p { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; }
.quote-options { display: flex; flex-direction: column; gap: 10px; }
.quote-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
}
.quote-option:hover { border-color: var(--green-light); background: var(--bg); }
.quote-option.selected { border-color: var(--green); background: rgba(27, 67, 50, 0.04); }
.quote-option input[type="radio"] { display: none; }
.quote-option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.quote-option.selected .quote-option-check {
  border-color: var(--green);
  background: var(--green);
}
.quote-option.selected .quote-option-check::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.quote-option-text strong { display: block; font-size: 15px; color: var(--fg); margin-bottom: 2px; }
.quote-option-text span { font-size: 13px; color: var(--fg-muted); }
.quote-nav { display: flex; gap: 10px; margin-top: 24px; }
.quote-nav .btn { flex: 1; }
.quote-nav .btn-prev { background: var(--bg-alt); color: var(--fg-muted); border: 1.5px solid var(--cream-dark); }
.quote-nav .btn-prev:hover { background: var(--cream-dark); }

/* Quote result */
.quote-result { text-align: center; }
.quote-result-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  margin: 20px 0 8px;
}
.quote-result-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.quote-contact-fields { display: flex; flex-direction: column; gap: 14px; }

/* Progress dots */
.quote-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: background 0.2s;
}
.quote-dot.active { background: var(--green); }
.quote-dot.done { background: var(--green-light); }

/* Nav CTA button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--green);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.nav-cta-btn:hover { background: var(--green-mid); }
.nav-cta-btn.outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.nav-cta-btn.outline:hover { background: rgba(27, 67, 50, 0.06); }

@media (max-width: 600px) {
  .contact-form-wrap,
  .quote-widget-wrap { padding: 32px 24px 28px; }
  .form-row.two-col { grid-template-columns: 1fr; }
}