:root {
  --ink: #123238;
  --muted: #5b6d70;
  --teal: #0b6670;
  --teal-deep: #064f58;
  --aqua: #6cc8c5;
  --mint: #dff4ef;
  --coral: #f07167;
  --paper: #fbfbf7;
  --line: #d7e3df;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(18, 50, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 251, 247, 0.92);
  border-bottom: 1px solid rgba(215, 227, 223, 0.82);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 156px;
  max-width: none;
  transform: translateY(-39px);
}

.brand {
  display: block;
  width: 156px;
  height: 76px;
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a,
.header-cta {
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover {
  color: var(--teal);
}

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal);
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta:hover,
.button.primary:hover {
  background: var(--teal-deep);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.74fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(223, 244, 239, 0.95) 0%, rgba(251, 251, 247, 0.88) 48%, rgba(248, 222, 204, 0.7) 100%);
}

.hero-copy {
  min-width: 0;
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 6.4rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0;
}

.proof-row div {
  padding-top: 16px;
  border-top: 2px solid rgba(11, 102, 112, 0.23);
}

.proof-row dt {
  color: var(--teal-deep);
  font-size: 1.45rem;
  font-weight: 900;
}

.proof-row dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  padding: clamp(18px, 4vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -28px -28px auto auto;
  width: 150px;
  height: 150px;
  background: var(--coral);
  opacity: 0.18;
  border-radius: 8px;
  transform: rotate(8deg);
}

.panel-top,
.claim-card,
.metric-grid {
  position: relative;
}

.panel-top {
  margin-bottom: 28px;
}

.panel-top span,
.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-top strong {
  display: block;
  max-width: 280px;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1.05;
}

.claim-card {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  padding: 18px;
  margin-bottom: 14px;
  background: #f7fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.claim-card.active {
  background: var(--mint);
}

.claim-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: var(--coral);
  border-radius: 50%;
}

.status-dot.teal {
  background: var(--aqua);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.metric-grid div {
  padding: 18px;
  background: var(--ink);
  border-radius: 8px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.55rem;
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  padding: clamp(54px, 8vw, 90px) clamp(18px, 5vw, 72px);
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.home-lanes,
.seo-section,
.services,
.process,
.contact,
.partner-strip {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.home-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.seo-section {
  background: var(--paper);
}

.seo-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-copy p {
  min-height: 190px;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.home-lanes article {
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.home-lanes article:nth-child(2) {
  background: var(--teal);
}

.home-lanes span {
  display: block;
  margin-bottom: 18px;
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-lanes article:nth-child(2) span {
  color: var(--mint);
}

.home-lanes h2 {
  max-width: 720px;
  font-size: 2.75rem;
}

.home-lanes p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.home-lanes a {
  color: var(--white);
  font-weight: 900;
}

.partner-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.partner-strip .eyebrow {
  color: var(--aqua);
}

.partner-strip h2 {
  max-width: 900px;
  font-size: 3rem;
}

.partner-strip p {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.service-lanes article {
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.service-lanes article:nth-child(2) {
  background: var(--teal);
}

.service-lanes span {
  display: block;
  margin-bottom: 16px;
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-lanes article:nth-child(2) span {
  color: var(--mint);
}

.service-lanes h3 {
  max-width: 520px;
  font-size: 1.7rem;
}

.service-lanes p {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-grid article {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-grid p,
.steps p,
.contact-copy p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding-top: 18px;
  border-top: 2px solid rgba(11, 102, 112, 0.2);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--teal);
  background: var(--mint);
  border-radius: 50%;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  background: var(--ink);
  color: var(--white);
}

.contact .eyebrow {
  color: var(--aqua);
}

.contact-copy p {
  max-width: 560px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.contact-details a {
  color: var(--aqua);
  font-size: 1.5rem;
  font-weight: 900;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 28px);
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 132px;
  max-width: none;
  transform: translateY(-34px);
}

.site-footer {
  overflow: hidden;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer a {
  color: var(--teal);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .home-lanes,
  .seo-copy,
  .partner-strip,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-lanes {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    gap: 14px;
    padding: 12px 16px;
    overflow: hidden;
  }

  .brand img {
    width: 128px;
    transform: translateY(-32px);
  }

  .brand {
    width: 128px;
    height: 62px;
  }

  .header-cta {
    display: none;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 2.92rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .proof-row,
  .home-lanes,
  .seo-copy,
  .service-grid,
  .service-lanes,
  .steps,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 18px;
  }

  .panel-top strong {
    font-size: 1.55rem;
  }
}
