:root {
  --bg: #f8f1e8;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffaf4;
  --text: #0a1455;
  --muted: #6d7391;
  --line: rgba(10, 20, 85, 0.12);
  --accent: #e68055;
  --accent-deep: #c86c44;
  --primary: #0a1455;
  --sand: #af8969;
  --mist: #bccddb;
  --shadow: 0 24px 60px rgba(10, 20, 85, 0.14);
  --card-radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-gutter: stable;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 20, 85, 0.34) rgba(10, 20, 85, 0.08);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  overflow-y: visible;
  background:
    radial-gradient(circle at top left, rgba(230, 128, 85, 0.2), transparent 26%),
    radial-gradient(circle at right 18%, rgba(188, 205, 219, 0.28), transparent 24%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 48%, #f2e7d8 100%);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 13px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: rgba(10, 20, 85, 0.28);
  border: 3px solid rgba(255, 250, 244, 0.96);
  border-radius: 999px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: rgba(10, 20, 85, 0.06);
}

html.modal-open,
body.modal-open {
  overflow: hidden;
}

body.modal-open {
  height: 100vh;
  overscroll-behavior: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 20, 85, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 20, 85, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
}

.page-shell {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  transition: filter 180ms ease, opacity 180ms ease;
  transform-origin: center top;
}

body.modal-open .page-shell {
  filter: blur(9px);
  opacity: 0.82;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  grid-column: 1 / -1;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(6px, 0.45vh + 0.22vw, 12px) clamp(14px, 1vw + 0.35vh, 24px);
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--card-radius);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: opacity 220ms ease, transform 220ms ease;
}

.topbar.is-hidden {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.brand,
.nav a,
.button,
.footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: min(clamp(182px, 10vw + 1.2vh, 238px), 42vw);
  height: auto;
}

.nav {
  display: flex;
  gap: clamp(10px, 0.6vw + 0.16vh, 16px);
  align-items: center;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(10, 20, 85, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(10, 20, 85, 0.06);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 16px;
}

.nav-toggle span:nth-child(2) {
  top: 23px;
}

.nav-toggle span:nth-child(3) {
  top: 30px;
}

.nav-toggle.is-open span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.nav a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 2.8vw + 0.2vh, 50px);
  padding: 0 clamp(14px, 1vw + 0.2vh, 20px);
  border-radius: 8px;
  color: var(--muted);
  font-size: clamp(0.84rem, 0.42vw + 0.14vh, 0.98rem);
  font-weight: 600;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  background: rgba(10, 20, 85, 0.06);
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-expanded="true"] {
  background: rgba(188, 205, 219, 0.38);
  color: var(--primary) !important;
  box-shadow: inset 0 0 0 1px rgba(10, 20, 85, 0.08);
}

.nav a.is-active,
.nav-dropdown-toggle.is-active,
.nav-dropdown-menu a.is-active {
  background: rgba(10, 20, 85, 0.1);
  color: var(--primary) !important;
  box-shadow: inset 0 0 0 1px rgba(10, 20, 85, 0.14);
}

.nav-dropdown-menu a.is-active {
  font-weight: 700;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(230, 128, 85, 0.18);
  color: var(--accent-deep);
}

.nav-dropdown {
  position: relative;
  z-index: 30;
}

.nav-dropdown-toggle {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 250px;
  display: grid;
  gap: 4px;
  padding: 18px 10px 10px;
  border: 1px solid rgba(10, 20, 85, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 40;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18px;
  transform: translateY(-100%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
}

.nav-dropdown-menu a:hover {
  background: rgba(10, 20, 85, 0.05);
}

section,
.footer {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--card-radius);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

@media (min-width: 1024px) {
  html {
    scroll-snap-type: none;
  }

  section,
  .footer,
  .client-carousel {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}

.hero {
  --hero-shell-padding: clamp(32px, 2.25vw + 0.9vh, 56px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 1vw + 0.55vh, 28px);
  min-height: 100svh;
  padding: 0 var(--hero-shell-padding) var(--hero-shell-padding);
  align-items: center;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero .topbar {
  margin-inline: calc(var(--hero-shell-padding) * -1);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  max-width: 14.2ch;
  font-size: clamp(2.45rem, 3.2vw + 1.2vh, 4.85rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.hero-line {
  display: inline;
}

.hero-line-desktop {
  display: none;
}

.hero-text {
  max-width: 52ch;
  margin: 30px 0 10px;
  color: var(--muted);
  font-size: clamp(0.98rem, 0.72vw + 0.28vh, 1.2rem);
  line-height: 1.64;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pillars a {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: clamp(40px, 3vw, 52px);
  padding: 0 clamp(16px, 1.5vw, 22px);
  border: 1px solid rgba(10, 20, 85, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.hero-pillars a::after {
  content: "";
  position: absolute;
  top: -24%;
  bottom: -24%;
  left: -34%;
  width: 42%;
  background: linear-gradient(
    108deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 36%,
    rgba(255, 255, 255, 0.26) 50%,
    rgba(230, 128, 85, 0.14) 62%,
    transparent 100%
  );
  transform: translateX(-220%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.hero-pillars a:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 128, 85, 0.35);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 24px rgba(10, 20, 85, 0.08);
}

.hero-pillars a:hover::after,
.hero-pillars a:focus-visible::after {
  opacity: 1;
  animation: panel-shimmer 980ms ease forwards;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  max-width: 100%;
}

.contact-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.contact-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(48px, 3.2vw, 58px);
  padding: 0 clamp(20px, 1.8vw, 28px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #f09a72);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(230, 128, 85, 0.28);
  font-size: clamp(1rem, 1vw, 1.08rem);
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
}

.hero-visual {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(10px, 0.8vw, 16px);
  min-height: clamp(440px, 38vw + 6vh, 760px);
  padding: clamp(18px, 1.6vw, 30px);
  border-radius: var(--card-radius);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(230, 128, 85, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 247, 239, 0.9));
}

.hero-graphic-caption {
  position: relative;
  z-index: 1;
}

.hero-graphic-caption p {
  margin: 0;
  color: var(--primary);
  font-size: clamp(0.98rem, 0.66vw + 0.18vh, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-knowledge-object {
  position: relative;
  z-index: 1;
  display: block;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: min(55svh, 560px);
  object-fit: contain;
  border: 0;
}

.hero-visual,
.abstract-line,
.abstract-orb,
.abstract-panel,
.grid-glow {
  position: relative;
}

.abstract-line,
.abstract-orb,
.abstract-panel,
.grid-glow {
  position: absolute;
}

.abstract-orb {
  border-radius: 999px;
  filter: blur(4px);
}

.abstract-orb-one {
  top: -4%;
  right: -12%;
  width: clamp(250px, 24vw, 520px);
  height: clamp(250px, 24vw, 520px);
  background: radial-gradient(circle at 30% 30%, #ffe8de, rgba(230, 128, 85, 0.95));
}

.abstract-orb-two {
  left: -20%;
  bottom: -16%;
  width: clamp(320px, 31vw, 680px);
  height: clamp(320px, 31vw, 680px);
  background: radial-gradient(circle at 30% 30%, #e2ebff, rgba(10, 20, 85, 0.86));
}

.abstract-orb-three {
  left: 36%;
  top: 30%;
  width: clamp(132px, 11vw, 220px);
  height: clamp(132px, 11vw, 220px);
  background: radial-gradient(circle at 35% 35%, #fff8ef, rgba(175, 137, 105, 0.75));
}

.abstract-line {
  border-radius: 999px;
  transform-origin: center;
}

.abstract-line-one {
  top: 4%;
  left: -20%;
  width: 122%;
  height: 4px;
  background: linear-gradient(90deg, rgba(10, 20, 85, 0.1), rgba(10, 20, 85, 0.55));
  transform: rotate(10deg);
}

.abstract-line-two {
  top: 28%;
  left: -12%;
  width: 108%;
  height: 4px;
  background: linear-gradient(90deg, rgba(230, 128, 85, 0.18), rgba(230, 128, 85, 0.9));
  transform: rotate(-18deg);
}

.abstract-line-three {
  bottom: 10%;
  right: -18%;
  width: 112%;
  height: 4px;
  background: linear-gradient(90deg, rgba(10, 20, 85, 0.08), rgba(10, 20, 85, 0.8));
  transform: rotate(21deg);
}

.abstract-panel {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
}

.abstract-panel-one {
  top: 10%;
  right: 2%;
  width: clamp(240px, 23vw, 420px);
  height: clamp(290px, 29vw, 560px);
  border-radius: var(--card-radius);
  transform: rotate(12deg);
}

.abstract-panel-two {
  left: 2%;
  bottom: 4%;
  width: clamp(180px, 17vw, 320px);
  height: clamp(230px, 23vw, 420px);
  border-radius: var(--card-radius);
  transform: rotate(-14deg);
}

.grid-glow {
  inset: 12px;
  border-radius: var(--card-radius);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background-image:
    linear-gradient(rgba(10, 20, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 20, 85, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}

@media (min-width: 1440px) {
  .hero h1 {
    max-width: none;
    line-height: 1.08;
  }

  .hero-line-desktop {
    display: block !important;
    white-space: nowrap;
  }

  .hero-line-mobile {
    display: none !important;
  }

  .hero-visual {
    min-height: clamp(560px, 40vw + 6vh, 860px);
  }

  .abstract-orb-one {
    top: -8%;
    right: -14%;
    width: clamp(360px, 26vw, 620px);
    height: clamp(360px, 26vw, 620px);
  }

  .abstract-orb-two {
    left: -24%;
    bottom: -20%;
    width: clamp(440px, 35vw, 820px);
    height: clamp(440px, 35vw, 820px);
  }

  .abstract-orb-three {
    left: 34%;
    top: 24%;
    width: clamp(180px, 12vw, 280px);
    height: clamp(180px, 12vw, 280px);
  }

  .abstract-panel-one {
    top: 8%;
    right: -1%;
    width: clamp(320px, 25vw, 520px);
    height: clamp(420px, 31vw, 700px);
  }

  .abstract-panel-two {
    left: -1%;
    bottom: 2%;
    width: clamp(220px, 18vw, 360px);
    height: clamp(290px, 24vw, 520px);
  }

  .grid-glow {
    inset: 8px;
  }
}

.about,
.offerings,
.footer {
  margin-top: 24px;
  padding: clamp(28px, 3vw, 48px);
  min-height: calc(100vh - 48px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 3.3vw + 1vh, 4.2rem);
  letter-spacing: -0.03em;
}

.about .section-heading {
  align-items: center;
  justify-content: flex-start;
  margin-bottom: clamp(18px, 1.4vw, 24px);
}

.about .section-heading h2 {
  max-width: none;
  color: #6a6a6a;
  font-size: clamp(2.05rem, 2.4vw + 0.85vh, 3.55rem);
  font-weight: 700;
}

.about .section-heading h2 span {
  color: var(--accent);
}

.about {
  min-height: auto;
}

.team-heading {
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.team-heading h2 {
  max-width: none;
  color: #6a6a6a;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.team-heading h2 span {
  color: var(--accent);
}

.about-layout {
  --about-column-gap: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--about-column-gap);
  align-items: stretch;
  min-height: min(74svh, 780px);
  position: relative;
}

.about-panel,
.metric-card,
.offering-card {
  border: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: var(--card-radius);
  background: rgba(255, 250, 245, 0.92);
}

.hero-visual,
.about-panel,
.metric-card-graphic {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-panel::before {
  content: "";
  position: absolute;
  right: clamp(16px, 1.2vw, 24px);
  top: 26%;
  width: calc(50% - 18px);
  aspect-ratio: 1 / 1;
  background: url("assets/brand/clwm.svg") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 1440px) {
  .about-panel::before {
    top: 8%;
    right: clamp(12px, 1vw, 22px);
    width: calc(75% - 24px);
  }
}

.hero-visual::after,
.about-panel::after,
.metric-card-graphic::after {
  content: "";
  position: absolute;
  top: -28%;
  bottom: -28%;
  left: -26%;
  width: 30%;
  background: linear-gradient(
    108deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 36%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(230, 128, 85, 0.1) 62%,
    transparent 100%
  );
  transform: translateX(-220%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.hero-visual:hover,
.about-panel:hover,
.metric-card-graphic:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(10, 20, 85, 0.1);
  border-color: rgba(230, 128, 85, 0.18);
}

.hero-visual:hover::after,
.about-panel:hover::after,
.metric-card-graphic:hover::after {
  opacity: 1;
  animation: panel-shimmer 1050ms ease forwards;
}

.about-panel {
  padding: clamp(18px, 1.25vw + 0.32vh, 28px);
  font-size: clamp(1rem, 0.95vw + 0.2vh, 1.24rem);
  line-height: 1.9;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  gap: clamp(14px, 0.9vw, 18px);
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(230, 128, 85, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 248, 239, 0.92));
}

.about-panel p {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.about-kicker {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.92rem, 0.65vw + 0.16vh, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-lead {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.05rem, 2.35vw + 0.9vh, 3.3rem);
  line-height: 1.12;
  font-weight: 500;
}

.about-lead-line-desktop {
  display: none;
}

.about-lead-line-mobile {
  display: inline;
}

.about-highlight {
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  line-height: 1.42;
  font-weight: 400;
}

.about-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: end;
  position: relative;
  z-index: 1;
}

.about-copy-grid p {
  position: relative;
  overflow: hidden;
    padding: 14px 15px 16px;
    border: 1px solid rgba(10, 20, 85, 0.08);
    border-radius: 8px;
    background: rgba(248, 242, 235, 0.9);
    color: #394268;
    font-size: clamp(1.02rem, 1.08vw + 0.18vh, 1.34rem);
    line-height: 1.46;
    min-height: calc(1.46em * 4 + 32px);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-copy-line-desktop {
  display: none;
}

.about-copy-line-mobile {
  display: inline;
}

@media (min-width: 1440px) {
  .page-shell {
    width: min(2200px, 98.2vw);
  }

  .topbar {
    padding: clamp(10px, 0.65vh + 0.3vw, 16px) clamp(18px, 1.2vw + 0.35vh, 30px);
  }

  .brand img {
    width: min(clamp(210px, 9.8vw + 1.4vh, 290px), 46vw);
  }

  .nav {
    gap: clamp(12px, 0.8vw + 0.18vh, 20px);
  }

  .nav a,
  .nav-dropdown-toggle {
    min-height: clamp(46px, 2.6vw + 0.24vh, 56px);
    padding: 0 clamp(16px, 1.1vw + 0.18vh, 24px);
    font-size: clamp(1.04rem, 0.78vw + 0.18vh, 1.28rem);
  }

  .nav-dropdown-menu {
    min-width: 320px;
  }

  .nav-dropdown-menu a {
    min-height: 54px;
    font-size: clamp(1rem, 0.58vw + 0.12vh, 1.12rem);
  }

  .hero {
    grid-template-columns: 1.22fr 0.78fr;
    gap: clamp(24px, 1.2vw + 0.6vh, 38px);
    --hero-shell-padding: clamp(34px, 2vw + 1vh, 64px);
  }

  .hero-copy {
    max-width: min(860px, 100%);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 3.35vw + 1vh, 5rem);
    max-width: none;
    line-height: 1.08;
  }

  .hero-text {
    max-width: 56ch;
    margin: 38px 0 16px;
    font-size: clamp(1.28rem, 1.18vw + 0.42vh, 1.84rem);
    line-height: 1.8;
  }

  .hero-pillars a {
    min-height: 66px;
    padding: 0 clamp(22px, 1.55vw, 34px);
    font-size: clamp(1.12rem, 0.98vw, 1.34rem);
  }

  .contact-link-cta {
    min-height: 64px;
    padding: 0 clamp(24px, 1.75vw, 36px);
    font-size: clamp(1.1rem, 0.92vw, 1.28rem);
  }

  .about-layout {
    --about-column-gap: 28px;
    grid-template-columns: 1fr 1fr;
  }

  .about-copy-grid {
    gap: 20px;
  }

  .about-copy-grid p {
    padding: 18px 20px 20px;
    font-size: clamp(1.24rem, 1.02vw + 0.24vh, 1.68rem);
    line-height: 1.44;
  }

  .about-copy-line-desktop {
    display: block;
  }

  .about-copy-line-mobile {
    display: none;
  }
}

.about-copy-grid p::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 44%,
    rgba(255, 255, 255, 0.62) 50%,
    rgba(255, 241, 228, 0.42) 56%,
    transparent 65%
  );
  transform: translateX(-140%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.about-copy-grid p:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 128, 85, 0.24);
  box-shadow: 0 18px 30px rgba(230, 128, 85, 0.12);
}

.about-copy-grid p:hover::after {
  opacity: 1;
  animation: about-card-shimmer 900ms ease forwards;
}

@keyframes about-card-shimmer {
  0% {
    transform: translateX(-140%) skewX(-18deg);
  }

  100% {
    transform: translateX(140%) skewX(-18deg);
  }
}

@keyframes panel-shimmer {
  0% {
    transform: translateX(-220%) skewX(-18deg);
  }

  100% {
    transform: translateX(300%) skewX(-18deg);
  }
}

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

.inline-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: clamp(1rem, 0.72vw + 0.16vh, 1.22rem);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  justify-self: start;
  text-align: left;
}

@media (min-width: 981px) {
  .about-solution-link {
    display: none;
  }
}

.about-metrics {
  display: grid;
  gap: 16px;
  min-height: 100%;
  position: relative;
  z-index: 3;
}

.metric-card {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 1.8vw, 28px);
}

.metric-card-graphic {
  place-items: center;
  align-content: start;
  min-height: 100%;
  gap: 18px;
  padding: clamp(22px, 1.7vw + 0.5vh, 36px);
  background:
    radial-gradient(circle at top left, rgba(188, 205, 219, 0.3), transparent 18%),
    linear-gradient(180deg, #fffdfa 0%, #fff6ed 100%);
}

.about-graphic-caption {
  width: 100%;
}

.about-graphic-caption p {
  margin: 0;
  color: var(--primary);
  font-size: clamp(0.92rem, 0.64vw + 0.16vh, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metric-card-graphic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.knowledge-gap-object {
  display: block;
  width: 100%;
  height: auto;
  min-height: min(56svh, 520px);
  border: 0;
}

.solution-preview-card {
  --solution-preview-padding: clamp(12px, 1.25vw + 0.3vh, 26px);
  --solution-panel-duration: 620ms;
  --solution-panel-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --solution-panel-seam-shift: calc(var(--about-column-gap) + clamp(28px, 4vw, 78px));
  position: relative;
  display: grid;
  place-items: stretch;
  align-content: stretch;
  padding: var(--solution-preview-padding);
  overflow: visible;
  background:
    radial-gradient(circle at top left, rgba(230, 128, 85, 0.12), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, #fff6ed 100%);
}

.solution-preview-card:hover {
  transform: none;
}

.solution-preview-card:hover::after {
  opacity: 0;
  animation: none;
}

.solution-preview-object {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(68svh, 680px);
  border: 0;
}

.solution-preview-tray {
  position: absolute;
  top: var(--solution-preview-padding);
  left: var(--solution-preview-padding);
  z-index: 6;
  width: auto;
  min-width: 260px;
  overflow: visible;
}

.solution-preview-tray:not([open]) {
  width: auto;
  min-width: 0;
  overflow: visible;
}

.solution-preview-tray[open] {
  bottom: var(--solution-preview-padding);
}

.solution-preview-tray summary {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0;
  color: var(--primary);
  font-size: clamp(0.92rem, 0.65vw + 0.16vh, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.solution-preview-tray summary::before {
  content: "<";
  display: inline-grid;
  place-items: center;
  width: clamp(28px, 1.8vw, 36px);
  height: clamp(28px, 1.8vw, 36px);
  border: 1px solid rgba(230, 128, 85, 0.26);
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.88);
  box-shadow: 0 10px 20px rgba(230, 128, 85, 0.14);
  color: var(--primary);
  font-size: clamp(1.05rem, 0.9vw, 1.32rem);
  line-height: 1;
  order: -1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  animation: solution-arrow-cta 2200ms ease-in-out infinite;
}

.solution-preview-tray summary:hover {
  color: var(--accent);
}

.solution-preview-tray summary:hover::before {
  transform: translateX(-3px);
  border-color: rgba(230, 128, 85, 0.48);
  background: rgba(246, 211, 195, 0.72);
  box-shadow: 0 14px 28px rgba(230, 128, 85, 0.22);
  animation: none;
}

.solution-preview-tray[open] summary::before {
  content: ">";
  transform: translateX(3px);
  animation: none;
}

.solution-preview-tray summary::-webkit-details-marker {
  display: none;
}

.solution-preview-points {
  display: grid;
  gap: clamp(10px, 0.8vw + 0.12vh, 16px);
  margin-top: clamp(14px, 1.1vw, 22px);
  padding: 0;
}

.solution-preview-points p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(12px, 1vw + 0.16vh, 20px) clamp(16px, 1.4vw, 28px);
  border: 0;
  border-radius: 0;
  color: #252b4f;
  font-size: clamp(1.04rem, 0.74vw + 0.16vh, 1.34rem);
  line-height: 1.48;
  box-shadow: none;
}

.solution-preview-points .benefit-peach {
  background: rgba(243, 208, 191, 0.72);
}

.solution-preview-points .benefit-mint {
  background: rgba(199, 232, 219, 0.72);
}

.solution-preview-points .benefit-lime {
  background: rgba(221, 245, 169, 0.72);
}

.solution-preview-points .benefit-sand {
  background: rgba(246, 226, 181, 0.72);
}

.solution-preview-points .benefit-sky {
  background: rgba(196, 219, 245, 0.72);
}

.solution-preview-emphasis {
  color: var(--accent);
  font-size: inherit;
  font-family: inherit;
  letter-spacing: 0.18em;
  line-height: inherit;
  text-transform: uppercase;
  font-weight: 800;
}

@media (min-width: 1280px) {
  .solution-preview-points p {
    font-size: clamp(1.24rem, 1.02vw + 0.24vh, 1.68rem);
    line-height: 1.44;
  }
}

@media (min-width: 981px) {
  .solution-preview-tray[open] {
    top: var(--solution-preview-padding);
    left: var(--solution-preview-padding);
    width: calc(100% - var(--solution-preview-padding) * 2);
    min-width: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .solution-preview-tray[open] summary {
    margin-bottom: clamp(6px, 0.5vw, 10px);
  }

  .solution-preview-tray[open] .solution-preview-points {
    position: absolute;
    top: calc(-1 * var(--solution-preview-padding));
    left: calc(-100% - var(--about-column-gap) - var(--solution-preview-padding) * 3);
    width: calc(100% + var(--solution-preview-padding) * 2);
    height: calc(100% + var(--solution-preview-padding) * 2);
    align-content: center;
    margin-top: 0;
    padding: clamp(20px, 1.7vw + 0.4vh, 34px);
    border: 1px solid rgba(23, 33, 29, 0.08);
    border-radius: var(--card-radius);
    background:
      radial-gradient(circle at top right, rgba(230, 128, 85, 0.08), transparent 18%),
      linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 248, 239, 0.92));
    box-shadow: 0 20px 44px rgba(10, 20, 85, 0.11);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    transform-origin: right center;
    animation: solution-panel-replace var(--solution-panel-duration) var(--solution-panel-ease) both;
  }

  .solution-preview-tray.is-closing[open] .solution-preview-points {
    animation: solution-panel-leave var(--solution-panel-duration) var(--solution-panel-ease) both;
  }

  .solution-preview-tray[open] .solution-preview-points::before {
    content: "";
    position: absolute;
    right: clamp(12px, 1vw, 22px);
    top: 8%;
    width: calc(75% - 24px);
    aspect-ratio: 1 / 1;
    background: url("assets/brand/clwm.svg") no-repeat center / contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
  }

  .solution-preview-tray[open] .solution-preview-points::after {
    content: "";
    position: absolute;
    top: -28%;
    bottom: -28%;
    left: -26%;
    width: 30%;
    background: linear-gradient(
      108deg,
      transparent 0%,
      rgba(255, 255, 255, 0.04) 36%,
      rgba(255, 255, 255, 0.22) 50%,
      rgba(230, 128, 85, 0.1) 62%,
      transparent 100%
    );
    transform: translateX(-220%) skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
  }

  .solution-preview-tray[open] .solution-preview-points:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(10, 20, 85, 0.1);
    border-color: rgba(230, 128, 85, 0.18);
  }

  .solution-preview-tray[open] .solution-preview-points:hover::after {
    opacity: 1;
    animation: panel-shimmer 1050ms ease forwards;
  }
}

@media (min-width: 981px) {
  .about-layout:has(.solution-preview-tray[open]) .about-panel {
    pointer-events: none;
    animation: solution-panel-exit var(--solution-panel-duration) var(--solution-panel-ease) both;
  }

  .about-layout:has(.solution-preview-tray.is-closing) .about-panel {
    pointer-events: auto;
    animation: solution-panel-return var(--solution-panel-duration) var(--solution-panel-ease) both;
  }
}

@keyframes solution-panel-replace {
  from {
    opacity: 0;
    transform: translateX(var(--solution-panel-seam-shift)) scaleX(0.92);
  }

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

@keyframes solution-panel-exit {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(calc(-100% - var(--about-column-gap)));
  }
}

@keyframes solution-panel-leave {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(var(--solution-panel-seam-shift)) scaleX(0.92);
  }
}

@keyframes solution-panel-return {
  from {
    opacity: 0;
    transform: translateX(calc(-100% - var(--about-column-gap)));
  }

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

@keyframes solution-arrow-cta {
  0%,
  100% {
    box-shadow: 0 10px 20px rgba(230, 128, 85, 0.14);
  }

  50% {
    box-shadow: 0 14px 30px rgba(230, 128, 85, 0.28);
  }
}

@media (max-width: 980px) {
  .solution-preview-tray {
    right: var(--solution-preview-padding);
    width: auto;
  }
}

@media (min-width: 981px) {
  .about {
    padding-top: clamp(14px, 1.2vw, 22px);
    padding-bottom: clamp(14px, 1.2vw, 22px);
  }

  .about .section-heading {
    margin-bottom: clamp(10px, 0.7vw, 14px);
  }

  .about-layout {
    min-height: calc(100svh - 132px);
    max-height: calc(100svh - 132px);
  }

  .about-panel,
  .metric-card-graphic {
    min-height: 100%;
  }

  .about-panel {
    padding: clamp(18px, 1.05vw + 0.28vh, 26px);
    gap: clamp(14px, 0.78vw, 18px);
  }

  .metric-card-graphic {
    padding: clamp(18px, 1.05vw + 0.28vh, 26px);
    gap: 14px;
  }

  .solution-preview-card {
    gap: 0;
    padding: var(--solution-preview-padding);
  }

  .solution-preview-object {
    min-height: 100%;
  }

  .about-lead {
    font-size: clamp(1.96rem, 2.1vw + 0.74vh, 3.05rem);
  }

  .about-lead-line-desktop {
    display: block;
  }

  .about-lead-line-mobile {
    display: none;
  }

  .about-copy-grid {
    gap: 16px;
  }

  .about-copy-grid p {
    padding: 13px 15px 15px;
    min-height: calc(1.46em * 4 + 28px);
    font-size: clamp(1.04rem, 0.74vw + 0.16vh, 1.34rem);
    line-height: 1.48;
  }

  .knowledge-gap-object {
    min-height: calc(100% - 44px);
  }
}

@media (min-width: 981px) and (max-width: 1439px) {
  .about {
    min-height: calc(100svh - 24px);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .about .section-heading {
    margin-bottom: 10px;
  }

  .about-layout {
    min-height: calc(100svh - 88px);
    max-height: calc(100svh - 88px);
  }

  .about-panel,
  .metric-card-graphic {
    min-height: 100%;
  }

  .about-panel {
    padding: 22px;
    gap: 18px;
  }

  .metric-card-graphic {
    padding: 22px;
    gap: 14px;
  }

  .solution-preview-card {
    gap: 0;
    padding: var(--solution-preview-padding);
  }

  .about-copy-grid {
    gap: 16px;
  }

  .about-copy-grid p {
    padding: 16px 18px 18px;
  }

  .knowledge-gap-object {
    min-height: calc(100% - 28px);
  }
}

@media (min-width: 981px) {
  .about-kicker,
  .about-graphic-caption p,
  .solution-preview-tray summary {
    font-size: clamp(1.12rem, 0.94vw + 0.2vh, 1.46rem);
  }

  .inline-button {
    font-size: clamp(1.08rem, 0.86vw + 0.18vh, 1.32rem);
  }
}

@media (min-width: 1440px) {
  .about-lead {
    font-size: clamp(2.38rem, 2.55vw + 0.9vh, 3.7rem);
    line-height: 1.08;
  }

  .about-kicker,
  .about-graphic-caption p,
  .solution-preview-tray summary {
    font-size: clamp(1.24rem, 1.02vw + 0.24vh, 1.66rem);
  }

  .inline-button {
    font-size: clamp(1.18rem, 0.94vw + 0.2vh, 1.46rem);
  }
}

.client-carousel {
  --client-logo-gap: 14px;
  --client-logo-width: 180px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(10, 20, 85, 0.08);
  border-radius: var(--card-radius);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: rgba(255, 255, 255, 0.72);
}

.client-carousel-title {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.client-carousel-track {
  display: flex;
  align-items: center;
  gap: var(--client-logo-gap);
  width: max-content;
  will-change: transform;
  animation: marquee 42s linear infinite;
}

.client-logo-set {
  display: flex;
  align-items: center;
  gap: var(--client-logo-gap);
  flex: 0 0 auto;
}

.client-carousel:hover .client-carousel-track {
  animation-play-state: paused;
}

.client-logo {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--client-logo-width);
  width: var(--client-logo-width);
  min-width: var(--client-logo-width);
  height: 92px;
  padding: 14px 20px;
  border: 1px solid rgba(10, 20, 85, 0.08);
  border-radius: var(--card-radius);
  background: #fffdfa;
  cursor: default;
  user-select: none;
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.05);
  opacity: 0.74;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-logo:hover img {
  filter: grayscale(0) saturate(1);
  opacity: 1;
  transform: translateY(-1px);
}

.client-logo img.client-logo-allen {
  max-width: 80%;
  max-height: 46px;
}

.client-logo img.client-logo-haas {
  max-width: 86%;
  max-height: 56px;
}

.services-section .section-heading {
  align-items: center;
}

.offerings.services-section {
  min-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  overflow: visible;
}

.services-shell {
  border: 1px solid rgba(10, 20, 85, 0.06);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

@media (min-width: 981px) and (max-width: 1439px) {
  .offerings.services-section {
    min-height: calc(100svh - 24px);
    max-height: calc(100svh - 24px);
    padding: 0;
  }

  .services-shell {
    min-height: 100%;
    height: 100%;
  }

  .services-layout {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
  }

  .service-list,
  .service-visual,
  .service-scene {
    min-height: 0;
    height: auto;
  }

  .service-list {
    max-height: calc(100svh - 220px);
  }
}

@media (min-width: 981px) {
  .offerings.services-section {
    padding: 0;
  }
}

.services-header {
  display: grid;
  justify-items: center;
  padding: clamp(18px, 2.8vh, 30px) 24px clamp(14px, 2vh, 22px);
  border-bottom: 1px solid rgba(10, 20, 85, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(247, 240, 231, 0.92));
}

.services-title {
  margin: 0;
  color: #666666;
  font-size: clamp(1.8rem, 2.5vw + 1vh, 3.4rem);
  font-weight: 700;
}

.services-title span {
  color: var(--accent);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(245, 246, 250, 0.9);
  box-shadow: inset 0 -1px 0 rgba(10, 20, 85, 0.08);
}

.service-tab {
  position: relative;
  overflow: hidden;
  min-height: clamp(78px, 6.2vw, 96px);
  padding: 18px clamp(18px, 1.4vw, 24px);
  border: 0;
  background: transparent;
  color: #646464;
  font: inherit;
  font-size: clamp(1.3rem, 1.8vw, 1.96rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  box-shadow: inset -1px 0 0 rgba(10, 20, 85, 0.08);
}

.service-tab:last-child {
  box-shadow: none;
}

.service-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 4px;
  background: transparent;
}

.service-tab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(10, 20, 85, 0) 0%,
    rgba(10, 20, 85, 0.2) 18%,
    rgba(10, 20, 85, 0.95) 50%,
    rgba(10, 20, 85, 0.2) 82%,
    rgba(10, 20, 85, 0) 100%
  );
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}

.service-tab:hover,
.service-tab:focus-visible {
  background: rgba(255, 255, 255, 0.46);
  color: var(--accent);
}

.service-tab:hover::after,
.service-tab:focus-visible::after {
  opacity: 1;
  animation: service-top-band-shimmer 900ms ease forwards;
}

.service-tab.is-active {
  transform: translateY(-3px);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 20px rgba(10, 20, 85, 0.05);
}

.service-tab.is-active::before {
  background: var(--primary);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  flex: 1 1 auto;
  min-height: 0;
  align-items: stretch;
}

.services-layout > * {
  min-height: 0;
}

.service-list {
  display: block;
  padding: 18px 20px;
  background: rgba(245, 246, 250, 0.82);
  min-height: 0;
  height: auto;
  max-height: calc(100svh - 250px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 20, 85, 0.46) rgba(10, 20, 85, 0.09);
  overscroll-behavior: contain;
}

.service-list::-webkit-scrollbar {
  width: 12px;
}

.service-list::-webkit-scrollbar-thumb {
  background: rgba(10, 20, 85, 0.24);
  border: 3px solid rgba(245, 246, 250, 0.92);
  border-radius: 999px;
}

.service-list::-webkit-scrollbar-track {
  background: rgba(10, 20, 85, 0.05);
}

.service-list-group {
  margin-bottom: 12px;
  border: 1px solid rgba(10, 20, 85, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.service-list-group:last-child {
  margin-bottom: 0;
}

.service-list-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: clamp(58px, 4.2vw, 70px);
  padding: 6px clamp(18px, 1.45vw, 24px) 6px clamp(24px, 2vw, 32px);
  border: 0;
  background: transparent;
  color: #666666;
  font: inherit;
  font-size: clamp(0.98rem, 1.08vw, 1.16rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.service-list-item::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 4px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.service-list-item:hover,
.service-list-item:focus-visible {
  transform: translateX(12px);
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  box-shadow: 0 16px 24px rgba(10, 20, 85, 0.08);
}

.service-list-item:hover::before,
.service-list-item:focus-visible::before {
  opacity: 1;
  background: var(--accent);
}

.service-list-item.is-active {
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary);
}

.service-list-label,
.service-subitem-label {
  flex: 1;
  min-width: 0;
}

.service-list-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.service-subitem-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.service-list-icon,
.service-subitem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
}

.service-list-icon {
  color: var(--primary);
}

.service-list-item.is-active .service-list-icon {
  color: var(--accent);
}

.service-list-item:hover .service-list-icon,
.service-list-item:focus-visible .service-list-icon {
  transform: translateX(3px);
  color: var(--accent);
}

.service-list-item .service-more-button {
  min-height: 34px;
  padding: 0 14px;
  border-color: rgba(230, 128, 85, 0.34);
  background: rgba(230, 128, 85, 0.13);
  box-shadow: none;
  font-size: 0.86em;
  white-space: nowrap;
}

.service-list-item .service-more-button:hover,
.service-list-item .service-more-button:focus-visible {
  background: rgba(230, 128, 85, 0.2);
  color: var(--accent);
  transform: translateY(-1px);
}

.service-subitem .service-more-button {
  min-height: 28px;
  padding: 0 12px;
  border-color: rgba(230, 128, 85, 0.32);
  background: rgba(230, 128, 85, 0.12);
  box-shadow: none;
  font-size: 0.82em;
  white-space: nowrap;
}

.service-subitem .service-more-button:hover,
.service-subitem .service-more-button:focus-visible {
  background: rgba(230, 128, 85, 0.2);
  color: var(--accent);
}

.service-more-icon {
  display: none;
}

.service-sublist {
  display: grid;
  gap: 10px;
  padding: 0 16px 14px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.service-subitem {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 5px 10px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--primary);
  font: inherit;
  font-size: clamp(0.92rem, 0.92vw, 1.02rem);
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-subitem::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 3px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.service-subitem-icon {
  color: var(--primary);
  transition: transform 180ms ease, color 180ms ease;
}

.service-subitem:hover,
.service-subitem:focus-visible {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 24px rgba(10, 20, 85, 0.08);
}

.service-subitem:hover::after,
.service-subitem:focus-visible::after {
  opacity: 1;
  background: var(--accent);
}

.service-subitem:hover .service-subitem-icon,
.service-subitem:focus-visible .service-subitem-icon {
  transform: translateX(3px);
  color: var(--accent);
}

.service-subitem.is-active {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 18px rgba(10, 20, 85, 0.06);
}

@keyframes service-subitem-shimmer {
  0% {
    transform: translateX(-160%) skewX(-18deg);
  }

  100% {
    transform: translateX(300%) skewX(-18deg);
  }
}

@keyframes service-list-item-shimmer {
  0% {
    transform: translateX(-220%) skewX(-18deg);
  }

  100% {
    transform: translateX(250%) skewX(-18deg);
  }
}

.service-list-more {
  padding: 0 20px 18px;
  background: rgba(255, 255, 255, 0.5);
}

.service-visual {
  position: relative;
  min-height: 0;
  height: 100%;
}

.service-scene {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(163, 202, 232, 0.85) 0%, rgba(48, 101, 151, 0.92) 48%, rgba(35, 39, 41, 0.98) 100%);
}

.service-scene.is-bg-loaded {
  background: url("assets/graphics/services-section-bg.jpg") center / cover no-repeat;
}

.service-overlay-card {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  padding: clamp(24px, 2.2vw, 34px);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: rgba(72, 84, 91, 0.48);
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.service-overlay-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  font-weight: 700;
}

.service-overlay-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.65vw, 2.9rem);
  line-height: 1.16;
}

.service-overlay-copy p,
.service-overlay-copy ul {
  margin: 14px 0 0;
  font-size: clamp(1.08rem, 1.28vw, 1.42rem);
  line-height: 1.55;
}

.service-overlay-copy ul {
  padding-left: 1.2em;
}

.service-overlay-copy li + li {
  margin-top: 0.42em;
}

@media (min-width: 1440px) {
  .service-tab {
    min-height: 86px;
    padding: 18px 24px;
    font-size: 1.92rem;
  }

  .service-sublist {
    gap: 13px;
    padding: 0 24px 24px;
  }

  .service-list-item {
    min-height: 80px;
    padding: 10px 24px 10px 32px;
    font-size: clamp(1.18rem, 1.08vw, 1.42rem);
  }

  .service-subitem {
    padding: 10px 18px;
    font-size: clamp(1.02rem, 0.86vw, 1.18rem);
  }

  .service-list-icon,
  .service-subitem-icon {
    width: 28px;
    min-width: 28px;
    font-size: 1.38rem;
  }

  .service-overlay-card {
    padding: clamp(26px, 2.1vw, 38px);
  }
}

@media (max-width: 1280px) {
  .about,
  .offerings {
    padding: 24px;
  }

  .hero {
    gap: 22px;
    min-height: 100svh;
    --hero-shell-padding: 24px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .about-panel,
  .metric-card-graphic {
    padding: 24px;
  }

  .solution-preview-card {
    padding: var(--solution-preview-padding);
  }

  .about-copy-grid p {
    padding: 16px 16px 18px;
  }

  .about-actions {
    gap: 14px;
  }

  .services-header {
    padding: 20px 20px 16px;
  }

  .service-tab {
    min-height: 72px;
    padding: 16px 18px;
    font-size: 1.06rem;
  }

  .service-list-item {
    min-height: 70px;
    padding: 9px 18px 9px 20px;
    font-size: 1.04rem;
  }

  .service-sublist {
    gap: 8px;
    padding: 0 18px 16px;
  }

  .service-subitem {
    padding: 6px 10px;
    font-size: 0.94rem;
  }

  .service-list-more {
    padding: 0 18px 16px;
  }

  .service-overlay-card {
    left: 6%;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 22px;
  }

  .service-overlay-card h3 {
    font-size: clamp(1.55rem, 2.35vw, 2.15rem);
  }

  .service-overlay-copy p,
  .service-overlay-copy ul {
    font-size: 1.08rem;
  }
}

@media (min-width: 981px) and (max-width: 1439px) {
  .service-list {
    display: block;
  }

  .service-tab {
    min-height: 82px;
    padding: 18px 22px;
    font-size: clamp(1.46rem, 1.04vw + 0.5vh, 1.74rem);
  }

  .service-sublist {
    gap: 6px;
    padding: 0 14px 12px 30px;
  }

  .service-subitem {
    padding: 4px 10px;
    font-size: 0.98rem;
  }

  .service-subitem-actions {
    gap: 6px;
  }

  .service-subitem .service-more-button {
    min-height: 22px;
    padding: 0 9px;
    font-size: 0.74em;
    line-height: 1;
  }

  .service-list-item {
    min-height: 60px;
    padding: 6px 18px 6px 22px;
  }

  .service-list-group {
    margin-bottom: 8px;
  }
}

@media (min-width: 981px) {
  .services-layout {
    height: 100%;
    grid-auto-rows: minmax(0, 1fr);
    align-items: stretch;
  }

  .service-list,
  .service-visual,
  .service-scene {
    height: 100%;
    max-height: none;
  }

  .service-list {
    overflow-y: scroll;
    scrollbar-gutter: stable both-edges;
  }
}

@media (max-width: 960px) {
  .about,
  .offerings,
  .footer {
    padding: 20px;
  }

  .hero {
    gap: 18px;
    min-height: auto;
    --hero-shell-padding: 20px;
  }

  .hero-text {
    margin-top: 18px;
  }

  .hero-pillars,
  .hero-contact {
    margin-top: 20px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .about-layout {
    --about-column-gap: 18px;
  }

  .about-panel,
  .metric-card-graphic {
    padding: 20px;
  }

  .solution-preview-card {
    padding: var(--solution-preview-padding);
  }

  .about-copy-grid {
    gap: 14px;
  }

  .about-copy-grid p {
    padding: 14px 14px 16px;
  }

  .about-actions {
    gap: 12px;
  }

  .services-header {
    padding: 18px 18px 14px;
  }

  .services-title {
    font-size: clamp(1.55rem, 4vw, 2.2rem);
  }

  .service-tab {
    min-height: 64px;
    padding: 14px 16px;
    font-size: 0.98rem;
  }

  .service-list-item {
    min-height: 64px;
    padding: 8px 16px 8px 18px;
    font-size: 0.98rem;
    gap: 12px;
  }

  .service-list-icon,
  .service-subitem-icon {
    width: 20px;
    min-width: 20px;
    font-size: 1rem;
  }

  .service-list-actions {
    gap: 8px;
  }

  .service-list-item .service-more-button,
  .service-subitem .service-more-button {
    width: 18px;
    min-width: 18px;
    height: 22px;
    min-height: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.92rem;
    line-height: 1;
  }

  .service-list-item .service-more-button:hover,
  .service-list-item .service-more-button:focus-visible,
  .service-subitem .service-more-button:hover,
  .service-subitem .service-more-button:focus-visible {
    background: transparent;
    box-shadow: none;
  }

  .service-more-label {
    display: none;
  }

  .service-more-icon {
    display: block;
    font-weight: 700;
    width: 18px;
    height: 18px;
    opacity: 1;
    filter: invert(61%) sepia(83%) saturate(676%) hue-rotate(324deg) brightness(96%) contrast(87%);
  }

  .service-sublist {
    gap: 8px;
    padding: 0 16px 14px;
  }

  .service-subitem {
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .service-list-more {
    padding: 0 16px 14px;
  }

  .service-overlay-card {
    left: 5%;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    padding: 18px 18px 20px;
  }

  .service-overlay-kicker {
    font-size: 0.94rem;
  }

  .service-overlay-card h3 {
    font-size: clamp(1.35rem, 2.55vw, 1.85rem);
    line-height: 1.12;
  }

  .service-overlay-copy p,
  .service-overlay-copy ul {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.45;
  }
}

@media (max-width: 900px) {
  .topbar {
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand img {
    width: min(clamp(122px, 21vw, 172px), 38vw);
    max-width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(10, 20, 85, 0.08);
    border-bottom-left-radius: var(--card-radius);
    border-bottom-right-radius: var(--card-radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 28px rgba(10, 20, 85, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 14px;
    font-size: 1rem;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(248, 241, 232, 0.92);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    min-height: 42px;
    font-size: 0.96rem;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    min-height: 100svh;
    padding: 0 0 22px;
  }

  .hero .topbar {
    margin-inline: 0;
    width: 100%;
    justify-self: stretch;
    align-self: start;
  }

  .hero-copy {
    display: grid;
    align-content: center;
    padding: 18px 18px 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.92rem, 5vw + 0.42vh, 2.54rem);
    line-height: 1.05;
  }

  .hero-line-mobile {
    display: block;
  }

  .hero-text {
    max-width: 31ch;
    margin: 24px 0 14px;
    font-size: clamp(1rem, 1.45vw + 0.28vh, 1.12rem);
    line-height: 1.58;
  }

  .hero-pillars {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-pillars a,
  .contact-link-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 0 0 18px;
  }

  .hero .topbar {
    margin-inline: 0;
    width: 100%;
  }

  .topbar {
    padding: 10px 14px;
    gap: 10px;
  }

  .brand img {
    width: min(clamp(106px, 29vw, 138px), 32vw);
  }

  .nav {
    padding: 10px 14px 14px;
  }

  .hero-copy {
    padding: 14px 14px 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.62rem, 4.9vw, 2rem);
    line-height: 1.04;
  }

  .hero-text {
    max-width: 30ch;
    font-size: 0.94rem;
  }

  .hero-pillars a,
  .contact-link-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }
}

.service-more-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(10, 20, 85, 0.14);
  border-radius: 8px;
  background: rgba(230, 128, 85, 0.12);
  color: var(--primary);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.team-modal-panel {
  width: min(920px, 100%);
}

.solution-modal-panel {
  width: min(980px, 100%);
}

.team-modal-title {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.solution-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 0;
}

.solution-benefit {
  padding: 16px 18px;
  color: #1e2744;
}

.solution-benefit p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.solution-benefit strong {
  font-weight: 700;
}

.benefit-peach {
  background: #f3d0bf;
}

.benefit-mint {
  background: #bfe1d5;
}

.benefit-lime {
  background: #e1efa4;
}

.benefit-sand {
  background: #f7dfb9;
}

.benefit-sky {
  background: #b9d5f5;
}

.solution-graphic-wrap {
  display: flex;
  align-items: stretch;
  padding: 8px;
  border: 1px solid rgba(10, 20, 85, 0.08);
  border-radius: 8px;
  background: #fffdfa;
}

.solution-graphic-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.solution-graphic-object {
  display: block;
  width: 100%;
  min-height: 100%;
  border: 0;
}

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

.team-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--card-radius);
  background: #fff2c9;
  align-items: start;
}

.team-identity {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.team-meta {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.team-photo {
  width: 118px;
  aspect-ratio: 1 / 1.28;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(230, 128, 85, 0.18), transparent 38%),
    linear-gradient(180deg, #fff9f0, #f3e5d2);
  border: 1px solid rgba(10, 20, 85, 0.08);
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.team-linkmark-link {
  text-decoration: none;
}

.team-linkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(10, 20, 85, 0.08);
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 700;
}

.team-card h3,
.team-card p {
  margin: 0;
}

.team-card h3 {
  font-size: 1rem;
  line-height: 1.28;
}

.team-copy {
  display: grid;
  gap: 10px;
}

.team-card p {
  color: #2d3656;
  font-size: 0.94rem;
  line-height: 1.6;
}

.metric-card strong,
.offering-index {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card span {
  font-size: 1rem;
  line-height: 1.6;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offering-card {
  min-height: 260px;
  padding: 28px;
}

.offering-card h3 {
  margin: 48px 0 14px;
  font-size: 1.45rem;
}

.offering-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  padding: 0;
  min-height: auto;
  background: linear-gradient(180deg, #d9e6f3 0%, #c9d9ea 100%);
  color: var(--primary);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 1.8vh + 0.7vw, 30px) clamp(24px, 1.8vw + 0.5vh, 44px) clamp(12px, 1vh, 16px);
}

.footer-col {
  display: grid;
  gap: 8px;
}

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

.footer-col-right {
  justify-items: end;
}

.footer-title,
.footer-address,
.footer-bottom p {
  margin: 0;
}

.footer-title {
  font-size: clamp(0.96rem, 0.52vw + 0.16vh, 1.12rem);
  font-weight: 700;
}

.footer-title-link {
  color: var(--primary);
}

.footer-link,
.footer-email {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.footer-address {
  font-size: clamp(0.98rem, 1.1vw + 0.3vh, 1.26rem);
  font-weight: 700;
  line-height: 1.25;
}

.footer-gst {
  margin: 2px 0 0;
  color: rgba(10, 20, 85, 0.82);
  font-size: clamp(0.84rem, 0.48vw + 0.14vh, 0.96rem);
  font-weight: 600;
}

.footer-socials {
  display: flex;
  gap: clamp(8px, 0.4vw + 0.1vh, 12px);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 1.2vw + 0.35vh, 36px);
  height: clamp(28px, 1.2vw + 0.35vh, 36px);
  border-radius: 8px;
  background: rgba(230, 128, 85, 0.18);
  color: var(--primary);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.footer-email {
  font-size: clamp(0.96rem, 0.6vw + 0.16vh, 1.08rem);
  font-weight: 600;
}

.footer-bottom {
  padding: clamp(9px, 0.7vh, 12px) clamp(24px, 1.8vw + 0.5vh, 44px) clamp(10px, 0.9vh, 14px);
  border-top: 1px solid rgba(10, 20, 85, 0.12);
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(0.82rem, 0.34vw + 0.1vh, 0.92rem);
  opacity: 0.92;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 85, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding: 32px;
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overscroll-behavior: contain;
}

.pdf-modal-panel {
  width: min(1200px, 100%);
}

.flyer-figure {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: calc(100vh - 24px);
  background: rgba(255, 255, 255, 0.98);
}

.flyer-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(10, 20, 85, 0.14);
  border-radius: 8px;
  background: rgba(230, 128, 85, 0.12);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.flyer-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.document-pdf-modal-panel .modal-close {
  top: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(10, 20, 85, 0.14);
}

.flyer-figure .flyer-action-button {
  position: absolute;
  top: 14px;
  right: 62px;
  z-index: 2;
  background: rgba(255, 248, 242, 0.94);
  backdrop-filter: blur(8px);
}

.flyer-figure .flyer-controls {
  position: absolute;
  top: 14px;
  right: 62px;
  z-index: 2;
}

.flyer-figure .flyer-controls .flyer-action-button {
  position: static;
}

.flyer-copy-button {
  font: inherit;
}

.document-pdf-scroll::-webkit-scrollbar {
  width: 12px;
}

.document-pdf-scroll::-webkit-scrollbar-thumb {
  background: rgba(10, 20, 85, 0.24);
  border-radius: 999px;
}

.document-pdf-scroll::-webkit-scrollbar-track {
  background: rgba(10, 20, 85, 0.07);
}

.document-pdf-modal-panel {
  width: min(1120px, calc(100vw - 36px));
  padding: 0;
  max-height: calc(100vh - 24px);
  overflow: hidden;
  background: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.document-flyer-figure {
  background: #ffffff;
  overflow: hidden;
}

.document-flyer-figure::before {
  content: "";
  display: block;
  height: 68px;
}

.document-pdf-scroll {
  height: calc(100vh - 112px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  background: #ffffff;
  scrollbar-gutter: stable;
}

.pdf-document-frame {
  display: block;
  width: 100%;
  height: calc(100vh - 112px);
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.modal-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

.modal-panel p:last-of-type {
  margin-bottom: 0;
}

.legal-modal-panel {
  display: flex;
  flex-direction: column;
  width: min(1240px, calc(100vw - 36px));
  max-height: calc(100vh - 24px);
  padding: 28px 30px 24px;
  overflow: hidden;
  border-radius: 8px;
}

.legal-modal-panel .team-modal-title {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.legal-copy {
  display: grid;
  flex: 1 1 auto;
  gap: 12px;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-gutter: stable;
  overscroll-behavior: contain;
  font-size: 0.82rem;
  line-height: 1.56;
}

.legal-copy h3 {
  margin: 10px 0 0;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
  font-size: 0.82rem;
}

.legal-copy h2 {
  margin: 16px 0 4px;
  font-size: 1.02rem;
  font-weight: 700;
}

.legal-copy ol,
.legal-copy ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.56;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(920px, calc(100vw - 28px));
  padding: 16px 18px;
  border: 1px solid rgba(10, 20, 85, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(10, 20, 85, 0.18);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

body.modal-open .cookie-banner {
  display: none;
}

.cookie-banner p,
.cookie-modal-copy,
.cookie-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
}

.cookie-banner a,
.cookie-modal-copy a {
  color: var(--accent);
  font-weight: 700;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-primary-button,
.cookie-secondary-button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-primary-button {
  border: 1px solid rgba(230, 128, 85, 0.44);
  background: var(--accent);
  color: #ffffff;
}

.cookie-secondary-button {
  border: 1px solid rgba(10, 20, 85, 0.16);
  background: rgba(255, 248, 242, 0.96);
  color: var(--primary);
}

.cookie-modal-panel {
  width: min(760px, calc(100vw - 32px));
  padding: 30px;
  border-radius: 8px;
}

.cookie-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-modal-panel .cookie-modal-title {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 700;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(10, 20, 85, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.cookie-option h3 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.cookie-option input {
  width: 42px;
  height: 24px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.cookie-always-active {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.legal-copy a {
  color: var(--accent-deep);
}

.legal-copy::-webkit-scrollbar {
  width: 10px;
}

.legal-copy::-webkit-scrollbar-thumb {
  background: rgba(10, 20, 85, 0.18);
  border-radius: 999px;
}

.legal-copy::-webkit-scrollbar-track {
  background: rgba(10, 20, 85, 0.06);
}

.legal-note {
  color: rgba(10, 20, 85, 0.7);
  font-size: 0.82rem;
  font-style: italic;
}

.legal-loading {
  color: rgba(10, 20, 85, 0.7);
  font-style: italic;
}

.knowledge-gap-object,
.solution-graphic-object {
  cursor: default;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(10, 20, 85, 0.08);
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

@media (min-width: 1440px) {
  .modal {
    padding: 14px;
  }

  .modal-panel {
    width: min(1680px, calc(100vw - 28px));
    padding: 46px;
    max-height: calc(100vh - 28px);
  }

  .team-modal-panel {
    width: min(1780px, calc(100vw - 32px));
  }

  .solution-modal-panel {
    width: min(1820px, calc(100vw - 32px));
  }

  .pdf-modal-panel {
    width: min(1860px, calc(100vw - 24px));
  }

  .legal-modal-panel {
    width: min(1800px, calc(100vw - 28px));
    max-height: calc(100vh - 24px);
    padding: 40px 42px 34px;
  }

  .legal-modal-panel .team-modal-title {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 1.2vw + 1rem, 2.7rem);
    font-weight: 700;
  }

  .team-modal-title {
    margin-bottom: 28px;
    font-size: clamp(2.9rem, 1.8vw + 1.9rem, 4.5rem);
  }

  .solution-layout {
    gap: 40px;
  }

  .team-grid {
    gap: 28px;
  }

  .team-card {
    grid-template-columns: 176px 1fr;
    gap: 28px;
    padding: 28px;
  }

  .team-photo {
    width: 176px;
    border-radius: 8px;
  }

  .team-meta {
    gap: 12px;
  }

  .team-card h3 {
    font-size: 1.46rem;
    line-height: 1.16;
  }

  .team-copy {
    gap: 16px;
  }

  .team-card p {
    font-size: 1.22rem;
    line-height: 1.68;
  }

  .team-linkmark {
    width: 62px;
    height: 62px;
    font-size: 2.14rem;
  }

  .solution-benefit {
    padding: 22px 24px;
  }

  .solution-benefit p {
    font-size: 1.24rem;
    line-height: 1.56;
  }

  .solution-graphic-wrap {
    padding: 14px;
    border-radius: 8px;
  }

  .legal-copy {
    font-size: 0.9rem;
  }

  .legal-copy h2 {
    font-size: 1.12rem;
  }

  .legal-copy h3 {
    font-size: 0.98rem;
  }

  .legal-copy p,
  .legal-copy ol,
  .legal-copy ul {
    font-size: 0.9rem;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .hero,
  .about-layout,
  .services-layout,
  .offering-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    --hero-shell-padding: 32px;
    padding: 0 var(--hero-shell-padding) 32px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 460px;
  }

  .client-carousel-viewport {
    max-width: 100%;
  }

  .services-layout,
  .service-tabs {
      grid-template-columns: 1fr;
    }

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

  .service-tab {
    min-height: 64px;
    text-align: left;
  }

  .service-visual {
      min-height: 460px;
    }

}

@media (max-width: 720px) {
  .document-pdf-modal {
    place-items: start stretch !important;
    padding: 0 !important;
  }

  .modal#founding-team {
    place-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .modal#founding-team .team-modal-panel {
    width: 100%;
    max-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }

  .modal#founding-team .team-modal-title {
    margin: 0 0 16px;
    padding: 12px 60px 0 14px;
  }

  .modal#founding-team .modal-close {
    top: 8px;
    right: 10px;
  }

  .page-shell {
    width: min(100% - 20px, 100%);
    padding-top: 0;
  }

  .about,
  .offerings,
  .footer {
    padding: 22px;
  }

  .topbar {
    position: sticky;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand img {
    width: min(clamp(102px, 28vw, 132px), 31vw);
  }

  .nav {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero {
    gap: 18px;
    --hero-shell-padding: 0px;
    padding: 0 0 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.78rem, 6.4vw, 2.36rem);
  }

  .hero-text,
  .about-panel {
    font-size: 1rem;
  }

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

  .hero-contact {
    align-items: flex-start;
    gap: 10px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-line-mobile {
    display: block;
  }

  .about,
  .offerings,
  .footer,
  .services-shell {
      height: auto;
      max-height: none;
      min-height: 0;
    }

  .service-list-item {
    min-height: 50px;
    padding: 6px 14px;
    font-size: 0.96rem;
  }

  .service-list-more {
    padding: 0 20px 18px;
  }

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

  .service-overlay-card {
    left: 5%;
    right: 5%;
    top: 24px;
    transform: none;
    padding: 18px 20px;
  }

  .service-overlay-card h3 {
    font-size: 1.32rem;
  }

  .service-overlay-copy p,
  .service-overlay-copy ul {
    font-size: 1.04rem;
  }

  .abstract-orb-one {
    width: 120px;
    height: 120px;
    right: 32px;
  }

  .abstract-orb-two {
    width: 160px;
    height: 160px;
    left: 24px;
  }

  .abstract-panel-one {
    width: 124px;
    height: 166px;
    right: 48px;
  }

  .abstract-panel-two {
    width: 104px;
    height: 126px;
    left: 62px;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .section-heading h2 {
    max-width: none;
  }

  .offering-card h3 {
    margin-top: 36px;
  }

  .footer {
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 24px 24px 14px;
    text-align: left;
  }

  .footer-col-center,
  .footer-col-right {
    text-align: left;
    justify-items: start;
  }

  .footer-bottom {
    padding: 10px 24px 14px;
  }

  .modal-panel {
    padding: 24px;
  }

  .legal-modal-panel {
    width: min(100%, calc(100vw - 20px));
    max-height: calc(100vh - 20px);
    padding: 22px;
  }

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

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

  .team-identity {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: stretch;
    gap: 14px;
    text-align: left;
  }

  .team-meta {
    justify-items: start;
    align-content: center;
    gap: 10px;
  }

  .team-card h3 {
    font-size: 1.04rem;
  }

  .team-linkmark {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }
}

/* Canonical mobile header and hero rules */
@media (max-width: 720px) {
  .page-shell {
    width: 100%;
  }

  .about,
  .offerings,
  .footer {
    padding-left: 0;
    padding-right: 0;
    margin-top: 14px;
  }

  .footer {
    margin-top: 0;
  }

  .offerings {
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding-top: 6px;
    padding-bottom: 0;
    min-height: auto;
  }

  .about {
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding-top: 6px;
    padding-bottom: 0;
  }

  .topbar {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    align-self: start;
    flex-wrap: nowrap;
    padding: 10px 14px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    display: block;
    width: min(124px, 30vw);
    max-width: 100%;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex: 0 0 42px;
  }

  .nav-toggle span {
    left: 11px;
    right: 11px;
  }

  .hero {
    --hero-shell-padding: 0px;
    padding: 0 0 12px;
  }

  .hero .topbar {
    margin-inline: 0;
    width: 100%;
  }

  .hero-copy {
    padding: 10px 14px 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.96rem, 5.8vw, 2.36rem);
    line-height: 1.06;
  }

  .hero-line-mobile {
    display: block;
  }

  .hero-text {
    max-width: 29ch;
    margin: 18px 0 12px;
    font-size: 1.08rem;
    line-height: 1.64;
  }

  .hero-pillars {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 6px;
    padding-bottom: 0;
    align-items: stretch;
  }

  .hero-pillars {
    display: none;
  }

  .hero-pillars a,
  .contact-link-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .hero-pillars a {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
  }

  .hero-contact {
    justify-content: center;
    margin-top: 12px;
  }

  .contact-link-cta {
    align-items: center;
    justify-content: center;
  }

  .about-metrics {
    display: none;
  }

  .about .section-heading {
    display: none;
  }

  .services-shell {
    margin: 0;
    border: 1px solid rgba(10, 20, 85, 0.06);
    border-radius: var(--card-radius);
    background: rgba(255, 252, 247, 0.9);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .services-header {
    display: block;
    padding: 12px 14px 12px;
    border: 0;
    background: transparent;
  }

  .services-title,
  .services-title span {
    color: var(--accent);
  }

  .services-title {
    font-size: clamp(0.92rem, 0.7vw + 0.34vh, 1.08rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.18;
    text-transform: uppercase;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

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

  .service-tab {
    min-height: 58px;
    padding: 12px 10px;
    text-align: center;
    font-size: 0.9rem;
  }

  .service-list {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
    background: rgba(245, 246, 250, 0.74);
  }

  .service-visual {
    position: relative;
    z-index: 0;
    height: auto;
    min-height: 380px;
    margin-top: 10px;
    overflow: visible;
  }

  .service-scene {
    display: block;
    min-height: 380px;
    height: 100%;
    overflow: visible;
  }

  .service-overlay-card {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 24px;
    transform: none;
    margin: 0;
  }

  .services-shell.has-detail-overlay .service-visual {
    min-height: 0;
  }

  .services-shell.has-detail-overlay .service-scene {
    display: grid;
    min-height: 0;
    height: auto;
  }

  .services-shell.has-detail-overlay .service-overlay-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 24px 20px 28px;
  }

  .document-pdf-modal-panel {
    width: 100vw !important;
    max-width: none !important;
    max-height: 100dvh !important;
    padding: 0 !important;
    overflow-y: auto !important;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .document-flyer-figure {
    min-height: auto;
    background: #ffffff;
  }

  .document-flyer-figure::before {
    height: 64px;
  }

  .flyer-figure .flyer-action-button {
    top: 12px;
    right: auto;
    left: 50%;
    min-height: 38px;
    transform: translateX(-50%);
  }

  .flyer-figure .flyer-controls {
    top: 12px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .flyer-figure .flyer-controls .flyer-action-button {
    position: static;
    transform: none;
    min-height: 38px;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .document-pdf-scroll {
    height: auto;
    max-height: none;
    overflow: hidden;
    background: #ffffff;
    display: block;
    line-height: 0;
    scrollbar-gutter: auto;
  }

  .pdf-document-frame {
    aspect-ratio: 1 / 1.414;
    height: auto;
    min-height: 0;
    width: calc(100vw + 16px);
    max-width: none;
    margin-bottom: -10px;
    margin-left: -8px;
    background: #ffffff;
  }

  .about-lead-line-mobile {
    display: block;
  }

  .about-layout {
    --about-column-gap: 12px;
    min-height: 0;
  }

  .about-panel {
    gap: 10px;
    padding: 14px 14px 12px;
  }

  .about-kicker {
    margin-bottom: 2px;
  }

  .about-lead {
    margin-bottom: 2px;
  }

  .about-copy-grid {
    gap: 10px;
  }

  .client-carousel {
    --client-logo-width: 160px;
    margin-top: 10px;
    margin-bottom: 0;
    margin-inline: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 14px 14px 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 10px 14px 6px;
    gap: 8px;
  }

  .footer-col-left .footer-title,
  .footer-socials a,
  .footer-link-button,
  .footer-email,
  .footer-title-link {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    line-height: 1.25;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 14px 6px;
  }

  .footer-col-left {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: flex-start;
    gap: 6px 8px;
    min-height: 0;
  }

  .footer-col-left .footer-title {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .footer-col-left .footer-link + .footer-link::before {
    content: "|";
    margin-right: 8px;
    color: rgba(10, 20, 85, 0.5);
  }

  .footer-col-center {
    display: none;
  }

  .footer-col-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    min-height: 30px;
    line-height: 1.25;
  }

  .footer-socials {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    gap: 4px;
  }

  .footer-socials::after {
    content: "|";
    display: inline-flex;
    align-items: center;
    min-height: 0;
    margin: 0 8px 0 6px;
    color: rgba(10, 20, 85, 0.5);
    line-height: 1;
  }

  .footer-email::before {
    content: none;
  }

  .footer-email {
    min-height: 30px;
    font-size: 0.88rem;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    bottom: 10px;
    gap: 12px;
    padding: 14px;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-primary-button,
  .cookie-secondary-button {
    flex: 1 1 0;
    padding: 0 10px;
  }

  .cookie-modal-panel {
    width: min(100vw - 20px, 100%);
    padding: 24px 16px 18px;
  }

  .cookie-option {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .about-lead {
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .about-copy-grid p {
    padding: 9px 11px 10px;
    min-height: 0;
  }

  .about-actions {
    gap: 10px;
    margin-top: 2px;
  }

  .about-panel::before {
    top: 0;
    right: 12px;
    width: 50%;
  }
}

@media (max-width: 420px) {
  .about,
  .offerings {
    margin-top: 10px;
  }

  .footer {
    margin-top: 0;
  }

  .brand img {
    width: min(116px, 28vw);
  }

  .hero h1 {
    font-size: clamp(1.88rem, 5.8vw, 2.16rem);
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-pillars {
    gap: 8px;
  }

  .hero-pillars a {
    font-size: 0.82rem;
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 8px;
  }
}
