:root{
  --bg: #f7faf9;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #51606f;
  --line: rgba(15, 23, 42, .10);

  --brand: #0f766e;      /* deep green */
  --brand2: #134e4a;     /* darker green */
  --accent: #eab308;     /* warm accent */
  --soft: #ecfeff;       /* light aqua tint */

  --radius: 18px;
  --shadow: 0 18px 45px rgba(2, 8, 23, .12);
  --shadow2: 0 10px 25px rgba(2, 8, 23, .10);

  --wrap: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; border-radius: var(--radius); }

.wrap{
  width: min(var(--wrap), 100% - 32px);
  margin-inline: auto;
}

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

/* Notice bar */
.notice{
  background: linear-gradient(90deg, var(--brand2), var(--brand));
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.notice__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}
.notice__text{ margin:0; }
.notice__links{ display:flex; gap: 14px; flex-wrap:wrap; }
.notice__link{ opacity:.95; }
.notice__link:hover{ opacity:1; text-decoration: underline; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 249, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0;
}

.logo{
  display:flex;
  gap: 12px;
  align-items:center;
}
.logo__mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--brand), #22c55e);
  color: white;
  font-weight: 900;
  letter-spacing: .4px;
  box-shadow: var(--shadow2);
}
.logo__text{ display:flex; flex-direction:column; line-height:1.05; }
.logo__name{ font-weight: 900; font-size: 15px; }
.logo__tag{ font-size: 13px; color: var(--muted); font-weight: 700; }

/* Desktop menu */
.menu{
  display:none;
  align-items:center;
  gap: 18px;
  font-weight: 800;
}
.menu a{ opacity:.85; }
.menu a:hover{ opacity:1; }

/* Burger */
.burger{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  display:grid;
  place-content:center;
  gap: 4px;
  cursor:pointer;
}
.burger span{
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  display:block;
}

/* Mobile menu */
.mobile{
  background: white;
  border-top: 1px solid var(--line);
}
.mobile__inner{
  display:grid;
  gap: 10px;
  padding: 12px 0 16px;
  font-weight: 800;
}
.mobile__inner a{
  padding: 10px 12px;
  border-radius: 12px;
}
.mobile__inner a:hover{ background: #eff6f5; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 900;
  border: none;
  cursor:pointer;
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow2);
}
.btn:hover{ transform: translateY(-1px); }
.btn--sm{ padding: 10px 14px; border-radius: 12px; }
.btn--block{ width: 100%; }
.btn--ghost{
  background: rgba(15,118,110,.10);
  color: var(--brand2);
  border: 1px solid rgba(15,118,110,.25);
  box-shadow: none;
}
.btn--ghost2{
  background: white;
  color: var(--brand2);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: none;
}

/* Hero */
.hero{
  padding: 26px 0 18px;
}
.hero__grid{
  display:grid;
  gap: 16px;
}
.kicker{
  margin: 0 0 10px;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 12px;
  color: var(--brand2);
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(32px, 5.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lead{
  margin: 0 0 16px;
  color: #243244;
  font-size: 16px;
  max-width: 60ch;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* Proof bullets */
.proof{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.proof__item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,118,110,.08);
  border: 1px solid rgba(15,118,110,.18);
  font-weight: 800;
  color: #0f2e2b;
}
.dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(234,179,8,.18);
}

/* Panel */
.panel{
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.panel__media img{
  border-radius: 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.panel__form{
  padding: 16px;
}
.panel__title{
  margin: 0 0 6px;
  font-size: 18px;
}

/* Strip */
.strip{
  margin-top: 10px;
  padding: 12px 0 18px;
}
.strip__grid{
  display:grid;
  gap: 10px;
}
.strip__card{
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow2);
  display:grid;
  gap: 4px;
}

/* Sections */
.section{ padding: 52px 0; }
.section--alt{ background: #ffffff; }

.head{ margin-bottom: 16px; }
.head--tight{ margin-bottom: 12px; }
.head h2{
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.head p{ margin:0; }

/* Cards */
.cards{
  display:grid;
  gap: 14px;
}
.cards--3{ grid-template-columns: 1fr; }

.card{
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.card h3{ margin: 0 0 8px; }
.list{
  margin: 12px 0 0;
  padding-left: 18px;
}
.list li{ margin: 8px 0; }

/* Extras block */
.extras{
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(15,118,110,.10), rgba(34,197,94,.08));
  border: 1px solid rgba(15,118,110,.18);
  border-radius: var(--radius);
  padding: 16px;
  display:grid;
  gap: 10px;
}
.extras__chips{ display:flex; flex-wrap:wrap; gap: 8px; }

/* Chips */
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.10);
  font-weight: 800;
  font-size: 14px;
}

/* Steps */
.steps{
  display:grid;
  gap: 14px;
}
.step{
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.step__num{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(15,118,110,.10);
  border: 1px solid rgba(15,118,110,.20);
  color: var(--brand2);
  font-weight: 900;
  margin-bottom: 10px;
}

/* CTA slab */
.cta-slab{
  margin-top: 16px;
  background: #0b2a27;
  color: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding: 16px;
  display:grid;
  gap: 12px;
  box-shadow: var(--shadow);
}
.cta-slab__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pricing */
.pricing{
  display:grid;
  gap: 14px;
}
.price-card{
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
  position: relative;
}
.price-card--featured{
  border: 2px solid rgba(15,118,110,.35);
  box-shadow: var(--shadow);
}
.badge{
  position:absolute;
  top: 14px;
  right: 14px;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,118,110,.10);
  border: 1px solid rgba(15,118,110,.22);
  color: var(--brand2);
}

.note{
  margin-top: 14px;
  background: rgba(234,179,8,.12);
  border: 1px solid rgba(234,179,8,.28);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 800;
  color: #3b2f07;
}

/* Areas / map */
.grid2{
  display:grid;
  gap: 16px;
}
.area-chips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 10px;
}
.mini{
  margin-top: 14px;
  background: rgba(15,118,110,.08);
  border: 1px solid rgba(15,118,110,.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  display:grid;
  gap: 4px;
}
.mapbox{
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.mapbox__media{
  margin-top: 12px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: #eef4f3;
}
.mapbox__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq details{
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow2);
}
.faq summary{
  cursor: pointer;
  font-weight: 900;
}
.faq summary::marker{ color: var(--brand); }

/* Contact */
.contact{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}
.contact__card{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}
.contact__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(15,118,110,.10);
  border: 1px solid rgba(15,118,110,.20);
  font-size: 20px;
}

.formcard{
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}

/* Forms */
.form{ display:grid; gap: 12px; }
.form label{ display:grid; gap: 6px; font-weight: 800; }
.form input, .form textarea, .form select{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  font-family: inherit;
  font-size: 15px;
}
.form input:focus,
.form textarea:focus,
.form select:focus{
  outline: none;
  border-color: rgba(15,118,110,.55);
  box-shadow: 0 0 0 4px rgba(15,118,110,.12);
}

/* Footer */
.footer{
  background: #071a18;
  color: rgba(255,255,255,.9);
  padding: 36px 0;
  margin-top: 36px;
}
.footer__inner{
  display:grid;
  gap: 18px;
}
.footer__brand{
  display:flex;
  gap: 14px;
  align-items:center;
}
.footer__mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--brand), #22c55e);
  color: white;
  font-weight: 900;
  letter-spacing: .4px;
  box-shadow: var(--shadow2);
}
.footer__links{
  display:flex;
  gap: 16px;
  flex-wrap:wrap;
  font-weight: 900;
}
.footer__links a{ opacity:.85; }
.footer__links a:hover{ opacity:1; text-decoration: underline; }
.footer__legal{
  font-size: 13px;
  opacity:.8;
}

/* Floating CTA */
.float{
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: #111827;
  font-weight: 950;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 100;
  border: 1px solid rgba(17,24,39,.10);
}
.float:hover{ transform: translateY(-1px); }

/* Small improvements */
.panel__form .btn{ background: var(--brand); }
.panel__form .btn:hover{ transform: translateY(-1px); }

.card p, .step p, .price-card p { margin: 0; }
.card p{ margin-top: 6px; }

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 640px){
  .strip__grid{
    grid-template-columns: 1fr 1fr;
  }
  .steps{
    grid-template-columns: repeat(3, 1fr);
  }
  .contact{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px){
  .menu{ display:flex; }
  .burger{ display:none; }

  .hero{
    padding: 46px 0 24px;
  }
  .hero__grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: start;
    gap: 28px;
  }

  .cards--3{
    grid-template-columns: repeat(3, 1fr);
  }

  .strip__grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing{
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .grid2{
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
    gap: 28px;
  }

  .footer__inner{
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px){
  .panel__media img{ height: 260px; }
  .section{ padding: 60px 0; }
}

/* Mobile spacing tweaks */
@media (max-width: 420px){
  .logo__tag{ display:none; }
  .proof__item{ width: 100%; justify-content: center; }
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
}

.logo__img{
  height: 84px;      /* desktop size */
  width: auto;
  display: block;
}

/* Smaller on mobile */
@media (max-width: 768px){
  .logo__img{
    height: 52px;
  }
}