:root {
  --bg: #f6f8fb;
  --panel: #ffffff;
  --ink: #092946;
  --muted: #5e6f82;
  --teal: #159aaa;
  --teal-dark: #0b7185;
  --navy: #08294a;
  --line: #dce5ee;
  --soft: #eaf7f8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}
.brand img { display: block; width: 190px; max-width: 42vw; height: auto; }
nav { display: flex; gap: 28px; color: var(--muted); font-weight: 700; }
nav a:hover { color: var(--teal-dark); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
}
.header-cta { background: var(--navy); color: white; }

.section { padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px); }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(21,154,170,.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(21,154,170,.25);
  background: var(--soft);
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 800;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.8rem, 6.4vw, 5.8rem); line-height: .97; letter-spacing: -.06em; margin-bottom: 28px; color: var(--navy); }
h2 { font-size: clamp(2rem, 3.7vw, 4rem); line-height: 1.04; letter-spacing: -.045em; margin-bottom: 20px; color: var(--navy); }
h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--navy); }
p { color: var(--muted); line-height: 1.7; }
.lead { font-size: 1.16rem; max-width: 720px; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button.primary { background: var(--teal); color: white; box-shadow: 0 16px 30px rgba(21,154,170,.2); }
.button.secondary { border: 1px solid var(--line); background: white; color: var(--navy); }

.offer-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 32px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 28px 70px rgba(8,41,74,.12);
}
.offer-label { color: var(--teal-dark); text-transform: uppercase; font-weight: 900; letter-spacing: .22em; font-size: .82rem; }
.offer-card h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); }
.offer-price { margin: 26px 0; padding: 22px; border-radius: 24px; background: var(--soft); border: 1px solid rgba(21,154,170,.18); }
.offer-price span, .offer-price small { display: block; color: var(--muted); }
.offer-price strong { display: block; margin: 8px 0; font-size: 2.1rem; color: var(--navy); }
.card-button { width: 100%; background: var(--navy); color: white; }

.services-section, .approach-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.section-heading { max-width: 820px; margin-bottom: 42px; }
.label { color: var(--teal-dark); text-transform: uppercase; font-weight: 900; letter-spacing: .22em; font-size: .82rem; }
.cards { display: grid; gap: 22px; }
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.card { border: 1px solid var(--line); background: #ffffff; border-radius: 28px; padding: 28px; box-shadow: 0 16px 42px rgba(8,41,74,.06); }
.icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 18px; background: var(--soft); color: var(--teal-dark); margin-bottom: 20px; font-weight: 900; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid var(--line); background: white; border-radius: 22px; padding: 20px 22px; box-shadow: 0 12px 34px rgba(8,41,74,.05); }
.price-row span { color: var(--muted); }
.price-row strong { color: var(--navy); text-align: right; }

.approach-section { background: var(--navy); }
.approach-section h2, .approach-section h3 { color: white; }
.approach-section p { color: #c8d7e6; }
.card.dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; }
.card.dark h3 { color: white; }
.step { color: #71d7e2; display: block; margin-bottom: 18px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.checks p { border: 1px solid var(--line); background: white; border-radius: 22px; padding: 18px; color: var(--ink); margin: 0; box-shadow: 0 12px 34px rgba(8,41,74,.05); }

.contact-box { display: grid; grid-template-columns: 1fr .55fr; gap: 32px; background: var(--teal); color: white; border-radius: 38px; padding: clamp(28px, 5vw, 64px); box-shadow: 0 24px 60px rgba(21,154,170,.22); }
.contact-box h2, .contact-box p { color: white; }
.dark-label { color: rgba(255,255,255,.78); }
.contact-card { display: grid; gap: 14px; background: var(--navy); border-radius: 28px; padding: 26px; align-self: start; }
.contact-card a { display: block; background: rgba(255,255,255,.08); border-radius: 18px; padding: 16px; color: white; font-weight: 800; }
.contact-card small { color: #c8d7e6; line-height: 1.6; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); background: white; }
footer p { margin: 0; }
footer a { color: var(--teal-dark); font-weight: 800; }

@media (max-width: 1050px) {
  .four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav, .header-cta { display: none; }
  .hero, .split, .contact-box { grid-template-columns: 1fr; }
  .three, .four, .checks, .pricing-grid { grid-template-columns: 1fr; }
  .site-header { justify-content: center; }
  .price-row { align-items: flex-start; flex-direction: column; }
  .price-row strong { text-align: left; }
  footer { flex-direction: column; }
}
