:root {
  --teal: #004b5d;
  --teal-deep: #003846;
  --teal-soft: #e7f2f3;
  --ink: #101a2b;
  --muted: #41505f;
  --rule: #9aaeb5;
  --white: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 70px);
  min-height: 82px;
  padding: 12px clamp(22px, 6vw, 70px);
  background: var(--teal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(22px, 4vw, 42px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: currentColor;
}

.hero {
  display: grid;
  place-items: center;
  min-height: auto;
  padding: clamp(34px, 5vw, 58px) 22px clamp(36px, 6vw, 66px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 75, 93, 0.07), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 50% 0%, rgba(0, 75, 93, 0.12), transparent 34rem),
    #fbfdfd;
}

.hero-content {
  width: min(900px, 100%);
}

.hero-logo {
  width: min(560px, 90vw);
  height: auto;
  margin: 0 auto clamp(10px, 2.4vw, 18px);
  filter: drop-shadow(0 10px 18px rgba(0, 75, 93, 0.12));
}

.rule {
  width: min(680px, 100%);
  height: 2px;
  margin: 0 auto clamp(20px, 3vw, 30px);
  background: var(--teal);
}

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

h1 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--teal);
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 1.12;
  text-transform: uppercase;
}

h2 {
  color: var(--teal);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.08;
}

h3 {
  color: var(--teal);
  font-size: 1.02rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.24rem);
}

.hero-focus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 auto 24px;
}

.hero-focus span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-focus span + span::before {
  content: "|";
  margin-right: 18px;
  color: rgba(0, 75, 93, 0.42);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button svg,
.contact-methods svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.section {
  padding: clamp(52px, 7vw, 90px) 22px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 32px;
  text-align: center;
}

.services {
  background: var(--white);
  border-top: 1px solid #d9e5e8;
}

.services h2 {
  margin-bottom: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

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

.service-card {
  min-height: 170px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding: 10px 18px 0;
  text-align: center;
  border-left: 1px solid var(--rule);
}

.service-card:first-child {
  border-left: 0;
}

.service-card svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: clamp(0.78rem, 1vw, 0.98rem);
}

.ai-band {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 54, 68, 1), rgba(0, 75, 93, 1) 58%, rgba(0, 91, 108, 1));
  position: relative;
  overflow: hidden;
}

.ai-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 18px 19px);
  pointer-events: none;
}

.ai-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  min-height: 230px;
  padding: 42px 0;
}

.ai-inner h2 {
  max-width: 850px;
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.28;
}

.ai-inner p {
  max-width: 770px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.band-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ai-mark {
  width: 92px;
  height: 112px;
  object-fit: contain;
  opacity: 0.86;
}

.approach {
  background: #fbfdfd;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.approach h2 {
  margin-bottom: 18px;
}

.approach p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.proof-list {
  display: grid;
  gap: 1px;
  background: #c8d6da;
  border: 1px solid #c8d6da;
}

.proof-list div {
  padding: 22px;
  background: var(--white);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  color: var(--teal);
  font-size: 1.35rem;
}

.proof-list span {
  color: var(--muted);
}

.outcomes {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 75, 93, 0.05), transparent 42%),
    var(--white);
  border-top: 1px solid #d9e5e8;
  border-bottom: 1px solid #d9e5e8;
}

.outcomes-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.outcomes h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.outcomes-lead p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.outcome-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 75, 93, 0.32);
}

.outcome-list article {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 75, 93, 0.32);
}

.outcome-list h3 {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.outcome-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  padding: clamp(54px, 7vw, 80px) 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.12), transparent 18rem),
    linear-gradient(120deg, rgba(0, 47, 58, 1), rgba(0, 75, 93, 1) 58%, rgba(0, 63, 78, 1));
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 20px, rgba(255, 255, 255, 0.035) 20px 21px);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.contact h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.contact p {
  margin-bottom: 0;
  font-size: 1.35rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.contact-methods {
  display: grid;
  gap: 0;
  font-style: normal;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 0 0 2px;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-methods svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 20px 22px;
  color: var(--teal);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .site-header {
    justify-content: space-between;
  }

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

  .service-card:nth-child(4) {
    border-left: 0;
  }

  .split,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .outcomes-inner {
    grid-template-columns: 1fr;
  }

  .outcome-list article {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    position: sticky;
    justify-content: center;
    min-height: 74px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-logo {
    width: min(440px, 96vw);
  }

  .hero-actions {
    display: grid;
  }

  .service-grid,
  .ai-inner {
    grid-template-columns: 1fr;
  }

  .hero-focus {
    display: grid;
    gap: 6px;
  }

  .hero-focus span {
    justify-content: center;
  }

  .hero-focus span + span::before {
    display: none;
  }

  .outcome-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-card,
  .service-card:nth-child(4) {
    min-height: auto;
    padding: 22px 10px;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .service-card:first-child {
    border-top: 0;
  }

  .contact p {
    letter-spacing: 0.12em;
    font-size: 1.05rem;
  }
}
