:root {
  --ink: #0b1220;
  --ink-2: #152033;
  --text: #0f172a;
  --muted: #5b6b82;
  --line: #e2e8f0;
  --bg: #f3f7f4;
  --card: #ffffff;
  --brand: #0b7a4b;
  --brand-2: #08653f;
  --brand-soft: #e5f5ec;
  --amber: #f59e0b;
  --r: 16px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.preview-banner {
  background: #111827;
  color: #fef3c7;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 16px;
}
.preview-banner strong { color: #fff; }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; }
.brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 10px; }
.brand span { font-size: 1.05rem; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 0.95rem; color: var(--muted); }
.nav-links a:hover { color: var(--brand-2); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 12px 18px; font-weight: 700; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: .15s ease;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-2); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-2); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-lg { padding: 15px 22px; font-size: 1rem; }
.btn-block { width: 100%; }

.hero {
  padding: 56px 0 28px;
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(13,143,123,0.18), transparent 60%),
    linear-gradient(180deg, #fff, var(--bg));
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-soft); color: var(--brand-2);
  border-radius: 999px; padding: 6px 12px; font-size: 0.82rem; font-weight: 700;
  margin-bottom: 16px;
}
.eyebrow i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(13,143,123,0.18);
}
h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 16px;
}
h1 em { font-style: normal; color: var(--brand); }
.proof-strip {
  margin: 4px 0 18px;
  padding: 14px 16px;
  background: var(--brand-soft);
  border: 1px solid #cfe5d7;
  border-radius: var(--r);
  max-width: 38rem;
}
.proof-kicker {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: 12px;
  line-height: 1.35;
}
.proof-ex {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.82rem;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.proof-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}
.proof-stat strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--brand-2);
  margin-bottom: 4px;
}
.proof-stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}
.lede { font-size: 1.08rem; color: var(--muted); max-width: 38rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 22px;
  color: var(--muted); font-size: 0.92rem;
}
.hero-meta b { color: var(--text); }
.hero-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow); padding: 24px; 
}
.hero-card h3 { font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.hero-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.stat {
  background: var(--bg); border-radius: 14px; padding: 14px;
}
.stat b { display: block; font-size: 1.2rem; letter-spacing: -0.02em; }
.stat span { color: var(--muted); font-size: 0.82rem; }

.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.head { margin-bottom: 28px; }
.head.center { text-align: center; }
.head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em; line-height: 1.15; margin: 8px 0 10px;
}
.head p { color: var(--muted); max-width: 40rem; }
.head.center p { margin-inline: auto; }

.services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; box-shadow: 0 1px 0 rgba(15,23,42,0.02);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  min-height: 100%;
}
.service:hover {
  transform: translateY(-3px); border-color: #b7e6dc; box-shadow: var(--shadow);
}
.service .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-2); font-weight: 800; margin-bottom: 14px;
}
.service h3 { font-size: 1.05rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.service p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.service .more { color: var(--brand-2); font-weight: 700; font-size: 0.9rem; }

.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trust article {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px;
}
.trust h3 { font-size: 1rem; margin-bottom: 6px; }
.trust p { color: var(--muted); font-size: 0.9rem; }

.towns {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.town {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 0.88rem; color: var(--muted);
}

.faq { display: grid; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
}
.faq summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin-top: 8px; font-size: 0.95rem; }

.cta-band {
  background: linear-gradient(135deg, var(--ink), #16324f 55%, #0d8f7b);
  color: #fff; border-radius: 28px; padding: 36px; display: grid;
  grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.03em; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.82); }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 10px; }

.form {
  background: #fff; color: var(--text); border-radius: 20px; padding: 20px;
}
.form label { display: grid; gap: 6px; font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 12px; font: inherit; background: #fff;
}
.form textarea { min-height: 88px; resize: vertical; }
.form .hint { color: var(--muted); font-size: 0.8rem; margin-top: 8px; font-weight: 500; }

.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.review {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px;
}
.review .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 8px; }
.review p { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; }
.review b { font-size: 0.9rem; }
.review span { display: block; color: var(--muted); font-size: 0.8rem; }

.page-hero { padding: 48px 0 20px; background: #fff; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.crumbs { color: var(--muted); font-size: 0.88rem; margin-bottom: 12px; }
.crumbs a { color: var(--brand-2); }

.footer {
  background: var(--ink); color: rgba(255,255,255,0.78); padding: 48px 0 28px; margin-top: 40px;
}
.footer a:hover { color: #fff; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px;
}
.footer h4 { color: #fff; margin-bottom: 12px; font-size: 0.95rem; }
.footer p, .footer a { font-size: 0.92rem; }
.footer .col { display: grid; gap: 8px; align-content: start; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.nap { margin-top: 10px; line-height: 1.6; }
.note {
  margin-top: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.45);
}

.mobile-bar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.18); padding: 10px;
  grid-template-columns: 1fr 1fr; gap: 8px;
}

@media (max-width: 960px) {
  .hero-grid, .cta-band, .foot-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .trust, .reviews { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 72px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 20px 20px; gap: 14px;
  }
  .nav-toggle { display: inline-block; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 84px; }
}
@media (max-width: 640px) {
  .services, .trust, .reviews { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
  .proof-stats { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr !important; }
  main .section > .container[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; display:grid !important; }
}

.hero-visual {
  border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: #0b1220; aspect-ratio: 16/10;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-shot {
  border-radius: 14px; overflow: hidden; margin: -6px -6px 14px;
  aspect-ratio: 4/3; background: var(--brand-soft);
}
.service-shot img { width: 100%; height: 100%; object-fit: cover; }
.about-visual {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16/10; box-shadow: var(--shadow);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.band-visual {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center;
}
@media (max-width: 960px) {
  .band-visual { grid-template-columns: 1fr; }
}

.ni-strip {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
}
.ni-pill {
  background: #fff; border: 1px solid #cfe5d7; color: #08653f;
  border-radius: 999px; padding: 8px 12px; font-size: 0.85rem; font-weight: 700;
}

