/* ==============================
   TOKENS
   ============================== */
:root {
  --green:      #0B6B3A;
  --lime:       #A6E22E;
  --navy:       #123047;
  --blue:       #1E7FC2;
  --bg:         #F7FAF6;
  --text:       #1F2933;
  --navy-dark:  #0E3A57;
  --muted:      #5C6B63;
  --lime-light: #EAF7DB;
  --blue-light: #E3F1FB;
  --green-light:#F0F6EC;
  --border:     #E8EFE6;
  --border-in:  #DCE6DA;
  --input-bg:   #FBFDFA;
  --steel:      #B9C6D2;
  --lime-pale:  #CBEE8C;
  --slate:      #6E7E8C;
}

/* ==============================
   BASE RESET
   ============================== */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
p { margin: 0; }
h1, h2 { margin: 0; }
input, textarea, button, select { font-family: inherit; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(30,127,194,.15) !important;
}

/* ==============================
   LAYOUT
   ============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad  { padding: 48px 0; }
.section-alt  { background: var(--green-light); }
.faq-container { max-width: 1000px; }

/* ==============================
   TYPOGRAPHY HELPERS
   ============================== */
.section-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.02em;
  color: var(--text);
}
.section-hd {
  text-align: center;
  margin-bottom: 36px;
}
.text-lime { color: var(--lime); }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: opacity .15s ease, transform .1s ease;
  line-height: 1;
}
.btn:hover  { opacity: .88; }
.btn:active { transform: scale(.97); }

.btn-green  { background: var(--green); color: #fff; }
.btn-lime   { background: var(--lime); color: var(--navy); font-weight: 800; }
.btn-ghost  {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
}

.btn-sm  { font-size: 13.5px; padding: 10px 18px; border-radius: 12px; }
.btn-md  { font-size: 15px;   padding: 13px 24px; }
.btn-lg  { font-size: 16px;   padding: 16px 26px; }

.btn-price {
  display: block;
  text-align: center;
  font-size: 15px;
  padding: 14px;
  border-radius: 14px;
  margin-top: 24px;
  font-weight: 800;
}
.btn-price-light {
  display: block;
  text-align: center;
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 14px;
  margin-top: 24px;
}
.btn-price-light:hover { background: #dcefd6; }

/* ==============================
   HEADER
   ============================== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.header-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}
.header-logo-link { display: flex; justify-content: center; }
.header-logo      { height: 52px; width: auto; }
.header-actions   {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.header-phone-text { display: none; }

/* ==============================
   HERO
   ============================== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--green) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 85% 30%, rgba(166,226,46,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 20px 52px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #CFEBFF;
  margin-bottom: 18px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(166,226,46,.3);
  flex-shrink: 0;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #D6E4DD;
  margin-bottom: 28px;
  max-width: 46ch;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: #CFE3D8;
  font-size: 13px;
  font-weight: 600;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--lime); letter-spacing: 1px; }

.hero-visual { display: flex; justify-content: center; }
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 28px 56px -18px rgba(0,0,0,.45);
  width: 100%;
  max-width: 340px;
}
.hero-img { width: 100%; border-radius: 12px; }

/* ==============================
   BENEFIT BAR
   ============================== */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-green { background: var(--lime-light); }
.icon-blue  { background: var(--blue-light); }
.benefit-label { font-weight: 700; font-size: 15px; }

/* ==============================
   HOW IT WORKS
   ============================== */
.steps-grid {
  display: grid;
  gap: 16px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-navy  { background: var(--navy);  color: var(--lime); }
.step-green { background: var(--green); color: var(--lime); }
.step-blue  { background: var(--blue);  color: #fff; }
.step-title { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.step-desc  { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ==============================
   CTA STRIP
   ============================== */
.cta-strip {
  background: var(--green-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-strip-inner > span {
  font-weight: 600;
  font-size: 16px;
  color: var(--green);
}

/* ==============================
   PRICING
   ============================== */
.pricing-grid {
  display: grid;
  gap: 18px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  position: relative;
}
.pricing-featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 22px 44px -18px rgba(18,48,71,.5);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
}
.pricing-name      { font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.pricing-name-light  { color: #fff; }
.pricing-desc      { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.pricing-desc-light  { color: #A9BBC8; }
.pricing-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price-lime { color: var(--lime); }
.pricing-unit       { font-size: 16px; font-weight: 600; color: var(--muted); }
.pricing-unit-light { color: #A9BBC8; }
.pricing-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 20px;
}

/* ==============================
   WHY CHOOSE + SERVICE AREA
   ============================== */
.why-area-grid { display: grid; gap: 32px; }
.why-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15.5px;
}
.why-item svg { flex-shrink: 0; }

.service-area-card {
  background: var(--navy);
  border-radius: 22px;
  padding: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.sa-label {
  font-weight: 700;
  font-size: 12px;
  color: var(--lime);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sa-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 18px;
}
.map-placeholder {
  flex: 1;
  min-height: 180px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
.area-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.area-badge {
  background: rgba(166,226,46,.15);
  color: var(--lime-pale);
  font-weight: 600;
  font-size: 13.5px;
  padding: 7px 15px;
  border-radius: 999px;
}

/* Honeypot: visually hidden but in DOM (bots fill it, display:none bots skip) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ==============================
   BOOKING FORM
   ============================== */
.booking-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--green) 100%);
  color: #fff;
  scroll-margin-top: 72px;
}
.booking-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  gap: 40px;
}
.booking-eyebrow {
  font-weight: 700;
  font-size: 13px;
  color: var(--lime);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.booking-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.08;
}
.booking-sub {
  font-size: 16px;
  color: #D6E4DD;
  line-height: 1.55;
  margin-bottom: 26px;
}
.booking-checks { display: flex; flex-direction: column; gap: 13px; }
.booking-check  {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #E4EFE9;
}

.booking-form {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  color: var(--text);
  box-shadow: 0 28px 56px -22px rgba(0,0,0,.5);
}

.field          { display: flex; flex-direction: column; gap: 6px; }
.field-full     { /* inherits full width in single-column */ }
.field-label    { font-weight: 600; font-size: 13.5px; }
.field-opt      { color: #9AA8A0; font-weight: 500; }
.field-input {
  border: 1.5px solid var(--border-in);
  border-radius: 12px;
  padding: 13px;
  font-size: 15px;
  background: var(--input-bg);
  color: var(--text);
  width: 100%;
}

.bin-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bin-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border-in);
  background: var(--input-bg);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .12s;
}
.bin-btn:hover  { background: var(--green-light); }
.bin-count {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  min-width: 28px;
  text-align: center;
}

.btn-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 17px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 22px -8px rgba(11,107,58,.5);
  transition: opacity .15s, transform .1s;
}
.btn-submit:hover  { opacity: .9; }
.btn-submit:active { transform: scale(.98); }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.booking-success {
  background: #fff;
  border-radius: 22px;
  padding: 48px 32px;
  text-align: center;
  color: var(--text);
  box-shadow: 0 28px 56px -22px rgba(0,0,0,.5);
  animation: mbFade .4s ease;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lime-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 10px;
}
.success-sub { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ==============================
   FAQ
   ============================== */
.faq-grid { display: grid; gap: 14px; }
.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.faq-q { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--navy); color: #fff; }
.footer-inner {
  padding: 44px 20px 28px;
  display: grid;
  gap: 30px;
}
.footer-logo {
  height: 72px;
  width: auto;
  background: #fff;
  border-radius: 12px;
  padding: 7px;
  margin-bottom: 14px;
}
.footer-tagline { font-size: 14px; line-height: 1.8; color: var(--steel); }
.footer-col-title { font-weight: 700; font-size: 14px; color: var(--lime); margin-bottom: 12px; }
.footer-contact-info { font-size: 14px; line-height: 1.9; color: var(--steel); }
.footer-insta { color: var(--lime); font-weight: 600; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bar-inner {
  padding: 16px 20px;
  text-align: center;
  font-size: 12.5px;
  color: var(--slate);
}

/* ==============================
   ANIMATION
   ============================== */
@keyframes mbFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ==============================
   DESKTOP BREAKPOINT
   ============================== */
@media (min-width: 768px) {

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

  /* Header */
  .header-logo { height: 88px; }
  .header-location { font-size: 14px; }
  .header-phone-text { display: inline; }

  /* Hero */
  .hero { scroll-margin-top: 108px; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 50px;
    padding: 64px 32px 70px;
  }
  .hero-text    { flex: 1.05; }
  .hero-visual  { flex: .95; }
  .hero-headline { font-size: 52px; }
  .hero-sub      { font-size: 19px; }
  .hero-card     { max-width: 400px; padding: 22px; }

  /* Benefits */
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-card { padding: 24px; }
  .benefit-label { font-size: 17px; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(3, 1fr); }

  /* Section titles */
  .section-title { font-size: 38px; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .pricing-featured { transform: translateY(-8px); }

  /* Why + service area */
  .why-area-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .why-title { font-size: 32px; }

  /* Booking */
  .booking-section { scroll-margin-top: 108px; }
  .booking-inner {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 48px;
    padding: 64px 32px;
  }
  .booking-title { font-size: 40px; }
  .booking-form {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 32px;
  }
  .field-full { grid-column: 1 / -1; }
  .btn-submit { grid-column: 1 / -1; }
  .form-note  { grid-column: 1 / -1; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner {
    padding: 50px 32px 30px;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}
