* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 240, 106, 0.28), transparent 26%),
    radial-gradient(circle at top right, rgba(27, 181, 156, 0.17), transparent 34%),
    linear-gradient(180deg, #f7fdfa 0%, var(--bg) 42%, #f3fbf9 100%);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 42, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 42, 43, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 72%);
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - clamp(1rem, 3vw, 2rem)));
  margin: 0 auto;
}

.narrow-flow {
  width: min(720px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  padding: 0;
  transition: transform 260ms ease, opacity 220ms ease;
  will-change: transform;
}

body.page-home.has-immersive-hero .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  pointer-events: none;
}

.site-header.is-hidden {
  transform: translateY(-130%);
  opacity: 0;
}

.contact-grid,
.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0.8rem auto 0;
  min-height: 4.7rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(14, 102, 95, 0.12);
  border-radius: 24px;
  background: rgba(249, 254, 251, 0.9);
  box-shadow: 0 12px 30px rgba(8, 31, 33, 0.06);
  backdrop-filter: blur(20px);
  position: relative;
}

body.page-home.has-immersive-hero .site-header__bar {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(245, 250, 247, 0.86);
  box-shadow: 0 20px 44px rgba(4, 18, 19, 0.18);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  text-decoration: none;
  justify-self: start;
}

.brand__name,
.section__title,
.card h3,
.stat-card strong,
.faq-item summary {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.brand__name {
  color: var(--brand-deep);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.brand__tagline,
.site-notice,
.section__eyebrow,
.legal-note {
  color: var(--ink-soft);
}

.brand__tagline {
  font-size: 0.8rem;
  max-width: 22ch;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(14, 102, 95, 0.14);
  background: rgba(255, 255, 255, 0.84);
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  color: var(--brand-deep);
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.nav-toggle__lines {
  position: relative;
}

.nav-toggle__lines::before {
  position: absolute;
  top: -0.38rem;
  left: 0;
}

.nav-toggle__lines::after {
  position: absolute;
  top: 0.38rem;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines {
  background: transparent;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
  justify-self: center;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--brand-deep);
  background: rgba(27, 181, 156, 0.10);
  outline: none;
  transform: translateY(-1px);
}

.site-nav__link.is-active {
  color: var(--brand-deep);
  background: rgba(27, 181, 156, 0.14);
  font-weight: 800;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  display: grid;
  gap: 0.25rem;
  min-width: 220px;
  padding: 0.65rem;
  border: 1px solid rgba(14, 102, 95, 0.12);
  border-radius: 20px;
  background: rgba(249, 254, 251, 0.98);
  box-shadow: 0 22px 48px rgba(8, 31, 33, 0.14);
  transform: translate(-50%, 0.6rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__dropdown-link {
  padding: 0.72rem 0.8rem;
  border-radius: 14px;
  color: var(--brand-deep);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
  background: rgba(27, 181, 156, 0.08);
  outline: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  justify-self: end;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links--header {
  flex-shrink: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 102, 95, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-deep);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(27, 181, 156, 0.1);
  border-color: rgba(27, 181, 156, 0.24);
  color: var(--brand-strong);
  outline: none;
  transform: translateY(-1px);
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links--panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 102, 95, 0.12);
  gap: 0.65rem;
}

.site-nav-panel .social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3rem, max-content));
  justify-content: start;
}

.header-email {
  color: var(--brand-deep);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-email:hover,
.header-email:focus-visible {
  text-decoration: underline;
  outline: none;
}

.site-notice {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.site-nav-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 1rem;
  width: min(320px, calc(100vw - 2rem));
  z-index: 12;
  border: 1px solid rgba(14, 102, 95, 0.12);
  border-radius: 24px;
  background: rgba(249, 254, 251, 0.96);
  box-shadow: 0 22px 48px rgba(8, 31, 33, 0.14);
  backdrop-filter: blur(18px);
}

.site-nav-panel__inner {
  padding: 1rem;
}

.site-nav-panel__eyebrow {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-nav-panel__links {
  display: grid;
  gap: 0.35rem;
}

.site-nav-panel__group {
  display: grid;
  gap: 0.25rem;
}

.site-nav-panel__link {
  display: flex;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
}

.site-nav-panel__link:hover,
.site-nav-panel__link:focus-visible {
  background: rgba(27, 181, 156, 0.08);
  outline: none;
}

.site-nav-panel__sublink {
  margin-left: 0.7rem;
  padding: 0.5rem 0.95rem 0.7rem;
  border-left: 1px solid rgba(14, 102, 95, 0.16);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav-panel__sublink:hover,
.site-nav-panel__sublink:focus-visible {
  color: var(--brand-deep);
  outline: none;
}

.section {
  padding: 4.75rem 0;
}

.section--hero {
  padding-top: 5.2rem;
}

.section--hero.section--hero-immersive {
  padding-top: 0;
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(236, 250, 245, 0.92) 100%);
}

.section__eyebrow {
  margin: 0 0 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.section__title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section__lead {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 60ch;
  text-wrap: pretty;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

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

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.breadcrumbs__sep {
  opacity: 0.6;
}

.section--intro .narrow-flow,
.section--rich-text .narrow-flow,
.section--blog-teaser .container,
.section--visual .container,
.section--muted .container {
  text-align: center;
}

.section--intro .section__lead,
.section--rich-text .section__lead,
.section--blog-teaser .section__lead,
.section--visual .section__lead,
.section--muted .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.section--blog-teaser .section__title,
.section--visual .section__title,
.section--rich-text .section__title,
.section--intro .section__title,
.section--muted .section__title {
  margin-left: auto;
  margin-right: auto;
  max-width: 18ch;
}

.container--wide {
  width: min(1320px, calc(100vw - 2rem));
}

.section-intro__media {
  margin: 1.75rem 0 0;
}

.section-intro__image {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: block;
  border-radius: 1.5rem;
  box-shadow: 0 28px 64px rgba(8, 34, 34, 0.16);
  object-fit: cover;
}

.section--intro--split {
  padding-top: 4rem;
}

.section--intro--top-image {
  padding-top: 1.5rem;
}

.section--intro--split .section__title,
.section--intro--split .section__lead,
.section--intro--split .section__eyebrow {
  margin-left: 0;
  margin-right: 0;
}

.section--intro--split .section__title {
  max-width: 10ch;
}

.section--intro--split .section__lead {
  max-width: 34rem;
}

.section--intro--split .breadcrumbs {
  margin-bottom: 1rem;
}

.section--intro--top-image .section__title,
.section--intro--top-image .section__lead,
.section--intro--top-image .section__eyebrow {
  margin-left: 0;
  margin-right: 0;
}

.section--intro--top-image .section__title {
  max-width: 12ch;
}

.section--intro--top-image .section__lead {
  max-width: 40rem;
}

.intro-top {
  display: grid;
  gap: 0;
  position: relative;
  padding-top: clamp(0.18rem, 0.5vw, 0.38rem);
}

.intro-top__header {
  width: 100%;
  margin: 0;
  padding: clamp(0.55rem, 1.2vw, 0.85rem) clamp(1rem, 2.5vw, 1.6rem);
  display: grid;
  gap: 0.45rem;
  text-align: center;
  justify-items: center;
  position: relative;
  z-index: 3;
  margin-bottom: calc(clamp(1rem, 2.2vw, 1.7rem) * -1);
  background: rgba(244, 250, 246, 0.28);
  backdrop-filter: blur(10px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.intro-top__header .breadcrumbs,
.intro-top__header .section__eyebrow,
.intro-top__header .section__title,
.intro-top__header .section__lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro-top__header .section__title {
  max-width: min(30ch, 100%);
  width: 100%;
}

.intro-top__header .section__lead {
  max-width: min(72rem, 100%);
  width: 100%;
}

.section-intro__media--top {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--intro-surface-deep);
  box-shadow: 0 28px 80px rgba(8, 34, 34, 0.12);
}

.section-intro__media--top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1.5rem;
  background: linear-gradient(180deg, rgba(244, 250, 246, 0.38), rgba(244, 250, 246, 0));
  z-index: 1;
  pointer-events: none;
}

.section-intro__media--top .section-intro__image {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  display: block;
}

.intro-top__content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, var(--intro-surface-soft), var(--intro-surface));
  border-radius: 1.6rem;
  box-shadow: 0 28px 80px rgba(8, 34, 34, 0.12);
  width: min(1080px, calc(100% - 3rem));
  margin: -3% auto 0;
  position: relative;
  z-index: 2;
}

.intro-top__copy {
  width: min(880px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(2.2rem, 4vw, 3.2rem);
  display: grid;
  gap: 1rem;
  text-align: left;
}

.intro-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 0;
  min-height: min(74vh, 720px);
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(90deg, var(--intro-surface-soft) 0%, var(--intro-surface) 42%, var(--intro-surface-deep) 100%);
  box-shadow: 0 28px 80px rgba(8, 34, 34, 0.12);
}

.intro-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.intro-hero--fused::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, var(--intro-surface-soft), var(--intro-surface));
  z-index: 1;
  pointer-events: none;
}

.intro-hero__content--fused {
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  align-content: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 28%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, var(--intro-surface-soft) 0%, var(--intro-surface) 72%, rgba(0, 0, 0, 0) 100%);
}

.section-intro__media--fused {
  position: relative;
  margin: 0;
  min-height: 100%;
}

.section-intro__media--fused::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(18%, 9rem);
  background: linear-gradient(90deg, var(--intro-surface-deep) 0%, rgba(220, 232, 231, 0.76) 35%, rgba(220, 232, 231, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.section-intro__media--fused .section-intro__image {
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.section--rich-text .prose p {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.rich-content-stack {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.rich-content-block {
  display: grid;
  gap: 0.75rem;
}

.rich-content-block h3,
.content-comparator__block h3,
.content-hub-card h2,
.solutions-segment__panel h3 {
  margin: 0;
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.rich-content-block ul,
.solutions-segment__panel ul {
  margin: 0;
  padding-left: 1.1rem;
  text-align: left;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1rem;
}

.tag-row--center,
.button-row--center {
  justify-content: center;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 181, 156, 0.16);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-strong);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-highlight-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hero-highlight-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  align-items: start;
}

.hero-highlight-item strong {
  display: block;
  color: var(--brand-deep);
  font-size: 1rem;
}

.hero-highlight-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  align-items: stretch;
}

.hero-stage {
  position: relative;
  width: calc(100% - 0.8rem);
  min-height: clamp(540px, 82vh, 860px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: #102324;
  box-shadow: 0 22px 58px rgba(7, 23, 24, 0.18);
}

body.page-home.has-immersive-hero .hero-stage {
  width: 100%;
  margin: 0;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 14, 15, 0.16) 0%, rgba(3, 14, 15, 0.14) 30%, rgba(3, 14, 15, 0.78) 100%),
    linear-gradient(90deg, rgba(3, 14, 15, 0.76) 0%, rgba(3, 14, 15, 0.34) 36%, rgba(3, 14, 15, 0.08) 70%);
  pointer-events: none;
}

.hero-stage__media {
  display: block;
  width: 100%;
  height: clamp(540px, 82vh, 860px);
  object-fit: cover;
}

.hero-stage__overlay {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3.5rem);
  right: 1.5rem;
  bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  max-width: 42rem;
  color: #ffffff;
}

.hero-stage__eyebrow {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-stage__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.6vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-stage__body {
  margin: 0.85rem 0 0;
  max-width: 32ch;
  color: rgba(183, 240, 106, 0.96);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.3;
}

.hero-summary {
  display: grid;
  gap: 1.35rem;
  margin-top: clamp(1.2rem, 3vw, 2.1rem);
  grid-template-columns: 1fr;
  align-items: start;
}

.hero-summary__title {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.hero-summary__intro,
.hero-summary__services {
  position: relative;
}

.hero-summary__intro {
  max-width: 76rem;
  padding: 0.2rem 0 0.35rem;
  margin: 0 auto;
  text-align: center;
}

.hero-summary__services {
  display: grid;
  gap: 1.4rem;
}

.hero-summary__intro .tag-row,
.hero-summary__intro .button-row {
  justify-content: center;
}

.hero-summary__intro .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-summary__services .section__eyebrow {
  margin-bottom: 0.2rem;
  text-align: center;
}

.hero-summary__services > .panel__eyebrow {
  text-align: center;
}

.hero-highlight-list--grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.hero-highlight-list--stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(var(--hero-strip-columns, 3), minmax(0, 1fr));
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  gap: 1rem;
  padding: 0 1rem;
  overflow: visible;
}

.hero-service-carousel {
  display: grid;
  gap: 0.95rem;
}

.hero-service-strip::-webkit-scrollbar {
  display: none;
}

.hero-service-strip__item {
  margin: 0;
  min-height: 320px;
  display: grid;
  grid-template-rows: auto auto auto;
  scroll-snap-align: start;
  border-radius: 24px;
  border: 1px solid rgba(14, 102, 95, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-service-strip__caption {
  padding: 1.1rem 1.4rem 0.95rem;
  border-bottom: 1px solid rgba(14, 102, 95, 0.1);
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.hero-service-strip__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.hero-service-strip__body {
  padding: 1.15rem 1.4rem 1.35rem;
  background: rgba(251, 255, 253, 0.96);
}

.hero-service-strip__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-wrap: pretty;
}

.hero-service-carousel__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.hero-service-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(14, 102, 95, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero-service-carousel__arrow:hover,
.hero-service-carousel__arrow:focus-visible {
  background: rgba(27, 181, 156, 0.1);
  border-color: rgba(14, 102, 95, 0.24);
  outline: none;
  transform: translateY(-1px);
}

.hero-service-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.hero-service-carousel__dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 42, 43, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-service-carousel__dot.is-active {
  background: var(--brand-strong);
  transform: scale(1.15);
}

.hero-service-carousel__dot:focus-visible {
  outline: 2px solid rgba(27, 181, 156, 0.34);
  outline-offset: 2px;
}

.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.2rem;
}

.hero-service-card,
.hero-capability-card {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-service-card {
  padding: 1.15rem 1.2rem;
}

.hero-capability-card {
  padding: 1.2rem 1.1rem 1.25rem;
  justify-items: center;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-capability-card > div {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  text-align: center;
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
}

.hero-capability-card__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.hero-capability-card__icon-image {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.hero-service-card strong,
.hero-capability-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-deep);
  font-size: 1.28rem;
  line-height: 1.05;
  text-align: center;
}

.hero-service-card p,
.hero-capability-card p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-capability-card strong::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 2px;
  margin: 0.95rem auto 0;
  background: rgba(13, 42, 43, 0.72);
}

.hero-capability-card p {
  width: min(24ch, 100%);
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.hero-capabilities {
  margin-top: 1.35rem;
}

.panel,
.card,
.stat-card,
.lead-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel,
.card,
.lead-form,
.stat-card {
  padding: 1.5rem;
}

.panel {
  position: relative;
  overflow: hidden;
}

.panel::before,
.card::before,
.stat-card::before,
.lead-form::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  right: 1rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  opacity: 0.95;
}

.panel__eyebrow {
  margin-top: 0;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel {
  min-height: auto;
  background:
    radial-gradient(circle at top right, rgba(183, 240, 106, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 250, 245, 0.92));
}

.hero-panel__figure {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 460px;
  background: rgba(217, 240, 232, 0.75);
}

.hero-panel__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 29, 31, 0.06) 0%, rgba(6, 29, 31, 0.28) 54%, rgba(6, 29, 31, 0.7) 100%),
    linear-gradient(90deg, rgba(6, 29, 31, 0.56) 0%, rgba(6, 29, 31, 0.16) 42%, rgba(6, 29, 31, 0) 74%);
  pointer-events: none;
}

.hero-panel__media {
  display: block;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.hero-panel__overlay-copy {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.45rem;
  z-index: 2;
  max-width: 26rem;
  color: #ffffff;
}

.hero-panel__overlay-eyebrow {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-panel__overlay-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.4vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-panel__overlay-copy p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.45;
  max-width: 30ch;
}

.hero-panel__caption {
  padding-top: 1.2rem;
}

.hero-panel__list {
  display: grid;
  gap: 0.9rem;
}

.hero-panel__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.hero-panel__item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand-deep);
  font-size: 1rem;
}

.hero-panel__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.section--visual {
  padding-top: 2rem;
}

.icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  border: 1px solid rgba(27, 181, 156, 0.18);
  background: linear-gradient(180deg, rgba(27, 181, 156, 0.14), rgba(183, 240, 106, 0.14));
  color: var(--brand-strong);
  box-shadow: var(--shadow-soft);
}

.icon-mark svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-mark--card,
.icon-mark--stat {
  margin-bottom: 1rem;
}

.icon-mark--mini {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 14px;
}

.icon-mark--hero {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 68%, var(--brand-deep) 100%);
  color: #ffffff;
}

.button--quiet {
  background: rgba(255, 255, 255, 0.1);
}

.header-action-link {
  min-height: 44px;
  padding-inline: 1rem;
  font-size: 0.92rem;
}

.card-grid,
.stat-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

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

.content-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

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

.card,
.stat-card {
  position: relative;
  overflow: hidden;
}

.card {
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(27, 181, 156, 0.26);
  box-shadow: 0 24px 58px rgba(13, 42, 43, 0.12);
}

.card h3,
.stat-card strong {
  margin: 0;
  font-size: 1.42rem;
}

.card p,
.stat-card span {
  color: var(--ink-soft);
}

.card a {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.card a:hover,
.card a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.card--category {
  text-align: left;
}

.card__media {
  margin: 0 0 1.35rem;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(14, 102, 95, 0.08);
}

.card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--category a {
  font-weight: 800;
}

.content-hub-card,
.content-comparator,
.solutions-segment {
  padding: 1.5rem;
  border: 1px solid rgba(14, 102, 95, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.content-hub-card {
  text-align: left;
}

.content-hub-card__media {
  margin: 0 0 1.35rem;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(14, 102, 95, 0.08);
}

.content-hub-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-hub-card p {
  color: var(--ink-soft);
}

.content-hub-card__list {
  margin: 1rem 0;
  padding-left: 1rem;
}

.content-hub-card__list li + li {
  margin-top: 0.45rem;
}

.content-hub-card__list a,
.content-hub-card__link {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.content-hub-card__list a:hover,
.content-hub-card__list a:focus-visible,
.content-hub-card__link:hover,
.content-hub-card__link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.content-comparator {
  margin-top: 1rem;
  text-align: center;
  scroll-margin-top: 7rem;
}

.content-comparator__blocks {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}

.content-comparator__block {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(240, 248, 246, 0.94);
}

.content-comparator__block p {
  margin: 0.8rem 0 0;
}

.solutions-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solutions-tab {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 102, 95, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
}

.solutions-tab:hover,
.solutions-tab:focus-visible {
  background: rgba(27, 181, 156, 0.08);
  outline: none;
}

.solutions-stack {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.solutions-segment {
  display: grid;
  gap: 1.25rem;
  scroll-margin-top: 7rem;
}

.solutions-segment__intro {
  text-align: center;
}

.solutions-segment__intro .section__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 34ch;
}

.solutions-segment__intro .button-row {
  justify-content: center;
}

.solutions-segment__media {
  margin: 0;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: rgba(14, 102, 95, 0.08);
  box-shadow: var(--shadow-soft);
}

.solutions-segment__image,
.solutions-segment__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-segment__title {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.solutions-segment__panel {
  padding: 1.25rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(235, 252, 246, 0.92) 0%, rgba(244, 251, 249, 0.98) 100%);
  text-align: center;
}

.solutions-segment__panel ul {
  padding-left: 0;
  list-style-position: inside;
  text-align: center;
}

.solutions-segment .stat-card {
  text-align: center;
}

.card--icon {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 250, 245, 0.94));
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: auto;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: rgba(251, 255, 253, 0.98);
  display: grid;
  grid-template-rows: auto 1fr;
}

.visual-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card--aqua {
  background: rgba(251, 255, 253, 0.98);
}

.visual-card--lime {
  background: rgba(251, 255, 253, 0.98);
}

.visual-card--deep {
  background: rgba(251, 255, 253, 0.98);
}

.visual-card__figure {
  position: relative;
  min-height: 270px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(14, 102, 95, 0.1);
  background: #dfeee8;
}

.visual-card__content {
  position: relative;
  padding: 1.35rem 1.35rem 1.5rem;
  background: rgba(251, 255, 253, 0.96);
  color: var(--ink);
  height: 100%;
  text-align: center;
}

.visual-card__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

.visual-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-top: 0.55rem;
}

.visual-card__eyebrow {
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
}

.visual-card__content h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
}

.visual-card__content p {
  margin: 0;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(46, 80, 84, 0.88);
  text-align: center;
  text-wrap: pretty;
}

.visual-card--deep .visual-card__content,
.visual-card--aqua .visual-card__content,
.visual-card--lime .visual-card__content {
  background: rgba(251, 255, 253, 0.96);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.faq-item {
  padding: 1.2rem 1.4rem;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.16rem;
  list-style: none;
}

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

.prose p,
.prose ul,
.prose ol {
  margin: 1rem 0;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 252, 248, 0.96));
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-weight: 700;
  color: var(--brand-deep);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(27, 181, 156, 0.22);
  border-color: rgba(27, 181, 156, 0.4);
}

.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  background:
    radial-gradient(circle at top left, rgba(183, 240, 106, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(27, 181, 156, 0.2), transparent 26%),
    linear-gradient(180deg, #082325 0%, #0d2a2b 100%);
  color: #f5fffb;
  padding: 3rem 0 1.5rem;
}

.footer-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 0.9rem;
  margin-top: 1.35rem;
}

.footer-locations span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__top,
.site-footer__grid,
.site-footer__bottom {
  display: grid;
  gap: 1.5rem;
}

.site-footer__top {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 0.9rem;
}

.site-footer__eyebrow,
.site-footer__cta-label {
  margin: 0 0 0.8rem;
  color: rgba(183, 240, 106, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.site-footer__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.site-footer__lead {
  max-width: 54ch;
  margin: 0.8rem 0 0;
  color: rgba(245, 255, 251, 0.78);
  font-size: 0.98rem;
}

.site-footer__email {
  margin: 0.7rem 0 0;
}

.site-footer__email a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.site-footer__email a:hover,
.site-footer__email a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.social-links--footer {
  margin-top: 1rem;
  gap: 0.65rem;
}

.site-footer .social-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.site-footer__cta-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 88, 84, 0.12));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.05rem;
}

.site-footer__cta-inline {
  display: grid;
  gap: 0.75rem;
}

.site-footer__cta-actions {
  margin-top: 0;
}

.site-footer__cta-copy {
  margin: 0;
  max-width: 38ch;
  color: rgba(245, 255, 251, 0.76);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__column h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: #ffffff;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.site-footer__list a {
  color: rgba(245, 255, 251, 0.76);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.site-footer__bottom {
  grid-template-columns: 1fr auto auto;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 255, 251, 0.66);
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.site-footer__bottom a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.assistant-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: grid;
  justify-items: end;
  gap: 0.85rem;
}

.assistant-dock__launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 72%, var(--brand-deep) 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(11, 62, 62, 0.24);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.assistant-dock__panel {
  width: min(420px, calc(100vw - 1.5rem));
  border: 1px solid rgba(14, 102, 95, 0.14);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(248, 254, 251, 0.98);
  box-shadow: 0 30px 64px rgba(8, 31, 33, 0.22);
}

.assistant-dock__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.95rem;
  border-bottom: 1px solid rgba(14, 102, 95, 0.1);
}

.assistant-dock__panel-header strong {
  display: block;
  color: var(--brand-deep);
}

.assistant-dock__panel-header p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.assistant-dock__close {
  appearance: none;
  border: 1px solid rgba(14, 102, 95, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-deep);
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.assistant-dock__panel-body {
  min-height: 560px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 250, 246, 0.95));
}

.assistant-dock__panel-body iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
}

.site-footer__cta-card .button--quiet {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__cta-card .button--quiet:hover,
.site-footer__cta-card .button--quiet:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.consent-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 100;
}

.consent-banner__panel {
  width: min(760px, 100%);
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.consent-options {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.consent-option {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.consent-option small {
  display: block;
  color: var(--ink-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.location-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 250, 245, 0.95));
  box-shadow: var(--shadow);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  right: 1rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

.location-card__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(27, 181, 156, 0.16), rgba(183, 240, 106, 0.18));
  color: var(--brand-deep);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.location-card__map {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #d7efe8;
}

.location-card__map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.location-card__body {
  padding: 1.45rem;
}

.location-card__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.location-card__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

.location-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.location-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--brand-deep);
}

.location-card p {
  color: var(--ink-soft);
}


@media (max-width: 980px) {
  .hero-grid,
  .intro-hero,
  .contact-grid,
  .card-grid,
  .content-hub-grid,
  .stat-grid,
  .visual-grid,
  .location-grid,
  .site-footer__top,
  .site-footer__grid,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-header__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 1rem);
    min-height: 4.3rem;
    padding: 0.75rem 0.95rem;
  }

  body.page-home.has-immersive-hero .site-header__bar {
    margin-top: 0.65rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .social-links--header {
    display: none;
  }

  .site-nav-panel {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 4.85rem);
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-height: calc(100dvh - 5.75rem);
    overflow: auto;
    border-radius: 24px;
  }

  .site-nav-panel__inner {
    padding: 1rem;
  }

  .section--intro--split {
    padding-top: 2.5rem;
  }

  .section--intro--top-image {
    padding-top: 1rem;
  }

  .section--intro--split .section__title,
  .section--intro--split .section__lead {
    max-width: none;
  }

  .section--intro--top-image .section__title,
  .section--intro--top-image .section__lead {
    max-width: none;
  }

  .intro-hero {
    min-height: auto;
  }

  .intro-hero__content {
    text-align: center;
  }

  .intro-hero__content .tag-row,
  .intro-hero__content .button-row {
    justify-content: center;
  }

  .intro-hero--fused::before {
    width: 100%;
  }

  .intro-hero__content--fused {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
      linear-gradient(180deg, var(--intro-surface-soft), var(--intro-surface));
  }

  .section-intro__media--fused {
    min-height: 360px;
  }

  .section-intro__media--fused .section-intro__image {
    min-height: 360px;
  }

  .intro-top__content {
    width: calc(100% - 1rem);
    margin-top: -1.25rem;
  }

  .intro-top__header {
    width: 100%;
    text-align: center;
    margin-bottom: -1rem;
  }

  .intro-top__copy {
    width: calc(100% - 2rem);
    text-align: center;
  }

  .intro-top__copy .tag-row,
  .intro-top__copy .button-row {
    justify-content: center;
  }

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

  .hero-highlight-list--stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding-inline: 0.85rem;
  }

  .hero-stage__overlay {
    left: clamp(1.2rem, 3vw, 2rem);
    right: clamp(1.2rem, 3vw, 2rem);
    bottom: clamp(1.25rem, 3vw, 2rem);
    max-width: 34rem;
  }

  .hero-summary__intro {
    max-width: 54rem;
  }

  .site-footer__top {
    gap: 0.8rem;
  }

  .site-footer__grid {
    margin-top: 2rem;
    padding-top: 1.8rem;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-email {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .section {
    padding: 3.35rem 0;
  }

  .section--hero {
    padding-top: 4.6rem;
  }

  .hero-stage {
    width: 100%;
    min-height: clamp(480px, 76svh, 660px);
    border-radius: 0;
  }

  body.page-home.has-immersive-hero .site-header__bar {
    margin-top: 0.35rem;
    border-radius: 18px;
  }

  body.page-home.has-immersive-hero .hero-stage {
    width: 100%;
  }

  .hero-stage__media {
    height: clamp(480px, 76svh, 660px);
  }

  .hero-stage::after {
    background:
      linear-gradient(180deg, rgba(3, 14, 15, 0.14) 0%, rgba(3, 14, 15, 0.18) 30%, rgba(3, 14, 15, 0.82) 100%),
      linear-gradient(90deg, rgba(3, 14, 15, 0.7) 0%, rgba(3, 14, 15, 0.28) 44%, rgba(3, 14, 15, 0.08) 78%);
  }

  .hero-stage__overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1.15rem;
    max-width: 24rem;
  }

  .hero-stage__title {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero-stage__body {
    max-width: 22ch;
    font-size: 0.98rem;
  }

  .hero-summary {
    margin-top: 1.15rem;
    gap: 1.15rem;
  }

  .hero-summary__intro {
    padding: 0.15rem 0 0.15rem;
  }

  .hero-summary__services {
    gap: 1.1rem;
  }

  .hero-service-grid,
  .hero-highlight-list--grid,
  .hero-highlight-list--stack {
    grid-template-columns: 1fr;
  }

  .hero-service-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 0.75rem;
    width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-service-carousel__controls {
    display: flex;
  }

  .hero-service-strip__item,
  .hero-service-strip__image {
    min-height: 210px;
  }

  .hero-service-strip__caption,
  .hero-service-strip__body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-service-strip__caption {
    font-size: 1.1rem;
  }

  .hero-service-strip__body p {
    font-size: 0.98rem;
  }

  .section__title {
    font-size: clamp(1.95rem, 9vw, 2.9rem);
  }

  .button-row,
  .footer-locations {
    flex-direction: column;
    align-items: stretch;
  }

  .content-hub-card,
  .content-comparator,
  .solutions-segment {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .solutions-segment__panel,
  .content-comparator__block {
    padding: 1rem;
  }

  .site-header {
    padding-top: 0;
  }

  .site-header__bar {
    gap: 0.65rem;
    width: calc(100% - 0.5rem);
    min-height: 4rem;
    padding: 0.7rem 0.8rem;
  }

  .brand__name {
    font-size: 1.18rem;
  }

  .button {
    width: 100%;
  }

  .header-action-link {
    min-height: 2.85rem;
    padding-inline: 0.9rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .site-nav-panel {
    top: calc(env(safe-area-inset-top, 0px) + 4.5rem);
    left: 0.5rem;
    right: 0.5rem;
    max-height: calc(100dvh - 5.1rem);
  }

  .visual-card {
    min-height: 320px;
  }

  .hero-panel__overlay-copy {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    max-width: 22rem;
  }

  .site-footer__title {
    max-width: 100%;
  }

  .site-footer__lead {
    max-width: 100%;
  }

  .site-footer__cta-card {
    padding: 0.95rem;
    border-radius: 20px;
  }

  .site-footer__cta-inline {
    gap: 0.65rem;
  }

  .site-footer__cta-copy {
    max-width: 100%;
    font-size: 0.93rem;
  }

  .site-footer__grid {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    gap: 0.95rem;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.55rem;
  }

  .assistant-dock {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    justify-items: stretch;
  }

  .assistant-dock__launcher {
    width: 100%;
    justify-content: center;
  }

  .assistant-dock__panel {
    width: 100%;
  }

  .assistant-dock__panel-body,
  .assistant-dock__panel-body iframe {
    min-height: 62vh;
  }

  .hero-panel__figure,
  .hero-panel__media {
    min-height: 380px;
  }

  .location-card__map iframe {
    height: 220px;
  }

  .location-card__body {
    padding: 1.15rem;
  }

  .consent-banner {
    inset: auto 0.75rem 0.75rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .site-header__bar {
    gap: 0.5rem;
    padding: 0.68rem 0.72rem;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .header-action-link {
    padding-inline: 0.8rem;
    font-size: 0.86rem;
  }

  .social-link {
    width: 2.9rem;
    height: 2.9rem;
  }

  .social-link svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .nav-toggle {
    width: 2.95rem;
    height: 2.95rem;
  }

  .hero-stage {
    min-height: clamp(430px, 72svh, 580px);
  }

  .hero-stage__media {
    height: clamp(430px, 72svh, 580px);
  }

  .hero-stage__overlay {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 1rem;
  }

  .hero-stage__title {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
  }

  .hero-stage__body {
    font-size: 0.94rem;
  }

  .hero-summary__title {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .section__lead {
    font-size: 1rem;
  }

  .breadcrumbs {
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
  }

  .tag-row {
    gap: 0.45rem;
  }

  .tag-pill {
    min-height: 1.85rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.78rem;
  }

  .hero-service-strip {
    grid-auto-columns: 100%;
  }

  .hero-service-strip__item {
    border-radius: 22px;
  }

  .hero-capability-card strong {
    font-size: 1.15rem;
  }

  .location-card__map iframe {
    height: 200px;
  }

  .site-footer {
    padding: 2.4rem 0 1.15rem;
  }

  .site-footer__title {
    font-size: clamp(1.35rem, 6.8vw, 1.8rem);
  }

  .site-footer__cta-copy,
  .site-footer__lead,
  .site-footer__list a,
  .site-footer__bottom p {
    font-size: 0.94rem;
  }

  .assistant-dock__panel-body,
  .assistant-dock__panel-body iframe {
    min-height: 58vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
