/* Design tokens live in variables.css, which is imported first.
   Do not redeclare them here — add new tokens to that file. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  /* font-family:
  'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
    "Segoe UI",
    sans-serif; */
  font-family: "Montserrat", sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Navbar base. Sticky, with a scroll-shrink state (.is-scrolled).
   Three flex zones — brand / links / actions — so the bar reads as
   balanced rather than centred. Detailed link, dropdown, search and
   mobile styles live in the NAVIGATION block lower in this file. */
.navbar {
  display: flex;
  position: sticky;
  top: 0;
  z-index: var(--z-navbar);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 74px;
  padding: 15px clamp(20px, 4vw, 56px);
  background: #ffffff;
  transition:
    min-height var(--transition-normal),
    padding var(--transition-normal),
    background var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
  width: 100%;
}

/* On scroll: tighter, translucent with a blur, a soft shadow and a hairline. */
.navbar.is-scrolled {
  min-height: 60px;
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: var(--hairline);
  box-shadow: 0 6px 24px rgba(38, 101, 103, 0.09);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 10px;
  color: var(--ink-strong);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--mint));
  box-shadow: 0 6px 14px rgba(46, 150, 159, 0.28);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.4vw, 14px);
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
}

/* Actions zone (search + CTA), pinned to the right. */
.nav-actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: var(--space-3);
}

/* The CTA reuses the global Button; this only tunes its size for the bar. */
.nav-cta.btn {
  min-height: 42px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
}

.hero-section {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 640px;
  padding: 84px 0 126px;
  place-items: center;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  background: #ffffff;
  box-shadow: 0 22px 32px rgba(38, 101, 103, 0.28);
}

.hero-inner {
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-section h1 {
  margin: 0 auto;
  max-width: 1000px;
  color: #56595e;
  font-size: clamp(40px, 4.75vw, 75px);
  font-weight: 750;
  line-height: 0.9;
  letter-spacing: -3px;
}

.hero-line {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
}

.hero-line + .hero-line {
  margin-top: 12px;
}

.hero-section h1 em {
  color: var(--teal);
  /* font-style: italic; */
  margin-right: auto;
  text-align: left;
  min-width: 40vw;
  /* background-color: #50d990; */
}

.hero-section h1 .word {
  min-width: 23vw;
  text-align: right;
  /* background-color: #4bb0b5; */
  margin-left: auto;
}

.hero-copy {
  max-width: 660px;
  margin: 34px auto 0;
  color: #728187;
  font-size: 19px;
  font-weight: 450;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 45px;
  padding: 15px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 550;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--teal);
  /* box-shadow: 0 14px 24px rgba(45, 157, 165, 0.22); */
}

.btn-secondary {
  color: var(--teal-dark);
  background: #e8f7f4;
  border: 1px solid rgba(0, 128, 128, 0.24);
}

.dashboard-float-section {
  position: relative;
  bottom: 2rem;
  z-index: 0;
  min-height: 640px;
  margin-top: -48px;
  padding: 170px 24px 92px;
  background: linear-gradient(180deg, #55b6ba 0%, #72d6bd 100%);
}

.dashboard-stage {
  width: min(100%, 1010px);
  margin: 0 auto;
}

.floating-dashboard {
  animation: premiumFloat 6s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

/* Real product screenshot, shown plainly: soft shadow, consistent radius,
   responsive scaling (never stretches or crops). Shared by the hero
   showcase (Section 2) and the feature tabs (Section 5). */
.product-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: contain;
  box-shadow: var(--shadow-image);
}

.dashboard-image-frame {
  overflow: hidden;
  border: 1px solid rgba(170, 210, 213, 0.8);
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* Product-like dashboard surface used across the site; content adapts to the context supplied by each page. */
.product-dashboard {
  overflow: hidden;
  color: #63757a;
  background: #f8fbfb;
  text-align: left;
}
.product-dashboard-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid #e3eeee;
  color: #506066;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
}
.product-dashboard-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--mint));
  font-size: 8px;
}
.product-dashboard-search {
  min-width: 126px;
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid #e2eeee;
  border-radius: 5px;
  color: #a0afb2;
  font-weight: 600;
}
.product-dashboard-bar b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #61777c;
  font-size: 8px;
}
.product-dashboard-body {
  display: grid;
  grid-template-columns: 46px 1fr;
  min-height: 360px;
}
.product-dashboard-body aside {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 17px;
  padding-top: 20px;
  border-right: 1px solid #e3eeee;
  background: #fff;
}
.product-dashboard-body aside i {
  width: 15px;
  height: 3px;
  border-radius: 4px;
  background: #c5d7d8;
}
.product-dashboard-body aside i:first-child {
  background: var(--teal);
}
.product-dashboard-content {
  padding: 20px 22px;
}
.product-dashboard-heading,
.product-dashboard-heading > div,
.product-dashboard-chart > div,
.product-dashboard-table > div,
.product-dashboard-table p {
  display: flex;
  align-items: center;
}
.product-dashboard-heading {
  justify-content: space-between;
}
.product-dashboard-heading small {
  display: block;
  color: #94a5a8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.product-dashboard-heading strong {
  display: block;
  margin-top: 4px;
  color: #506066;
  font-size: 15px;
}
.product-dashboard-heading button {
  padding: 6px 8px;
  border: 1px solid #deebea;
  border-radius: 5px;
  color: #708186;
  background: #fff;
  font: inherit;
  font-size: 9px;
}
.product-dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.product-dashboard-kpis div {
  padding: 11px;
  border: 1px solid #e2eeee;
  border-radius: 6px;
  background: #fff;
}
.product-dashboard-kpis span,
.product-dashboard-kpis b,
.product-dashboard-kpis em {
  display: block;
}
.product-dashboard-kpis span {
  color: #93a2a6;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}
.product-dashboard-kpis b {
  margin-top: 5px;
  color: #506066;
  font-size: 15px;
}
.product-dashboard-kpis em {
  margin-top: 3px;
  color: var(--teal-dark);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.product-dashboard-chart {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #e2eeee;
  border-radius: 6px;
  background: #fff;
}
.product-dashboard-chart > div {
  justify-content: space-between;
}
.product-dashboard-chart > div span {
  color: #506066;
  font-size: 10px;
  font-weight: 800;
}
.product-dashboard-chart > div small {
  color: var(--teal-dark);
  font-size: 8px;
  font-weight: 800;
}
.product-dashboard-chart svg {
  display: block;
  width: 100%;
  height: 100px;
  margin-top: 5px;
}
.product-dashboard-chart path:first-child {
  stroke: var(--teal);
  stroke-width: 3;
}
.product-dashboard-chart path:last-child {
  fill: rgba(93, 195, 174, 0.16);
}
.product-dashboard-axis {
  display: flex;
  justify-content: space-between;
  color: #9aa9ac;
  font-size: 7px;
  font-weight: 700;
}
.product-dashboard-table {
  margin-top: 14px;
  padding: 11px 13px;
  border: 1px solid #e2eeee;
  border-radius: 6px;
  background: #fff;
}
.product-dashboard-table > div {
  justify-content: space-between;
  color: #506066;
  font-size: 10px;
}
.product-dashboard-table > div span {
  color: var(--teal-dark);
  font-size: 8px;
  font-weight: 800;
}
.product-dashboard-table p {
  gap: 7px;
  margin: 9px 0 0;
  color: #718287;
  font-size: 8px;
}
.product-dashboard-table p i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}
.product-dashboard-table p b {
  margin-left: auto;
  padding: 3px 5px;
  border-radius: 4px;
  color: var(--teal-dark);
  background: #eaf9f5;
  font-size: 7px;
}
.product-dashboard-table p small {
  color: #a4b0b2;
  font-size: 7px;
}

.dashboard-image-frame--large {
  height: auto;
  border-radius: 16px 16px 4px 4px;
}

.dashboard-image-frame--tabbed {
  height: 430px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 14px 42px rgba(43, 85, 94, 0.13);
}

@keyframes premiumFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.dashboard-mock {
  overflow: hidden;
  border: 1px solid rgba(170, 210, 213, 0.8);
  border-radius: 16px 16px 4px 4px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-mock--large {
  min-height: 408px;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  color: #9da8ad;
  background: #fbfdfd;
  font-size: 9px;
  font-weight: 700;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-red {
  background: #ff6b6b;
}

.dot-yellow {
  background: #ffd166;
}

.dot-green {
  background: #50d990;
}

.address {
  flex: 1;
  text-align: center;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 370px;
}

.dashboard-sidebar {
  padding: 22px 18px;
  border-right: 1px solid #e2eeee;
  background: #f8fcfc;
}

.portal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #36595f;
  font-size: 12px;
  font-weight: 900;
}

.portal-logo svg,
.sidebar-list svg,
.dashboard-head svg {
  color: var(--teal);
}

.sidebar-list {
  display: grid;
  gap: 6px;
}

.sidebar-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 32px;
  padding: 0 10px;
  border-radius: 5px;
  color: #83949a;
  font-size: 11px;
  font-weight: 800;
}

.sidebar-list .is-active {
  color: #fff;
  background: var(--teal);
}

.sidebar-list .is-active svg {
  color: #fff;
}

.dashboard-content {
  padding: 28px 30px 30px;
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.dashboard-head strong {
  display: block;
  color: #536268;
  font-size: 20px;
  font-weight: 900;
}

.dashboard-head small {
  display: block;
  margin-top: 5px;
  color: #9aa8ad;
  font-size: 11px;
  font-weight: 700;
}

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

.metric-tile {
  position: relative;
  min-height: 74px;
  padding: 15px 18px;
  border: 1px solid #dceaea;
  border-radius: 5px;
  background: #fff;
}

.metric-tile span {
  display: block;
  color: #849399;
  font-size: 10px;
  font-weight: 800;
}

.metric-tile strong {
  display: block;
  margin-top: 9px;
  color: #566268;
  font-size: 18px;
  font-weight: 900;
}

.metric-tile i {
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--teal);
  font-style: normal;
}

.chart-panel {
  height: 102px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid #e0eeee;
  border-radius: 5px;
  color: #7a8b91;
  font-size: 11px;
  font-weight: 900;
}

.chart-lines {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.chart-lines i {
  display: block;
  height: 1px;
  background: #e6f0f0;
}

.logos-section {
  padding: 84px 0 102px;
  background: #fff;
}

.section-center {
  text-align: center;
}

.section-center h2 {
  font-weight: 500;
}

.split-heading h2,
.tabs-section h2,
.performance-section h2,
.testimonials-section h2,
.faq-section h2,
.cta-section h2 {
  margin: 0;
  color: #545c61;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.logos-section h2 {
  max-width: 650px;
  margin: 0 auto;
  color: #8a999f;
  font-size: 14px;
  line-height: 1.5;
}

.logo-marquee {
  overflow: hidden;
  margin-top: 54px;
}

.logo1 {
    width: 100%;
    overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 100px;
  animation: marquee 46s linear infinite;
  margin-top: 30px;
}

.logo-marquee:hover .logo-track {
  /* animation-play-state: paused; */
}

@keyframes marquee {
  to {
    transform: translateX(-33.333%);
  }
}

.logo-card {
  display: grid;
  width: 100px;
  /* height: 70px; */
  place-items: center;
  /* overflow: hidden; */
  /* padding: 12px 18px; */
  /* border: 1px solid #edf2f2; */
  /* border-radius: 4px; */
  /* background: #f6f8f8; */
  /* box-shadow: 0 8px 18px rgba(63, 93, 100, 0.04); */
  user-select: none;
}

.logo-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.8;
  filter: grayscale(1);

  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.logo-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.features-section {
  padding: 174px 0 122px;
  background: var(--soft);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
  margin-bottom: 62px;
}

.split-heading > p {
  max-width: 470px;
  margin: 3px 0 0 auto;
  color: #6f8086;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 40px;
}

.feature-card {
  min-height: 246px;
  padding: 35px 38px 26px;
  border: 1px solid #e2ecec;
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--card-shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 18px 34px rgba(61, 93, 101, 0.12); */
}

.feature-card--half {
  grid-column: span 5;
}

.feature-card--wide {
  grid-column: span 7;
}

.feature-card--narrow {
  grid-column: span 3;
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: #bfdee2;
}

.feature-card h3 {
  margin: 35px 0 8px;
  color: #506066;
  font-size: 20px;
  font-weight: 650;
}

.feature-card p {
  max-width: 610px;
  margin: 0;
  color: #7c8d93;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.feature-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  align-items: end;
}

.feature-footer span {
  color: #8fa0a5;
  opacity: 0.3;
  font-size: 25px;
}

.feature-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 76px;
  color: #98a6ab;
  font-size: 12px;
  font-weight: 500;
}

.tabs-section {
  padding: 120px 0 124px;
  background: #fff;
}

.tabs-section .section-center p:nth-child(1) {
  max-width: 510px;
  margin: 18px auto 0;
  color: #2e969f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.tabs-section-para {
  margin: 10px auto 0 auto;
  max-width: 470px;
  color: #6f8086;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.tabs-wrap {
  width: min(100% - 48px, 1010px);
  margin-top: 54px;
}

.tab-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 720px);
  margin: 0 auto;
}

.tab-button {
  /* min-height: 69px; */
  padding: 12px 18px;
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  background: #f6ffff;
  cursor: pointer;
  text-align: left;
}

.tab-button:first-child {
  /* border-top-left-radius: 12px; */
}

.tab-button:last-child {
  /* border-top-right-radius: 12px; */
}

.tab-button strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.tab-button span {
  display: none;
  /* display: block; */
  margin-top: 4px;
  color: #88a1a5;
  font-size: 9px;
  font-weight: 500;
}

.tab-button.is-active {
  color: #fff;
  background: var(--teal);
}

.tab-button.is-active span {
  color: #dff8f8;
}

/* No overflow clip here — the screenshot carries its own radius, and
   clipping would cut off its soft shadow. A small gap separates the
   controls from the image. */
.tab-panel {
  margin-top: 22px;
}

.tab-fade {
  animation: tabFade 260ms ease both;
}

@keyframes tabFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.performance-section {
  max-width: 100vw;
  overflow: hidden;
  padding: 112px 0;
  color: #fff;
  background: linear-gradient(180deg, #4dabb0 0%, #70d8bd 100%);
}

.performance-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 80px;
  align-items: center;
}

.section-kicker.light {
  color: #eafffb;
}

.performance-section h2,
.cta-section h2 {
  color: #fff !important;
}

.performance-copy p:not(.section-kicker) {
  max-width: 455px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 30px;
  align-items: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  width: 100%;
  padding: 27px 27px 24px;
  border-radius: 7px;
  color: #5b666b;
  background: #fff;
  box-shadow: 0 16px 28px rgba(28, 93, 94, 0.15);
}

.stat-card:nth-child(2),
.stat-card:nth-child(4) {
  transform: translateY(42px);
}

.stat-card strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 0.88;
  color: #4bb0b5;
}

.stat-card strong span {
  display: block;
  margin-top: 4px;
  font-size: 35px;
}

.stat-card h3 {
  margin: 20px 0 5px;
  color: #4f5b60;
  font-size: 13px;
  font-weight: 700;
}

.stat-card p {
  margin: 0;
  color: #819096;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.52;
}

.testimonials-section {
  padding: 130px 0 126px;
  background: #fff;
}

.testimonials-section .section-center > p:not(.section-kicker) {
  max-width: 610px;
  margin: 18px auto 0;
  color: #7a8b91;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.testimonial-carousel {
  position: relative;
  margin-top: 60px;
  padding-inline: 22px;
}

.testimonial-window {
  overflow: hidden;
  padding: 4px;
}

.testimonial-track {
  display: flex;
  gap: 34px;
  transform: translateX(
    calc(var(--testimonial-index) * -1 * (((100% - 68px) / 3) + 34px))
  );
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 68px) / 3);
  min-height: 248px;
  padding: 28px 26px 24px;
  border: 1px solid #e3eeee;
  border-radius: 8px;
  background: #fff;
  /* box-shadow: var(--card-shadow); */
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d8e9e9;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 10px 24px rgba(61, 93, 101, 0.13);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.testimonial-arrow:hover {
  color: #fff;
  background: var(--teal);
  transform: translateY(-50%) scale(1.04);
}

.testimonial-arrow--prev {
  left: 0;
}

.testimonial-arrow--next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d3e5e6;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.testimonial-dots .is-active {
  width: 22px;
  background: var(--teal);
}

.testimonial-card::after {
  position: absolute;
  top: 0px;
  right: 24px;
  color: #d7e6e7;
  opacity: 0.3;
  content: "”";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 200px;
  line-height: 1;
}

.stars {
  color: var(--teal);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 40px 0 40px;
  color: #6d7d83;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.person > span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #d9e1e2;
}

.person strong {
  display: block;
  color: #556268;
  font-size: 12px;
  font-weight: 600;
}

.person small {
  display: block;
  margin-top: 3px;
  color: #94a3a8;
  font-size: 10px;
  font-weight: 500;
}

.faq-section {
  padding: 124px 0 120px;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
}

.faq-grid > div:first-child > p:not(.section-kicker) {
  max-width: 340px;
  margin: 24px 0 0;
  color: #7c8e94;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  padding-bottom: 10px;
  border-bottom: 1px solid #e2eeee;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  color: #697b81;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  color: #9caeb3;
  content: "+";
  font-size: 18px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -2px 0 18px;
  color: #899aa0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.cta-section {
  min-height: 448px;
  padding: 100px 0 92px;
  text-align: center;
  background: linear-gradient(180deg, #4db0b5 0%, #74d7bf 100%);
}

.cta-inner > p:not(.section-kicker) {
  max-width: 590px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
}

.email-form input {
  width: 260px;
  height: 43px;
  padding: 5px 20px;
  border: 0;
  border-radius: 999px;
  color: #59676b;
  background: #fff;
  outline: none;
  font-size: 14px;
}

.email-form input::placeholder {
  color: #a6b4b7;
  font-size: 14px;
}

.email-form button {
  width: 130px;
  height: 43px;
  border: 0;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease;
}

.email-form button:hover {
  transform: translateY(-2px);
}

.ds-section-header h2 {
  margin: auto;
  color: #545c61;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;  
}

.ds-section-header > p:not(.section-kicker) {
  max-width: 470px;
  margin: 24px 0 0;
  color: #6f8086;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.ds-section-header--center {
  text-align: center;
}

.ds-section-header--center > p:not(.section-kicker) {
  margin-inline: auto;
}

.ds-card {
  border: 1px solid #e2ecec;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--card-shadow);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.ds-card:hover {
  border-color: rgba(75, 176, 181, 0.38);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.ds-icon-badge {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: #fff;
  background: #bfdee2;
}

.ds-checklist {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.ds-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #627178;
  font-size: 16px;
  font-weight: 450;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 380ms ease,
    transform 380ms ease;
}

.ds-checklist.is-visible li {
  opacity: 1;
  transform: translateY(0);
}

.ds-checklist svg {
  color: var(--teal-dark);
  flex: 0 0 auto;
}

.ds-form-card {
  border: 1px solid #e0eeee;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 34px rgba(61, 93, 101, 0.1);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.ds-form-card:hover {
  border-color: rgba(75, 176, 181, 0.38);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.ds-field {
  display: grid;
  gap: 9px;
}

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

.ds-field span,
.contact-consent span {
  color: #5f7077;
  font-size: 13px;
  font-weight: 800;
}

.ds-field input,
.ds-field textarea {
  width: 100%;
  border: 1px solid #dceaea;
  border-radius: var(--radius-md);
  color: #59676b;
  background: #fbfdfd;
  outline: none;
  font-size: 14px;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.ds-field input {
  height: 48px;
  padding: 0 16px;
}

.ds-field textarea {
  min-height: 144px;
  padding: 14px 16px;
  resize: vertical;
}

.ds-field input:focus,
.ds-field textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(75, 176, 181, 0.12);
}

.ds-faq-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #e2eeee;
}

.ds-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0;
  border: 0;
  color: #697b81;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.ds-faq-trigger span {
  font-size: 15px;
  font-weight: 500;
}

.ds-faq-trigger::after {
  color: #9caeb3;
  content: "+";
  font-size: 18px;
}

.ds-faq-trigger[aria-expanded="true"]::after {
  content: "-";
}

.ds-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
}

.ds-faq-trigger[aria-expanded="true"] + .ds-faq-panel {
  grid-template-rows: 1fr;
}

.ds-faq-panel p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: #899aa0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.ds-faq-trigger[aria-expanded="true"] + .ds-faq-panel p {
  margin: -2px 0 18px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.cta-section .cta-actions .btn-primary {
  color: var(--teal-dark);
  background: #fff;
}

.cta-section .cta-actions .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
}

.about-page {
  overflow: hidden;
  background: #fff;
}

.about-hero {
  padding: 100px 0 150px;
  background: #fff;
  text-align: center;
}

.about-hero-inner h1 {
  margin: 0 auto;
  max-width: 880px;
  color: #56595e;
  font-size: clamp(38px, 4.1vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-hero-inner > p {
  max-width: 620px;
  margin: 42px auto 0;
  color: #6f8086;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.about-stats-band {
  padding: 92px 0 82px;
  color: #fff;
  background: linear-gradient(180deg, #4dabb0 0%, #74d7bf 100%);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: min(100%, 840px);
  margin: 0 auto;
}

.about-stat {
  text-align: center;
}

.about-stat strong,
.about-stat span {
  display: block;
}

.about-stat strong {
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 850;
  line-height: 1;
}

.about-stat span {
  margin-top: 12px;
  font-size: 23px;
  font-weight: 800;
}

.about-stats-inner > p {
  margin: 64px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.about-values {
  padding: 96px 0 122px;
  background: #fff;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 92px;
  align-items: start;
  max-width: 1000px;
}

.about-section-copy h2,
.about-team h2,
.about-why-copy h2 {
  margin: 0;
  color: #545c61;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 850;
  line-height: 1.02;
  text-transform: uppercase;
}

.about-section-copy > p:not(.section-kicker) {
  max-width: 340px;
  margin: 15px 0 0;
  color: #6f8086;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

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

.about-value-card {
  /* min-height: 190px; */
  padding: 42px 35px 28px;
  border: 1px solid #e2ecec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(61, 93, 101, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.about-value-card:nth-child(1),
.about-value-card:nth-child(3) {
  position: relative;
  bottom: 30px;
}

.about-value-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.05;
}

.about-value-card p {
  margin: 13px 0 0;
  color: #7c8d93;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.about-team {
  padding: 122px 0 128px;
  background: var(--soft);
}

.about-team .container {
  max-width: 1020px;
}

.about-team-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.about-team h2 {
  font-size: clamp(30px, 3vw, 43px);
}

.about-team-head p {
  max-width: 360px;
  margin: 30px 0 0;
  color: #6f8086;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.about-team-head a {
  margin-top: 9px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.about-team-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.about-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.74;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 9px 20px rgba(61, 93, 101, 0.08);
}

.about-team-card h3 {
  margin: 15px 0 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.about-team-card p {
  margin: 4px 0 0;
  color: #7c8d93;
  font-size: 10px;
  font-weight: 700;
}

.about-why {
  padding: 142px 0 136px;
  background: #fff;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 82px;
  align-items: center;
  max-width: 1080px;
}

.about-dashboard-wrap {
  position: relative;
  display: grid;
  min-height: 360px;
  align-items: center;
}

.about-dashboard-orb {
  position: absolute;
  inset: auto 22% -12% auto;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #dff3f2;
}

.about-dashboard-wrap .floating-dashboard {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
}

.dashboard-image-frame--about {
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(32, 83, 87, 0.12);
}

.about-why-copy .section-kicker {
  font-size: 15px;
}

.about-why-copy h2 {
  max-width: 460px;
  font-size: clamp(32px, 3.2vw, 46px);
  text-transform: none;
}

.about-why-copy ul {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.about-why-copy li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #627178;
  font-size: 17px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 380ms ease,
    transform 380ms ease;
}

.about-why.is-visible li {
  opacity: 1;
  transform: translateY(0);
}

.about-why-copy li span {
  color: #4e555a;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.about-cta {
  min-height: 526px;
  padding: 115px 0 116px;
}

.contact-page {
  overflow: hidden;
  background: #fff;
}

.fade-up {
  animation: contactFadeUp 680ms ease both;
}

@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-hero {
  padding: 100px 0 150px;
  background: #fff;
  text-align: center;
}

.contact-hero-inner h1 {
  max-width: 890px;
  margin: 0 auto;
  color: #56595e;
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-hero-inner > p:not(.section-kicker) {
  max-width: 710px;
  margin: 32px auto 0;
  color: #6f8086;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-info-section {
  padding: 42px 0 112px;
  background: #fff;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-info-card {
  min-height: 214px;
  padding: 32px 28px 28px;
  border: 1px solid #e2ecec;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--card-shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.contact-info-card:hover,
.contact-form:hover,
.map-placeholder:hover {
  border-color: rgba(75, 176, 181, 0.38);
  box-shadow: 0 18px 34px rgba(61, 93, 101, 0.13);
  transform: translateY(-4px);
}

.contact-card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #bfdee2;
}

.contact-info-card h2 {
  margin: 28px 0 12px;
  color: #506066;
  font-size: 20px;
  font-weight: 850;
}

.contact-info-card p {
  margin: 4px 0 0;
  color: #7c8d93;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-form-section {
  padding: 124px 0;
  background: var(--soft);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 86px;
  align-items: start;
}

.contact-form-copy h2,
.contact-office-copy h2,
.contact-faq h2 {
  margin: 0;
  color: #545c61;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 850;
  line-height: 1.02;
}

.contact-form-copy > p:not(.section-kicker),
.contact-office-copy > p {
  max-width: 470px;
  margin: 28px 0 0;
  color: #6f8086;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.contact-form-copy ul {
  display: grid;
  gap: 15px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.contact-form-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5f7077;
  font-size: 15px;
  font-weight: 700;
}

.contact-form-copy li svg,
.tick svg {
  color: var(--teal-dark);
}

.contact-form {
  padding: 34px;
  border: 1px solid #e0eeee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(61, 93, 101, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

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

.contact-field {
  display: grid;
  gap: 9px;
}

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

.contact-field span,
.contact-consent span {
  color: #5f7077;
  font-size: 13px;
  font-weight: 800;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #dceaea;
  border-radius: 7px;
  color: #59676b;
  background: #fbfdfd;
  outline: none;
  font-size: 14px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-field input {
  height: 48px;
  padding: 0 16px;
}

.contact-field textarea {
  min-height: 144px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(75, 176, 181, 0.12);
}

.contact-consent {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 23px;
}

.contact-consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--teal);
}

.contact-submit {
  width: 100%;
  margin-top: 28px;
  border: 0;
  cursor: pointer;
}

.contact-office {
  padding: 124px 0;
  background: #fff;
}

.contact-office-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 86px;
  align-items: center;
}

.office-detail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  padding: 18px 20px;
  border: 1px solid #e0eeee;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.office-detail svg {
  color: var(--teal-dark);
}

.office-detail strong,
.office-detail span {
  display: block;
}

.office-detail strong {
  color: #506066;
  font-size: 14px;
  font-weight: 900;
}

.office-detail span {
  margin-top: 4px;
  color: #7c8d93;
  font-size: 13px;
  font-weight: 700;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #dceaea;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(75, 176, 181, 0.14),
      rgba(115, 212, 188, 0.18)
    ),
    #f8fcfc;
  box-shadow: 0 16px 34px rgba(61, 93, 101, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75, 176, 181, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 176, 181, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 28%, transparent 72%);
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  width: 72%;
  height: 1px;
  background: rgba(46, 150, 159, 0.16);
  content: "";
}

.map-placeholder::before {
  transform: rotate(26deg);
}

.map-placeholder::after {
  transform: rotate(-18deg);
}

.map-pin-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  min-width: 210px;
  padding: 28px;
  border: 1px solid #dceaea;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(61, 93, 101, 0.14);
  backdrop-filter: blur(12px);
}

.map-pin-card span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--mint));
}

.map-pin-card strong {
  margin-top: 18px;
  color: #506066;
  font-size: 24px;
  font-weight: 900;
}

.map-pin-card p {
  margin: 5px 0 0;
  color: #7c8d93;
  font-size: 14px;
  font-weight: 800;
}

.contact-faq {
  padding: 124px 0;
  /* background: var(--soft); */
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 74px;
  align-items: start;
}

.contact-accordion {
  display: grid;
  gap: 12px;
}

.contact-accordion-item {
  border: 1px solid #e0eeee;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.contact-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  padding: 0 24px;
  border: 0;
  color: #5f7077;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.contact-accordion-trigger span {
  font-size: 16px;
  font-weight: 850;
}

.contact-accordion-trigger svg {
  flex: 0 0 auto;
  color: var(--teal-dark);
  transition: transform 220ms ease;
}

.contact-accordion-item.is-open .contact-accordion-trigger svg {
  transform: rotate(180deg);
}

.contact-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.contact-accordion-item.is-open .contact-accordion-panel {
  grid-template-rows: 1fr;
}

.contact-accordion-panel p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: #7c8d93;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.contact-accordion-item.is-open .contact-accordion-panel p {
  padding-bottom: 24px;
}

.contact-cta {
  min-height: 470px;
  padding: 105px 0 102px;
}

.contact-cta .cta-inner h2 {
  max-width: 810px;
  margin-inline: auto;
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.contact-cta-actions .btn-primary {
  color: var(--teal-dark);
  background: #fff;
}

.contact-cta-actions .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
}

.services-page {
  overflow: hidden;
  background: #fff;
}


.services-hero {
  padding: 50px 0 50px;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px;
}

.services-hero-grid {
  /* display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center; */
  display: flex;
}

.services-hero-copy, .floating-dashboard {
  /* width: 50%; */
}

.services-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #56595e;
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.services-hero-copy p {
  /* max-width: 640px; */
  /* margin: 32px 0 0; */
  /* color: #6f8086; */
  /* font-size: 17px; */
  /* font-weight: 500; */
  /* line-height: 1.7; */
}

.services-hero-copy .hero-actions {
  justify-content: flex-start;
}

.services-hero-dashboard,
.services-dashboard-panel {
  width: 100%;
}

.services-section {
  padding: 124px 0;
}

.services-categories,
.services-industries,
.services-proof {
  background: var(--soft);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 62px;
}

.service-card {
  min-height: 390px;
}

.service-card .feature-footer {
  margin-top: auto;
}

.service-card,
.industry-card {
  display: flex;
  flex-direction: column;
  padding: 35px 38px 26px;
}

.service-card h3 {
  margin: 28px 0 8px;
  color: #506066;
  font-size: 20px;
  font-weight: 650;
}

.service-card > p {
  margin: 0;
  color: #7c8d93;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.service-card-checklist {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #607177;
  font-size: 12px;
  font-weight: 450;
}

.service-card-checklist svg {
  flex: 0 0 auto;
  color: var(--teal-dark);
}

.service-card-link {
  width: fit-content;
  min-height: 38px;
  margin-top: auto;
  padding: 10px 15px;
  font-size: 12px;
}

.industry-card {
  min-height: 230px;
}

.industry-card h3 {
  margin: 35px 0 8px;
  color: #506066;
  font-size: 20px;
  font-weight: 650;
}

.industry-card p {
  margin: 0;
  color: #7c8d93;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.services-split {
  /* display: grid;
  grid-template-columns: 1.08fr 0.92fr; */
  display: flex;
  flex-direction: row;
  gap: 82px;
  align-items: center;
}

.services-split--reverse {
  /* grid-template-columns: 0.92fr 1.08fr; */
}

.services-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.services-inline-cta {
  margin-top: 0;
}

.service-detail-hero .services-hero-grid {
  grid-template-columns: minmax(0, 760px);
}

.services-process {
  background: #fff;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 64px;
  align-items: center;
  justify-content: center;
}

.process-track::before {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(75, 176, 181, 0.36);
  content: "";
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 150px;
  padding: 27px 27px 24px;
  opacity: 0;
  animation: contactFadeUp 520ms ease forwards;
}

.process-card span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.process-card h3 {
  margin: 34px 0 0;
  color: #506066;
  font-size: 18px;
  font-weight: 800;
}

.services-proof-grid {
  margin-top: 62px;
}

.services-faq {
  background: #fff;
}

.services-testimonials {
  background: var(--soft);
}

.services-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 60px;
}

.services-testimonial-card {
  flex: initial;
}

.person > span img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.footer {
  padding: 86px 0 36px;
  background: #f4f8f9;
  border-top: 1px solid #e2eeee;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.55fr 0.82fr;
  gap: 62px;
  align-items: start;
}

.footer-brand p,
.footer-contact p {
  margin: 22px 0 0;
  color: #75868c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.footer-badges span {
  padding: 8px 12px;
  border: 1px solid #d7e8e8;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 11px;
  font-weight: 500;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.footer nav {
  display: grid;
  gap: 12px;
}

.footer h3 {
  margin: 0 0 7px;
  color: #516066;
  font-size: 13px;
  font-weight: 600;
}

.footer nav a,
.footer-bottom a {
  color: #7d8f95;
  font-size: 13px;
  font-weight: 500;
}

.footer nav a:hover,
.footer-bottom a:hover {
  color: var(--teal-dark);
}

.footer-contact {
  padding: 26px;
  border: 1px solid #deebeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.footer-contact p {
  margin-top: 10px;
}

.footer-contact .btn {
  width: 100%;
  margin-top: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  padding-top: 26px;
  border-top: 1px solid #dceaea;
}

.footer-bottom p {
  margin: 0;
  color: #87979d;
  font-size: 12px;
  font-weight: 500;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1024px) {
  /* Desktop links and actions give way to the hamburger menu. */
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hero-section {
    min-height: 650px;
    padding-top: 145px;
  }

  .dashboard-float-section {
    min-height: auto;
    padding: 120px 24px;
  }

  .dashboard-body {
    grid-template-columns: 170px 1fr;
  }

  .feature-grid,
  .split-heading,
  .performance-grid,
  .faq-grid,
  .about-values-grid,
  .about-why-grid,
  .contact-form-grid,
  .contact-office-grid,
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading > p {
    margin-left: 0;
  }

  .feature-card--half,
  .feature-card--wide,
  .feature-card--narrow {
    grid-column: span 10;
  }

  .performance-grid {
    gap: 54px;
  }

  .testimonial-track {
    transform: translateX(
      calc(var(--testimonial-index) * -1 * (((100% - 34px) / 2) + 34px))
    );
  }

  .testimonial-card {
    flex-basis: calc((100% - 34px) / 2);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-values-grid,
  .about-why-grid {
    gap: 54px;
  }

  .about-section-copy > p:not(.section-kicker) {
    max-width: 520px;
  }

  .about-dashboard-wrap {
    min-height: auto;
  }

  .about-dashboard-wrap .floating-dashboard {
    margin-inline: auto;
  }

  .contact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-grid,
  .contact-office-grid,
  .contact-faq-grid {
    gap: 54px;
  }

  .contact-form-copy > p:not(.section-kicker),
  .contact-office-copy > p {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 34px, 1180px);
  }

  .navbar {
    /* width: min(100% - 28px, 1120px); */
  }

  .brand {
    font-size: 12px;
  }

  .nav-cta {
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero-section {
    min-height: 600px;
    padding: 132px 0 118px;
  }

  .hero-copy {
    font-size: 15px;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
  }

  .email-form {
    /* flex-direction: column; */
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  .about-hero {
    padding: 100px 0 150px;
  }

  .about-hero-inner h1 br,
  .about-cta h2 br {
    display: none;
  }

  .about-hero-inner > p {
    margin-top: 28px;
    font-size: 15px;
    text-align: left;
  }

  .about-stats-band,
  .about-values,
  .about-team,
  .about-why,
  .about-cta,
  .contact-info-section,
  .contact-form-section,
  .contact-office,
  .contact-faq,
  .contact-cta {
    padding-block: 82px;
  }

  .contact-hero {
    padding: 100px 0 82px;
  }

  .contact-hero-inner h1 {
    font-size: 40px;
  }

  .contact-hero-inner > p:not(.section-kicker) {
    font-size: 15px;
  }

  .contact-card-grid,
  .contact-form-fields {
    grid-template-columns: 1fr;
  }

  .contact-field.is-full {
    grid-column: auto;
  }

  .contact-form {
    padding: 26px;
  }

  .map-placeholder {
    min-height: 340px;
  }

  .contact-cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
    margin-top: 34px;
  }

  .about-stats-grid,
  .about-value-cards,
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-card:nth-child(1),
  .about-value-card:nth-child(3) {
    bottom: 0px;
  }

  .about-stat span {
    font-size: 18px;
  }

  .about-stats-inner > p {
    margin-top: 46px;
  }

  .about-values-grid,
  .about-why-grid {
    gap: 42px;
  }

  .about-value-card {
    min-height: 170px;
    padding: 30px 24px 24px;
  }

  .about-team-head {
    align-items: flex-end;
  }

  .about-dashboard-orb {
    inset: auto 5% -8% auto;
    width: 72%;
  }

  .dashboard-float-section {
    padding-inline: 16px;
  }

  .dashboard-mock,
  .dashboard-image-frame {
    border-radius: 12px 12px 4px 4px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-content {
    padding: 22px 18px 24px;
  }

  .metric-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  .tab-list .tab-button:nth-child(3) {
    display: none;
  }

  .logo-track {
    gap: 24px;
  }

  .logos-section,
  .features-section,
  .tabs-section,
  .testimonials-section,
  .faq-section {
    padding-block: 82px;
  }

  .feature-grid {
    gap: 22px;
  }

  .feature-card {
    min-height: 220px;
    padding: 28px 24px 24px;
  }

  .tab-button:first-child,
  .tab-button:last-child {
    border-radius: 0;
  }

  .tab-button:first-child {
    /* border-top-left-radius: 10px;
    border-top-right-radius: 10px; */
  }

  .stat-card:nth-child(2),
  .stat-card:nth-child(4) {
    transform: none;
  }

  .testimonial-carousel {
    padding-inline: 0;
  }

  .testimonial-track {
    gap: 18px;
    transform: translateX(calc(var(--testimonial-index) * -1 * (100% + 18px)));
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .testimonial-arrow {
    top: auto;
    bottom: -7px;
    transform: none;
  }

  .testimonial-arrow:hover {
    transform: scale(1.04);
  }

  .testimonial-arrow--prev {
    left: 28px;
  }

  .testimonial-arrow--next {
    right: 28px;
  }

  .testimonial-dots {
    margin-top: 34px;
  }

  .footer-main,
  .footer-links,
  .footer-bottom,
  .footer-bottom div {
    grid-template-columns: 1fr;
    flex-direction: column;
    /* text-align: center; */
  }

  .footer-bottom div  {
    flex-direction: row;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-badges {
    /* justify-content: center; */
  }

  .footer-contact {
    text-align: center;
  }

  .service-card-checklist {
    margin: 22px 0;
  }
}

/* Distinct reusable product-story layouts. */
.conversation-showcase {
  padding: 124px 0;
  color: #fff;
  background: linear-gradient(180deg, #4dabb0 0%, #70d8bd 100%);
}

.conversation-showcase-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 82px;
  align-items: center;
}

.conversation-showcase .ds-section-header h2 {
  color: #fff;
}

.conversation-showcase .ds-section-header > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.86);
}

.conversation-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: #edf5f4;
  box-shadow: var(--shadow);
}

.conversation-bar,
.conversation-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  color: #526268;
  background: #fff;
}

.conversation-bar > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.conversation-bar strong,
.conversation-bar small {
  display: block;
}

.conversation-bar strong {
  font-size: 13px;
}
.conversation-bar small {
  margin-top: 2px;
  color: #7c8d93;
  font-size: 10px;
}

.conversation-messages {
  display: grid;
  gap: 13px;
  min-height: 312px;
  padding: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.26)),
    #d8ece7;
}

.chat-bubble {
  display: flex;
  align-items: end;
  gap: 7px;
  width: fit-content;
  max-width: 78%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 8px;
  color: #506066;
  background: #fff;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.45;
}

.chat-bubble--out {
  justify-self: end;
  background: #d5f2e7;
}

.chat-bubble svg {
  color: var(--teal-dark);
}

.chat-media {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 11px 13px;
  border-radius: 8px;
  color: #536268;
  background: #fff;
  font-size: 11px;
  font-weight: 750;
}

.chat-media svg {
  color: var(--teal-dark);
}

.quick-replies {
  display: flex;
  gap: 9px;
  padding: 0 18px 14px;
  background: #edf5f4;
}

.quick-replies button {
  padding: 8px 10px;
  border: 1px solid rgba(46, 150, 159, 0.35);
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 11px;
  font-weight: 750;
}

.conversation-input {
  border-top: 1px solid #dceaea;
  color: #9aa8ad;
  font-size: 12px;
}
.conversation-input span {
  flex: 1;
}
.conversation-input svg:last-child {
  color: var(--teal-dark);
}
.conversation-actions {
  grid-column: 1;
  margin-top: -110px;
  display: none;
}

.feature-strips-section {
  padding: 124px 0;
  background: #fff;
}
.feature-strips-section .ds-section-header {
  max-width: 640px;
}
.feature-strips {
  margin-top: 60px;
  border-top: 1px solid #dceaea;
}
.feature-strip {
  display: grid;
  grid-template-columns: 58px 0.72fr 1.28fr;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #dceaea;
}
.feature-strip:nth-child(even) {
  padding-left: 12%;
}
.feature-strip h3 {
  margin: 0;
  color: #506066;
  font-size: 19px;
  font-weight: 750;
}
.feature-strip p {
  margin: 0;
  color: #728187;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.integration-showcase {
  padding: 124px 0;
  background: var(--soft);
}
.integration-showcase .ds-section-header {
  max-width: 720px;
  margin-inline: auto;
}
.integration-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 66px;
}
.integration-core {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--mint));
  box-shadow: var(--shadow);
  font-size: 18px;
  font-weight: 900;
}
.integration-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 92px;
  color: #627178;
  font-size: 12px;
  font-weight: 800;
}
.integration-item:not(:last-child)::after {
  position: absolute;
  width: 50px;
  height: 2px;
  background: rgba(75, 176, 181, 0.2);
  content: "";
  transform: translate(60px, 20px);
}

.delivery-journey {
  padding: 124px 0;
  background: var(--soft);
}
.delivery-journey .ds-section-header {
  max-width: 700px;
  margin-inline: auto;
}
.delivery-journey-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--journey-columns, 4), 1fr);
  gap: 24px;
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
}
.delivery-journey-flow::before {
  position: absolute;
  top: 58px;
  left: 11%;
  right: 11%;
  height: 1px;
  background: rgba(75, 176, 181, 0.4);
  content: "";
}
.delivery-journey-flow li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}
.delivery-step-number {
  justify-self: start;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  display: none;
}
.delivery-step-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-top: 16px;
  place-items: center;
  border: 1px solid #dceaea;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
  box-shadow: var(--card-shadow);
}
.delivery-journey-flow strong {
  margin-top: 18px;
  color: #506066;
  font-size: 16px;
}
.delivery-journey-flow p {
  max-width: 180px;
  margin: 8px 0 0;
  color: #7c8d93;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.analytics-panel {
  overflow: hidden;
  padding: 28px;
  border: 1px solid #dceaea;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  width: 50%;
}
.analytics-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.analytics-panel-head strong,
.analytics-panel-head span {
  display: block;
}
.analytics-panel-head strong {
  color: #506066;
  font-size: 17px;
}
.analytics-panel-head span {
  margin-top: 5px;
  color: #8d9da2;
  font-size: 11px;
  font-weight: 700;
}
.analytics-panel-head b {
  color: var(--teal-dark);
  font-size: 14px;
}
.analytics-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 180px;
  margin-top: 30px;
  padding: 20px 0 0;
  border-bottom: 1px solid #dceaea;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 43px,
    #edf4f4 43px 44px
  );
}
.analytics-bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--mint), var(--teal));
}
.analytics-bars i:nth-child(1),
.analytics-bars i:nth-child(8) {
  height: 32%;
}
.analytics-bars i:nth-child(2),
.analytics-bars i:nth-child(7) {
  height: 48%;
}
.analytics-bars i:nth-child(3),
.analytics-bars i:nth-child(10) {
  height: 65%;
}
.analytics-bars i:nth-child(4),
.analytics-bars i:nth-child(9) {
  height: 52%;
}
.analytics-bars i:nth-child(5),
.analytics-bars i:nth-child(12) {
  height: 82%;
}
.analytics-bars i:nth-child(6),
.analytics-bars i:nth-child(11) {
  height: 72%;
}
.analytics-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  color: #7c8d93;
  font-size: 11px;
  font-weight: 700;
}
.analytics-summary b {
  display: block;
  margin-bottom: 4px;
  color: #506066;
  font-size: 15px;
}

.sms-hero {
  padding: 100px 0;
  width: fit-content;
  margin: auto;
}
.sms-impact {
  padding: 78px 0;
}
.sms-impact .about-stats-inner > p {
  max-width: 720px;
  margin: 30px auto 0px;
}
.sms-analytics-showcase {
  /* padding: 124px 0; */
  /* background: var(--soft); */
}
.sms-analytics-grid {
  /* display: grid;
  grid-template-columns: 0.82fr 1.18fr; */
  display: flex;
  flex-direction: row-reverse;
  gap: 82px;
  align-items: center;
}
.sms-analytics-copy {
  width: 50%;
}
.sms-analytics-copy h2 {
  margin: 0;
  color: #545c61;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 850;
  line-height: 0.98;
}
.sms-analytics-copy > p:not(.section-kicker) {
  max-width: 450px;
  margin: 24px 0 0;
  color: #728187;
  font-size: 15px;
  line-height: 1.7;
}
.sms-analytics-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.sms-analytics-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #627178;
  font-size: 14px;
  font-weight: 700;
}
.sms-analytics-copy svg {
  color: var(--teal-dark);
}

.comparison-section {
  padding: 124px 0;
  background: var(--soft);
}
.comparison-section .ds-section-header {
  max-width: 680px;
  margin-inline: auto;
}
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 58px;
  border: 1px solid #dceaea;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--card-shadow);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th,
.comparison-table td {
  padding: 19px 24px;
  border-bottom: 1px solid #e4eeee;
  color: #728187;
  font-size: 13px;
  font-weight: 600;
}
.comparison-table thead th {
  color: #506066;
  background: #f8fcfc;
  font-size: 13px;
  font-weight: 850;
}
.comparison-table thead th:last-child,
.comparison-table tbody td:last-child {
  color: var(--teal-dark);
  background: #f1faf8;
}
.comparison-table tbody th {
  color: #506066;
  font-weight: 800;
}
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1024px) {
  .conversation-showcase-grid,
  .sms-analytics-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .conversation-actions {
    grid-column: auto;
    margin-top: -28px;
  }
  .integration-rail {
    flex-wrap: wrap;
  }
  .integration-item::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .conversation-showcase,
  .feature-strips-section,
  .integration-showcase,
  .delivery-journey,
  .sms-analytics-showcase,
  .comparison-section {
    padding-block: 82px;
  }
  .feature-strip,
  .feature-strip:nth-child(even) {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding-left: 0;
  }
  .feature-strip p {
    grid-column: 2;
  }
  .delivery-journey-flow {
    grid-template-columns: 1fr 1fr;
  }
  .delivery-journey-flow::before {
    display: none;
  }
  .analytics-summary {
    grid-template-columns: 1fr;
  }
  .comparison-table th,
  .comparison-table td {
    min-width: 145px;
    padding: 15px;
  }
  .conversation-actions .btn {
    width: 100%;
  }
}

/* Reusable feature-grid and floating-stat presentation. */
.feature-grid-section {
  background: var(--soft);
}

.feature-grid-section .ds-section-header {
  max-width: 720px;
  margin-inline: auto;
}

.ds-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 62px;
}

.ds-feature-grid .feature-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.whatsapp-hero-visual {
  position: relative;
  /* bottom: -70px; */
}

.whatsapp-hero-grid {
  padding: 0;
  display: flex;
  flex-direction: row;
}

.whatsapp-problem {
  display: flex !important;
  flex-direction: row-reverse !important;
}

.floating-stat-badges {
  position: relative;
  /* bottom: -50px; */
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -20px 18px 0;
}

.floating-stat-badge {
  flex: 1 1 0;
  min-width: 0;
  padding: 15px 12px;
  border: 1px solid rgba(220, 233, 232, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
  text-align: center;
  animation: statFloat 5.5s ease-in-out infinite;
}

.floating-stat-badge:nth-child(2) {
  animation-delay: 700ms;
}

.floating-stat-badge:nth-child(3) {
  animation-delay: 1400ms;
}

.floating-stat-badge strong,
.floating-stat-badge span {
  display: block;
}

.floating-stat-badge strong {
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 850;
}

.floating-stat-badge span {
  margin-top: 4px;
  color: #7c8d93;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.25;
}

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

.whatsapp-why {
  background: #fff;
}

.whatsapp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  /* margin-top: 32px; */
}

.whatsapp-benefits-grid .feature-card {
  min-height: 190px;
  padding: 24px;
}

.whatsapp-benefits-grid .feature-card h3 {
  margin-top: 22px;
  font-size: 15px;
}

.whatsapp-benefits-grid .feature-card p {
  font-size: 12px;
}

.whatsapp-business-benefits,
.whatsapp-platform {
  background: #fff;
}

.whatsapp-use-cases {
  background: #fff;
}

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

@media (max-width: 768px) {
  .ds-feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 46px;
  }

  .floating-stat-badges {
    margin-inline: 6px;
  }

  .floating-stat-badge {
    padding: 12px 8px;
  }

  .floating-stat-badge strong {
    font-size: 17px;
  }

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

@media (max-width: 425px) {
  .navbar {
    min-height: 52px;
    padding: 8px 9px 8px 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero-section h1 {
    margin: 0 auto;
    max-width: 1000px;
    color: #56595e;
    font-size: 50px;
    font-weight: 750;
    line-height: 0.9;
    letter-spacing: -3px;
  }

  @media (max-width: 1024px) {
    .services-hero-grid,
    .services-split {
      grid-template-columns: 1fr;
      gap: 54px;
    }

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

    .process-track {
      grid-template-columns: repeat(3, 1fr);
    }

    .process-track::before {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .sms-hero-grid,
    .services-section {
      /* padding-block: 82px; */
      flex-direction: column;
    }

    .services-hero-copy {
      width: 100%;
    }

    .services-hero-copy h1 {
      font-size: 42px;
    }

    .services-split,
    .sms-analytics-grid {
      flex-direction: column;
    }

    .services-split dev:nth-child(1),
    .sms-analytics-copy,
    .analytics-panel {
      width: 100%;
    }

    .services-hero-copy,
    .floating-dashboard {
      width: 100%;
    }

    .services-hero-copy p {
      font-size: 15px;
    }

    .services-hero-copy .hero-actions,
    .services-dashboard-actions {
      align-items: stretch;
      flex-direction: column;
      max-width: 320px;
      margin-left: 0;
    }

    .services-card-grid {
      grid-template-columns: 1fr;
    }

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

    .process-card:nth-child(5) {
      position: relative;
      left: 50%;
    }

    .services-card-grid {
      gap: 22px;
      margin-top: 46px;
    }

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

    .hero-section {
      min-height: 560px;
      padding: 76px 0 110px;
    }

    .dashboard-float-section {
      min-height: 0;
      margin-top: -34px;
      padding: 130px 16px 70px;
    }

    .product-dashboard-bar {
      padding-inline: 10px;
    }

    .product-dashboard-search {
      display: none;
    }

    .product-dashboard-body {
      grid-template-columns: 32px 1fr;
      min-height: 280px;
    }

    .product-dashboard-body aside {
      gap: 13px;
      padding-top: 15px;
    }

    .product-dashboard-content {
      padding: 14px 12px;
    }

    .product-dashboard-kpis {
      gap: 5px;
    }

    .product-dashboard-kpis div {
      padding: 7px;
    }

    .product-dashboard-kpis b {
      font-size: 11px;
    }

    .product-dashboard-chart svg {
      height: 72px;
    }

    .product-dashboard-table p small,
    .product-dashboard-axis span:nth-child(even) {
      display: none;
    }
  }

  .hero-line {
    display: block;
    /* gap: 16px; */
  }

  /* Services overview: approved ecosystem and delivery-map composition. */
  .services-overview {
    overflow: hidden;
  }
  .services-overview-hero {
    position: relative;
    z-index: 2;
    min-height: 460px;
    padding: 112px 0 112px;
    border-radius: 0 0 26px 26px;
    background: #fff;
    box-shadow: none !important;
    text-align: center;
  }
  .services-overview-hero h1 {
    margin: 0;
    color: #53585d;
    font-size: clamp(38px, 4.35vw, 66px);
    font-weight: 850;
    line-height: 0.91;
    letter-spacing: -2.5px;
  }
  .services-overview-hero p {
    max-width: 780px;
    margin: 27px auto 0;
    color: #738389;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.58;
  }
  .services-overview-hero .hero-actions {
    margin-top: 30px;
  }
  .services-overview-hero .btn {
    min-height: 44px;
    padding: 12px 23px;
    font-size: 12px;
    font-weight: 750;
  }
  .services-overview-hero .btn-secondary {
    border: 0;
    color: var(--teal-dark);
    background: #e9f5f3;
  }

  .ecosystem-section {
    position: relative;
    z-index: 1;
    margin-top: -25px;
    padding: 130px 0 108px;
    background: linear-gradient(180deg, #54afb4 0%, #73d7bd 100%);
  }
  .ecosystem-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    gap: 110px;
    align-items: center;
    width: min(100% - 48px, 900px);
    min-height: 420px;
  }
  .ecosystem-column {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 21px;
  }
  .ecosystem-column--right {
    padding-top: 34px;
  }
  .ecosystem-node {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 11px 15px;
    border: 1px solid rgba(221, 236, 236, 0.95);
    border-radius: 7px;
    color: #61737a;
    background: #fff;
    box-shadow: 0 9px 15px rgba(37, 102, 103, 0.14);
  }
  .ecosystem-node svg {
    flex: 0 0 auto;
    color: #52747a;
  }
  .ecosystem-node b,
  .ecosystem-node small {
    display: block;
  }
  .ecosystem-node b {
    color: #596a70;
    font-size: 12px;
    font-weight: 800;
  }
  .ecosystem-node small {
    margin-top: 3px;
    color: #8a999d;
    font-size: 8px;
    font-weight: 650;
  }
  .ecosystem-core {
    position: relative;
    z-index: 2;
    display: grid;
    width: 156px;
    height: 156px;
    margin: auto;
    place-content: center;
    border: 9px solid rgba(222, 249, 244, 0.9);
    border-radius: 22px;
    outline: 1px solid rgba(255, 255, 255, 0.8);
    color: #526970;
    background: linear-gradient(135deg, #e8f9f7, #c7f2e9);
    box-shadow:
      0 14px 25px rgba(30, 101, 102, 0.23),
      inset 0 0 0 2px #e9fffb;
    text-align: center;
    animation: ecosystemFloat 5.5s ease-in-out infinite;
  }
  .ecosystem-core i {
    position: absolute;
    top: -18px;
    left: calc(50% - 17px);
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #59c7bf;
    box-shadow: 0 4px 11px rgba(30, 120, 118, 0.3);
  }
  .ecosystem-core strong {
    font-size: 13px;
    line-height: 1.05;
  }
  .ecosystem-core span {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 650;
  }
  .ecosystem-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .ecosystem-lines path {
    fill: none;
    stroke: rgba(239, 255, 252, 0.88);
    stroke-width: 2;
    stroke-dasharray: 680;
    stroke-dashoffset: 680;
    transition: stroke-dashoffset 1.3s ease;
  }
  .ecosystem-wrap.is-visible .ecosystem-lines path {
    stroke-dashoffset: 0;
  }
  .ecosystem-lines path:nth-child(2n) {
    transition-delay: 160ms;
  }
  .ecosystem-lines path:nth-child(3n) {
    transition-delay: 260ms;
  }
  @keyframes ecosystemFloat {
    50% {
      transform: translateY(-9px);
    }
  }

  .services-overview .services-section {
    padding: 104px 0 55px;
    background: var(--soft);
  }
  .services-overview .ds-section-header {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }
  .services-overview .section-kicker {
    /* margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800; */
  }
  .services-overview .ds-section-header h2 {
    margin: 0;
    color: #50565b;
    font-size: clamp(29px, 3.3vw, 46px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -1.5px;
  }
  .services-overview .ds-section-header > p:not(.section-kicker) {
    /* max-width: 460px;
    margin: 17px auto 0;
    color: #77868b;
    font-size: 12px;
    line-height: 1.55; */
  }
  .services-overview .services-card-grid {
    /* max-width: 930px; */
    gap: 20px;
    margin: 54px auto 0;
  }
  .services-overview .service-card {
    padding: 30px;
    /* min-height: 290px;
    border: 1px solid #e0eded;
    border-radius: 7px;
    box-shadow: 0 6px 17px rgba(64, 93, 100, 0.055);
    transition:
      transform 0.24s ease,
      box-shadow 0.24s ease,
      border-color 0.24s ease; */
  }
  .services-overview .service-card:hover {
    transform: translateY(-7px) scale(1.02);
    border-color: var(--teal);
    box-shadow: var(--shadow-hover);
  }
  .services-overview .feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
  }
  .services-overview .feature-icon svg {
    width: 15px;
    height: 15px;
  }
  .services-overview .service-card h3 {
    /* margin: 18px 0 8px;
    font-size: 13px;
    font-weight: 800; */
  }
  .services-overview .service-card > p {
    /* min-height: 38px;
    font-size: 10px;
    line-height: 1.45; */
  }
  .services-overview .service-card-checklist {
    gap: 5px;
    margin: 12px 0 13px;
  }
  .services-overview .service-card-checklist li {
    /* gap: 5px; */
    /* font-size: 9px; */
  }
  .services-overview .service-card-checklist svg {
    width: 11px;
    height: 11px;
  }
  .services-overview .service-card-link {
    /* gap: 4px;
    min-height: 28px;
    padding: 7px 10px;
    border: 0;
    border-radius: 4px;
    font-size: 8px;
    background: #e4f6f3; */
    margin-top: 10px;
  }
  .services-overview .service-card-link::after {
    /* content: "›";
    font-size: 13px;
    transition: transform 0.2s ease; */
  }
  .services-overview .service-card:hover .service-card-link::after {
    /* transform: translateX(4px); */
  }
  .services-grid-cta {
    padding: 0 0 100px;
    text-align: center;
  }
  .services-grid-cta .btn {
    min-height: 42px;
    padding: 12px 32px;
    font-size: 12px;
  }

  .services-process-new {
    padding: 105px 0 115px;
    background: #fff;
  }
  .process-heading {
    text-align: center;
  }
  .process-heading .section-kicker {
    margin-bottom: 11px;
    font-size: 12px;
    font-weight: 800;
  }
  .process-heading h2 {
    margin: 0;
    color: #50565b;
    font-size: clamp(29px, 3.2vw, 45px);
    font-weight: 850;
    letter-spacing: -1.5px;
  }
  .process-map {
    position: relative;
    max-width: 820px;
    height: 440px;
    margin: 56px auto 0;
  }
  .process-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .process-map path {
    fill: none;
    stroke: #b7c3c3;
    stroke-width: 2.25;
    stroke-dasharray: 12 10;
    stroke-dashoffset: 650;
    transition: stroke-dashoffset 1.7s ease;
  }
  .process-map.is-visible path {
    stroke-dashoffset: 0;
  }
  .process-step {
    position: absolute;
    display: grid;
    width: 170px;
    min-height: 90px;
    padding: 13px 16px;
    align-content: center;
    border: 1px solid #e0e6e7;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 5px 9px rgba(72, 82, 85, 0.1);
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.45s ease var(--delay),
      transform 0.45s ease var(--delay);
  }
  .process-map.is-visible .process-step {
    opacity: 1;
    transform: none;
  }
  .process-step span {
    color: #d8f0f2;
    font-size: 38px;
    font-weight: 850;
    line-height: 0.8;
  }
  .process-step strong {
    margin-top: 10px;
    color: #506066;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
  }
  .process-step--1 {
    top: 20px;
    left: 0;
  }
  .process-step--2 {
    top: 72px;
    right: 0;
  }
  .process-step--3 {
    top: 203px;
    left: 28px;
  }
  .process-step--4 {
    top: 245px;
    right: 42px;
  }
  .process-step--5 {
    bottom: 0;
    left: 38px;
  }

  .services-overview-faq {
    padding: 100px 0 105px;
  }
  .services-overview-faq .faq-grid {
    max-width: 1000px;
    gap: 90px;
  }
  .services-overview-faq .faq-grid > div:first-child > p:not(.section-kicker) {
    /* margin-top: 18px;
    font-size: 12px; */
  }
  .services-overview-faq .ds-section-header h2 {
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 0.98;
  }
  .services-overview-faq .faq-list {
    gap: 0;
  }
  .services-overview-faq .ds-faq-item {
    border-bottom: 1px solid #e3ecec;
  }
  .services-overview-faq .ds-faq-trigger {
    display: flex;
    width: 100%;
    min-height: 46px;
    padding: 12px 25px 12px 0;
    border: 0;
    color: #6f8085;
    background: transparent;
    font-size: 11px;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
  }
  .services-overview-faq .ds-faq-trigger::after {
    position: absolute;
    right: 2px;
    color: #9caeb3;
    content: "+";
    font-size: 16px;
  }
  .services-overview-faq .ds-faq-item {
    position: relative;
  }
  .services-overview-faq .ds-faq-trigger[aria-expanded="true"]::after {
    content: "−";
  }
  .services-overview-faq .ds-faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
  }
  .services-overview-faq .ds-faq-panel p {
    /* min-height: 0;
    margin: 0;
    overflow: hidden;
    color: #89999e;
    font-size: 10px;
    line-height: 1.55; */
  }
  .services-overview-faq .ds-faq-trigger[aria-expanded="true"] + .ds-faq-panel {
    grid-template-rows: 1fr;
  }
  .services-overview-faq
    .ds-faq-trigger[aria-expanded="true"]
    + .ds-faq-panel
    p {
    padding-bottom: 14px;
  }
  .services-overview-cta {
    min-height: 390px;
    padding: 88px 0 82px;
  }
  .services-overview-cta h2 {
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 0.98;
    letter-spacing: -1.4px;
  }
  .services-overview-cta .section-kicker {
    font-size: 12px;
  }
  .services-overview-cta .email-form {
    margin-top: 29px;
  }
  .services-overview-cta .email-form input,
  .services-overview-cta .email-form button {
    height: 38px;
    font-size: 10px;
  }
  .services-overview-cta .email-form button {
    /* width: 86px;
    border: 0;
    border-radius: 999px;
    color: var(--teal-dark);
    background: #fff;
    font-weight: 800; */
  }

  @media (max-width: 768px) {
    .services-overview-hero {
      min-height: 390px;
      padding: 90px 0 92px;
    }
    .services-overview-hero h1 {
      font-size: 42px;
    }
    .desktop-only {
      display: none;
    }
    .services-overview-hero p {
      max-width: 520px;
      font-size: 13px;
    }
    .ecosystem-section {
      padding: 95px 0 75px;
    }
    .ecosystem-wrap {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      min-height: 520px;
    }
    .ecosystem-core {
      position: absolute;
      top: calc(50% - 70px);
      left: calc(50% - 70px);
      width: 140px;
      height: 140px;
    }
    .ecosystem-lines {
      display: none;
    }
    .ecosystem-column {
      gap: 18px;
    }
    .ecosystem-column--right {
      padding-top: 44px;
    }
    .ecosystem-node {
      min-height: 58px;
      padding: 9px;
    }
    .ecosystem-node small {
      font-size: 7px;
    }
    .services-overview .services-section {
      padding-top: 75px;
    }
    .services-overview .services-card-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .process-map {
      height: 540px;
    }
    .process-map svg {
      display: none;
    }
    .process-step {
      width: calc(50% - 22px);
    }
    .process-step--1 {
      top: 0;
      left: 0;
    }
    .process-step--2 {
      top: 70px;
      right: 0;
    }
    .process-step--3 {
      top: 190px;
      left: 0;
    }
    .process-step--4 {
      top: 270px;
      right: 0;
    }
    .process-step--5 {
      bottom: 20px;
      left: 0;
    }
    .services-overview-faq .faq-grid {
      grid-template-columns: 1fr;
      gap: 38px;
    }
    .services-overview-faq
      .faq-grid
      > div:first-child
      > p:not(.section-kicker) {
      max-width: 470px;
    }
  }
  @media (max-width: 500px) {
    .services-overview-hero .hero-actions {
      flex-direction: column;
      /* gap: 9px; */
    }
    .services-overview-hero .btn {
      padding-inline: 15px;
      font-size: 10px;
    }
    .ecosystem-wrap {
      width: min(100% - 24px, 900px);
      gap: 8px;
    }
    .ecosystem-node {
      gap: 6px;
      padding: 7px;
    }
    .ecosystem-node svg {
      width: 13px;
    }
    .ecosystem-node b {
      font-size: 10px;
    }
    .ecosystem-node small {
      display: none;
    }
    .ecosystem-core {
      width: 112px;
      height: 112px;
      border-width: 6px;
      font-size: 10px;
    }
    .ecosystem-core strong {
      font-size: 10px;
    }
    .ecosystem-core span {
      font-size: 8px;
    }
    .services-overview .services-card-grid {
      grid-template-columns: 1fr;
    }
    .services-overview .service-card {
      /* min-height: 265px; */
    }
    .services-overview .ds-section-header h2,
    .process-heading h2 {
      font-size: 45px;
    }
    .services-grid-cta {
      padding-bottom: 70px;
    }
    .services-process-new {
      padding: 75px 0;
    }
    .services-overview-faq {
      padding: 75px 0;
    }
    .services-overview-cta {
      min-height: 355px;
      padding: 70px 0;
    }
    .services-overview-cta .email-form {
      gap: 9px;
    }
    .services-overview-cta .email-form input {
      width: 190px;
    }
    .ds-section-header h2 {
      font-size: 40px;
    }

    .services-hero-copy h1 {
      font-size: 40px;
    }

  }

  .hero-line + .hero-line {
    margin-top: 0px;
  }
  .hero-line {
    text-align: left;
  }

  .hero-section h1 em {
    color: var(--teal);
    /* font-style: italic; */
    margin-right: auto;
    text-align: left;
    min-width: 40vw;
    /* background-color: #50d990; */
  }

  .hero-section h1 .word {
    min-width: 23vw;
    text-align: right;
    /* background-color: #4bb0b5; */
    margin-left: auto;
  }
  .section-center h2 {
    font-size: 15px;
  }

  .split-heading h2,
  .tabs-section h2,
  .performance-section h2,
  .testimonials-section h2,
  .faq-section h2,
  .cta-section h2 {
    font-size: 40px;
  }

  .dashboard-image-frame--large,
  .dashboard-image-frame--tabbed {
    height: 360px;
  }

  .browser-bar {
    padding-inline: 10px;
  }

  .address {
    font-size: 7px;
  }

  .metric-tile {
    min-height: 66px;
  }

  .chart-panel {
    height: 88px;
  }

  /* .stat-card,
  .stat-card strong,
  .stat-card h3,
  .stat-card p
   {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100% !important;
  } */

  .stat-card strong {
    font-size: 36px;
  }

  .email-form input,
  .email-form button {
    width: 100%;
  }

  .about-hero-inner h1 {
    font-size: 40px;
    text-align: left;
  }

  .about-section-copy h2,
  .about-team h2,
  .about-why-copy h2 {
    font-size: 40px;
  }


  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-value-card {
    min-height: 150px;
  }

  .about-value-card:nth-child(1),
  .about-value-card:nth-child(3) {
    bottom: 0px;
  }

  .about-value-cards,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    padding-top: 74px;
  }

  .about-team-head {
    display: grid;
  }

  .about-team-head p {
    margin-top: 22px;
  }

  .about-team-head a {
    justify-self: start;
    margin-top: 0;
  }

  .about-team-grid {
    gap: 24px;
  }

  .about-team-card img {
    aspect-ratio: 1.1;
  }

  .about-why-copy li {
    font-size: 15px;
  }

  .contact-hero-inner h1,
  .contact-form-copy h2,
  .contact-office-copy h2,
  .contact-faq h2 {
    font-size: 40px;
  }

  .contact-info-card {
    min-height: 190px;
    padding: 28px 24px 24px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-consent {
    align-items: flex-start;
  }

  .map-placeholder {
    min-height: 300px;
  }

  .map-pin-card {
    min-width: 180px;
    padding: 24px;
  }

  .contact-accordion-trigger {
    min-height: 64px;
    padding-inline: 18px;
  }

  .contact-accordion-trigger span {
    font-size: 14px;
  }

  .contact-accordion-panel p {
    padding-inline: 18px;
  }
}

/* Keep overview rules last: this stylesheet contains legacy nested media blocks. */
.services-overview {
  overflow: hidden;
}
.services-overview-hero {
  position: relative;
  z-index: 2;
  min-height: 460px;
  padding: 112px 0;
  border-radius: 0 0 26px 26px;
  background: #fff;
  box-shadow: none;
  text-align: center;
}
.services-overview-hero h1 {
  margin: 0;
  color: #53585d;
  font-size: clamp(38px, 4.35vw, 66px);
  font-weight: 850;
  line-height: 0.91;
  letter-spacing: -2.5px;
}
.services-overview-hero p {
  margin: 27px auto 0;
  color: #728187;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 450;
  text-align: center;
}
.services-overview-hero .hero-actions {
  margin-top: 30px;
}
.services-overview-hero .btn {
  /* min-height: 44px;
  padding: 12px 23px; */
  font-size: 15px;
}
.services-overview-hero .btn-secondary {
  border: 0;
  background: #e9f5f3;
}
.ecosystem-section {
  position: relative;
  z-index: 1;
  margin-top: -25px;
  padding: 130px 0 108px;
  background: linear-gradient(180deg, #54afb4, #73d7bd);
}
.ecosystem-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 110px;
  align-items: center;
  width: min(100% - 48px, 900px);
  min-height: 420px;
}
.ecosystem-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 21px;
}
.ecosystem-column--right {
  padding-top: 34px;
}
.ecosystem-node {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 11px 15px;
  border: 1px solid #ddecec;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 9px 15px rgba(37, 102, 103, 0.14);
}
.ecosystem-node svg {
  flex: none;
  color: #52747a;
}
.ecosystem-node b,
.ecosystem-node small {
  display: block;
}
.ecosystem-node b {
  color: #596a70;
  font-size: 12px;
}
.ecosystem-node small {
  margin-top: 3px;
  color: #8a999d;
  font-size: 8px;
}
.ecosystem-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 156px;
  height: 156px;
  margin: auto;
  place-content: center;
  border: 9px solid #def9f4;
  border-radius: 22px;
  outline: 1px solid #fff;
  color: #526970;
  background: linear-gradient(135deg, #e8f9f7, #c7f2e9);
  box-shadow: 0 14px 25px rgba(30, 101, 102, 0.23);
  text-align: center;
  animation: ecosystemFloat 5.5s ease-in-out infinite;
}
.ecosystem-core i {
  position: absolute;
  top: -18px;
  left: calc(50% - 17px);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #59c7bf;
}
.ecosystem-core strong {
  font-size: 13px;
  line-height: 1.05;
}
.ecosystem-core span {
  margin-top: 4px;
  font-size: 10px;
}
.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ecosystem-lines path {
  fill: none;
  stroke: #effffc;
  stroke-width: 2;
  stroke-dasharray: 680;
  stroke-dashoffset: 680;
  transition: stroke-dashoffset 1.3s ease;
}
.ecosystem-wrap.is-visible .ecosystem-lines path {
  stroke-dashoffset: 0;
}
.services-overview .services-section {
  padding: 104px 0 55px;
  background: var(--soft);
}
.services-overview .ds-section-header {
  max-width: 700px;
  margin: auto;
}
.services-overview .section-kicker {
  /* font-size: 12px; */
}
.services-overview .ds-section-header h2,
.process-heading h2 {
  margin: 0;
  color: #50565b;
  font-size: clamp(29px, 3.3vw, 46px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -1.5px;
}
.services-overview .ds-section-header > p:not(.section-kicker) {
  /* max-width: 460px;
  margin: 17px auto 0;
  color: #77868b;
  font-size: 12px; */
}
.services-overview .services-card-grid {
  /* max-width: 930px; */
  gap: 20px;
  margin: 54px auto 0;
}
.services-overview .service-card {
  /* min-height: 290px;
  padding: 20px 19px 16px;
  border: 1px solid #e0eded;
  border-radius: 7px;
  box-shadow: 0 6px 17px rgba(64, 93, 100, 0.055);
  transition: 0.24s ease; */
}
.services-overview .service-card:hover {
  transform: translateY(-7px) scale(1.02);
  border-color: var(--teal);
  box-shadow: var(--shadow-hover);
}
.services-overview .feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}
.services-overview .feature-icon svg {
  width: 15px;
  height: 15px;
}
.services-overview .service-card h3 {
  /* margin: 18px 0 8px;
  font-size: 13px; */
}
.services-overview .service-card > p {
  /* min-height: 38px;
  font-size: 10px; */
}
.services-overview .service-card-checklist {
  gap: 5px;
  margin: 12px 0;
}
.services-overview .service-card-checklist li {
  /* font-size: 9px; */
}
.services-overview .service-card-link {
  /* min-height: 28px;
  padding: 7px 10px;
  border: 0;
  font-size: 8px;
  background: #e4f6f3; */
}
.services-grid-cta {
  padding: 0 0 100px;
  text-align: center;
}
.services-process-new {
  padding: 105px 0 115px;
  background: #fff;
}
.process-heading {
  text-align: center;
}
.process-map {
  position: relative;
  max-width: 820px;
  height: 440px;
  margin: 56px auto 0;
}
.process-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.process-map path {
  fill: none;
  stroke: #b7c3c3;
  stroke-width: 2.25;
  stroke-dasharray: 12 10;
  stroke-dashoffset: 650;
  transition: stroke-dashoffset 1.7s ease;
}
.process-map.is-visible path {
  stroke-dashoffset: 0;
}
.process-step {
  position: absolute;
  display: grid;
  width: 170px;
  min-height: 90px;
  padding: 13px 16px;
  align-content: center;
  border: 1px solid #e0e6e7;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 9px rgba(72, 82, 85, 0.1);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s ease var(--delay),
    transform 0.45s ease var(--delay);
}
.process-map.is-visible .process-step {
  opacity: 1;
  transform: none;
}
.process-step span {
  color: #d8f0f2;
  font-size: 38px;
  font-weight: 850;
  line-height: 0.8;
}
.process-step strong {
  margin-top: 10px;
  color: #506066;
  font-size: 11px;
  text-transform: uppercase;
}
.process-step--1 {
  top: 20px;
  left: 0;
}
.process-step--2 {
  top: 72px;
  right: 0;
}
.process-step--3 {
  top: 203px;
  left: 28px;
}
.process-step--4 {
  top: 245px;
  right: 42px;
}
.process-step--5 {
  bottom: 0;
  left: 38px;
}
.services-overview-faq {
  padding: 100px 0 105px;
}
.services-overview-faq .faq-grid {
  /* max-width: 1000px; */
  gap: 90px;
}
.services-overview-faq .ds-faq-item {
  position: relative;
  border-bottom: 1px solid #e3ecec;
}
.services-overview-faq .ds-faq-trigger {
  display: flex;
  width: 100%;
  min-height: 46px;
  padding: 12px 25px 12px 0;
  border: 0;
  color: #6f8085;
  background: transparent;
  font-size: 11px;
  text-align: left;
}
.services-overview-faq .ds-faq-trigger::after {
  position: absolute;
  right: 2px;
  content: "+";
}
.services-overview-faq .ds-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
}
.services-overview-faq .ds-faq-panel p {
  /* min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #89999e;
  font-size: 10px; */
}
.services-overview-faq .ds-faq-trigger[aria-expanded="true"] + .ds-faq-panel {
  grid-template-rows: 1fr;
}
.services-overview-faq .ds-faq-trigger[aria-expanded="true"] + .ds-faq-panel p {
  padding-bottom: 14px;
}
.services-overview-cta {
  min-height: 390px;
  padding: 88px 0 82px;
}
.services-overview-cta .email-form button {
  /* width: 86px;
  border: 0;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff; */
}
@media (max-width: 768px) {
  .services-overview-hero {
    min-height: 390px;
    padding: 90px 0;
  }
  .services-overview-hero h1 {
    font-size: 42px;
  }
  .desktop-only,
  .ecosystem-lines,
  .process-map svg {
    display: none;
  }
  .ecosystem-section {
    padding: 95px 0 75px;
  }
  .ecosystem-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-height: 520px;
  }
  .ecosystem-core {
    position: absolute;
    top: calc(50% - 70px);
    left: calc(50% - 70px);
    width: 140px;
    height: 140px;
  }
  .ecosystem-column {
    gap: 18px;
  }
  .ecosystem-column--right {
    padding-top: 44px;
  }
  .ecosystem-node {
    padding: 9px;
  }
  .ecosystem-node small {
    font-size: 7px;
  }
  .services-overview .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-map {
    height: 540px;
  }
  .process-step {
    width: calc(50% - 22px);
  }
  .process-step--1 {
    top: 0;
    left: 0;
  }
  .process-step--2 {
    top: 70px;
    right: 0;
  }
  .process-step--3 {
    top: 190px;
    left: 0;
  }
  .process-step--4 {
    top: 270px;
    right: 0;
  }
  .process-step--5 {
    bottom: 20px;
    left: 0;
  }
  .services-overview-faq .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
@media (max-width: 500px) {
  .services-overview .services-card-grid {
    grid-template-columns: 1fr;
  }
  .ecosystem-wrap {
    width: min(100% - 24px, 900px);
    gap: 8px;
  }
  .ecosystem-node {
    gap: 6px;
    padding: 7px;
  }
  .ecosystem-node small {
    display: none;
  }
  .ecosystem-node b {
    font-size: 10px;
  }
  .ecosystem-core {
    width: 112px;
    height: 112px;
    border-width: 6px;
  }
  .services-process-new {
    padding: 75px 0;
  }
  .services-overview-faq {
    padding: 75px 0;
  }
}

/* Services overview refinement: aligned SVG systems and responsive visual hierarchy. */
.services-overview-hero {
  min-height: 440px;
  padding: 104px 0 108px;
}
.services-overview-hero h1 {
  font-size: clamp(40px, 4.75vw, 75px);
  line-height: 0.96;
  font-weight: 750;
}
.services-overview-hero p {
  max-width: 660px;
  margin: 34px auto 0;
  color: #728187;
  font-size: 19px;
  font-weight: 450;
  line-height: 1.55
}
.services-overview-hero .btn,
.services-grid-cta .btn {
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 550;
  transition: transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.ecosystem-section {
  padding: 122px 0 104px;
}
.ecosystem-wrap {
  grid-template-columns: minmax(0, 1fr) 156px minmax(0, 1fr);
  gap: 80px;
  width: min(100% - 48px, 900px);
}
.ecosystem-column {
  gap: 21px;
}
.ecosystem-column--right {
  padding-top: 20px;
}
.ecosystem-node {
  min-height: 60px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
}
.ecosystem-node b {
  font-size: 12px;
  font-weight: 800;
}
.ecosystem-node small {
  font-size: 8px;
}
.ecosystem-lines {
  pointer-events: none;
}
.ecosystem-lines--mobile {
  display: none;
}
.ecosystem-lines path {
  stroke: rgba(243, 255, 253, 0.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}
.ecosystem-wrap.is-visible .ecosystem-lines path {
  stroke-dashoffset: 0;
}
.ecosystem-lines path:nth-child(2n) {
  transition-delay: 90ms;
}
.ecosystem-lines path:nth-child(3n) {
  transition-delay: 180ms;
}
.ecosystem-core {
  width: 156px;
  height: 156px;
  border-radius: 18px;
}
.services-overview .services-section {
  padding: 112px 0 56px;
}
.services-overview .services-card-grid {
  gap: 22px;
  margin-top: 56px;
}
.services-overview .service-card {
  /* min-height: 298px;
  padding: 22px 20px 17px; */
}
.services-overview .service-card h3 {
  /* margin-top: 17px; */
}
.services-overview .service-card > p {
  /* min-height: 42px;
  line-height: 1.55; */
}
.services-overview .service-card-checklist {
  margin: 13px 0;
}
.services-overview .service-card-link {
  /* margin-top: auto;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast); */
}
.services-overview .service-card:hover .service-card-link {
  /* transform: translateX(2px);
  background: #d9f3ef; */
}
.services-grid-cta {
  padding-bottom: 112px;
  background-color: var(--soft);
}
.services-process-new {
  padding: 112px 0 120px;
}
.process-map {
  max-width: 820px;
  height: 440px;
  margin-top: 60px;
}
.process-map svg {
  display: block;
}
.process-line--mobile {
  display: none !important;
}
.process-map path {
  stroke: #afbec0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 7 8;
  stroke-dashoffset: 560;
}
.process-step {
  min-height: 92px;
  border-radius: var(--radius-md);
}
.process-step--1 {
  top: 20px;
  left: 0;
}
.process-step--2 {
  top: 72px;
  right: 0;
}
.process-step--3 {
  top: 203px;
  left: 28px;
}
.process-step--4 {
  top: 245px;
  right: 42px;
}
.process-step--5 {
  bottom: 0;
  left: 38px;
}
.services-overview-faq {
  padding: 112px 0;
}
.services-overview-faq .faq-grid {
  gap: 82px;
}
.services-overview-cta {
  min-height: 400px;
  padding: 94px 0 88px;
}
@media (max-width: 1024px) {
  .ecosystem-wrap {
    gap: 48px;
    width: min(100% - 48px, 820px);
  }
  .ecosystem-section {
    padding-block: 104px 90px;
  }
  .services-overview .services-card-grid {
    /* max-width: 760px; */
  }
  .process-map {
    max-width: 760px;
  }
}
@media (max-width: 768px) {
  .services-overview-hero {
    min-height: 400px;
    padding: 88px 0 96px;
  }
  .services-overview-hero h1 {
    font-size: clamp(38px, 8vw, 50px);
  }
  .services-overview-hero p {
    max-width: 510px;
    font-size: 14px;
  }
  .ecosystem-section {
    padding: 92px 0 76px;
  }
  .ecosystem-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: min(100% - 40px, 620px);
    min-height: 520px;
  }
  .ecosystem-column {
    gap: 18px;
  }
  .ecosystem-column--right {
    padding-top: 44px;
  }
  .ecosystem-core {
    top: calc(50% - 70px);
    left: calc(50% - 70px);
  }
  .ecosystem-lines--desktop {
    display: none;
  }
  .ecosystem-lines--mobile {
    display: block;
  }
  .ecosystem-lines--mobile path {
    stroke-width: 1.75;
  }
  .services-overview .services-section {
    padding-top: 88px;
  }
  .services-overview .services-card-grid {
    max-width: 620px;
    gap: 18px;
  }
  .services-overview .service-card {
    /* min-height: 280px; */
  }
  .services-grid-cta {
    padding-bottom: 90px;
  }
  .services-process-new {
    padding: 90px 0;
  }
  .process-map {
    max-width: 620px;
    height: 540px;
    margin-top: 48px;
  }
  .process-line--desktop {
    display: none !important;
  }
  .process-line--mobile {
    display: block !important;
  }
  .process-map path {
    stroke-width: 1.8;
  }
  .process-step {
    width: calc(50% - 22px);
    min-height: 90px;
  }
  .process-step--1 {
    top: 0;
    left: 0;
  }
  .process-step--2 {
    top: 70px;
    right: 0;
  }
  .process-step--3 {
    top: 190px;
    left: 0;
  }
  .process-step--4 {
    top: 270px;
    right: 0;
  }
  .process-step--5 {
    bottom: 20px;
    left: 0;
  }
  .services-overview-faq {
    padding: 90px 0;
  }
  .services-overview-faq .faq-grid {
    gap: 42px;
  }
}
@media (max-width: 500px) {
  .services-overview-hero {
    min-height: 370px;
    padding: 78px 0 82px;
  }
  .services-overview-hero h1 {
    font-size: 40px;
    font-weight: 750;
    line-height: 0.9;
    letter-spacing: -3px;
    text-align: left;
  }
  .services-overview-hero p {
    max-width: 510px;
    font-size: 14px;
    text-align: left;
  }
  .services-overview-hero .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }
  .services-overview-hero .btn {
    /* min-height: 40px; */
    /* padding: 10px 14px; */
    font-size: 15px;
  }
  .ecosystem-wrap {
    width: min(100% - 24px, 460px);
    gap: 8px;
  }
  .ecosystem-node {
    min-height: 54px;
    padding: 8px;
  }
  .ecosystem-node svg {
    width: 13px;
  }
  .ecosystem-node b {
    font-size: 10px;
  }
  .ecosystem-node small {
    display: none;
  }
  .ecosystem-lines--mobile path {
    stroke-width: 1.5;
  }
  .ecosystem-core {
    width: 112px;
    height: 112px;
    border-width: 6px;
  }
  .ecosystem-core strong {
    font-size: 10px;
  }
  .ecosystem-core span {
    font-size: 8px;
  }
  .services-overview .services-section {
    padding-top: 76px;
  }
  .services-overview .services-card-grid {
    margin-top: 42px;
  }
  .services-overview .service-card {
    /* min-height: 265px;
    padding: 21px 20px 16px; */
  }
  .services-overview .ds-section-header {
    text-align: center;
  }
  .services-overview .ds-section-header h2,
  .process-heading h2 {
    font-size: 45px;
  }
  .services-grid-cta {
    padding-bottom: 76px;
  }
  .services-process-new {
    padding: 76px 0;
  }
  .process-map {
    height: 520px;
  }
  .process-step {
    width: calc(50% - 16px);
    padding: 12px;
  }
  .process-step span {
    font-size: 34px;
  }
  .process-step strong {
    font-size: 10px;
  }
  .services-overview-faq {
    padding: 76px 0;
  }
  .services-overview-cta {
    min-height: 360px;
    padding: 72px 0;
  }
}

/* Final composition: the delivery artwork is intentionally an unframed image. */
.services-overview-hero-grid {
  display: block;
  text-align: center;
}
.services-overview-hero-copy {
  max-width: 780px;
  margin: auto;
}
.ecosystem-column--mobile {
  display: none;
}
.services-process-new {
  padding: 124px 0;
  background: #fff;
}
.process-split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: center;
}
.process-copy {
  max-width: 385px;
}
.process-copy .section-kicker {
  margin-bottom: 14px;
}
.process-copy h2 {
  margin: 0;
  color: #56595e;
  font-size: clamp(38px, 3.5vw, 56px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -2px;
}
.process-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: #6f8086;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}
.process-artwork {
  min-width: 0;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease 180ms,
    transform 650ms ease 180ms;
}
.process-split.is-visible .process-artwork {
  opacity: 1;
  transform: none;
}
.process-artwork img {
  display: block;
  width: 100%;
  max-width: 810px;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(61, 93, 101, 0.12));
  animation: processArtworkFloat 6s ease-in-out infinite;
}
@keyframes processArtworkFloat {
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1024px) {
  .process-split {
    gap: 48px;
  }
  .process-copy h2 {
    font-size: clamp(36px, 4vw, 48px);
  }
  .process-copy > p:not(.section-kicker) {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .process-split {
    grid-template-columns: 1fr;
    gap: 52px;
    max-width: 620px;
  }
  .process-copy {
    max-width: 500px;
  }
  .process-copy h2 {
    font-size: 42px;
  }
  .process-artwork img {
    max-width: 620px;
    margin: auto;
  }
  .services-process-new {
    padding: 96px 0;
  }
}
@media (max-width: 600px) {
  .ecosystem-section {
    padding: 72px 0;
  }
  .ecosystem-wrap {
    display: flex;
    width: min(100% - 40px, 420px);
    min-height: 0;
    flex-direction: column;
    gap: 0;
  }
  .ecosystem-column--left,
  .ecosystem-column--right {
    display: none;
  }
  .ecosystem-column--mobile {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    gap: 12px;
  }
  .ecosystem-node {
    min-height: 54px;
    padding: 10px 13px;
  }
  .ecosystem-node small {
    display: block;
    font-size: 8px;
  }
  .ecosystem-core {
    position: relative;
    top: auto;
    left: auto;
    order: 3;
    width: 132px;
    height: 132px;
    margin: 30px auto 0;
    border-width: 7px;
  }
  .ecosystem-lines--desktop {
    display: none;
  }
  .ecosystem-lines--mobile {
    display: block;
    inset: 0;
    width: 100%;
    height: calc(100% - 12px);
  }
  .ecosystem-lines--mobile path {
    stroke-width: 2;
    stroke-dasharray: 760;
    stroke-dashoffset: 760;
  }
  .ecosystem-wrap.is-visible .ecosystem-lines--mobile path {
    stroke-dashoffset: 0;
  }
  .process-copy h2 {
    font-size: 38px;
  }
  .process-copy > p:not(.section-kicker) {
    margin-top: 22px;
    font-size: 15px;
  }
  .process-split {
    gap: 40px;
  }
  .services-process-new {
    padding: 82px 0;
  }
}
@media (max-width: 390px) {
  .ecosystem-wrap {
    width: min(100% - 28px, 420px);
  }
  .ecosystem-node {
    padding: 9px 11px;
  }
  .process-copy h2 {
    font-size: 35px;
  }
  .process-copy > p:not(.section-kicker) {
    font-size: 14px;
  }
}

/* ============================================================
   NAVIGATION  (desktop dropdown + mobile menu)
   ------------------------------------------------------------
   Replaces the old markup that rendered desktop links only and
   hid them below 1024px, leaving no navigation on mobile.
   All values come from variables.css.
   ============================================================ */

/* ---------- Links (pill hover + active) ---------- */

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: var(--radius-lg);
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.nav-link:hover {
  color: var(--ink-strong);
  background: var(--soft);
}

.nav-link.is-active {
  color: var(--teal-dark);
  /* background: var(--soft-2); */
}

/* Keep the bar opaque while the mobile menu is open, so the panel behind
   it is not visible through the scrolled translucent background. */
.navbar.is-open {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* ---------- Visible focus (keyboard) ---------- */

.nav-link:focus-visible,
.nav-dropdown-link:focus-visible,
.nav-search-trigger:focus-visible,
.nav-search-result:focus-visible,
.nav-toggle:focus-visible,
.nav-mobile-link:focus-visible,
.nav-cta:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.nav-search--desktop.is-expanded .nav-search-field:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(75, 176, 181, 0.16);
}

/* ---------- Desktop dropdown ---------- */

.nav-dropdown {
  position: relative;
}

/* Inherits sizing, colour, hover and active from .nav-link; this only
   resets native button chrome so the two read identically. */
.nav-dropdown-toggle {
  border: 0;
  font-family: inherit;
  cursor: pointer;
  background: none;
}

.nav-dropdown-toggle svg {
  transition: transform var(--transition-fast);
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  z-index: var(--z-menu);
  top: calc(100% + 14px);
  left: 50%;
  visibility: hidden;
  width: 262px;
  padding: var(--space-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-overlay);
  opacity: 0;
  transform: translate(-50%, -6px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast),
    visibility var(--transition-fast);
}

/* A hover bridge stops the panel closing in the gap below the toggle. */
.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
  content: "";
}

.nav-dropdown.is-open .nav-dropdown-panel {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  color: var(--body);
  font-size: var(--fs-sm);
  font-weight: 650;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.nav-dropdown-link:hover {
  color: var(--teal-dark);
  background: var(--soft);
}

.nav-dropdown-link.is-active {
  color: var(--teal-dark);
  background: var(--soft-2);
}

/* ---------- Search ---------- */

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-circle);
  color: var(--body);
  background: var(--surface);
  cursor: pointer;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.nav-search-trigger:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: var(--soft);
}

.nav-search--desktop.is-expanded .nav-search-trigger {
  display: none;
}

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

/* Desktop: the field expands out of the trigger. */
.nav-search--desktop .nav-search-field {
  width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--surface);
  opacity: 0;
  transition:
    width var(--duration-normal) var(--ease-out),
    padding var(--duration-normal) var(--ease-out),
    border-color var(--transition-fast),
    opacity var(--transition-fast);
}

.nav-search--desktop.is-expanded .nav-search-field {
  width: clamp(190px, 20vw, 250px);
  padding: 9px 14px;
  border-color: var(--line);
  opacity: 1;
}

.nav-search-field-icon {
  flex: none;
  color: var(--muted);
}

.nav-search-input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--ink-strong);
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}

.nav-search-input::placeholder {
  color: var(--muted);
}

.nav-search-input:focus {
  outline: none;
}

.nav-search-input::-webkit-search-cancel-button {
  display: none;
}

.nav-search-clear {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 0;
  border-radius: var(--radius-circle);
  color: var(--muted);
  background: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav-search-clear:hover {
  color: var(--ink-strong);
}

.nav-search-results {
  position: absolute;
  z-index: var(--z-menu);
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(320px, 78vw);
  margin: 0;
  padding: var(--space-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-overlay);
  list-style: none;
}

.nav-search-result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast);
}

.nav-search-result span {
  color: var(--ink-strong);
  font-size: var(--fs-sm);
  font-weight: 650;
}

.nav-search-result small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.nav-search-result:hover {
  background: var(--soft);
}

.nav-search-result:hover span {
  color: var(--teal-dark);
}

.nav-search-empty {
  padding: 12px;
  color: var(--muted);
  font-size: var(--fs-sm);
}

/* Mobile: an always-open field at the top of the panel. */
.nav-search--mobile {
  display: block;
  margin-bottom: var(--space-3);
}

.nav-search--mobile .nav-search-field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.nav-search--mobile .nav-search-results {
  position: static;
  width: 100%;
  margin-top: var(--space-2);
  border-color: var(--hairline);
  box-shadow: none;
}

/* ---------- Hamburger ---------- */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: var(--tap-target);
  height: var(--tap-target);
  margin-right: -8px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: none;
  cursor: pointer;
}

.nav-toggle-bars {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: 21px;
  height: 15px;
}

.nav-toggle-bars i {
  width: 100%;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--ink-strong);
  transition:
    transform var(--transition-normal),
    opacity var(--duration-fast) var(--ease);
}

/* Top and bottom bars cross; the middle fades out. */
.nav-toggle.is-open .nav-toggle-bars i:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bars i:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bars i:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- Mobile overlay + panel ---------- */

/* Both layers stay in the DOM so they can animate, so when closed they
   must be inert: `visibility: hidden` takes them out of the a11y tree and
   tab order, and `pointer-events: none` stops the transparent overlay
   swallowing clicks meant for the page underneath. */
.nav-overlay {
  display: none;
  position: fixed;
  z-index: var(--z-overlay);
  inset: 0;
  visibility: hidden;
  background: rgba(26, 62, 66, 0.42);
  opacity: 0;
  pointer-events: none;
  /* visibility is discrete: transitioning it directly leaves the layer
     stuck hidden. Flip it instantly on open, and hold it until after the
     fade has finished on close. */
  transition:
    opacity var(--transition-normal),
    visibility 0s linear var(--duration-normal);
}

.nav-mobile {
  display: none;
  position: fixed;
  z-index: var(--z-menu);
  top: 0;
  right: 0;
  left: 0;
  visibility: hidden;
  overflow-y: auto;
  max-height: 100dvh;
  padding: calc(var(--navbar-height) + var(--space-5)) var(--space-4) var(--space-6);
  background: var(--surface);
  box-shadow: var(--shadow-overlay);
  transform: translateY(-100%);
  transition:
    transform var(--duration-normal) var(--ease-out),
    visibility 0s linear var(--duration-normal);
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--tap-target);
  padding: 12px 12px;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--ink-strong);
  background: none;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.nav-mobile-link:hover {
  background: var(--soft);
}

.nav-mobile-link.is-active {
  color: var(--teal-dark);
  background: var(--soft-2);
}

.nav-mobile-cta {
  margin-top: var(--space-4);
  width: 100%;
}

/* ---------- Mobile services accordion ---------- */

.nav-accordion-toggle svg {
  transition: transform var(--transition-normal);
}

.nav-accordion.is-open .nav-accordion-toggle svg {
  transform: rotate(180deg);
}

/* grid-template-rows 0fr -> 1fr animates to auto height. */
.nav-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-normal) var(--ease-out);
}

.nav-accordion.is-open .nav-accordion-panel {
  grid-template-rows: 1fr;
}

.nav-accordion-inner {
  overflow: hidden;
}

.nav-accordion .nav-dropdown-list {
  gap: 2px;
  padding: var(--space-2) 0 var(--space-2) var(--space-3);
  margin-left: var(--space-3);
  border-left: 1px solid var(--line);
}

.nav-accordion .nav-dropdown-link {
  min-height: var(--tap-target);
  display: flex;
  align-items: center;
  font-size: 14px;
}

/* ---------- Breakpoint: swap desktop nav for the mobile menu ---------- */

@media (max-width: 1024px) {
  /* .nav-links is already hidden here by the layout rules above. */
  .nav-toggle {
    display: inline-flex;
  }

  .nav-overlay {
    display: block;
  }

  .nav-mobile {
    display: block;
  }

  /* No delay on the way in, so the layers appear as they animate. */
  .nav-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition:
      opacity var(--transition-normal),
      visibility 0s;
  }

  .nav-mobile.is-open {
    visibility: visible;
    transform: translateY(0);
    transition:
      transform var(--duration-normal) var(--ease-out),
      visibility 0s;
  }
}

@media (max-width: 425px) {
  /* The header CTA gives way to the one inside the menu. */
  .nav-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-mobile,
  .nav-overlay,
  .nav-accordion-panel,
  .nav-dropdown-panel,
  .nav-toggle-bars i {
    transition: none;
  }
}

/* ============================================================
   SOCIAL LINKS
   ============================================================ */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-circle);
  color: var(--teal-dark);
  background: var(--surface);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.social-link:hover {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-3px);
}

.social-link:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .social-link:hover {
    transform: none;
  }
}

/* ============================================================
   ABOUT — TEAM CARDS
   ------------------------------------------------------------
   Photo + name + position + short bio + LinkedIn.
   Replaces the generated SVG portrait placeholders.
   ============================================================ */

.about-team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.about-team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.about-team-photo {
  overflow: hidden;
  background: var(--soft-2);
}

.about-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  box-shadow: none;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about-team-card:hover img {
  transform: scale(1.04);
}

.about-team-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: var(--space-4);
}

.about-team-heading {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  justify-content: space-between;
}

.about-team-card h3 {
  margin: 0;
  color: var(--ink-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.about-team-card .about-team-role {
  margin: 3px 0 0;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
}

.about-team-card .about-team-bio {
  margin: 0;
  color: var(--body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.6;
}

.about-team-linkedin {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-circle);
  color: var(--teal-dark);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.about-team-linkedin:hover {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

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

@media (max-width: 560px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-team-card:hover,
  .about-team-card:hover img {
    transform: none;
  }
}

/* ============================================================
   LEGAL PAGES  (Privacy Policy, Terms of Service)
   ============================================================ */

.legal-page {
  background: var(--surface);
}

.legal-hero {
  padding: var(--section-md) 0 var(--section-sm);
  border-bottom: 1px solid var(--hairline);
  background: var(--soft);
}

.legal-hero h1 {
  margin: 0;
  max-width: 16ch;
  color: var(--ink-strong);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: var(--fw-display);
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-display);
}

.legal-intro {
  margin: var(--space-4) 0 0;
  max-width: var(--measure-body);
  color: var(--body);
  font-size: var(--fs-lede);
  font-weight: 500;
  line-height: var(--lh-body);
}

.legal-updated {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.legal-body {
  padding: var(--section-md) 0;
}

.legal-grid {
  display: flex;
  gap: var(--section-gap);
  align-items: flex-start;
}

.legal-toc {
  position: sticky;
  top: var(--space-6);
  flex: 0 0 240px;
}

.legal-toc-label {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
}

.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
  list-style: none;
}

.legal-toc a {
  display: block;
  padding-left: var(--space-3);
  color: var(--body);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.legal-toc a:hover {
  color: var(--teal-dark);
}

.legal-content {
  flex: 1;
  min-width: 0;
  max-width: 72ch;
}

.legal-content article + article {
  margin-top: var(--space-7);
}

.legal-content h2 {
  margin: 0 0 var(--space-3);
  color: var(--ink-heading);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-heading);
  scroll-margin-top: var(--space-6);
}

.legal-content p {
  margin: 0 0 var(--space-3);
  color: var(--body);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.8;
}

.legal-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 var(--space-4);
}

.legal-content li {
  color: var(--body);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.7;
}

.legal-content li::marker {
  color: var(--teal);
}

@media (max-width: 1024px) {
  .legal-grid {
    flex-direction: column;
    gap: var(--space-6);
  }

  .legal-toc {
    position: static;
    flex: none;
    width: 100%;
  }

  .legal-toc ul {
    flex-flow: row wrap;
    gap: 8px 18px;
    border-left: 0;
  }

  .legal-toc a {
    padding-left: 0;
  }
}
