
:root {
  --ink: #142033;
  --muted: #5f6b7a;
  --line: #dce5ee;
  --navy: #123a68;
  --blue: #2e6fae;
  --green: #1c755f;
  --gold: #b7852d;
  --cloud: #f3f7fb;
  --sky: #e8f2fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(19, 50, 82, 0.13);
}

* { 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;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  --scroll-progress: 0%;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 229, 238, 0.86);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 350px; }
.brand-logo { width: clamp(98px, 8vw, 140px); height: 72px; object-fit: contain; object-position: left center; border-radius: 4px; }
.brand-name { color: var(--navy); font-size: clamp(1.14rem, 1.34vw, 1.52rem); line-height: 1; font-weight: 950; white-space: nowrap; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 2vw, 28px); color: #26364d; font-size: .94rem; font-weight: 800; }
.site-nav a { white-space: nowrap; }

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--scroll-progress);
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transition: width .12s linear;
}
.site-header {
  transition: min-height .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 10px 30px rgba(15, 34, 59, .08);
  background: rgba(255,255,255,.98);
}
.site-header.is-scrolled .brand-logo {
  transform: scale(.96);
}
.brand-logo,
.hero-media,
.inspection-note,
.video-stage,
.media-tile img {
  transition: transform .28s ease, box-shadow .28s ease, opacity .28s ease;
}
.hero-media.is-parallax {
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
}
.inspection-note.is-parallax {
  transform: translate3d(calc(var(--parallax-x, 0px) * -0.65), calc(var(--parallax-y, 0px) * -0.65), 0);
}

.nav-pill { min-height: 44px; padding: 12px 18px; border-radius: 6px; color: white !important; background: var(--green); }
.menu-toggle { display: none; min-height: 40px; padding: 0 13px; border: 1px solid var(--line); border-radius: 6px; background: white; color: var(--navy); font-weight: 900; }

.page-band { padding-left: clamp(20px, 5vw, 72px); padding-right: clamp(20px, 5vw, 72px); }
.hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr); gap: clamp(30px, 6vw, 80px); align-items: center; min-height: calc(100vh - 78px); padding-top: clamp(46px, 7vw, 96px); padding-bottom: 42px; background: linear-gradient(180deg, #f8fbff 0%, #fff 72%); }
.hero-copy { max-width: 710px; }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-size: clamp(.9rem, .92vw, 1rem); line-height: 1.28; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(2.28rem, 3.45vw, 4.05rem); line-height: 1.04; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(1.78rem, 2.45vw, 2.82rem); line-height: 1.08; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.18rem; line-height: 1.28; letter-spacing: 0; }
.lead { max-width: 680px; color: #344158; font-size: clamp(1.13rem, 1.38vw, 1.3rem); line-height: 1.66; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 21px; border: 1px solid var(--navy); border-radius: 6px; font-weight: 900; }
.btn.primary { color: white; background: var(--navy); }
.btn.secondary { color: var(--navy); background: white; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.trust-row div { min-height: 104px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.82); }
.trust-row strong { display: block; color: var(--navy); }
.trust-row span { display: block; margin-top: 6px; color: var(--muted); font-size: .9rem; line-height: 1.42; }
.trust-row strong { font-size: 1.02rem; line-height: 1.25; }
.hero-media { position: relative; min-height: 530px; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); background: var(--sky); }
.hero-media img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; }
.hero-video-card { display: flex; flex-direction: column; justify-content: center; gap: 14px; min-height: 0; padding: clamp(10px, 1.2vw, 16px); background: #0f2238; }
.hero-video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 8px; background: #0b1220; }
.hero-video-caption { width: 100%; padding: 12px 14px; border-radius: 8px; color: white; font-size: .94rem; font-weight: 850; line-height: 1.35; background: rgba(255,255,255,.1); }
.inspection-note { position: absolute; right: 24px; bottom: 24px; width: min(330px, calc(100% - 48px)); padding: 19px; border-radius: 8px; background: rgba(255,255,255,.94); box-shadow: 0 18px 46px rgba(11,34,56,.18); }
.inspection-note span { color: var(--green); font-size: .75rem; font-weight: 950; text-transform: uppercase; }
.inspection-note strong { display: block; margin: 7px 0; font-size: 1.34rem; }
.inspection-note p { margin-bottom: 0; color: var(--muted); line-height: 1.45; }

.section { padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px); }
.two-col { display: grid; grid-template-columns: minmax(0, .82fr) minmax(360px, .92fr); gap: clamp(28px, 5vw, 68px); align-items: center; }
.intro-strip {
  grid-template-columns: minmax(360px, .82fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(34px, 4.8vw, 76px);
  padding-top: clamp(38px, 4.8vw, 68px);
  padding-bottom: clamp(38px, 4.8vw, 68px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff 0%, #fff 54%, #f7fbff 100%);
}
.intro-strip > p, .about-story p, .section-head p, .service-card p, .article-card p, .mini-list span, .method-grid p, .service-detail-list p, .audience-page-grid p, .process-lane p, .contact-copy p, .site-footer p, .article-body p, .credential-grid p { color: var(--muted); line-height: 1.68; }
.intro-strip > div { max-width: 660px; }
.intro-strip .eyebrow { margin-bottom: 12px; font-size: clamp(.96rem, 1vw, 1.08rem); }
.intro-strip > p {
  max-width: 800px;
  margin: 0;
  padding: 22px 0 22px clamp(24px, 2.4vw, 38px);
  border-left: 4px solid var(--green);
  color: #26364d;
  font-size: clamp(1.28rem, 1.45vw, 1.52rem);
  line-height: 1.56;
  font-weight: 650;
}
.intro-strip h2 { max-width: 660px; margin-bottom: 0; font-size: clamp(2.05rem, 2.75vw, 3rem); line-height: 1.05; }
.intro-strip > .home-service-visuals {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
  margin-top: clamp(10px, 1.8vw, 22px);
}
.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 276px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(19, 50, 82, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.home-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(28, 117, 95, .42);
  box-shadow: 0 22px 48px rgba(19, 50, 82, .13);
}
.home-service-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  transition: transform .34s ease, filter .34s ease;
}
.home-service-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}
.home-service-card span {
  display: block;
  padding: 18px 18px 0;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.18;
  font-weight: 950;
}
.home-service-card p {
  margin: 0;
  padding: 9px 18px 18px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.home-service-card small {
  margin: auto 18px 18px auto;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1;
  font-weight: 950;
  transition: transform .2s ease, color .2s ease;
}
.home-service-card:hover small {
  color: var(--green);
  transform: translateX(4px);
}

.section-head .eyebrow,
.intro-strip .eyebrow,
.proof-section .eyebrow,
.testimonial-section .eyebrow {
  color: var(--blue);
}
.section-head p { max-width: 880px; color: #455267; font-size: clamp(1.05rem, 1.08vw, 1.16rem); line-height: 1.72; }
.section-head { max-width: 900px; margin-bottom: 34px; }
.section-head.narrow { max-width: 920px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.with-link { display: flex; align-items: end; justify-content: space-between; gap: 24px; max-width: none; }
.text-link { color: var(--green); font-weight: 900; }
.card-grid { display: grid; gap: 18px; }
.card-grid.six { grid-template-columns: repeat(3, 1fr); }
.service-card, .article-card { display: block; min-height: 236px; padding: 25px; border: 1px solid var(--line); border-radius: 8px; background: white; transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover, .article-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(19,50,82,.1); }
.service-card span { display: inline-flex; margin-bottom: 26px; color: var(--gold); font-size: .96rem; font-weight: 950; }
.split-feature { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); min-height: 680px; background: var(--cloud); }
.split-image { position: relative; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-plan-note { right: 28px; bottom: 28px; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 96px); }
.mini-list { display: grid; gap: 16px; margin-top: 20px; }
.mini-list a { display: grid; gap: 6px; padding: 0 0 18px; border-bottom: 1px solid var(--line); }
.method-section { background: #102848; color: white; }
.method-section .eyebrow { color: #93c5fd; }
.method-section .section-head p, .method-grid p { color: #cbd7e6; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1120px; margin: 34px auto 0; }
.method-grid div { min-height: 180px; padding: 24px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: rgba(255,255,255,.06); }
.method-grid span { display: block; margin-bottom: 18px; color: #9ed7c6; font-size: .92rem; line-height: 1.25; font-weight: 950; text-transform: uppercase; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card span { display: inline-flex; margin-bottom: 22px; color: var(--green); font-size: .85rem; line-height: 1.25; font-weight: 950; text-transform: uppercase; }
.article-card small { color: var(--gold); font-weight: 900; }
.cta-band { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 72px); color: white; text-align: center; background: var(--green); }
.cta-band .eyebrow { color: #d7f4eb; }
.cta-copy { max-width: 820px; margin: 0 auto; }
.cta-band h2 { margin: 0 auto 14px; max-width: 820px; font-size: clamp(2rem, 2.9vw, 3.15rem); }
.cta-band .cta-contact { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.1vw, 1.18rem); line-height: 1.55; }
.cta-band .btn.primary { flex: 0 0 auto; min-width: 220px; border-color: white; color: var(--navy); background: white; }

.subhero { padding-top: clamp(64px, 8vw, 108px); padding-bottom: clamp(50px, 7vw, 84px); background: linear-gradient(180deg, #f4f9fe 0%, #fff 86%); }
.subhero h1 { max-width: 980px; font-size: clamp(2.12rem, 3.15vw, 3.55rem); }
.audience-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr); gap: clamp(28px, 4.8vw, 72px); align-items: center; }
.audience-hero-copy { max-width: 820px; }
.audience-hero .lead { max-width: 720px; }
.audience-hero-collage { align-self: stretch; min-width: 0; }
.audience-hero-collage figure { min-height: 214px; }
.audience-hero-collage .wide-img { min-height: 442px; }
.process-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, .78fr);
  gap: clamp(30px, 5.2vw, 78px);
  align-items: center;
}
.process-hero-copy {
  max-width: 790px;
}
.process-hero h1 {
  max-width: 760px;
}
.process-hero .lead {
  max-width: 690px;
}
.process-hero-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}
.process-hero-collage figure {
  position: relative;
  min-height: 178px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cloud);
  box-shadow: 0 16px 38px rgba(19, 50, 82, .12);
}
.process-hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .34s ease, filter .34s ease;
}
.process-hero-collage figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}
.process-hero-collage figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 6px;
  color: white;
  background: rgba(12, 29, 50, .78);
  font-size: .78rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}
.process-hero-collage figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 29, 50, 0) 48%, rgba(12, 29, 50, .42) 100%);
}
.service-detail-list { display: grid; gap: 18px; }
.service-detail-list article { display: grid; grid-template-columns: 74px 1fr; gap: 22px; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: white; }
.service-detail-list article > span { display: grid; place-items: center; width: 52px; height: 52px; color: white; background: var(--navy); border-radius: 50%; font-weight: 950; }
ul, ol { padding-left: 1.15rem; color: var(--muted); line-height: 1.8; }
.audience-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; background: var(--cloud); }
.audience-page-grid article, .credential-grid div { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: white; }
.process-lane { display: grid; gap: 16px; counter-reset: step; }
.process-lane article { display: grid; grid-template-columns: 64px 260px 1fr; gap: 22px; align-items: start; padding: 24px; border-bottom: 1px solid var(--line); }
.process-lane span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: white; background: var(--green); font-weight: 950; }
.deliverables { display: grid; grid-template-columns: minmax(0, .7fr) minmax(340px, 1fr); gap: 44px; background: var(--cloud); }
.deliverable-grid { align-content: start; }
.topic-strip span { padding: 12px 14px; border: 1px solid #cbd8e7; border-radius: 999px; background: white; font-weight: 850; }
.about-hero { background: linear-gradient(rgba(244,249,254,.92), rgba(255,255,255,.94)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1500&q=80') center/cover; }
.about-hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-hero-centered h1,
.about-hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}
.about-hero-centered .lead {
  max-width: 760px;
}
.about-story-refined {
  align-items: start;
  gap: clamp(38px, 7vw, 94px);
}
.about-story-refined h2 {
  max-width: 620px;
}
.about-statement-list {
  display: grid;
  gap: 18px;
  max-width: 820px;
}
.about-statement-list p {
  margin: 0;
  font-size: clamp(1.08rem, 1.22vw, 1.28rem);
  line-height: 1.72;
  color: #3f4d63;
}
.about-trust-copy p {
  font-size: clamp(1.04rem, 1.12vw, 1.18rem);
  line-height: 1.72;
}

.credential-section { background: var(--cloud); }
.credential-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.credential-grid strong { color: var(--navy); }
.topic-strip { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 36px; padding-bottom: 18px; }
.page-articles { padding-top: 32px; }
.content-plan { display: grid; grid-template-columns: minmax(0, .7fr) minmax(320px, 1fr); gap: 40px; background: var(--cloud); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(360px, 1fr); gap: clamp(30px, 6vw, 90px); }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; margin: 12px 0; color: var(--ink); }
.check-list li:before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 14px; border-radius: 50%; background: var(--green); }
.soft-note { padding: 18px; border-left: 4px solid var(--gold); background: #fff8eb; }
.project-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--cloud); }
.project-form label { display: grid; gap: 8px; color: #28374d; font-weight: 850; }
.project-form .wide, .project-form button { grid-column: 1 / -1; }
input, select, textarea { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid #cbd5e1; border-radius: 6px; color: var(--ink); background: white; font: inherit; }
textarea { min-height: 132px; resize: vertical; }
button { font: inherit; cursor: pointer; }
.project-form button { min-height: 50px; border: 0; border-radius: 6px; color: white; background: var(--navy); font-weight: 950; }
.project-form button:disabled {
  opacity: .72;
  cursor: wait;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.5;
}
.form-status.is-success { color: var(--green); }
.form-status.is-error { color: #b42318; }
.form-status.is-pending { color: var(--blue); }
.form-check-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.article-hero { padding-top: 64px; padding-bottom: 54px; background: var(--cloud); }
.back-link { display: inline-flex; margin-bottom: 30px; color: var(--green); font-weight: 900; }
.article-body { max-width: 820px; margin: 0 auto; padding: clamp(48px, 7vw, 86px) 20px; }
.article-body h2 { margin-top: 34px; font-size: clamp(1.55rem, 2.2vw, 2.1rem); }
.article-body p, .article-body li { font-size: 1.05rem; }
.site-footer { display: flex; justify-content: space-between; gap: 30px; padding: 38px clamp(20px, 5vw, 72px); color: white; background: #0c1d32; }
.footer-brand { display: inline-flex; gap: 7px; margin-bottom: 12px; font-weight: 950; letter-spacing: 0; }
.site-footer p { max-width: 540px; color: #cbd7e6; }
.footer-contact { margin-top: 14px; font-size: .95rem; line-height: 1.62; }
.footer-contact a, .cta-contact a { color: #9ed7c6; font-weight: 900; }
.footer-grid { display: grid; grid-template-columns: repeat(2, max-content); gap: 12px 26px; font-weight: 850; }


.media-proof {
  background: #fff;
}
.media-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: repeat(2, 260px);
  gap: 18px;
}
.media-tile {
  display: block;
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cloud);
}
.media-tile.large {
  grid-row: span 2;
}
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}
.media-tile:hover img {
  transform: scale(1.025);
}
.media-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 25, 43, 0.02) 20%, rgba(9, 25, 43, 0.72) 100%);
}
.media-tile div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: white;
}
.media-tile span {
  display: block;
  margin-bottom: 8px;
  color: #a7e2d0;
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}
.media-tile strong {
  display: block;
  max-width: 560px;
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  line-height: 1.15;
}
.video-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--cloud);
}
.video-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
}
.video-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #0d243d;
}
.video-stage img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: .82;
}
.video-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 29, 50, .62), rgba(12, 29, 50, .05));
}
.video-stage button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
}
.video-stage button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--green);
}
.video-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: white;
}
.video-caption strong {
  font-size: 1.35rem;
}
.video-caption small {
  color: #dbe8f4;
}
.video-card-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card-row article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.video-card-row span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 950;
}
.video-card-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.video-card-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 1040px) {
  .media-grid, .video-section { grid-template-columns: 1fr; }
  .media-grid { grid-template-rows: none; }
  .media-tile.large { grid-row: auto; }
  .video-card-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .video-card-row { grid-template-columns: 1fr; }
  .video-stage, .video-stage img { min-height: 340px; }
}

@media (max-width: 1180px) {
  .intro-strip > .home-service-visuals { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1040px) {
  .site-header { align-items: flex-start; }
  .menu-toggle { display: inline-flex; align-items: center; margin-left: auto; }
  .site-nav { position: absolute; left: 18px; right: 18px; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: var(--shadow); }
  .site-nav a { padding: 13px; }
  body.nav-open .site-nav { display: flex; }
  .hero, .two-col, .split-feature, .deliverables, .content-plan, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media, .hero-media img { min-height: 430px; }
  .hero-video-card { min-height: 0; }
  .card-grid.six, .article-grid, .method-grid, .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .process-lane article { grid-template-columns: 52px 1fr; }
  .process-lane article p { grid-column: 2; }
}

@media (max-width: 680px) {
  .site-header { min-height: 68px; }
  .brand { min-width: 0; gap: 9px; }
  .brand-logo { width: 86px; height: 52px; }
  .brand-name { font-size: 1rem; }
  h1 { font-size: 2.12rem; }
  h2 { font-size: 1.72rem; }
  .eyebrow { font-size: .84rem; }
  .intro-strip > p, .lead { font-size: 1.05rem; }
  .hero-actions, .trust-row, .card-grid.six, .article-grid, .method-grid, .credential-grid, .audience-page-grid, .project-form { grid-template-columns: 1fr; }
  .intro-strip { padding-top: 34px; padding-bottom: 34px; background: #fff; }
  .intro-strip > p { padding: 18px 0 0; border-left: 0; border-top: 4px solid var(--green); font-size: 1.1rem; }
  .intro-strip h2 { font-size: 1.86rem; }
  .intro-strip > .home-service-visuals { grid-template-columns: 1fr; gap: 14px; margin-top: 6px; }
  .home-service-card { min-height: auto; }
  .home-service-card img { height: 180px; }
  .hero-actions { display: grid; }
  .hero-media, .hero-media img { min-height: 360px; }
  .hero-video-card { min-height: 0; }
  .inspection-note { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .split-feature { min-height: auto; }
  .split-image img { max-height: 360px; }
  .service-detail-list article, .process-lane article { grid-template-columns: 1fr; }
  .process-lane article p { grid-column: auto; }
  .section-head.with-link, .site-footer { flex-direction: column; align-items: flex-start; }
  .cta-band { align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Motion is intentionally restrained: enough life to feel polished, without making the site feel gimmicky. */
.hero-copy,
.hero-media,
.trust-row div,
.section-head,
.service-card,
.article-card,
.media-tile,
.video-stage,
.video-card-row article,
.mini-list a,
.method-grid div,
.credential-grid div,
.audience-page-grid article,
.process-lane article,
.contact-copy,
.project-form,
.why-grid article,
.type-grid span,
.project-type-card,
.do-dont > div,
.requirements-grid span {
  will-change: transform, opacity;
}

.js-enabled .reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .82s cubic-bezier(.2, .8, .2, 1), transform .82s cubic-bezier(.2, .8, .2, 1);
}

.js-enabled .reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-delay-1 { transition-delay: .08s; }
.js-enabled .reveal-delay-2 { transition-delay: .16s; }
.js-enabled .reveal-delay-3 { transition-delay: .24s; }
.js-enabled .reveal-delay-4 { transition-delay: .32s; }

.hero-media {
  animation: heroFloat 8s ease-in-out infinite;
}

.inspection-note {
  animation: noteLift 5.5s ease-in-out infinite;
}

.btn,
.nav-pill,
.project-form button,
.video-stage button {
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn:hover,
.nav-pill:hover,
.project-form button:hover,
.video-stage button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 58, 104, .16);
}

.trust-row div,
.service-card,
.article-card,
.media-tile,
.video-card-row article,
.credential-grid div,
.audience-page-grid article {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.trust-row div:hover,
.video-card-row article:hover,
.credential-grid div:hover,
.audience-page-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 111, 174, .34);
  box-shadow: 0 16px 34px rgba(19,50,82,.09);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes noteLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .js-enabled .reveal-ready {
    opacity: 1;
    transform: none;
  }
}


.why-zeta .eyebrow { color: var(--blue); }
.why-zeta {
  background: var(--cloud);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.why-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
}
.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}
.project-types {
  background: #fff;
  border-top: 1px solid var(--line);
}
.project-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.project-type-card {
  position: relative;
  min-height: 185px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #cbd8e7;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 12px 30px rgba(19, 50, 82, .055);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  isolation: isolate;
}
.project-type-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}
.project-type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(28, 117, 95, .075), rgba(46, 111, 174, .05));
  opacity: 0;
  transition: opacity .28s ease;
}
.project-type-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 950;
  line-height: 1.25;
  transition: color .24s ease, transform .24s ease;
}
.project-type-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
  transition: color .24s ease, transform .24s ease;
}
.project-type-card:hover,
.js-enabled .project-type-card.reveal-ready.is-visible:hover {
  transform: translateY(-10px) scale(1.014);
  border-color: rgba(28, 117, 95, .58);
  box-shadow:
    0 24px 54px rgba(19, 50, 82, .16),
    0 0 0 2px rgba(28, 117, 95, .24),
    inset 0 0 0 1px rgba(46, 111, 174, .22);
}
.project-type-card:hover::before,
.js-enabled .project-type-card.reveal-ready.is-visible:hover::before {
  transform: scaleX(1);
}
.project-type-card:hover::after,
.js-enabled .project-type-card.reveal-ready.is-visible:hover::after {
  opacity: 1;
}
.project-type-card:hover span {
  color: var(--green);
  transform: translateY(-2px);
}
.project-type-card:hover p {
  color: #3f4a5e;
  transform: translateY(-1px);
}
.type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.requirements-grid,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.type-grid span,
.requirements-grid span,
.deliverable-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cbd8e7;
  border-radius: 999px;
  color: #26364d;
  background: white;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}
.do-dont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: var(--cloud);
}
.do-dont > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.requirements {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(340px, 1fr);
  gap: 42px;
  align-items: start;
  background: var(--cloud);
}
@media (max-width: 1040px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .project-type-grid { grid-template-columns: repeat(2, 1fr); }
  .do-dont, .requirements { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .why-grid, .project-type-grid { grid-template-columns: 1fr; }
  .project-type-card { min-height: auto; }
}


/* Premium card hover interactions */
.why-grid article,
.service-card,
.article-card,
.audience-page-grid article,
.credential-grid div,
.do-dont > div,
.video-card-row article {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  isolation: isolate;
}

.why-grid article::before,
.service-card::before,
.article-card::before,
.audience-page-grid article::before,
.credential-grid div::before,
.do-dont > div::before,
.video-card-row article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .34s cubic-bezier(.2, .8, .2, 1);
  z-index: 1;
}

.why-grid article::after,
.service-card::after,
.article-card::after,
.audience-page-grid article::after,
.credential-grid div::after,
.do-dont > div::after,
.video-card-row article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 117, 95, .075), rgba(46, 111, 174, .05));
  opacity: 0;
  transition: opacity .28s ease;
  z-index: -1;
}

.why-grid article:hover,
.service-card:hover,
.article-card:hover,
.audience-page-grid article:hover,
.credential-grid div:hover,
.do-dont > div:hover,
.video-card-row article:hover {
  transform: translateY(-10px);
  border-color: rgba(46, 111, 174, .45);
  box-shadow: 0 22px 46px rgba(19, 50, 82, .14);
}

.why-grid article:hover::before,
.service-card:hover::before,
.article-card:hover::before,
.audience-page-grid article:hover::before,
.credential-grid div:hover::before,
.do-dont > div:hover::before,
.video-card-row article:hover::before {
  transform: scaleX(1);
}

.why-grid article:hover::after,
.service-card:hover::after,
.article-card:hover::after,
.audience-page-grid article:hover::after,
.credential-grid div:hover::after,
.do-dont > div:hover::after,
.video-card-row article:hover::after {
  opacity: 1;
}

.why-grid article strong,
.service-card h3,
.article-card h2,
.article-card h3,
.audience-page-grid article h2,
.credential-grid div strong,
.do-dont h2,
.video-card-row article strong {
  transition: color .24s ease, transform .24s ease;
}

.why-grid article p,
.service-card p,
.article-card p,
.audience-page-grid article p,
.credential-grid div p,
.do-dont li,
.video-card-row article p {
  font-size: 1.02rem;
  transition: color .24s ease, transform .24s ease;
}

.why-grid article:hover strong,
.service-card:hover h3,
.article-card:hover h2,
.article-card:hover h3,
.audience-page-grid article:hover h2,
.credential-grid div:hover strong,
.do-dont > div:hover h2,
.video-card-row article:hover strong {
  color: var(--green);
  transform: translateY(-2px);
}

.why-grid article:hover p,
.service-card:hover p,
.article-card:hover p,
.audience-page-grid article:hover p,
.credential-grid div:hover p,
.do-dont > div:hover li,
.video-card-row article:hover p {
  color: #3f4a5e;
  transform: translateY(-1px);
}

.why-grid article:focus-within,
.service-card:focus-visible,
.article-card:focus-visible,
.audience-page-grid article:focus-within,
.credential-grid div:focus-within,
.do-dont > div:focus-within,
.video-card-row article:focus-within {
  outline: 3px solid rgba(46, 111, 174, .24);
  outline-offset: 3px;
}


/* Strong hover state that wins over the scroll reveal transform */
.js-enabled .why-grid article.reveal-ready.is-visible:hover,
.js-enabled .service-card.reveal-ready.is-visible:hover,
.js-enabled .article-card.reveal-ready.is-visible:hover,
.js-enabled .audience-page-grid article.reveal-ready.is-visible:hover,
.js-enabled .credential-grid div.reveal-ready.is-visible:hover,
.js-enabled .do-dont > div.reveal-ready.is-visible:hover,
.js-enabled .video-card-row article.reveal-ready.is-visible:hover,
.why-grid article:hover,
.service-card:hover,
.article-card:hover,
.audience-page-grid article:hover,
.credential-grid div:hover,
.do-dont > div:hover,
.video-card-row article:hover,
.team-card:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(28, 117, 95, .58);
  box-shadow:
    0 24px 54px rgba(19, 50, 82, .16),
    0 0 0 2px rgba(28, 117, 95, .28),
    inset 0 0 0 1px rgba(46, 111, 174, .22);
}

.js-enabled .why-grid article.reveal-ready.is-visible:hover::before,
.js-enabled .service-card.reveal-ready.is-visible:hover::before,
.js-enabled .article-card.reveal-ready.is-visible:hover::before,
.js-enabled .audience-page-grid article.reveal-ready.is-visible:hover::before,
.js-enabled .credential-grid div.reveal-ready.is-visible:hover::before,
.js-enabled .do-dont > div.reveal-ready.is-visible:hover::before,
.js-enabled .video-card-row article.reveal-ready.is-visible:hover::before,
.why-grid article:hover::before,
.service-card:hover::before,
.article-card:hover::before,
.audience-page-grid article:hover::before,
.credential-grid div:hover::before,
.do-dont > div:hover::before,
.video-card-row article:hover::before {
  transform: scaleX(1);
}

.js-enabled .why-grid article.reveal-ready.is-visible:hover::after,
.js-enabled .service-card.reveal-ready.is-visible:hover::after,
.js-enabled .article-card.reveal-ready.is-visible:hover::after,
.js-enabled .audience-page-grid article.reveal-ready.is-visible:hover::after,
.js-enabled .credential-grid div.reveal-ready.is-visible:hover::after,
.js-enabled .do-dont > div.reveal-ready.is-visible:hover::after,
.js-enabled .video-card-row article.reveal-ready.is-visible:hover::after,
.why-grid article:hover::after,
.service-card:hover::after,
.article-card:hover::after,
.audience-page-grid article:hover::after,
.credential-grid div:hover::after,
.do-dont > div:hover::after,
.video-card-row article:hover::after {
  opacity: 1;
}


/* Interior page image systems */
.page-image-strip {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.page-image-strip.reverse {
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, .78fr);
  background: var(--cloud);
}
.image-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
}
.image-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.image-collage figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--cloud);
  box-shadow: 0 14px 32px rgba(19, 50, 82, .08);
}
.image-collage.three-pack figure:first-child,
.image-collage .wide-img {
  grid-row: span 2;
  min-height: 454px;
}
.image-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .34s ease, filter .34s ease;
}
.image-collage figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}
.image-collage figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 9px 11px;
  border-radius: 6px;
  color: white;
  background: rgba(12, 29, 50, .78);
  font-size: .82rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}
.image-collage figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 29, 50, 0) 45%, rgba(12, 29, 50, .48) 100%);
}
.process-visual-band {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, .88fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: #102848;
  color: white;
}
.process-photo {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.process-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .34s ease;
}
.process-photo:hover img {
  transform: scale(1.035);
}
.flow-diagram-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 430px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: radial-gradient(circle at 12% 8%, rgba(46, 111, 174, .38), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  overflow: hidden;
}
.flow-line {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(158, 215, 198, .2), rgba(158, 215, 198, .9), rgba(213, 162, 74, .75));
}
.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  min-height: 172px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.flow-node:hover {
  transform: translateY(-7px) scale(1.025);
  border-color: rgba(158, 215, 198, .92);
  background: rgba(28, 117, 95, .34);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.flow-node span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #102848;
  background: #9ed7c6;
  font-size: .8rem;
  font-weight: 950;
}
.flow-node:nth-of-type(7) span {
  background: #d5a24a;
}
.flow-node strong {
  color: white;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.15;
  font-weight: 950;
}
.flow-node small {
  color: #cbd7e6;
  font-size: .84rem;
  line-height: 1.42;
  font-weight: 760;
}
.route-checklist {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.route-checklist li {
  position: relative;
  padding: 13px 14px 13px 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #e8f2fb;
  background: rgba(255,255,255,.06);
  font-weight: 820;
  line-height: 1.4;
}
.route-checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9ed7c6;
}
.route-panel .eyebrow {
  color: #93c5fd;
}
.route-panel p {
  color: #cbd7e6;
  line-height: 1.68;
}
.route-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.route-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: white;
  background: rgba(255,255,255,.08);
  font-weight: 900;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.route-steps span:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 215, 198, .75);
  background: rgba(28, 117, 95, .42);
}
@media (max-width: 1040px) {
  .page-image-strip,
  .page-image-strip.reverse,
  .process-visual-band {
    grid-template-columns: 1fr;
  }
  .image-collage.three-pack figure:first-child,
  .image-collage .wide-img {
    grid-row: auto;
    min-height: 260px;
  }
}
@media (max-width: 900px) {
  .process-hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .audience-hero {
    grid-template-columns: 1fr;
  }
  .audience-hero-collage {
    order: 2;
  }
}
@media (max-width: 680px) {
  .image-collage,
  .route-steps,
  .flow-diagram-card {
    grid-template-columns: 1fr;
  }
  .flow-diagram-card {
    min-height: auto;
  }
  .flow-line {
    left: 33px;
    right: auto;
    top: 32px;
    bottom: 32px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(158, 215, 198, .25), rgba(158, 215, 198, .9), rgba(213, 162, 74, .75));
  }
  .flow-node {
    min-height: auto;
    padding-left: 70px;
  }
  .flow-node span {
    position: absolute;
    left: 16px;
    top: 18px;
  }
  .image-collage figure,
  .image-collage.three-pack figure:first-child,
  .image-collage .wide-img,
  .audience-hero-collage figure,
  .audience-hero-collage .wide-img,
  .process-hero-collage figure,
  .process-photo,
  .process-photo img {
    min-height: 230px;
  }
  .process-hero-collage {
    grid-template-columns: 1fr;
  }
}




/* Case studies and client proof */
.proof-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.case-preview-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.case-preview-card,
.testimonial-card,
.case-study-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(19, 50, 82, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  isolation: isolate;
}
.case-preview-card::before,
.testimonial-card::before,
.case-study-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}
.case-preview-card::after,
.testimonial-card::after,
.case-study-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(28, 117, 95, .08), rgba(46, 111, 174, .05));
  opacity: 0;
  transition: opacity .28s ease;
}
.case-preview-card:hover,
.testimonial-card:hover,
.case-study-card:hover,
.js-enabled .case-preview-card.reveal-ready.is-visible:hover,
.js-enabled .testimonial-card.reveal-ready.is-visible:hover,
.js-enabled .case-study-card.reveal-ready.is-visible:hover {
  transform: translateY(-10px) scale(1.014);
  border-color: rgba(28, 117, 95, .58);
  box-shadow:
    0 24px 54px rgba(19, 50, 82, .16),
    0 0 0 2px rgba(28, 117, 95, .24),
    inset 0 0 0 1px rgba(46, 111, 174, .22);
}
.case-preview-card:hover::before,
.testimonial-card:hover::before,
.case-study-card:hover::before,
.js-enabled .case-preview-card.reveal-ready.is-visible:hover::before,
.js-enabled .testimonial-card.reveal-ready.is-visible:hover::before,
.js-enabled .case-study-card.reveal-ready.is-visible:hover::before {
  transform: scaleX(1);
}
.case-preview-card:hover::after,
.testimonial-card:hover::after,
.case-study-card:hover::after,
.js-enabled .case-preview-card.reveal-ready.is-visible:hover::after,
.js-enabled .testimonial-card.reveal-ready.is-visible:hover::after,
.js-enabled .case-study-card.reveal-ready.is-visible:hover::after {
  opacity: 1;
}
.case-preview-card img,
.case-study-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform .34s ease, filter .34s ease;
}
.case-preview-card:hover img,
.case-study-card:hover > img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}
.case-preview-card div {
  padding: 22px;
}
.case-preview-card span,
.testimonial-card span,
.case-meta span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-preview-card h3 {
  font-size: clamp(1.08rem, 1.25vw, 1.34rem);
  line-height: 1.22;
  transition: color .24s ease, transform .24s ease;
}
.case-preview-card p,
.testimonial-card p,
.case-study-card p {
  color: var(--muted);
  line-height: 1.62;
}
.case-preview-card ul {
  margin: 16px 0 0;
  padding-left: 1rem;
  font-size: .92rem;
  line-height: 1.5;
}
.case-preview-card:hover h3,
.testimonial-card:hover strong,
.case-study-card:hover h2 {
  color: var(--green);
  transform: translateY(-2px);
}
.testimonial-section {
  background: var(--cloud);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.testimonial-prev,
.testimonial-next {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(28, 117, 95, .38);
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(19, 50, 82, .14);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.testimonial-prev:hover {
  transform: translateX(-3px);
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(19, 50, 82, .18);
}
.testimonial-next:hover {
  transform: translateX(3px);
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(19, 50, 82, .18);
}
.testimonial-section {
  padding-top: clamp(50px, 6.5vw, 86px);
  padding-bottom: clamp(50px, 6.5vw, 86px);
}
.testimonial-section .section-head {
  margin-bottom: 26px;
}
.testimonial-carousel {
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}
.testimonial-track .testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 24px;
}

.testimonial-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.25vw, 1.24rem);
  line-height: 1.32;
}
.testimonial-card p {
  margin: 4px 0 20px;
  color: #344158;
  font-size: 1.02rem;
  line-height: 1.56;
}
.testimonial-card p::before {
  content: none;
}
.testimonial-card strong {
  display: block;
  margin-top: auto;
  color: var(--navy);
  transition: color .24s ease, transform .24s ease;
}
.case-hero {
  background: linear-gradient(90deg, rgba(244,249,254,.96) 0%, rgba(244,249,254,.9) 48%, rgba(244,249,254,.58) 100%), url('assets/generated/home-card-qc-checklist-text.png') center right/cover;
}
.case-page-section {
  background: #fff;
}
.case-page-grid {
  display: grid;
  gap: 24px;
}
.case-study-card {
  display: grid;
  grid-template-columns: minmax(320px, .44fr) minmax(0, .56fr);
  align-items: stretch;
}
.case-study-card > img {
  height: 100%;
  min-height: 380px;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.case-photo-carousel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #0f2138;
}
.case-photo-track {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 380px;
  transition: transform .48s cubic-bezier(.2, .8, .2, 1);
}
.case-photo-track figure {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 380px;
  margin: 0;
}
.case-photo-track img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .34s ease, filter .34s ease;
}
.case-study-card:hover .case-photo-track img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.02);
}
.case-photo-track figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 9px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(15, 33, 56, .78);
  font-size: .82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.case-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease;
}
.case-carousel-btn:hover { transform: translateY(-50%) scale(1.06); background: white; }
.case-carousel-btn.prev { left: 14px; }
.case-carousel-btn.next { right: 14px; }
.case-body {
  padding: clamp(24px, 4vw, 38px);
}
.case-body h2 {
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.13;
  transition: color .24s ease, transform .24s ease;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.case-meta span {
  margin-bottom: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(28, 117, 95, .08);
}
.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-detail-grid div {
  padding: 16px;
  border: 1px solid rgba(203, 216, 231, .85);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
}
.case-detail-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.case-detail-grid p {
  margin-bottom: 0;
  font-size: .96rem;
}
.case-proof-section {
  background: var(--cloud);
}
.case-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.case-proof-list span {
  padding: 13px 15px;
  border: 1px solid #cbd8e7;
  border-radius: 999px;
  color: #26364d;
  background: white;
  font-weight: 850;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.case-proof-list span:hover,
.js-enabled .case-proof-list span.reveal-ready.is-visible:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 117, 95, .52);
  box-shadow: 0 14px 30px rgba(19, 50, 82, .11);
}
@media (max-width: 1120px) {
  .case-preview-grid,
  .testimonial-grid,
  .case-detail-grid {
    grid-template-columns: 1fr;
  }
  .case-study-card {
    grid-template-columns: 1fr;
  }
  .case-study-card > img,
  .case-photo-carousel,
  .case-photo-track,
  .case-photo-track figure,
  .case-photo-track img {
    min-height: 300px;
  }
  .case-study-card > img,
  .case-photo-carousel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 680px) {
  .case-preview-card img,
  .case-study-card > img,
  .case-photo-carousel,
  .case-photo-track,
  .case-photo-track figure,
  .case-photo-track img {
    height: 210px;
    min-height: 210px;
  }
  .testimonial-track .testimonial-card {
    flex-basis: 100%;
  }
  .testimonial-card {
    min-height: auto;
  }
  .testimonial-controls {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Team and article imagery */
.team-hero {
  background: linear-gradient(rgba(244,249,254,.94), rgba(255,255,255,.96)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.team-hero-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-hero-final h1,
.team-hero-final .lead {
  margin-left: auto;
  margin-right: auto;
}
.team-hero-final .lead {
  max-width: 920px;
}
.team-final-section {
  background: linear-gradient(180deg, #fff 0%, var(--cloud) 100%);
}
.team-lead-card {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1fr);
  gap: clamp(26px, 4.6vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(46px, 6vw, 76px);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
.team-lead-photo {
  overflow: hidden;
  border-radius: 8px;
  background: var(--cloud);
  aspect-ratio: 5 / 4;
}
.team-lead-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .34s ease;
}
.team-lead-card:hover .team-lead-photo img {
  transform: scale(1.035);
}
.team-lead-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}
.team-title {
  margin: 0 0 18px;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.team-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, max-content));
  gap: 10px;
  align-items: stretch;
  margin-top: 24px;
}
.team-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 100%;
  padding: 8px 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfe;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 900;
}
.team-section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.final-team-grid {
  max-width: 1180px;
  margin: 0 auto;
}
.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 32px rgba(19, 50, 82, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.team-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.team-card:hover {
  transform: translateY(-10px) scale(1.014);
  border-color: rgba(28, 117, 95, .55);
  box-shadow: 0 24px 54px rgba(19, 50, 82, .15), 0 0 0 2px rgba(28, 117, 95, .22);
}
.team-card:hover::before {
  transform: scaleX(1);
}
.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  transition: transform .34s ease, filter .34s ease;
}
.final-team-card:nth-child(2) img {
  object-position: center center;
}
.final-team-card:nth-child(3) img {
  object-fit: cover;
  object-position: center center;
  background: #f8fbfe;
}
.final-team-card:nth-child(4) img {
  object-position: center 16%;
}
.final-team-card:nth-child(5) img {
  object-position: center 26%;
}
.team-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}
.team-card div {
  padding: 20px;
}
.team-card span {
  display: block;
  min-height: 2.2em;
  margin-bottom: 10px;
  color: var(--green);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.22;
  font-weight: 950;
  text-transform: uppercase;
}
.team-card p,
.team-lead-copy p {
  color: var(--muted);
  line-height: 1.62;
}
.article-thumb {
  width: calc(100% + 48px);
  height: 160px;
  margin: -24px -24px 22px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform .34s ease, filter .34s ease;
}
.article-card:hover .article-thumb {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}
.article-hero-image {
  max-width: 1120px;
  margin: clamp(28px, 5vw, 54px) auto 0;
  padding: 0 20px;
}
.article-hero-image img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
@media (max-width: 1120px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1040px) {
  .team-intro { grid-template-columns: 1fr; }
  .team-lead-card { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo, .team-photo img { min-height: 300px; }
  .team-lead-card { padding: 14px; }
  .team-lead-photo { aspect-ratio: 4 / 3; }
  .team-card span { min-height: 0; }
  .team-tags { grid-template-columns: 1fr; }
  .article-thumb { height: 185px; }
}


/* Refined service and process layouts */
.refined-list {
  background: linear-gradient(180deg, #fff 0%, var(--cloud) 100%);
}
.refined-list article {
  grid-template-columns: 52px minmax(230px, .72fr) minmax(320px, 1fr) minmax(300px, .88fr);
  align-items: start !important;
  gap: clamp(18px, 2vw, 26px);
  padding: 24px 28px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(19, 50, 82, .055);
}
.refined-list article > span {
  align-self: start;
  width: 44px;
  height: 44px;
  font-size: .9rem;
}
.service-title {
  align-self: start;
}
.service-title h2,
.refined-process h2 {
  margin-bottom: 0;
  font-size: clamp(1.28rem, 1.55vw, 1.72rem);
  line-height: 1.18;
}
.mini-eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.refined-list article > p,
.refined-process article > p {
  align-self: start;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}
.deliverable-list {
  align-self: start;
  width: 100%;
  margin-top: 0;
  padding: 0 0 0 22px;
  border: 0;
  border-left: 3px solid rgba(28, 117, 95, .36);
  border-radius: 0;
  background: transparent;
}
.deliverable-list strong {
  display: block;
  margin: 0 0 9px;
  color: var(--navy);
  font-size: .9rem;
  line-height: 1.25;
}
.deliverable-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 16px;
  margin: 0;
  padding-left: 1rem;
  color: #526174;
  font-size: .92rem;
  line-height: 1.42;
}
.refined-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: #fff;
}
.refined-process article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 350px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(19, 50, 82, .055);
}
.refined-process article > span {
  flex: 0 0 auto;
  margin-bottom: 2px;
}
.refined-process article > p {
  flex: 1 1 auto;
  width: 100%;
}
.refined-process article > strong {
  display: flex;
  align-items: flex-start;
  min-height: 56px;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: .92rem;
  line-height: 1.4;
}
@media (max-width: 1180px) {
  .refined-list article {
    grid-template-columns: 52px minmax(220px, .7fr) minmax(300px, 1fr);
  }
  .deliverable-list {
    grid-column: 2 / -1;
  }
  .refined-process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .refined-list article,
  .refined-process,
  .requirements-grid,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }
  .deliverable-list {
    grid-column: auto;
  }
  .deliverable-list ul {
    grid-template-columns: 1fr;
  }
  .refined-process article {
    min-height: auto;
  }
  .refined-process article > strong {
    min-height: auto;
  }
}

.share-panel {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 0 20px;
}
.share-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: .92rem;
}
.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid #cbd8e7;
  border-radius: 999px;
  color: var(--navy);
  background: white;
  font-size: .9rem;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.share-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(28, 117, 95, .55);
  color: var(--green);
  box-shadow: 0 12px 24px rgba(19, 50, 82, .1);
}
.article-body h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 1.12rem;
}
.article-body ul {
  margin: 14px 0 24px;
  padding-left: 1.2rem;
}
.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto clamp(54px, 7vw, 90px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  color: white;
  background: var(--green);
}
.article-cta .eyebrow,
.article-cta h2 { color: white; }
.article-cta h2 { margin-bottom: 0; font-size: clamp(1.7rem, 2.8vw, 3rem); }
.article-cta .btn { justify-self: end; }
@media (max-width: 760px) {
  .article-cta { grid-template-columns: 1fr; }
  .article-cta .btn { justify-self: start; }
}

.insights-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
  background: linear-gradient(135deg, #f4f9fe 0%, #fff 64%);
}
.insights-hero-copy h1 {
  max-width: 760px;
}
.insights-hero-copy .lead {
  max-width: 720px;
}
.insights-hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
.insights-hero-card img {
  width: 100%;
  height: clamp(280px, 30vw, 420px);
  object-fit: cover;
  display: block;
}
.insights-card-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(203, 216, 231, .78);
}
.insights-card-steps span {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 10px;
  color: white;
  background: var(--navy);
  font-size: .72rem;
  font-weight: 950;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
}
.insights-hero-card p {
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}
.topic-strip {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 70px);
  padding-top: clamp(42px, 6vw, 70px);
  padding-bottom: 18px;
  background: white;
}
.topic-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.3vw, 2.4rem);
  line-height: 1.1;
}
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid #cbd8e7;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.topic-pills a:hover {
  transform: translateY(-3px);
  border-color: rgba(28, 117, 95, .52);
  color: var(--green);
  box-shadow: 0 14px 30px rgba(19, 50, 82, .1);
}
@media (max-width: 1040px) {
  .insights-hero,
  .topic-strip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .insights-card-steps { grid-template-columns: repeat(2, 1fr); }
  .insights-hero-card img { height: 260px; }
}

.latest-articles {
  background: white;
}
.latest-head {
  max-width: 920px;
  margin-bottom: 24px;
}
.latest-head h2 {
  max-width: 860px;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.04;
}
.latest-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.62;
}
.latest-articles .topic-pills {
  margin-bottom: 30px;
}
.topic-pills button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid #cbd8e7;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, background-color .18s ease;
}
.topic-pills button:hover,
.topic-pills button.is-active {
  transform: translateY(-3px);
  border-color: rgba(28, 117, 95, .52);
  color: white;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(19, 50, 82, .1);
}
.article-card time {
  display: block;
  margin: -10px 0 16px;
  color: #6a7890;
  font-size: .86rem;
  font-weight: 850;
}
.article-card.is-hidden {
  display: none;
}
