
:root {
  --bg: #f5fbfa;
  --bg-soft: #eef7f5;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(20, 184, 166, 0.25);
  --text: #0f172a;
  --muted: #52606d;
  --brand: #14b8a6;
  --brand-deep: #0f766e;
  --brand-soft: #dff8f4;
  --blue: #2563eb;
  --amber: #b45309;
  --slate-strong: #111827;
  --ink-soft: #18212f;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  --radius: 22px;
  --container: min(1180px, calc(100vw - 2rem));
  --container-narrow: min(820px, calc(100vw - 2rem));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behaviour: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.08), transparent 32%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.06), transparent 28%),
    var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.2rem; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: var(--container); margin: 0 auto; }
.narrow { width: var(--container-narrow); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section--soft { background: rgba(255, 255, 255, 0.55); border-top: 1px solid rgba(15, 23, 42, 0.04); border-bottom: 1px solid rgba(15, 23, 42, 0.04); }
.section--dark {
  background: linear-gradient(135deg, #0f172a, #102433 62%, #0f3342);
  color: #f8fafc;
}
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading h2, .page-hero h1, .hero h1, .modal h2, .error-card h1 { line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 1rem; }
.section-heading h2, .page-hero h1, .hero h1 { font-size: clamp(2.2rem, 4.4vw, 4.25rem); }
.section-heading p:last-child { color: var(--muted); max-width: 68ch; }
.section-heading--dark p:last-child { color: rgba(248, 250, 252, 0.78); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.10);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.section--dark .eyebrow, .cta-band .eyebrow, .hero-sidecard--warm .eyebrow { background: rgba(255, 255, 255, 0.12); color: #dcfce7; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  background: var(--brand-deep);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 14px;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(245, 251, 250, 0.86);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.brand__logo {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(20, 184, 166, 0.18);
}
.brand strong { display: block; font-size: 1.05rem; }
.brand span span { display: block; font-size: 0.88rem; color: var(--muted); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.site-nav > a, .nav-group__toggle {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  background: transparent;
  border: 0;
}
.site-nav > a:hover, .nav-group__toggle:hover, .site-nav > a.is-current, .nav-group.is-current > .nav-group__toggle {
  background: rgba(20, 184, 166, 0.10);
  color: var(--brand-deep);
}
.nav-group { position: relative; }
.nav-group__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: min(340px, 92vw);
  display: grid;
  gap: 0.4rem;
  padding: 0.8rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}
.nav-group:hover .nav-group__panel,
.nav-group:focus-within .nav-group__panel,
.nav-group.is-open .nav-group__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-group__panel a {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  font-weight: 600;
  color: var(--text);
}
.nav-group__panel a:hover, .nav-group__panel a.is-current {
  background: rgba(20, 184, 166, 0.08);
  color: var(--brand-deep);
}
.menu-toggle {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 700;
}
.nav-cta { margin-left: 0.2rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: white;
  box-shadow: 0 18px 38px rgba(13, 148, 136, 0.24);
}
.button--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.08);
}
.button--light {
  background: white;
  color: var(--brand-deep);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}
.button--full { width: 100%; }
.text-link {
  color: var(--brand-deep);
  font-weight: 700;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.hero { padding: 5.5rem 0 4rem; }
.hero-grid, .page-hero__grid, .split-panel, .cta-band__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-grid { grid-template-columns: 1.15fr 0.85fr; }
.page-hero__grid { grid-template-columns: 1.15fr 0.85fr; }
.hero h1, .page-hero h1 { max-width: 15ch; }
.hero-lede, .page-summary { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 1.7rem 0; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}
.hero-points li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-card, .hero-sidecard, .results-card, .service-card, .sector-card, .mini-card, .step-card, .related-card, .hero-card__panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(223,248,244,0.92));
}
.hero-card__logo {
  width: min(100%, 360px);
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 16px 30px rgba(13, 148, 136, 0.18));
}
.hero-card__panel { padding: 1.2rem; background: rgba(255,255,255,0.86); }
.hero-card__panel h2, .results-card h3, .hero-sidecard h2 { margin-top: 0; font-size: 1.2rem; }
.hero-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.hero-chip-grid span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.10);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.92rem;
}
.page-hero { padding: 4.6rem 0 2rem; }
.page-hero--warm {
  background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.10), transparent 28%), var(--bg);
}
.page-hero--legal { padding-bottom: 0; }
.hero-sidecard { padding: 1.4rem; }
.hero-sidecard--warm {
  background: linear-gradient(135deg, #083344, #14532d);
  color: white;
}
.hero-sidecard--warm ul { color: rgba(255,255,255,0.92); }
.breadcrumbs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.breadcrumbs strong { color: var(--text); }

.service-grid, .sector-grid, .three-col-grid, .steps-grid, .faq-list, .related-grid {
  display: grid;
  gap: 1.25rem;
}
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sector-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three-col-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card, .sector-card, .mini-card, .step-card, .results-card, .hero-sidecard { padding: 1.4rem; }
.service-card h3, .sector-card h3, .mini-card h3, .step-card h3, .faq-item h3 { margin-top: 0; font-size: 1.15rem; }
.card-kicker { color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.74rem; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.service-icon svg { width: 34px; height: 34px; }
.service-icon--teal { background: rgba(20, 184, 166, 0.12); color: var(--brand-deep); }
.service-icon--blue { background: rgba(37, 99, 235, 0.10); color: var(--blue); }
.service-icon--amber { background: rgba(180, 83, 9, 0.10); color: var(--amber); }
.service-icon--slate { background: rgba(15, 23, 42, 0.08); color: var(--slate-strong); }
.list-check, .feature-list { padding-left: 1.15rem; }
.list-check li, .feature-list li { margin-bottom: 0.75rem; color: var(--ink-soft); }
.feature-list li::marker, .list-check li::marker { color: var(--brand); }
.split-panel { grid-template-columns: 1.15fr 0.85fr; }
.quote-stack { display: grid; gap: 1rem; }
.quote-stack blockquote {
  margin: 0;
  padding: 1.25rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
}
.quote-stack footer { margin-top: 0.8rem; color: var(--brand-deep); font-weight: 700; }
.results-card { align-self: stretch; }
.results-card h3 { margin-bottom: 0.9rem; }
.step-card {
  color: #f8fafc;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}
.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(20,184,166,0.16);
  color: #99f6e4;
  font-weight: 800;
  margin-bottom: 1rem;
}
.faq-item {
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.88);
}
.faq-list { grid-template-columns: 1fr; }
.related-card {
  display: block;
  padding: 1.3rem;
}
.related-card span { display: block; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.2rem; }
.related-card strong { color: var(--brand-deep); font-size: 1.1rem; }
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0f172a, #0f766e);
  color: white;
}
.cta-band__inner { grid-template-columns: 1.1fr auto; }
.cta-band p:last-child { color: rgba(255,255,255,0.82); }
.form-grid { display: grid; gap: 1rem; }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: block; font-weight: 700; margin-bottom: 0.45rem; }
input, select, textarea {
  width: 100%;
  padding: 0.88rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fcfffe;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(20, 184, 166, 0.55);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}
.form-note, .form-status, .footer-small, .footer-copy, .footer-address, .legal-copy p { color: var(--muted); }
.booking-form { display: grid; gap: 1rem; }
.form-status { min-height: 1.2rem; font-weight: 700; }
.form-status.is-success { color: #065f46; }
.form-status.is-error { color: #b91c1c; }

.site-footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 4rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
}
.brand--footer span span, .footer-copy, .footer-meta, .footer-address, .footer-small, .footer-links a { color: rgba(248,250,252,0.74); }
.footer-links { list-style: none; padding: 0; display: grid; gap: 0.65rem; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}
.modal.is-open { display: block; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.64);
  backdrop-filter: blur(6px);
}
.modal__dialog {
  position: relative;
  width: min(760px, calc(100vw - 1.2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  margin: 1rem auto;
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: white;
  font-size: 1.4rem;
  line-height: 1;
}
.modal__lede { color: var(--muted); max-width: 56ch; }

.legal-copy h2 { margin-top: 2rem; font-size: 1.3rem; }
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.error-card {
  width: min(640px, 100%);
  padding: 2rem;
  text-align: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,0.08);
}
.error-card img { margin: 0 auto 1rem; }

@media (max-width: 980px) {
  .hero-grid, .page-hero__grid, .split-panel, .cta-band__inner, .footer-grid, .sector-grid, .service-grid, .steps-grid, .three-col-grid, .related-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(15,23,42,0.08);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-group__panel {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    margin-top: 0.5rem;
  }
  .nav-group.is-open .nav-group__panel { display: grid; }
  .two-up { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .header-row { min-height: 78px; }
  .brand__logo { width: 50px; height: 50px; }
  .modal__dialog { padding: 1.15rem; }
}
