:root {
  --ink: #132827;
  --muted: #5c6f6d;
  --brand: #2c7472;
  --brand-dark: #1f5a58;
  --brand-soft: #e7f3f2;
  --line: #d9e5e3;
  --paper: #ffffff;
  --surface: #f7faf9;
  --surface-strong: #edf5f4;
  --shadow: 0 18px 45px rgba(19, 40, 39, 0.12);
  --radius: 8px;
  --max: 1180px;
  --header-h: 76px;
  --font-body: Aptos, "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-heading: "Aptos Display", Aptos, "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.65 var(--font-body);
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 4.1vw, 4.25rem);
  max-width: 900px;
  font-weight: 760;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 760;
}

h3 {
  font-size: 1.2rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 229, 227, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.brand-link img {
  width: 164px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link,
.submenu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 10px 13px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  cursor: pointer;
}

.nav-link::after,
.submenu-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"],
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  background: var(--brand-soft);
  outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after,
.submenu-toggle:hover::after,
.submenu-toggle:focus-visible::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.submenu-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu,
.submenu-toggle[aria-expanded="true"] + .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
}

.submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% - 4px);
  width: 292px;
  padding: 8px;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 650;
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu a[aria-current="page"] {
  background: var(--surface-strong);
  color: var(--ink);
  outline: none;
}

.nav-cta {
  margin-left: 10px;
}

.button,
.button-secondary,
.button-ghost {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 750;
  line-height: 1.15;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button::after,
.button-secondary::after,
.button-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.36) 44%, transparent 78%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.button:hover::after,
.button-secondary:hover::after,
.button-ghost:hover::after,
.button:focus-visible::after,
.button-secondary:focus-visible::after,
.button-ghost:focus-visible::after {
  transform: translateX(130%);
}

.button {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 32px rgba(44, 116, 114, 0.22);
}

.button:hover,
.button:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-1px);
  outline: none;
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.button-ghost {
  color: var(--brand-dark);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--brand-soft);
  border-color: var(--brand);
  outline: none;
}

.hero {
  position: relative;
  min-height: min(680px, calc(82svh - var(--header-h)));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #163331;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #102a28 url("../images/customer-shrink-packaging.webp") right center/auto 100% no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 24, 23, 0.9) 0%, rgba(11, 24, 23, 0.68) 46%, rgba(11, 24, 23, 0.06) 100%);
}

.hero-content {
  padding: 74px 0 66px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #c9eeee;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.hero p {
  color: #fff;
}

.hero p {
  max-width: 690px;
  margin-top: 20px;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 68px 0;
}

.section + .section {
  border-top: 1px solid rgba(217, 229, 227, 0.55);
}

.section.surface {
  background: var(--surface);
}

.section.brand-band {
  color: #fff;
  background: linear-gradient(135deg, #1b4f4d 0%, #2c7472 100%);
}

.section.brand-band p,
.section.brand-band h2,
.section.brand-band h3 {
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  font-size: 1.04rem;
}

.center-head {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.center-head .eyebrow {
  justify-content: center;
}

.center-head .eyebrow::before {
  display: none;
}

.center-head p {
  max-width: 660px;
  margin: 16px auto 0;
}

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 58px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.media-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.media-frame:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.media-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 330px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(19, 40, 39, 0.82);
  backdrop-filter: blur(10px);
  font-size: 0.94rem;
  font-weight: 650;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  list-style: none;
}

.pill-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

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

.service-card,
.value-card,
.testimonial-card,
.info-card,
.job-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-card {
  display: block;
  overflow: hidden;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(44, 116, 114, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card:focus-visible {
  border-color: var(--brand);
  outline: 3px solid rgba(38, 123, 119, 0.22);
  outline-offset: 4px;
}

.service-card img {
  transition: transform 520ms ease, filter 520ms ease;
}

.service-card:hover img,
.service-card:focus-within img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
}

.service-card-content p {
  margin: 12px 0 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 800;
}

.text-link::after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3.75 10h12.5M11.5 5.25 16.25 10l-4.75 4.75' fill='none' stroke='%23000' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3.75 10h12.5M11.5 5.25 16.25 10l-4.75 4.75' fill='none' stroke='%23000' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

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

.value-card {
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.value-card:hover {
  border-color: rgba(44, 116, 114, 0.34);
  box-shadow: 0 16px 36px rgba(19, 40, 39, 0.1);
  transform: translateY(-5px);
}

.value-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 18px;
}

.value-card p {
  margin-top: 10px;
  margin-bottom: 0;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.steps::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 43px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1000ms ease 180ms;
}

.steps.is-visible::before,
.steps:has(.is-visible)::before {
  transform: scaleX(1);
}

.step {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.step span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 850;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.6rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 860px;
  padding-bottom: 20px;
}

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

.testimonial-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  color: rgba(44, 116, 114, 0.11);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(44, 116, 114, 0.32);
  box-shadow: 0 20px 46px rgba(19, 40, 39, 0.11);
  transform: translateY(-6px);
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 6px var(--brand-soft);
}

.testimonial-card blockquote {
  max-width: 42ch;
  margin: 0;
  margin-inline: auto;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.58;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.testimonial-card cite {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.testimonials-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(44, 116, 114, 0.08), transparent 28%),
    var(--surface);
}

.premium-testimonials {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(19, 40, 39, 0.08);
}

@media (min-width: 1180px) {
  .premium-testimonials {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-card blockquote {
    max-width: 31ch;
  }
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #132827;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 32px;
  padding: 58px 0 42px;
}

.footer-logo {
  width: 186px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-top h2,
.footer-top h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1rem;
}

.footer-top ul {
  list-style: none;
}

.footer-top li + li {
  margin-top: 8px;
}

.footer-top a:hover,
.footer-top a:focus-visible {
  color: #fff;
  outline: none;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-weight: 800;
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.page-hero {
  padding: 58px 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--brand-soft) 100%);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 46px;
  align-items: center;
}

.page-hero p {
  max-width: 720px;
  font-size: 1.12rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 2.9vw, 2.75rem);
  max-width: 820px;
}

.page-hero img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.career-hero {
  padding: 36px 0;
}

.career-hero .container {
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.48fr);
  gap: 36px;
}

.career-hero h1 {
  max-width: 680px;
  font-size: clamp(1.75rem, 2.35vw, 2.35rem);
}

.career-hero p {
  max-width: 640px;
  font-size: 1rem;
}

.career-hero img {
  width: min(100%, 360px);
  min-height: 0;
  justify-self: end;
  object-fit: contain;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.45fr);
  gap: 46px;
  align-items: start;
}

.page-hero .container > *,
.content-grid > *,
.split-list > * {
  min-width: 0;
}

.page-hero h1 {
  overflow-wrap: normal;
  hyphens: none;
}

.content-block h2,
.content-block h3 {
  margin: 34px 0 14px;
}

.content-block h2 {
  overflow-wrap: normal;
  hyphens: none;
}

.content-block h2:first-child,
.content-block h3:first-child {
  margin-top: 0;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 14px;
  height: 2px;
  background: var(--brand);
}

.side-stack {
  display: grid;
  gap: 16px;
}

.info-card,
.job-card {
  padding: 22px;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 42px;
  align-items: start;
}

.career-head {
  align-items: center;
}

.jobs-list {
  display: grid;
  gap: 22px;
}

.job-listing,
.job-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(231, 243, 242, 0.72), rgba(255, 255, 255, 0.88) 38%),
    #fff;
  box-shadow: 0 18px 44px rgba(19, 40, 39, 0.09);
}

.job-listing {
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.job-listing:hover {
  border-color: rgba(44, 116, 114, 0.36);
  box-shadow: 0 24px 54px rgba(19, 40, 39, 0.12);
  transform: translateY(-4px);
}

.job-listing-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.job-listing h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  list-style: none;
}

.job-meta li,
.job-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 750;
  font-size: 0.9rem;
}

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

.job-details-grid h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1rem;
}

.job-details-grid .check-list {
  margin: 0;
}

.job-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.job-empty {
  padding: 30px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pagination a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: #fff;
  font-weight: 850;
}

.pagination a:hover,
.pagination a.is-current {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(44, 116, 114, 0.12), transparent 30%),
    var(--surface);
}

.admin-shell {
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto;
  padding: 30px 0 60px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 28px;
}

.admin-login {
  max-width: 560px;
  margin: clamp(32px, 8vh, 80px) auto 0;
  padding: clamp(28px, 5vw, 44px);
}

.admin-card > .eyebrow {
  margin-bottom: 20px;
}

.admin-card h1 {
  max-width: none;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1;
}

.admin-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.admin-login h1 {
  font-size: clamp(3.2rem, 7vw, 4.8rem);
}

.admin-login > p {
  max-width: 44ch;
  margin-top: 18px;
}

.admin-login form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: 24px;
  align-items: start;
}

.admin-card textarea {
  min-height: 110px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.admin-job-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.admin-job-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.admin-job-item h3 {
  margin: 10px 0 4px;
}

.admin-job-item form {
  margin: 0;
}

.button-ghost.danger {
  color: #9b2f22;
  border-color: #e7c4be;
}

.info-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

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

.process-list {
  counter-reset: item;
  display: grid;
  gap: 14px;
  list-style: none;
}

.process-list li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-list li::before {
  content: counter(item, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-weight: 850;
  font-size: 0.84rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.85fr);
  gap: 40px;
  align-items: start;
}

.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease;
}

.contact-panel:hover,
.form-panel:hover {
  border-color: rgba(44, 116, 114, 0.32);
  transform: translateY(-3px);
}

.contact-panel {
  padding: 28px;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.contact-panel dt {
  color: var(--brand-dark);
  font-weight: 850;
}

.contact-panel dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.form-panel {
  padding: 28px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(44, 116, 114, 0.14);
}

.form-note {
  margin-top: 12px;
  font-size: 0.9rem;
}

.form-feedback {
  display: none;
  margin: 18px 0;
  padding: 13px 15px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface-strong);
  font-weight: 700;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-error {
  border-color: #d8aaa2;
  background: #fff1ef;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal {
  max-width: 920px;
}

.legal h2 {
  margin-top: 38px;
  font-size: 1.7rem;
}

.legal h3 {
  margin-top: 26px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.analysis-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.analysis-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 850;
  font-size: 0.82rem;
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .nav-toggle {
    position: relative;
    z-index: 130;
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: block;
    width: 100vw;
    height: calc(100dvh - var(--header-h));
    padding: 22px 20px 92px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(19, 40, 39, 0.16);
  }

  .primary-nav.is-open,
  body.menu-open .primary-nav,
  .nav-wrap:focus-within .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .nav-list {
    display: grid;
    gap: 6px;
    max-width: 640px;
    margin: 0 auto;
  }

  .nav-link,
  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 12px;
    font-size: 1rem;
  }

  .submenu {
    position: static;
    width: 100%;
    display: none;
    margin: 0 0 6px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu-toggle[aria-expanded="true"] + .submenu {
    display: block;
  }

  .nav-item:hover .submenu,
  .nav-item:focus-within .submenu {
    transform: none;
  }

  .nav-cta {
    margin: 12px 0 0;
  }

  .nav-cta .button {
    width: 100%;
  }

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

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

  .steps::before {
    display: none;
  }

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

  .career-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .job-listing-top,
  .admin-job-item {
    grid-template-columns: 1fr;
  }

  .job-listing-top {
    display: grid;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-link img {
    width: 148px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(11, 24, 23, 0.9) 0%, rgba(11, 24, 23, 0.72) 100%),
      linear-gradient(0deg, rgba(11, 24, 23, 0.2), rgba(11, 24, 23, 0.2));
  }

  .hero-content {
    padding: 58px 0 48px;
  }

  .section-head,
  .intro-grid,
  .page-hero .container,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section.compact {
    padding: 50px 0;
  }

  .section-head {
    gap: 18px;
  }

  .media-frame img,
  .page-hero img {
    min-height: 280px;
  }

  .service-grid,
  .feature-grid,
  .testimonial-grid,
  .steps,
  .split-list,
  .field-grid,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .premium-testimonials {
    padding: 18px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }

  .page-hero {
    padding: 54px 0;
  }

  .career-hero {
    padding: 34px 0;
  }

  .career-hero .container {
    gap: 28px;
  }

  .career-hero img {
    width: min(100%, 300px);
    min-height: 0;
    justify-self: start;
  }

  .job-listing,
  .job-empty,
  .admin-card {
    padding: 22px;
  }

  .job-details-grid {
    grid-template-columns: 1fr;
  }

  .job-listing-top .button {
    width: 100%;
  }

  body {
    padding-bottom: 62px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 8px;
    z-index: 120;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(217, 229, 227, 0.92);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(19, 40, 39, 0.2);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 850;
  }

  .mobile-contact-bar a:first-child {
    color: var(--brand-dark);
    background: var(--brand-soft);
  }

  .mobile-contact-bar a:last-child {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 10px 22px rgba(44, 116, 114, 0.24);
  }

  body.menu-open .mobile-contact-bar {
    display: none;
  }
}

/* Premium refinement */
:root {
  --ink: #102a28;
  --muted: #566d6a;
  --brand: #267b77;
  --brand-dark: #155c58;
  --brand-soft: #e4f2f0;
  --line: #d5e3e1;
  --surface: #f6f9f8;
  --surface-strong: #eaf3f1;
  --shadow: 0 24px 70px rgba(10, 45, 42, 0.13);
  --radius: 18px;
  --max: 1240px;
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(38, 123, 119, 0.035), transparent 28%),
    #fff;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.028em;
}

h1 {
  font-size: clamp(3.2rem, 6.6vw, 6.5rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  line-height: 1.02;
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(213, 227, 225, 0.74);
  backdrop-filter: blur(24px) saturate(1.3);
}

.brand-link img {
  width: 174px;
}

.nav-link,
.submenu-toggle {
  font-size: 0.9rem;
}

.nav-cta .button {
  min-height: 44px;
  padding: 11px 18px;
}

.button {
  background: linear-gradient(135deg, #2c8580, #1f6965);
  box-shadow: 0 14px 34px rgba(38, 123, 119, 0.24);
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, #236f6b, #164f4c);
}

.hero {
  min-height: min(760px, calc(92svh - var(--header-h)));
  background: #102a28;
}

.hero::before {
  background-position: center 48%;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.015);
}

.hero::after {
  background:
    radial-gradient(circle at 76% 32%, rgba(70, 178, 170, 0.15), transparent 28%),
    linear-gradient(90deg, rgba(5, 24, 23, 0.95) 0%, rgba(6, 29, 27, 0.84) 44%, rgba(5, 26, 24, 0.2) 78%, rgba(5, 26, 24, 0.08) 100%);
}

.hero-content {
  position: relative;
  padding: 108px 0 92px;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -54px;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero h1 {
  max-width: 820px;
  text-wrap: balance;
}

.hero p {
  max-width: 640px;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.hero-actions {
  margin-top: 38px;
}

.eyebrow {
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  width: 24px;
}

.section {
  padding: 110px 0;
}

.section.compact {
  padding: 76px 0;
}

.section.surface {
  background:
    linear-gradient(180deg, rgba(246, 249, 248, 0.72), rgba(239, 246, 244, 0.96));
}

.section.brand-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(142, 226, 218, 0.15), transparent 26%),
    linear-gradient(135deg, #113f3c 0%, #24746f 100%);
}

.section.brand-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 20%, #000);
}

.section.brand-band > .container {
  position: relative;
}

.section-head {
  gap: 70px;
  margin-bottom: 52px;
}

.section-head p {
  max-width: 560px;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 78px;
}

.lead {
  color: #284b48;
}

.media-frame {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(10, 45, 42, 0.17);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  pointer-events: none;
}

.media-note {
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: none;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(10, 37, 35, 0.76);
}

.pill-list li {
  padding: 9px 14px;
  border-color: rgba(38, 123, 119, 0.13);
  background: rgba(228, 242, 240, 0.72);
}

.service-grid {
  gap: 24px;
}

.service-card {
  border-color: rgba(213, 227, 225, 0.85);
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(10, 45, 42, 0.075);
}

.service-card:nth-child(2) {
  transform: translateY(18px);
}

.service-card:nth-child(2):hover,
.service-card:nth-child(2):focus-within {
  transform: translateY(10px);
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 28px 70px rgba(10, 45, 42, 0.15);
}

.service-card img {
  aspect-ratio: 1.35 / 1;
}

.service-card-content {
  padding: 28px;
}

.service-card-content h3 {
  font-size: 1.38rem;
}

.feature-grid {
  gap: 20px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  border-color: rgba(213, 227, 225, 0.86);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(10, 45, 42, 0.055);
}

.value-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 123, 119, 0.11), transparent 68%);
}

.value-card:hover {
  box-shadow: 0 24px 58px rgba(10, 45, 42, 0.12);
}

.value-card img {
  width: 48px;
  height: 48px;
}

.steps {
  gap: 12px;
  border: 0;
  border-radius: 24px;
  background: transparent;
}

.steps::before {
  display: none;
}

.step {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
}

.step span {
  background: rgba(255, 255, 255, 0.15);
}

.reviews-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(38, 123, 119, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbfa, #edf5f3);
}

.reviews-head {
  margin-bottom: 42px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(213, 227, 225, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(10, 45, 42, 0.075);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.review-card:hover {
  border-color: rgba(38, 123, 119, 0.28);
  box-shadow: 0 24px 58px rgba(10, 45, 42, 0.12);
  transform: translateY(-4px);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.review-person img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 5px var(--brand-soft);
}

.review-person figcaption {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.65;
  overflow-wrap: normal;
  hyphens: none;
}

.faq-list {
  border-top: 0;
}

.faq-item {
  margin-bottom: 12px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.faq-item summary {
  padding: 20px 0;
}

.site-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(76, 168, 161, 0.18), transparent 30%),
    #102a28;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(38, 123, 119, 0.1), transparent 32%),
    linear-gradient(135deg, #f7faf9 0%, #e5f2f0 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(38, 123, 119, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(38, 123, 119, 0.035),
    0 0 0 88px rgba(38, 123, 119, 0.025);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 3.8vw, 4.2rem);
}

.page-hero img {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(10, 45, 42, 0.17);
}

.page-cable {
  --brand: #267b77;
}

.page-cable .page-hero h1 {
  overflow-wrap: normal;
  hyphens: none;
}

.page-assembly {
  --brand: #36786e;
}

.page-packing {
  --brand: #487d76;
}

.page-contact .page-hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(38, 123, 119, 0.12), transparent 30%),
    #f7faf9;
}

.page-about .page-hero img {
  object-position: center 42%;
}

.content-grid {
  gap: 68px;
}

.side-stack {
  gap: 18px;
}

.supplemental-media img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

.customer-image-grid figure,
.customer-overview-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 72, 68, 0.1);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: 0 18px 48px rgba(10, 45, 42, 0.09);
}

.customer-image-grid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.customer-overview-image img {
  width: 100%;
  height: auto;
}

.info-card {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f6faf9);
  box-shadow: 0 14px 38px rgba(10, 45, 42, 0.06);
}

@media (max-width: 900px) {
  .customer-image-grid {
    grid-template-columns: 1fr;
  }

  .customer-image-grid img {
    aspect-ratio: 7 / 5;
  }
}

.process-list li {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 45, 42, 0.045);
}

.contact-panel,
.form-panel,
.job-listing,
.job-empty,
.admin-card {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(10, 45, 42, 0.1);
}

input,
textarea,
select {
  border-radius: 12px;
  background: #fbfdfc;
}

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(78, 177, 169, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fbfa, #e6f2f0);
}

.error-shell {
  display: grid;
  width: min(calc(100% - 40px), 1120px);
  min-height: 100vh;
  grid-template-rows: auto 1fr;
  margin: 0 auto;
  padding: 34px 0 54px;
}

.error-brand {
  display: inline-flex;
  width: fit-content;
}

.error-brand img {
  width: 170px;
}

.error-content {
  align-self: center;
  max-width: 800px;
  padding: 60px 0;
}

.error-code {
  display: block;
  margin-bottom: 8px;
  color: rgba(38, 123, 119, 0.18);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 850;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.error-content h1 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5.6vw, 5rem);
}

.error-content > p {
  max-width: 660px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(38, 123, 119, 0.18);
}

.error-links a {
  color: var(--brand-dark);
  font-weight: 750;
}

.error-links a:hover,
.error-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.page-contact .contact-layout {
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
}

.page-contact .contact-panel {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.request-checklist {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.request-checklist strong {
  color: var(--ink);
}

.request-checklist ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  list-style: none;
}

.request-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.request-checklist li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--brand);
}

.project-request {
  padding: 34px;
}

.request-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0 32px;
  list-style: none;
}

.request-progress li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 800;
}

.request-progress span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 0.72rem;
}

.request-progress li.is-active {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.request-progress li.is-active span {
  color: var(--brand-dark);
  background: #fff;
}

.request-progress li.is-complete {
  color: var(--brand-dark);
  border-color: rgba(38, 123, 119, 0.18);
  background: var(--brand-soft);
}

.project-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.project-request:not(.is-enhanced) .project-step + .project-step {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.project-request.is-enhanced .project-step {
  display: none;
}

.project-request.is-enhanced .project-step.is-active {
  display: block;
}

.project-step legend {
  width: 100%;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 760;
  line-height: 1.15;
}

.step-help {
  margin-bottom: 22px;
}

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

.service-option {
  position: relative;
  cursor: pointer;
}

.service-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.service-option span {
  display: grid;
  min-height: 128px;
  align-content: start;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-option span::before {
  content: "";
  width: 28px;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 99px;
  background: var(--brand);
}

.service-option strong {
  color: var(--ink);
}

.service-option small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}

.service-option:hover span {
  border-color: rgba(38, 123, 119, 0.34);
  background: #fff;
  transform: translateY(-2px);
}

.service-option input:focus-visible + span {
  outline: 3px solid rgba(38, 123, 119, 0.16);
}

.service-option input:checked + span {
  border-color: var(--brand);
  background: linear-gradient(145deg, #fff, var(--brand-soft));
  box-shadow: 0 14px 34px rgba(10, 45, 42, 0.1);
}

.project-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.privacy-check a,
.form-note a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1020px) {
  .service-card:nth-child(2),
  .service-card:nth-child(2):hover,
  .service-card:nth-child(2):focus-within {
    transform: none;
  }

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

  .page-contact .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 74px 0 62px;
  }

  .hero-content::before {
    display: none;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(5, 24, 23, 0.91), rgba(5, 24, 23, 0.68));
  }

  .section {
    padding: 76px 0;
  }

  .section.compact {
    padding: 56px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px;
    border-radius: 18px;
  }

  .project-request {
    padding: 24px;
  }

  .request-progress {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .request-progress li {
    padding: 9px 10px;
  }

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

  .service-option span {
    min-height: 0;
  }

  .project-navigation {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .project-navigation .button,
  .project-navigation .button-ghost {
    width: 100%;
  }

  .error-shell {
    width: min(calc(100% - 28px), 1120px);
    padding-top: 24px;
  }

  .error-brand img {
    width: 150px;
  }

  .error-content {
    padding: 50px 0;
  }

  .error-actions {
    display: grid;
  }

  .error-links {
    display: grid;
  }

  .media-frame,
  .service-card,
  .value-card,
  .page-hero img,
  .contact-panel,
  .form-panel,
  .job-listing,
  .job-empty,
  .admin-card {
    border-radius: 18px;
  }

  .page-hero {
    padding: 58px 0;
  }

  .page-hero::after {
    display: none;
  }

}

/* Homepage service showcase */
.service-showcase-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f4f3ef 0%, #fafaf8 42%, #f1f3f1 100%);
}

.service-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.52fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(16, 42, 40, 0.18);
}

.service-showcase-head h2 {
  max-width: 860px;
  color: #172221;
}

.service-showcase-head > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: #526260;
  font-size: 1.03rem;
}

.service-showcase {
  display: grid;
  gap: 30px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 40, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(24, 38, 36, 0.08);
}

.service-feature-reverse .service-feature-visual {
  order: 2;
}

.service-feature-visual {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #d8ddda;
}

.service-feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 20, 19, 0.68));
  pointer-events: none;
}

.service-feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 400ms ease;
}

.service-feature-visual span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-feature-visual:hover img,
.service-feature-visual:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.service-feature-visual:focus-visible {
  outline: 3px solid #277b77;
  outline-offset: -3px;
}

.service-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px);
}

.service-feature-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: #5a6967;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-feature-meta span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 42, 40, 0.28);
  border-radius: 50%;
  color: #182b29;
  letter-spacing: 0;
}

.service-feature-content h3 {
  max-width: 700px;
  color: #172221;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  line-height: 1.02;
}

.service-feature-content > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #566562;
  font-size: 1rem;
}

.service-feature-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid rgba(16, 42, 40, 0.16);
  border-left: 1px solid rgba(16, 42, 40, 0.16);
  list-style: none;
}

.service-feature-steps li {
  position: relative;
  padding: 13px 16px 13px 30px;
  border-right: 1px solid rgba(16, 42, 40, 0.16);
  border-bottom: 1px solid rgba(16, 42, 40, 0.16);
  color: #293b39;
  font-size: 0.86rem;
  font-weight: 750;
}

.service-feature-steps li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 6px;
  height: 6px;
  background: #267b77;
  transform: translateY(-50%);
}

.service-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.service-feature-actions .button {
  border-radius: 4px;
}

.service-request-link {
  position: relative;
  padding: 8px 0;
  color: #243b38;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-request-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-request-link:hover::after,
.service-request-link:focus-visible::after {
  transform: scaleX(1);
}

.service-request-link:focus-visible {
  outline: 2px solid rgba(38, 123, 119, 0.35);
  outline-offset: 4px;
}

.service-feature-dark {
  border-color: #172d2b;
  background: #172d2b;
}

.service-feature-dark .service-feature-content h3,
.service-feature-dark .service-feature-meta,
.service-feature-dark .service-feature-meta span,
.service-feature-dark .service-feature-steps li,
.service-feature-dark .service-request-link {
  color: #fff;
}

.service-feature-dark .service-feature-content > p {
  color: rgba(255, 255, 255, 0.68);
}

.service-feature-dark .service-feature-meta span,
.service-feature-dark .service-feature-steps {
  border-color: rgba(255, 255, 255, 0.24);
}

.service-feature-dark .service-feature-steps li {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-feature-dark .service-feature-actions .button {
  color: #172d2b;
  background: #fff;
}

.service-feature-dark .service-feature-actions .button:hover,
.service-feature-dark .service-feature-actions .button:focus-visible {
  color: #172d2b;
  background: #dceae7;
}

@media (max-width: 1020px) {
  .service-showcase-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

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

  .service-feature-reverse .service-feature-visual {
    order: 0;
  }

  .service-feature-visual,
  .service-feature-visual img {
    min-height: 380px;
    max-height: 480px;
  }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-member {
  min-width: 0;
  margin: 0;
}

.team-member-image {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: 0 18px 48px rgba(10, 45, 42, 0.1);
}

.team-member-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 43%;
  transition: transform 520ms ease, filter 520ms ease;
}

.team-member-jonathan .team-member-image img {
  object-position: 46% center;
}

.team-member:hover .team-member-image img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.team-member figcaption {
  padding: 18px 4px 0;
}

.team-member figcaption strong,
.team-member figcaption span {
  display: block;
}

.team-member figcaption strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.25;
}

.team-member figcaption span {
  margin-top: 4px;
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-member:last-child {
    width: calc(50% - 12px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .team-member:last-child {
    width: auto;
    grid-column: auto;
  }

  .team-member-image img {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  .service-showcase-head {
    padding-bottom: 24px;
  }

  .service-showcase {
    gap: 20px;
  }

  .service-feature {
    min-height: 0;
  }

  .service-feature-visual,
  .service-feature-visual img {
    min-height: 260px;
    max-height: 300px;
  }

  .service-feature-content {
    padding: 28px 22px 30px;
  }

  .service-feature-meta {
    margin-bottom: 20px;
  }

  .service-feature-content h3 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .service-feature-content > p {
    margin-top: 18px;
  }

  .service-feature-steps {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .service-feature-actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .service-feature-actions .button {
    width: 100%;
  }

  .service-request-link {
    justify-self: start;
  }
}

/* Homepage motion and layout refinement */
.home-page .site-header {
  position: fixed;
  width: 100%;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(5, 18, 17, 0.54), transparent);
  backdrop-filter: none;
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-page .site-header .brand-link img {
  filter: brightness(0) invert(1);
  transition: filter 220ms ease;
}

.home-page .site-header .nav-link,
.home-page .site-header .submenu-toggle {
  color: #fff;
}

.home-page .site-header .nav-link:hover,
.home-page .site-header .nav-link:focus-visible,
.home-page .site-header .submenu-toggle:hover,
.home-page .site-header .submenu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.home-page .site-header .nav-link::after,
.home-page .site-header .submenu-toggle::after {
  background: #9ed5d0;
}

.home-page .site-header .nav-cta .button {
  color: #102a28;
  background: #fff;
  box-shadow: none;
}

.home-page .site-header .nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.home-page .site-header.is-scrolled,
.home-page.menu-open .site-header {
  border-bottom-color: rgba(213, 227, 225, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(16, 42, 40, 0.08);
  backdrop-filter: blur(24px) saturate(1.3);
}

.home-page .site-header.is-scrolled .brand-link img,
.home-page.menu-open .site-header .brand-link img {
  filter: none;
}

.home-page .site-header.is-scrolled .nav-link,
.home-page .site-header.is-scrolled .submenu-toggle,
.home-page.menu-open .site-header .nav-link,
.home-page.menu-open .site-header .submenu-toggle {
  color: var(--ink);
}

.home-page .site-header.is-scrolled .nav-link:hover,
.home-page .site-header.is-scrolled .nav-link:focus-visible,
.home-page .site-header.is-scrolled .submenu-toggle:hover,
.home-page .site-header.is-scrolled .submenu-toggle:focus-visible,
.home-page.menu-open .site-header .nav-link:hover,
.home-page.menu-open .site-header .nav-link:focus-visible,
.home-page.menu-open .site-header .submenu-toggle:hover,
.home-page.menu-open .site-header .submenu-toggle:focus-visible {
  background: var(--brand-soft);
}

.home-page .site-header.is-scrolled .nav-cta .button,
.home-page.menu-open .site-header .nav-cta .button {
  color: #fff;
  background: linear-gradient(135deg, #2c8580, #1f6965);
  box-shadow: 0 14px 34px rgba(38, 123, 119, 0.24);
}

.home-page .site-header.is-scrolled .nav-toggle,
.home-page.menu-open .site-header .nav-toggle {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.home-page .section + .section {
  border-top: 0;
}

.home-page .hero {
  min-height: min(900px, calc(100svh - var(--header-h)));
  background-position: center calc(50% + var(--hero-shift, 0px));
}

.home-page .hero::before {
  background-position: right calc(50% + var(--hero-shift, 0px));
  background-size: auto 100%;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.035);
}

.home-page .hero::after {
  background:
    linear-gradient(90deg, rgba(7, 20, 19, 0.96) 0%, rgba(7, 20, 19, 0.86) 42%, rgba(7, 20, 19, 0.32) 68%, rgba(7, 20, 19, 0.04) 100%),
    linear-gradient(180deg, transparent 62%, rgba(7, 20, 19, 0.42) 100%);
}

.home-page .hero-content {
  padding-top: clamp(80px, 11vh, 128px);
  padding-bottom: clamp(56px, 8vh, 92px);
}

.hero-service-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 940px;
  margin-top: clamp(56px, 9vh, 92px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-service-rail a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 14px 22px;
  color: rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, background 220ms ease, padding 220ms ease;
}

.hero-service-rail a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-service-rail a::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 2px;
  background: #85c8c3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.hero-service-rail span {
  color: #9fcac6;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.hero-service-rail strong {
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-service-rail a:hover,
.hero-service-rail a:focus-visible {
  padding-left: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.hero-service-rail a:hover::after,
.hero-service-rail a:focus-visible::after {
  transform: scaleX(1);
}

.hero-scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-cue span {
  position: relative;
  width: 1px;
  height: 46px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scroll-cue 1.9s ease-in-out infinite;
}

.capability-marquee {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background: #111d1c;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  min-height: 54px;
  animation: capability-marquee 46s linear infinite;
  will-change: transform;
}

.capability-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.capability-marquee-group span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.capability-marquee-group i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  background: #69aaa5;
  transform: rotate(45deg);
}

.home-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(43, 118, 113, 0.1), transparent 25%),
    linear-gradient(180deg, #f8f9f7, #fff);
}

.home-intro::before {
  content: "DVG";
  position: absolute;
  right: -0.05em;
  bottom: -0.22em;
  color: rgba(16, 42, 40, 0.025);
  font-family: var(--font-heading);
  font-size: clamp(15rem, 34vw, 38rem);
  font-weight: 850;
  line-height: 0.75;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.home-intro .container {
  position: relative;
}

.home-intro .intro-copy {
  position: relative;
  z-index: 1;
}

.home-intro-media {
  height: clamp(500px, 48vw, 620px);
  min-height: 0;
  border-radius: 4px;
  transform: rotate(1.5deg);
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 500ms ease;
}

.home-intro-media:hover {
  box-shadow: 0 42px 100px rgba(10, 45, 42, 0.22);
  transform: rotate(0deg) translateY(-5px);
}

.home-intro-media img[data-parallax],
.service-feature-visual img[data-parallax] {
  height: calc(100% + 70px);
  min-height: calc(100% + 70px);
  margin-top: -35px;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  will-change: transform;
}

.home-intro-media:hover img[data-parallax],
.service-feature-visual:hover img[data-parallax],
.service-feature-visual:focus-visible img[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.09);
}

.service-showcase-section {
  position: relative;
  padding-top: 132px;
  padding-bottom: 132px;
}

.service-showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 40px, var(--max));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 42, 40, 0.22), transparent);
  transform: translateX(-50%);
}

.service-feature {
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}

.service-feature:hover {
  box-shadow: 0 34px 90px rgba(24, 38, 36, 0.14);
}

.service-feature-content {
  position: relative;
  overflow: hidden;
}

.service-feature-content::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 55%;
  aspect-ratio: 1;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 123, 119, 0.12), transparent 68%);
  transition: opacity 350ms ease, transform 700ms ease;
  transform: scale(0.7);
  pointer-events: none;
}

.service-feature:hover .service-feature-content::before {
  opacity: 1;
  transform: scale(1);
}

.service-feature-meta,
.service-feature-content h3,
.service-feature-content > p,
.service-feature-steps,
.service-feature-actions {
  position: relative;
  z-index: 1;
}

.motion-ready .service-feature.reveal {
  transform: translate3d(-44px, 42px, 0);
}

.motion-ready .service-feature-reverse.reveal {
  transform: translate3d(44px, 42px, 0);
}

.motion-ready .service-feature.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.motion-ready .service-feature.reveal .service-feature-meta,
.motion-ready .service-feature.reveal h3,
.motion-ready .service-feature.reveal .service-feature-content > p,
.motion-ready .service-feature.reveal .service-feature-steps,
.motion-ready .service-feature.reveal .service-feature-actions {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .service-feature.reveal.is-visible .service-feature-meta,
.motion-ready .service-feature.reveal.is-visible h3,
.motion-ready .service-feature.reveal.is-visible .service-feature-content > p,
.motion-ready .service-feature.reveal.is-visible .service-feature-steps,
.motion-ready .service-feature.reveal.is-visible .service-feature-actions {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .service-feature.reveal.is-visible h3 {
  transition-delay: 100ms;
}

.motion-ready .service-feature.reveal.is-visible .service-feature-content > p {
  transition-delay: 180ms;
}

.motion-ready .service-feature.reveal.is-visible .service-feature-steps {
  transition-delay: 250ms;
}

.motion-ready .service-feature.reveal.is-visible .service-feature-actions {
  transition-delay: 320ms;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.benefits-section::after {
  content: "";
  position: absolute;
  top: 80px;
  right: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(38, 123, 119, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(38, 123, 119, 0.025), 0 0 0 140px rgba(38, 123, 119, 0.02);
  pointer-events: none;
}

.benefits-section .container {
  position: relative;
  z-index: 1;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefits-grid .value-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 8px 24px;
  min-height: 218px;
  padding: 34px 38px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 40, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 248, 0.94));
  box-shadow: 0 14px 40px rgba(16, 42, 40, 0.055);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits-grid .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #267b77;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits-grid .value-card::after {
  right: -55px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  opacity: 0.55;
  background: radial-gradient(circle, rgba(38, 123, 119, 0.12), transparent 68%);
}

.benefits-grid .value-card:hover {
  border-color: rgba(38, 123, 119, 0.32);
  box-shadow: 0 22px 58px rgba(16, 42, 40, 0.1);
  transform: translateY(-4px);
}

.benefits-grid .value-card:hover::before {
  transform: scaleY(1);
}

.benefit-index {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(16, 42, 40, 0.2);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.benefits-grid .value-card img {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  margin: 2px 0 0;
  object-fit: contain;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits-grid .value-card h3 {
  align-self: end;
  margin: 0;
  color: #172b29;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
}

.benefits-grid .value-card p {
  max-width: 48ch;
  margin: 4px 0 0;
  color: #5a6b68;
}

.benefits-grid .value-card:hover img {
  transform: translateY(-6px) rotate(-5deg);
}

.process-band {
  padding-top: 126px;
  padding-bottom: 126px;
}

.process-flow {
  position: relative;
  gap: 0;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
}

.process-flow::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #a5d9d4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-flow.is-visible::after {
  transform: scaleX(1);
}

.process-flow .step {
  min-height: 260px;
  padding: 38px 32px 24px 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  transition: background 260ms ease, padding 300ms ease;
}

.process-flow .step:last-child {
  border-right: 0;
}

.process-flow .step:hover {
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.process-flow .step span {
  width: auto;
  height: auto;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.process-flow .step h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "“";
  position: absolute;
  top: -0.28em;
  right: 0.01em;
  color: rgba(38, 123, 119, 0.045);
  font-family: Georgia, serif;
  font-size: clamp(20rem, 48vw, 48rem);
  line-height: 1;
  pointer-events: none;
}

.home-page .review-card:nth-child(even) {
  transform: translateY(26px);
}

.home-page .review-card:nth-child(even):hover {
  transform: translateY(20px);
}

.home-page .faq-item {
  transition: padding 240ms ease, background 240ms ease, border-color 240ms ease;
}

.home-page .faq-item:hover,
.home-page .faq-item[open] {
  padding-right: 30px;
  padding-left: 30px;
  border-color: rgba(38, 123, 119, 0.28);
  background: #fff;
}

.motion-ready .home-page .hero .eyebrow,
.motion-ready .home-page .hero h1,
.motion-ready .home-page .hero p,
.motion-ready .home-page .hero-actions,
.motion-ready .home-page .hero-service-rail,
.motion-ready .home-page .hero-scroll-cue {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .home-page .hero::before {
  transform: scale(1.1);
  transition: transform 1800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .home-page.is-loaded .hero::before {
  transform: scale(1.035);
}

.motion-ready .home-intro .intro-grid.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .home-intro .intro-grid.reveal .intro-copy,
.motion-ready .home-intro .intro-grid.reveal .home-intro-media {
  opacity: 0;
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1), clip-path 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .home-intro .intro-grid.reveal .intro-copy {
  transform: translateX(-36px);
}

.motion-ready .home-intro .intro-grid.reveal .home-intro-media {
  clip-path: inset(6% 6% 6% 6%);
  transform: rotate(1.5deg) translateX(42px);
}

.motion-ready .home-intro .intro-grid.reveal.is-visible .intro-copy,
.motion-ready .home-intro .intro-grid.reveal.is-visible .home-intro-media {
  opacity: 1;
}

.motion-ready .home-intro .intro-grid.reveal.is-visible .intro-copy {
  transform: translateX(0);
}

.motion-ready .home-intro .intro-grid.reveal.is-visible .home-intro-media {
  clip-path: inset(0);
  transform: rotate(1.5deg) translateX(0);
}

.motion-ready .home-page.is-loaded .hero .eyebrow,
.motion-ready .home-page.is-loaded .hero h1,
.motion-ready .home-page.is-loaded .hero p,
.motion-ready .home-page.is-loaded .hero-actions,
.motion-ready .home-page.is-loaded .hero-service-rail,
.motion-ready .home-page.is-loaded .hero-scroll-cue {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .home-page.is-loaded .hero h1 {
  transition-delay: 100ms;
}

.motion-ready .home-page.is-loaded .hero p {
  transition-delay: 180ms;
}

.motion-ready .home-page.is-loaded .hero-actions {
  transition-delay: 260ms;
}

.motion-ready .home-page.is-loaded .hero-service-rail {
  transition-delay: 380ms;
}

.motion-ready .home-page.is-loaded .hero-scroll-cue {
  transition-delay: 520ms;
}

@keyframes scroll-cue {
  0% {
    transform: translateY(-105%);
  }
  55%,
  100% {
    transform: translateY(105%);
  }
}

@keyframes capability-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-marquee-track {
    animation: none;
  }
}

@media (max-width: 1020px) {
  .home-page .reveal,
  .home-page .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-page .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-page .intro-copy,
  .home-page .home-intro-media,
  .home-page .service-feature,
  .home-page .service-feature-reverse {
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .home-page .home-intro-media {
    height: min(68vw, 520px);
  }

  .home-page .service-feature-visual img[data-parallax] {
    height: 100%;
    min-height: 100%;
    margin-top: 0;
    transform: none;
    will-change: auto;
  }

  .hero-scroll-cue {
    display: none;
  }

  .benefits-grid .value-card {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 210px;
    padding: 30px;
  }

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

  .process-flow .step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    min-height: 720px;
  }

  .home-page .hero::before {
    background-position: 62% center;
    background-size: cover;
  }

  .home-page .hero-content {
    padding-top: 86px;
    padding-bottom: 62px;
  }

  .hero-service-rail {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero-service-rail a {
    min-height: 48px;
    padding: 8px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-service-rail a:first-child {
    border-left: 0;
  }

  .capability-marquee-track {
    min-height: 46px;
  }

  .home-intro-media {
    width: 100%;
    height: 320px;
    min-height: 320px;
    transform: none;
  }

  .home-intro-media:hover {
    transform: none;
  }

  .home-intro-media img[data-parallax],
  .service-feature-visual img[data-parallax] {
    height: 100%;
    min-height: 100%;
    margin-top: 0;
    transform: none;
  }

  .motion-ready .home-intro .intro-grid.reveal .home-intro-media,
  .motion-ready .home-intro .intro-grid.reveal.is-visible .home-intro-media {
    transform: none;
  }

  .service-showcase-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .service-showcase-head {
    margin-bottom: 30px;
  }

  .service-feature-visual,
  .service-feature-visual img {
    min-height: 220px;
    max-height: 240px;
  }

  .service-feature-content {
    padding: 26px 20px 28px;
  }

  .service-feature-content h3 {
    font-size: clamp(1.7rem, 8.2vw, 2.1rem);
    overflow-wrap: normal;
    hyphens: none;
  }

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

  .service-feature-steps li {
    padding: 11px 10px 11px 25px;
    font-size: 0.78rem;
  }

  .service-feature-steps li::before {
    left: 11px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid .value-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 7px 18px;
    min-height: 0;
    padding: 26px 24px;
  }

  .benefits-grid .value-card img {
    width: 44px;
    height: 44px;
  }

  .process-band {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow .step {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
  }

  .process-flow .step:hover {
    padding-left: 12px;
  }

  .process-flow .step span {
    margin-bottom: 22px;
  }

  .home-page .review-card:nth-child(even),
  .home-page .review-card:nth-child(even):hover {
    transform: none;
  }

  .home-page .mobile-contact-bar {
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .home-page .mobile-contact-bar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 14px));
  }
}

/* Compact service cards */
.service-showcase-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

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

.service-swipe-hint {
  display: none;
}

.service-feature,
.service-feature:hover,
.service-feature-reverse,
.service-feature-reverse:hover {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(16, 42, 40, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(16, 42, 40, 0.07);
  transform: none;
  transition: border-color 260ms ease, box-shadow 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-feature:hover,
.service-feature:focus-visible {
  border-color: rgba(38, 123, 119, 0.42);
  box-shadow: 0 26px 65px rgba(16, 42, 40, 0.13);
  outline: none;
  transform: translateY(-7px);
}

.service-feature-reverse .service-feature-visual {
  order: 0;
}

.service-feature-visual {
  position: relative;
  order: 0;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.9 / 1;
  overflow: hidden;
  background: #d8ddda;
}

.service-feature-visual::after {
  background: linear-gradient(180deg, transparent 52%, rgba(8, 24, 22, 0.66));
}

.service-feature-visual img,
.service-feature-visual img[data-parallax] {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  margin: 0;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
  will-change: auto;
}

.service-feature:hover .service-feature-visual img,
.service-feature:focus-visible .service-feature-visual img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.055);
}

.service-feature-number,
.service-feature-label {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.service-feature-number {
  top: 18px;
  left: 18px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(9, 29, 27, 0.32);
  backdrop-filter: blur(10px);
  font-size: 0.67rem;
  font-weight: 850;
}

.service-feature-label {
  right: 20px;
  bottom: 18px;
  left: 20px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-feature-content,
.service-feature-dark .service-feature-content {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px;
  color: var(--ink);
  background: #fff;
}

.service-feature-content::before {
  display: none;
}

.service-feature-content h3,
.service-feature-dark .service-feature-content h3 {
  max-width: none;
  color: #172b29;
  font-size: clamp(1.28rem, 1.65vw, 1.62rem);
  line-height: 1.06;
  overflow-wrap: normal;
  hyphens: none;
}

.service-feature-content > p,
.service-feature-dark .service-feature-content > p {
  max-width: none;
  margin: 11px 0 0;
  color: #5a6b68;
  font-size: 0.86rem;
  line-height: 1.55;
}

.service-feature-steps,
.service-feature-dark .service-feature-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
  border: 0;
}

.service-feature-steps li,
.service-feature-dark .service-feature-steps li {
  padding: 5px 8px;
  color: #31524f;
  border: 1px solid rgba(38, 123, 119, 0.14);
  border-radius: 999px;
  background: #f2f8f7;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.25;
}

.service-feature-steps li::before {
  display: none;
}

.service-feature-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  color: #155c58;
  font-size: 0.84rem;
  font-weight: 850;
}

.service-feature-link::after {
  content: "→";
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 123, 119, 0.22);
  border-radius: 50%;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-feature:hover .service-feature-link::after,
.service-feature:focus-visible .service-feature-link::after {
  color: #fff;
  background: #267b77;
  transform: translateX(3px);
}

.motion-ready .service-feature.reveal,
.motion-ready .service-feature-reverse.reveal {
  transform: translateY(30px);
}

.motion-ready .service-feature.reveal.is-visible,
.motion-ready .service-feature-reverse.reveal.is-visible {
  transform: translateY(0);
}

.motion-ready .service-feature.reveal h3,
.motion-ready .service-feature.reveal .service-feature-content > p,
.motion-ready .service-feature.reveal .service-feature-steps,
.motion-ready .service-feature.reveal .service-feature-link {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1020px) {
  .service-showcase-section .container {
    width: 100%;
  }

  .service-showcase-head,
  .service-swipe-hint {
    width: min(calc(100% - 40px), var(--max));
    margin-right: auto;
    margin-left: auto;
  }

  .service-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -16px;
    margin-bottom: 18px;
    color: #60716e;
    font-size: 0.72rem;
    font-weight: 750;
  }

  .service-swipe-hint::after {
    content: "→";
    font-size: 1rem;
  }

  .service-showcase {
    display: flex;
    gap: 14px;
    padding: 2px 20px 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-showcase::-webkit-scrollbar {
    display: none;
  }

  .home-page .service-showcase .service-feature,
  .home-page .service-showcase .service-feature:last-child {
    display: flex;
    flex: 0 0 min(72vw, 350px);
    width: min(72vw, 350px);
    min-width: min(72vw, 350px);
    scroll-snap-align: center;
  }
}

@media (max-width: 760px) {
  .service-showcase-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .service-showcase {
    gap: 12px;
    padding-right: 14px;
    padding-bottom: 20px;
    padding-left: 14px;
  }

  .service-showcase-head,
  .service-swipe-hint {
    width: calc(100% - 28px);
  }

  .home-page .service-showcase .service-feature,
  .home-page .service-showcase .service-feature:last-child {
    flex-basis: min(82vw, 330px);
    width: min(82vw, 330px);
    min-width: min(82vw, 330px);
  }

  .service-feature,
  .service-feature:hover,
  .service-feature:focus-visible {
    border-radius: 12px;
    transform: none;
  }

  .service-feature-visual,
  .service-feature:last-child .service-feature-visual {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 2.05 / 1;
  }

  .service-feature-content {
    padding: 18px;
  }

  .service-feature-content h3,
  .service-feature-dark .service-feature-content h3 {
    font-size: clamp(1.32rem, 6.4vw, 1.65rem);
  }

  .service-feature-content > p,
  .service-feature-dark .service-feature-content > p {
    margin-top: 10px;
    font-size: 0.82rem;
  }

  .service-feature-steps {
    margin-top: 13px;
  }

  .service-feature-link {
    padding-top: 14px;
  }
}

/* Interactive service explorer */
.service-explorer {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 40, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(16, 42, 40, 0.13);
}

.service-explorer-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  background:
    radial-gradient(circle at 20% 10%, rgba(82, 184, 176, 0.18), transparent 28%),
    #102a28;
}

.service-explorer-tab {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 6px 12px;
  align-content: center;
  flex: 1;
  width: 100%;
  padding: 24px 18px;
  color: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-explorer-tab::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-explorer-tab:hover,
.service-explorer-tab:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.service-explorer-tab.is-active {
  color: #fff;
  background: #267b77;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
  transform: translateX(8px);
}

.service-explorer-tab.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.service-explorer-tab span {
  grid-row: 1 / span 2;
  color: #9fd3cf;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-explorer-tab strong {
  max-width: 16ch;
  padding-right: 20px;
  color: inherit;
  font-size: 1.08rem;
  line-height: 1.18;
}

.service-explorer-tab small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-explorer-panels,
.service-explorer-panel {
  min-width: 0;
  min-height: 650px;
}

.service-explorer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  background: #fff;
  animation: service-panel-in 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-explorer-panel[hidden] {
  display: none;
}

.service-explorer-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #d8ddda;
}

.service-explorer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 24, 22, 0.78));
}

.service-explorer-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-explorer-panel:hover .service-explorer-visual img {
  transform: scale(1.035);
}

.service-explorer-visual span {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  z-index: 1;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-explorer-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 38px 36px 34px;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.service-explorer-kicker {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-explorer-content h3 {
  max-width: none;
  color: #172b29;
  font-size: clamp(1.9rem, 2.4vw, 2.65rem);
  line-height: 0.98;
  overflow-wrap: normal;
  hyphens: none;
}

.service-explorer-content > p {
  margin: 16px 0 22px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-explorer-list {
  padding: 20px;
  border: 1px solid rgba(38, 123, 119, 0.13);
  border-radius: 10px;
  background: #f3f8f7;
}

.service-explorer-list > strong,
.service-explorer-meta strong {
  display: block;
  margin-bottom: 12px;
  color: #172b29;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-explorer-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  list-style: none;
}

.service-explorer-list li {
  position: relative;
  padding-left: 17px;
  color: #48635f;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-explorer-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.service-explorer-meta {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-explorer-meta strong {
  margin: 0;
}

.service-explorer-meta span {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.45;
}

.service-explorer-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 22px;
}

@keyframes service-panel-in {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .service-explorer {
    grid-template-columns: 1fr;
  }

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

  .service-explorer-tab {
    min-height: 112px;
    padding: 18px;
  }

  .service-explorer-tab.is-active {
    transform: translateY(5px);
  }
}

@media (max-width: 820px) {
  .service-showcase-section .container {
    width: 100%;
  }

  .service-showcase-head {
    width: calc(100% - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .service-explorer {
    min-height: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .service-explorer-tabs {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 12px 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-explorer-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-explorer-tab {
    flex: 0 0 min(72vw, 280px);
    min-height: 104px;
  }

  .service-explorer-tab.is-active {
    transform: none;
  }

  .service-explorer-panels,
  .service-explorer-panel {
    min-height: 0;
  }

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

  .service-explorer-visual,
  .service-explorer-visual img {
    min-height: 300px;
    max-height: 360px;
  }

  .service-explorer-content {
    padding: 28px 20px 30px;
  }

  .service-explorer-content h3 {
    max-width: 16ch;
    font-size: clamp(1.8rem, 8.5vw, 2.5rem);
  }
}

@media (max-width: 520px) {
  .service-explorer-list ul {
    grid-template-columns: 1fr;
  }

  .service-explorer-meta {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .service-explorer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-explorer-actions .button {
    width: 100%;
  }
}

/* Compact global header */
:root {
  --header-h: 60px;
}

.nav-wrap {
  min-height: var(--header-h);
  gap: 18px;
}

.brand-link {
  width: 136px;
  height: 42px;
  min-width: 138px;
  overflow: visible;
}

.brand-link img,
.home-page .site-header .brand-link img,
.home-page .site-header.is-scrolled .brand-link img,
.home-page.menu-open .site-header .brand-link img {
  width: 136px;
  max-width: none;
  transform: none;
}

.nav-list {
  gap: 0;
}

.nav-link,
.submenu-toggle {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.82rem;
}

.nav-link::after,
.submenu-toggle::after {
  right: 10px;
  left: 10px;
  bottom: 2px;
}

.nav-cta {
  margin-left: 7px;
}

.nav-cta .button,
.home-page .site-header .nav-cta .button,
.home-page .site-header.is-scrolled .nav-cta .button,
.home-page.menu-open .site-header .nav-cta .button {
  min-height: 36px;
  padding: 9px 14px;
  font-size: 0.8rem;
}

.submenu {
  top: calc(100% - 2px);
}

.trust-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-reasons li {
  min-height: 145px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  transition: background 220ms ease, transform 220ms ease;
}

.trust-reasons li:hover {
  background: var(--brand-soft);
  transform: translateY(-3px);
}

.trust-reasons strong,
.trust-reasons span {
  display: block;
}

.trust-reasons strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

.trust-reasons span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-link,
  .submenu-toggle {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.96rem;
  }

  .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 60px;
  }

  .brand-link img,
  .home-page .site-header .brand-link img,
  .home-page .site-header.is-scrolled .brand-link img,
  .home-page.menu-open .site-header .brand-link img {
    width: 130px;
    transform: none;
  }

  .trust-reasons {
    grid-template-columns: 1fr;
  }

  .trust-reasons li {
    min-height: 0;
    padding: 20px;
  }
}

/* Detailed process */

.process-flow-detailed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-flow-detailed .step:nth-child(3) {
  border-right: 0;
}

.process-flow-detailed .step:nth-child(-n + 3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 1020px) {
  .process-flow-detailed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow-detailed .step:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-flow-detailed .step:nth-child(even) {
    border-right: 0;
  }

  .process-flow-detailed .step:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 760px) {
  .process-flow-detailed {
    grid-template-columns: 1fr;
  }

  .process-flow-detailed .step,
  .process-flow-detailed .step:nth-child(3),
  .process-flow-detailed .step:nth-child(even),
  .process-flow-detailed .step:nth-child(-n + 4) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-flow-detailed .step:last-child {
    border-bottom: 0;
  }
}

/* Compact homepage hero */
.home-page .hero {
  min-height: min(680px, calc(82svh - var(--header-h)));
}

.home-page .hero-content {
  padding-top: clamp(76px, 9vh, 92px);
  padding-bottom: clamp(34px, 5vh, 48px);
}

.home-page .hero h1 {
  max-width: 880px;
  font-size: clamp(3.4rem, 5.1vw, 4.7rem);
  line-height: 0.94;
}

.home-page .hero p {
  max-width: 600px;
  margin-top: 16px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.home-page .hero-actions {
  margin-top: 24px;
}

.home-page .hero-actions .button,
.home-page .hero-actions .button-secondary {
  min-height: 44px;
  padding: 11px 17px;
}

.home-page .hero-service-rail {
  max-width: 840px;
  margin-top: clamp(30px, 5vh, 44px);
}

.home-page .hero-service-rail a {
  min-height: 58px;
  padding: 10px 17px;
}

.home-page .hero-scroll-cue {
  display: none;
}

@media (max-width: 760px) {
  .home-page .hero {
    min-height: auto;
  }

  .home-page .hero-content {
    padding-top: 78px;
    padding-bottom: 28px;
  }

  .home-page .hero .eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .home-page .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.35rem);
    line-height: 0.95;
  }

  .home-page .hero p {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .home-page .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .home-page .hero-actions .button,
  .home-page .hero-actions .button-secondary {
    min-height: 42px;
    padding: 10px 15px;
  }

  .home-page .hero-service-rail {
    display: none;
  }
}

/* Compact process section */
.home-page .process-band {
  padding-top: 58px;
  padding-bottom: 58px;
}

.home-page .process-band .section-head {
  gap: 42px;
  margin-bottom: 22px;
}

.home-page .process-band .section-head h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 3.5vw, 3.35rem);
  line-height: 1;
}

.home-page .process-band .section-head p {
  max-width: 480px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.home-page .process-flow-detailed .step {
  min-height: 162px;
  padding: 20px 26px 18px;
}

.home-page .process-flow-detailed .step:hover {
  padding-left: 26px;
}

.home-page .process-flow-detailed .step span {
  margin-bottom: 17px;
}

.home-page .process-flow-detailed .step h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
}

.home-page .process-flow-detailed .step p {
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 1020px) {
  .home-page .process-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .home-page .process-band .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .home-page .process-flow-detailed .step {
    min-height: 158px;
    padding: 19px 24px 17px;
  }

  .home-page .process-flow-detailed .step:hover {
    padding-left: 24px;
  }
}

@media (max-width: 760px) {
  .home-page .process-band {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .home-page .process-band .section-head {
    margin-bottom: 22px;
  }

  .home-page .process-band .section-head h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .home-page .process-flow-detailed .step {
    min-height: 0;
    padding: 16px 18px;
  }

  .home-page .process-flow-detailed .step:hover {
    padding-left: 18px;
  }

  .home-page .process-flow-detailed .step span {
    margin-bottom: 9px;
  }
}

/* Balanced heading scale */
h1 {
  font-size: clamp(2.75rem, 5.3vw, 5.25rem);
}

h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.75rem);
}

.page-hero h1 {
  font-size: clamp(2.15rem, 3.1vw, 3.45rem);
}

.home-page .hero h1 {
  font-size: clamp(3.1rem, 4.5vw, 4.25rem);
}

.home-page .process-band .section-head h2 {
  font-size: clamp(2.05rem, 2.7vw, 2.6rem);
}

.service-explorer-content h3 {
  font-size: clamp(1.7rem, 2.1vw, 2.3rem);
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.65rem);
  }

  .home-page .hero h1 {
    font-size: clamp(2.55rem, 10.7vw, 3.05rem);
  }

  .home-page .process-band .section-head h2 {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }

  .service-explorer-content h3 {
    font-size: clamp(1.65rem, 7.8vw, 2.1rem);
  }
}

/* Sticky service stack, adapted from the motion pattern in the reference. */
.home-page .service-showcase-section {
  overflow: visible;
}

.service-stack {
  position: relative;
}

.service-stack-panels {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-stack-card {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 40, 0.14);
  border-radius: 18px;
  box-shadow: 0 30px 86px rgba(16, 42, 40, 0.16);
}

.service-stack-card:nth-child(1) {
  z-index: 1;
}

.service-stack-card:nth-child(2) {
  z-index: 2;
}

.service-stack-card:nth-child(3) {
  z-index: 3;
}

.service-stack-card .service-explorer-visual,
.service-stack-card .service-explorer-visual img {
  min-height: 620px;
}

.service-stack-card .service-explorer-visual img[data-parallax] {
  width: 100%;
  height: calc(100% + 64px);
  min-height: calc(620px + 64px);
  margin-top: -32px;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.035);
  will-change: transform;
}

.service-stack-card:hover .service-explorer-visual img[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.07);
}

.motion-ready .home-page .service-showcase-head.reveal {
  transform: translateY(25px);
  transition: opacity 820ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .home-page .service-showcase-head.reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .service-stack-panels {
    gap: 24px;
  }

  .service-stack-card {
    position: relative;
    top: auto;
    min-height: 580px;
    box-shadow: 0 22px 58px rgba(16, 42, 40, 0.12);
  }

  .service-stack-card .service-explorer-visual,
  .service-stack-card .service-explorer-visual img {
    min-height: 580px;
  }

  .service-stack-card .service-explorer-visual img[data-parallax] {
    height: 100%;
    min-height: 580px;
    margin-top: 0;
    transform: none;
    will-change: auto;
  }

  .service-stack-card:hover .service-explorer-visual img[data-parallax] {
    transform: scale(1.035);
  }
}

@media (max-width: 820px) {
  .service-stack-panels {
    gap: 30px;
  }

  .service-stack-card {
    isolation: isolate;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-stack-card .service-explorer-visual {
    position: sticky;
    top: calc(var(--header-h) + 8px);
    z-index: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 40, 0.14);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(16, 42, 40, 0.14);
  }

  .service-stack-card .service-explorer-visual,
  .service-stack-card .service-explorer-visual img,
  .service-stack-card .service-explorer-visual img[data-parallax] {
    width: 100%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    margin-top: 0;
    transform: none;
  }

  .service-stack-card .service-explorer-content {
    position: relative;
    z-index: 1;
    margin-top: -20px;
    border: 1px solid rgba(16, 42, 40, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 58px rgba(16, 42, 40, 0.13);
  }

  .service-stack-card:hover .service-explorer-visual img[data-parallax] {
    transform: none;
  }
}

@media (max-width: 820px) {
  .home-page .process-band {
    --process-head-height: 240px;
    --process-release-space: 140px;
    overflow: visible;
  }

  .home-page .process-band .section-head {
    position: sticky;
    top: calc(var(--header-h) + 8px);
    z-index: 20;
    isolation: isolate;
    margin-bottom: calc(22px - var(--process-release-space));
    padding-bottom: calc(18px + var(--process-release-space));
    pointer-events: none;
  }

  .home-page .process-band .section-head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    height: var(--process-head-height);
    background:
      radial-gradient(circle at 92% 12%, rgba(142, 226, 218, 0.15), transparent 26%),
      linear-gradient(135deg, #113f3c 0%, #24746f 100%);
    transform: translateX(-50%);
  }

  .home-page .process-band .section-head > * {
    position: relative;
    z-index: 1;
  }

  .home-page .process-flow-detailed {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 18px;
    border-top: 0;
  }

  .home-page .process-flow-detailed::after {
    display: none;
  }

  .home-page .process-flow-detailed .step,
  .home-page .process-flow-detailed .step:nth-child(3),
  .home-page .process-flow-detailed .step:nth-child(even),
  .home-page .process-flow-detailed .step:nth-child(-n + 4) {
    position: sticky;
    top: calc(var(--header-h) + 8px + var(--process-head-height) + 14px);
    isolation: isolate;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 5px 13px;
    min-height: 126px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(198, 238, 233, 0.2);
    border-radius: 15px;
    background: linear-gradient(135deg, #174c49, #1c5b57);
    box-shadow: 0 12px 28px rgba(4, 27, 25, 0.1);
  }

  .home-page .process-flow-detailed .step:nth-child(1) {
    z-index: 1;
  }

  .home-page .process-flow-detailed .step:nth-child(2) {
    z-index: 2;
    background: linear-gradient(135deg, #18514d, #1f615d);
  }

  .home-page .process-flow-detailed .step:nth-child(3) {
    z-index: 3;
    background: linear-gradient(135deg, #195651, #226762);
  }

  .home-page .process-flow-detailed .step:nth-child(4) {
    z-index: 4;
    background: linear-gradient(135deg, #1a5b56, #256d68);
  }

  .home-page .process-flow-detailed .step:nth-child(5) {
    z-index: 5;
    background: linear-gradient(135deg, #1c605b, #28736e);
  }

  .home-page .process-flow-detailed .step:nth-child(6) {
    z-index: 6;
    background: linear-gradient(135deg, #1e6661, #2b7974);
  }

  .home-page .process-flow-detailed .step:hover {
    padding-left: 18px;
  }

  .home-page .process-flow-detailed .step span {
    grid-row: 1 / span 2;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    align-self: start;
    margin: 1px 0 0;
    color: #d5f2ef;
    border: 1px solid rgba(213, 242, 239, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.67rem;
  }

  .home-page .process-flow-detailed .step h3,
  .home-page .process-flow-detailed .step p {
    grid-column: 2;
  }

  .home-page .process-flow-detailed .step h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.2;
  }

  .home-page .process-flow-detailed .step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  .home-page .process-band .section-head {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .home-page .process-band .section-head::before {
    display: none;
  }

  .home-page .process-band .section-head,
  .home-page .process-flow-detailed .step,
  .home-page .process-flow-detailed .step:nth-child(3),
  .home-page .process-flow-detailed .step:nth-child(even),
  .home-page .process-flow-detailed .step:nth-child(-n + 4) {
    position: relative;
    top: auto;
  }
}

/* Readability guard: keep words intact and prevent tight heading collisions. */
body :is(h1, h2, h3, h4, p, li, blockquote, figcaption, summary, a, button, label, strong, span) {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

body h1 {
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  text-wrap: pretty;
}

body h2 {
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
  text-wrap: pretty;
}

body h3,
body h4 {
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
  text-wrap: pretty;
}

@media (max-width: 420px) {
  body .page-hero h1 {
    font-size: 1.85rem;
  }

  body h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 350px) {
  body .page-hero h1 {
    font-size: 1.7rem;
  }
}
