@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f7fbff;
  --bg-deep: #edf4ff;
  --bg-band-a: rgba(255, 255, 255, 0.42);
  --bg-band-b: rgba(232, 241, 255, 0.44);
  --bg-band-c: rgba(244, 248, 253, 0.72);
  --bg-band-warm: rgba(255, 181, 95, 0.08);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --ink: #0f1b2d;
  --ink-soft: #39506f;
  --line: rgba(16, 38, 71, 0.12);
  --brand: #102647;
  --brand-strong: #1f3d6d;
  --brand-soft: #e8f1ff;
  --accent: #4f82c9;
  --accent-soft: #eef4ff;
  --success: #245d4f;
  --shadow: 0 22px 60px rgba(16, 38, 71, 0.14);
  --shadow-soft: 0 12px 30px rgba(16, 38, 71, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --anchor-offset: 96px;
  --fs-display: clamp(2.5rem, 5vw, 4.85rem);
  --fs-hero-copy: clamp(1.08rem, 1.8vw, 1.3rem);
  --fs-section: clamp(1.9rem, 3vw, 3rem);
  --fs-body: 1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(79, 130, 201, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 181, 95, 0.12), transparent 24%),
    linear-gradient(180deg, #f9fcff 0%, #eef4ff 44%, #f7fbff 100%);
  width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 38, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 38, 71, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 78%);
  pointer-events: none;
  z-index: -1;
}

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

.skip-link,
.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;
}

.skip-link {
  top: 0.75rem;
  left: 0.75rem;
  z-index: 120;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  margin: 0;
  clip: auto;
  background: #ffffff;
  color: var(--brand);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid rgba(79, 130, 201, 0.7);
  outline-offset: 2px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(31, 61, 109, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header::after {
  content: "";
  position: fixed;
  inset: 74px 0 0 0;
  background: rgba(31, 61, 109, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 40;
}

body.menu-open .site-header::after {
  opacity: 1;
  pointer-events: auto;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: relative;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.brand-text,
.footer-brand-text {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-item.has-subnav::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.55rem;
}

.nav-item > a[data-nav] {
  gap: 0.42rem;
}

.nav-item > a[data-nav]::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

.subnav-toggle {
  display: none;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  color: rgba(235, 240, 236, 0.8);
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.brand:focus-visible,
.footer-brand:focus-visible,
.nav-links a:focus-visible,
.btn:focus-visible,
.filter-btn:focus-visible,
.showcase-tile:focus-visible,
.faq-shortcut:focus-visible,
.footer-links-group a:focus-visible {
  outline: 2px solid rgba(79, 130, 201, 0.72);
  outline-offset: 3px;
}

.nav-links a:focus-visible,
.btn:focus-visible,
.filter-btn:focus-visible,
.showcase-tile:focus-visible,
.faq-shortcut:focus-visible,
.footer-links-group a:focus-visible {
  transform: translateY(-1px);
}

.nav-links a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-item.active > a[data-nav] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-links.has-open-subnav .nav-item.active > a[data-nav]:not([aria-expanded="true"]) {
  color: rgba(235, 240, 236, 0.8);
  background: transparent;
}

.nav-item:hover > a[data-nav]::after,
.nav-item.subnav-open > a[data-nav]::after,
.nav-item.active > a[data-nav]::after {
  opacity: 1;
  transform: rotate(45deg) translate(1px, 0);
}

.nav-links.has-open-subnav .nav-item.active > a[data-nav]:not([aria-expanded="true"])::after {
  opacity: 0.72;
  transform: rotate(45deg) translateY(-1px);
}

.subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 0.75rem 0.45rem 0.45rem;
  display: grid;
  gap: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(12, 26, 48, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 55;
}

.subnav.subnav-right {
  left: auto;
  right: 0;
}

.nav-item:hover .subnav,
.nav-item.subnav-open .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.subnav a {
  min-height: 0;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  color: rgba(235, 240, 236, 0.84);
  line-height: 1.35;
  transform: none;
  justify-content: flex-start;
  gap: 0.7rem;
}

.subnav a:hover,
.subnav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: none;
}

.subnav a i {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  opacity: 0.88;
}

.subnav a span {
  flex: 1 1 auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open {
  overflow: hidden;
}

.page-shell {
  position: relative;
  padding-top: 74px;
  overflow-x: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  z-index: -1;
  opacity: 0.75;
}

.page-shell::before {
  width: 320px;
  height: 320px;
  top: 180px;
  left: -120px;
  background: rgba(79, 130, 201, 0.14);
}

.page-shell::after {
  width: 420px;
  height: 420px;
  top: 620px;
  right: -160px;
  background: rgba(79, 130, 201, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 30px rgba(16, 38, 71, 0.28);
}

.btn-secondary {
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #cddcf2;
  box-shadow: var(--shadow-soft);
}

.btn-quiet {
  color: var(--brand);
  background: transparent;
  border: 1px solid rgba(16, 38, 71, 0.18);
}

.btn[disabled] {
  cursor: wait;
  opacity: 0.85;
}

main section {
  position: relative;
  padding: 3.9rem 0;
  scroll-margin-top: 82px;
}

main [id],
footer[id],
details[id] {
  scroll-margin-top: var(--anchor-offset);
}

main > section:not(.hero):not(.section-surface):not(.section-tint):not(.section-dark) {
  isolation: isolate;
  border-top: 1px solid rgba(16, 38, 71, 0.06);
  border-bottom: 1px solid rgba(16, 38, 71, 0.04);
}

main > section:not(.hero):not(.section-surface):not(.section-tint):not(.section-dark)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 18%, transparent 82%, rgba(16, 38, 71, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 58%),
    var(--section-band, linear-gradient(180deg, var(--bg-band-a), var(--bg-band-c)));
}

main > section:not(.hero):not(.section-surface):not(.section-tint):not(.section-dark)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(16, 38, 71, 0.14), transparent);
  opacity: 0.7;
}

main > section:not(.hero):not(.section-surface):not(.section-tint):not(.section-dark):nth-of-type(odd) {
  --section-band:
    radial-gradient(circle at 14% 20%, rgba(79, 130, 201, 0.09), transparent 22%),
    linear-gradient(180deg, var(--bg-band-a), var(--bg-band-c));
}

main > section:not(.hero):not(.section-surface):not(.section-tint):not(.section-dark):nth-of-type(even) {
  --section-band:
    radial-gradient(circle at 86% 18%, var(--bg-band-warm), transparent 24%),
    linear-gradient(180deg, var(--bg-band-b), rgba(255, 255, 255, 0.62));
}

main > section:last-of-type {
  border-bottom: 0;
}

main > section:last-of-type::after {
  display: none;
}

#how-we-work {
  scroll-margin-top: 112px;
}

.hero {
  position: relative;
  min-height: clamp(680px, calc(100svh - 74px), 860px);
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero.hero-compact {
  min-height: clamp(680px, calc(100svh - 74px), 860px);
  padding: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-media-position, center);
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 20, 39, 0.34) 0%, rgba(8, 20, 39, 0.26) 18%, rgba(8, 20, 39, 0.16) 38%, rgba(8, 20, 39, 0.08) 60%, rgba(8, 20, 39, 0.02) 78%, rgba(8, 20, 39, 0) 100%),
    linear-gradient(
      180deg,
      var(--hero-overlay-top, rgba(8, 20, 39, 0.86)),
      var(--hero-overlay-bottom, rgba(16, 38, 71, 0.9))
    ),
    radial-gradient(circle at 18% 18%, var(--hero-accent-cool, rgba(79, 130, 201, 0.18)), transparent 20%),
    radial-gradient(circle at 82% 20%, var(--hero-accent-warm, rgba(255, 181, 95, 0.08)), transparent 26%),
    var(--hero-image, linear-gradient(180deg, rgba(8, 20, 39, 0.94), rgba(16, 38, 71, 0.86)));
  background-size: auto, auto, auto, auto, cover;
  background-position: center, center, center, center, var(--hero-position, center);
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 20, 39, 0), rgba(8, 20, 39, 0.28));
}

.hero .container {
  position: relative;
  z-index: 2;
  width: var(--container);
  padding-top: clamp(5.2rem, 7vw, 7rem);
  padding-bottom: clamp(4.8rem, 7vw, 6.2rem);
}

.hero .container::before {
  content: none;
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 1;
}

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

.hero-grid,
.split-layout,
.contact-layout,
.closing-panel,
.showcase-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  width: 100%;
}

.hero-copy {
  max-width: 760px;
  min-height: clamp(20rem, 28vw, 31rem);
  padding: clamp(1.4rem, 2vw, 1.9rem) clamp(1.5rem, 2.4vw, 2.2rem) clamp(1.7rem, 2.8vw, 2.3rem);
  border-radius: 28px;
  background: var(--hero-copy-wash, linear-gradient(90deg, rgba(7, 18, 34, 0.28) 0%, rgba(7, 18, 34, 0.2) 36%, rgba(7, 18, 34, 0.09) 64%, rgba(7, 18, 34, 0.02) 84%, rgba(7, 18, 34, 0) 100%));
  box-shadow: var(--hero-copy-shadow, 0 10px 22px rgba(7, 18, 34, 0.06));
  backdrop-filter: none;
}

.hero-copy h1,
.section-title,
.panel-title,
.showcase-spotlight-title,
.faq-list summary,
.contact-aside h3,
.footer-links-group h3,
.thank-you-title {
  font-family: "Exo 2", sans-serif;
  letter-spacing: -0.02em;
}

.title-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.title-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(16, 38, 71, 0.12);
}

.title-icon svg {
  width: 18px;
  height: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(241, 241, 236, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: var(--fs-display);
  line-height: 0.98;
  color: #f7f6f2;
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 55ch;
  color: rgba(242, 245, 242, 0.88);
  font-size: var(--fs-hero-copy);
}

.hero-actions,
.section-actions,
.contact-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 1rem;
}

.btn-hero-cta {
  color: var(--brand);
  background: #f3f7ff;
  border: 1px solid #d9e5f7;
  box-shadow: 0 18px 34px rgba(7, 16, 32, 0.26);
}

.btn-hero-cta:hover {
  background: #ffffff;
}

.hero-side,
.glass-panel,
.surface-panel,
.mini-panel,
.feature-panel,
.showcase-spotlight,
.form-wrap,
.faq-item,
.thanks-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.glass-panel::before,
.surface-panel::before,
.feature-panel::before,
.showcase-spotlight::before,
.form-wrap::before,
.mini-panel::before,
.faq-item::before,
.thanks-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 55%);
  pointer-events: none;
}

.hero-side {
  width: min(100%, 46ch);
  justify-self: end;
  align-self: center;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f5f3ec;
}

.hero-side .mini-note {
  color: rgba(245, 243, 236, 0.76);
}

.service-detail-page {
  --hero-overlay-top: rgba(8, 20, 39, 0.62);
  --hero-overlay-bottom: rgba(16, 38, 71, 0.78);
  --hero-accent-cool: rgba(79, 130, 201, 0.08);
  --hero-accent-warm: rgba(255, 181, 95, 0.04);
  --hero-copy-wash: linear-gradient(90deg, rgba(7, 18, 34, 0.34) 0%, rgba(7, 18, 34, 0.25) 38%, rgba(7, 18, 34, 0.12) 66%, rgba(7, 18, 34, 0.03) 86%, rgba(7, 18, 34, 0) 100%);
}

.service-detail-page .hero.hero-compact {
  min-height: clamp(620px, calc(100svh - 74px), 780px);
}

.service-detail-page .hero .container {
  padding-top: clamp(4.2rem, 5.8vw, 5.4rem);
  padding-bottom: clamp(5.4rem, 7vw, 6.3rem);
}

.selective-builds-page .hero.hero-compact {
  min-height: clamp(580px, calc(100svh - 74px), 720px);
}

.selective-builds-page .hero .container {
  padding-top: clamp(3.6rem, 4.8vw, 4.5rem);
  padding-bottom: clamp(4.6rem, 5.8vw, 5.2rem);
}

.selective-builds-page .hero h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.85rem, 4.35vw, 4.35rem);
}

.selective-builds-page .hero .hero-copy {
  min-height: 0;
  padding-top: 1.15rem;
  padding-bottom: 1.45rem;
}

.selective-builds-page .hero .service-brand-pill {
  margin-bottom: 0.65rem;
}

.selective-builds-page .hero .hero-lead {
  margin-bottom: 1rem;
  max-width: 49ch;
}

.selective-builds-page .hero .hero-actions {
  margin-top: 0.55rem;
}

.selective-builds-page .hero .service-summary-panel {
  padding: 1rem 1.05rem;
}

.selective-builds-page .hero .service-list {
  gap: 0.65rem;
}

.selective-builds-page .hero .service-list li {
  gap: 0.65rem;
}

:is(.services-page, .contact-page, .service-detail-page) .hero::before,
.hero-compare-light::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.64) 26%, rgba(255, 255, 255, 0.38) 52%, rgba(255, 255, 255, 0.14) 76%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(250, 252, 255, 0.66), rgba(231, 239, 249, 0.58)),
    radial-gradient(circle at 18% 18%, rgba(130, 171, 226, 0.16), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(255, 195, 123, 0.12), transparent 24%),
    var(--hero-image, linear-gradient(180deg, rgba(237, 243, 250, 0.92), rgba(224, 234, 247, 0.88)));
}

:is(.services-page, .contact-page, .service-detail-page) .hero::after,
.hero-compare-light::after {
  background: linear-gradient(180deg, rgba(239, 245, 252, 0), rgba(217, 229, 244, 0.42));
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-media,
.hero-compare-light .hero-media {
  filter: brightness(1.22) saturate(0.86);
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-copy,
.hero-compare-light .hero-copy {
  background: transparent;
  box-shadow: none;
  position: relative;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-copy::after,
.hero-compare-light .hero-copy::after {
  content: "";
  position: absolute;
  inset: -1.1rem -1.5rem -1.3rem -1.3rem;
  z-index: -1;
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38) 42%, rgba(255, 255, 255, 0.14) 68%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(247, 250, 255, 0.54) 38%, rgba(245, 249, 255, 0.18) 66%, rgba(245, 249, 255, 0) 100%);
  pointer-events: none;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .eyebrow,
:is(.services-page, .contact-page, .service-detail-page) .hero .hero-copy .service-brand-inline,
:is(.services-page, .contact-page, .service-detail-page) .hero .service-detail-copy,
:is(.services-page, .contact-page, .service-detail-page) .hero .service-summary-panel p,
:is(.services-page, .contact-page, .service-detail-page) .hero .service-summary-panel li,
:is(.services-page, .contact-page, .service-detail-page) .hero .hero-side p,
:is(.services-page, .contact-page, .service-detail-page) .hero .hero-side li,
.hero-compare-light .eyebrow,
.hero-compare-light .hero-copy .service-brand-inline,
.hero-compare-light .service-detail-copy,
.hero-compare-light .service-summary-panel p,
.hero-compare-light .service-summary-panel li {
  color: #314866;
}

:is(.services-page, .contact-page, .service-detail-page) .hero h1,
.hero-compare-light h1 {
  color: #10233d;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-lead,
.hero-compare-light .hero-lead {
  color: #28415f;
  font-weight: 500;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-copy .service-brand-pill,
.hero-compare-light .hero-copy .service-brand-pill {
  background: linear-gradient(135deg, rgba(232, 240, 250, 0.98), rgba(217, 229, 244, 0.94));
  border-color: rgba(67, 101, 145, 0.18);
  color: #183154;
  box-shadow: 0 12px 24px rgba(36, 65, 104, 0.12);
  text-shadow: none;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .btn-hero-cta,
.hero-compare-light .btn-hero-cta {
  color: #fff;
  background: var(--brand);
  border-color: rgba(16, 38, 71, 0.2);
  box-shadow: 0 18px 30px rgba(16, 38, 71, 0.2);
}

:is(.services-page, .contact-page, .service-detail-page) .hero .btn-secondary,
.hero-compare-light .btn-secondary {
  background: rgba(255, 255, 255, 0.82);
}

:is(.services-page, .contact-page, .service-detail-page) .hero .service-summary-panel,
.hero-compare-light .service-summary-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.92)),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 38, 71, 0.1);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(36, 65, 104, 0.14);
  backdrop-filter: blur(12px);
}

:is(.services-page, .contact-page, .service-detail-page) .hero .service-summary-panel .section-kicker,
.hero-compare-light .service-summary-panel .section-kicker {
  color: #547094;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .service-summary-panel .service-list li,
.hero-compare-light .service-summary-panel .service-list li {
  color: #314866;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .service-summary-panel .service-list li::before,
.hero-compare-light .service-summary-panel .service-list li::before {
  background: linear-gradient(135deg, #5b88c2, #244a80);
  box-shadow: 0 0 0 4px rgba(91, 136, 194, 0.14);
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-side {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.92)),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 38, 71, 0.1);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(36, 65, 104, 0.14);
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-side .section-kicker {
  color: #547094 !important;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-side .mini-note {
  color: #4b6281;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-side strong {
  color: #183154;
}

:is(.services-page, .contact-page, .service-detail-page) .hero .hero-side .icon-chip {
  background: rgba(91, 136, 194, 0.12);
  border-color: rgba(91, 136, 194, 0.14);
  color: #244a80;
}

.hero-compare-light .hero-scroll-cue span,
:is(.services-page, .contact-page, .service-detail-page) .hero .hero-scroll-cue span {
  border-right-color: #244a80;
  border-bottom-color: #244a80;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.85));
}

.service-hero-side {
  display: grid;
  gap: 1rem;
}

.service-hero-summary-mobile {
  display: none;
}

.service-summary-panel,
.service-note-panel,
.service-example-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(16, 38, 71, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.service-summary-panel::before,
.service-note-panel::before,
.service-example-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 62%);
  pointer-events: none;
}

.service-summary-panel > *,
.service-note-panel > *,
.service-example-card > * {
  position: relative;
  z-index: 1;
}

.service-summary-panel {
  background:
    linear-gradient(145deg, rgba(12, 24, 42, 0.9), rgba(22, 47, 84, 0.78)),
    rgba(16, 34, 61, 0.74);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.service-summary-panel p,
.service-summary-panel li,
.service-summary-panel .service-detail-copy {
  color: rgba(255, 255, 255, 0.94);
}

.service-summary-panel .section-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.service-summary-panel .service-list li {
  color: rgba(255, 255, 255, 0.92);
}

.service-summary-panel .service-list li::before {
  background: linear-gradient(135deg, rgba(149, 191, 248, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 0 0 4px rgba(149, 191, 248, 0.14);
}

.service-detail-grid,
.service-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.service-detail-copy {
  margin: 0;
  color: #4b5f7d;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.service-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #4b5f7d;
}

.service-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 0 0 4px rgba(79, 130, 201, 0.12);
  flex: 0 0 auto;
}

.service-panel-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.service-panel-head .section-kicker,
.service-panel-head h3 {
  margin: 0;
}

.service-example-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.18;
  min-height: calc(1.18em * 2);
}

.service-example-card p {
  margin: 0;
  color: #4b5f7d;
}

.service-help-panel {
  display: grid;
  gap: 1rem;
}

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

.service-outcome-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 38, 71, 0.1);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.88));
  box-shadow: var(--shadow-soft);
}

.service-outcome-chip i {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: #fff;
  padding: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5cbe7d, #2f9e62);
  box-shadow: 0 10px 20px rgba(47, 158, 98, 0.2);
}

.service-outcome-chip strong {
  display: block;
  color: var(--ink);
  line-height: 1.4;
}

.service-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
}

.service-cta-copy p + p {
  margin-top: 0.9rem;
}

.hero-badges,
.trust-points,
.inline-list,
.detail-list,
.spotlight-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-badges {
  display: grid;
  gap: 0.8rem;
}

.hero-badges li,
.trust-points li,
.detail-list li,
.spotlight-points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.hero-badges strong,
.trust-points strong {
  display: block;
  margin-bottom: 0.12rem;
}

.hero-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: clamp(0.9rem, 2vw, 1.35rem);
  z-index: 32;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.hero-scroll-cue:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.hero-scroll-cue.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero-scroll-cue span {
  width: 12px;
  height: 12px;
  border-right: 2.5px solid rgba(255, 255, 255, 0.98);
  border-bottom: 2.5px solid rgba(255, 255, 255, 0.98);
  transform: translateY(-3px) rotate(45deg);
  animation: heroCueFloat 2.6s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(7, 18, 34, 0.52));
}

@keyframes heroCueFloat {
  0%, 100% {
    transform: translateY(-4px) rotate(45deg);
    opacity: 0.72;
  }
  50% {
    transform: translateY(1px) rotate(45deg);
    opacity: 1;
  }
}

.icon-chip,
.point-icon,
.step-number,
.faq-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(16, 38, 71, 0.1);
}

.icon-chip svg,
.point-icon svg,
.faq-icon svg {
  width: 18px;
  height: 18px;
}

.stat-row,
.filter-row,
.proof-strip {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.stat-chip,
.filter-btn,
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 71, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: var(--brand);
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.filter-btn {
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.filter-btn.active,
.filter-btn:hover {
  transform: translateY(-1px);
  background: var(--brand);
  color: #fff;
}

.filter-btn:focus-visible {
  background: var(--brand);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-kicker {
  margin: 0 0 0.6rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: var(--fs-section);
  line-height: 1.05;
  color: var(--ink);
}

.section-copy,
.mini-note,
.muted,
.faq-answer,
.form-note,
.form-subnote,
.field-note,
.showcase-meta {
  color: #4b5f7d;
}

.section-copy {
  margin: 0;
  max-width: 62ch;
}

.section-copy + .section-copy {
  margin-top: 0.9rem;
}

.section-surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14)),
    rgba(255, 255, 255, 0.24);
  border-top: 1px solid rgba(16, 38, 71, 0.05);
  border-bottom: 1px solid rgba(16, 38, 71, 0.05);
}

.home-process-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(79, 130, 201, 0.1), transparent 22%),
    radial-gradient(circle at 84% 20%, rgba(255, 181, 95, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(236, 243, 252, 0.94));
  border-top: 1px solid rgba(16, 38, 71, 0.05);
  border-bottom: 1px solid rgba(16, 38, 71, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(16, 38, 71, 0.03);
}

.home-process-section .section-kicker,
.home-process-section .section-copy,
.home-process-section .timeline-copy {
  color: #4b5f7d;
}

.home-process-section .section-title,
.home-process-section .timeline-title {
  color: var(--ink);
}

.home-process-section .step-label {
  color: var(--brand);
  background: rgba(232, 241, 255, 0.92);
  border-color: rgba(16, 38, 71, 0.12);
}

.home-process-section .timeline-card {
  border: 1px solid rgba(16, 38, 71, 0.09);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.9)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(16, 38, 71, 0.08);
}

.clarity-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 253, 255, 0.82)),
    rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(16, 38, 71, 0.04);
  border-bottom: 1px solid rgba(16, 38, 71, 0.04);
}

.clarity-section .mini-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.94)),
    rgba(255, 255, 255, 0.96);
}

.credibility-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(79, 130, 201, 0.18), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(79, 130, 201, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(221, 233, 248, 0.96), rgba(238, 245, 252, 0.98));
  border-top: 1px solid rgba(16, 38, 71, 0.08);
  border-bottom: 1px solid rgba(16, 38, 71, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(16, 38, 71, 0.04);
}

.credibility-section .stat-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 253, 0.9)),
    rgba(255, 255, 255, 0.92);
}

.section-tint {
  background:
    radial-gradient(circle at 18% 20%, rgba(79, 130, 201, 0.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 181, 95, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(229, 238, 250, 0.86), rgba(243, 247, 252, 0.92));
  border-top: 1px solid rgba(16, 38, 71, 0.06);
  border-bottom: 1px solid rgba(16, 38, 71, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(16, 38, 71, 0.04);
}

.section-tint .feature-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 253, 0.86)),
    rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 38, 71, 0.1);
  box-shadow: 0 18px 34px rgba(16, 38, 71, 0.08);
}

.choose-us-grid {
  gap: 1rem;
  align-self: stretch;
}

.choose-us-grid .mini-panel {
  padding: 1.35rem;
}

.choose-us-grid .panel-title {
  font-size: 1.12rem;
}

.section-dark {
  color: #f5f4ef;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 95, 0.16), transparent 24%),
    linear-gradient(135deg, #102647, #1f3d6d 55%, #2b5189);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(8, 20, 39, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 -1px 0 rgba(8, 20, 39, 0.2);
}

.section-dark .section-kicker,
.section-dark .section-copy,
.section-dark .panel-text,
.section-dark .timeline-copy,
.section-dark .mini-note {
  color: rgba(229, 239, 255, 0.84);
}

.section-dark .section-title,
.section-dark .panel-title {
  color: #f7f6f2;
}


.stats-grid,
.feature-grid,
.principles-grid,
.mini-grid,
.faq-grid,
.showcase-listing {
  display: grid;
  gap: 1rem;
}

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

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

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

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

.clarity-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.clarity-bridge .mini-panel {
  height: 100%;
}

.bridge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridge-icon .point-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.bridge-icon .point-icon svg {
  width: 20px;
  height: 20px;
}

.stat-card,
.feature-panel,
.surface-panel,
.mini-panel,
.faq-item {
  padding: 1.35rem;
}

.stat-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 38, 71, 0.09);
  box-shadow: var(--shadow-soft);
}

.stat-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.stat-value {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.split-layout {
  align-items: center;
}

.surface-panel,
.mini-panel,
.feature-panel {
  background: var(--surface-strong);
}


.panel-title {
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
  color: var(--ink);
}

.panel-text,
.feature-panel p {
  margin: 0;
  color: #4b5f7d;
}

.panel-text + .panel-text {
  margin-top: 0.85rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.3rem;
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 38, 71, 0.1);
  box-shadow: var(--shadow);
  background: #dfe8f5;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 39, 0.1), rgba(8, 20, 39, 0.34)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(8, 20, 39, 0.56);
  color: rgba(247, 246, 242, 0.92);
  font-size: 0.88rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.image-panel.image-panel-tall {
  min-height: 320px;
}

.image-panel.image-panel-short {
  min-height: 220px;
}

.editorial-stack {
  display: grid;
  gap: 1rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.partnership-fit-cards {
  gap: 1rem;
  align-self: stretch;
}

.partnership-fit-card {
  padding: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 253, 0.9)),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 38, 71, 0.1);
  box-shadow: 0 18px 34px rgba(6, 14, 28, 0.12);
}

.partnership-fit-title {
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 1.12rem;
}

.partnership-fit-copy {
  margin: 0;
  color: var(--ink-soft);
}

.partnership-fit-cards .title-icon {
  color: var(--brand);
  background: rgba(232, 241, 255, 0.9);
  border-color: rgba(16, 38, 71, 0.1);
}

.section-dark .partnership-fit-title {
  color: var(--ink);
}

.section-dark .partnership-fit-copy {
  color: var(--ink-soft);
}

.section-dark .partnership-fit-cards .title-icon {
  color: var(--brand);
  background: rgba(232, 241, 255, 0.9);
  border-color: rgba(16, 38, 71, 0.1);
}

.timeline-rail {
  display: grid;
  place-items: center;
  align-self: center;
}

.step-label {
  min-width: 88px;
  min-height: 32px;
  padding: 0.15rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 243, 236, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(6, 14, 28, 0.12);
}

.timeline-card {
  width: 100%;
  height: 100%;
  padding: 0.95rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(6, 14, 28, 0.16);
}

.timeline-title {
  margin: 0 0 0.2rem;
  font-family: "Exo 2", sans-serif;
  font-size: 1.12rem;
  line-height: 1.18;
}

.timeline-copy {
  margin: 0;
  font-size: 0.98rem;
}

.quote-band {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(79, 130, 201, 0.12), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 38, 71, 0.08);
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: var(--brand);
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 3.8rem;
  line-height: 1;
}

.quote-copy {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ink);
}

.showcase-spotlight {
  position: relative;
  padding: 1.7rem;
  margin-bottom: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(98, 151, 224, 0.22), rgba(98, 151, 224, 0) 34%),
    linear-gradient(135deg, rgba(79, 130, 201, 0.14), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 38, 71, 0.08);
  box-shadow: var(--shadow);
}

.showcase-spotlight::before {
  content: "";
  position: absolute;
  inset: 20px 22px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(114, 163, 228, 0.22), rgba(114, 163, 228, 0));
  pointer-events: none;
}

.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 38, 71, 0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-featured-kicker {
  margin: 1rem 0 0.4rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-label svg {
  width: 16px;
  height: 16px;
}

.showcase-spotlight-title {
  margin: 0 0 0.45rem;
  font-size: 2rem;
  color: var(--ink);
}

.showcase-spotlight-copy,
.showcase-spotlight-summary {
  margin: 0;
}

.showcase-spotlight-summary {
  font-size: 1.06rem;
  color: var(--ink);
}

.showcase-spotlight-copy {
  margin-top: 0.55rem;
  color: var(--ink-soft);
}

.showcase-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.proof-pill,
.showcase-proof-strip li {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 38, 71, 0.07);
  border: 1px solid rgba(16, 38, 71, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  list-style: none;
}

.showcase-proof-strip li.proof-pill-live,
.proof-pill-live {
  background: rgba(57, 140, 84, 0.14);
  border-color: rgba(57, 140, 84, 0.2);
  color: #1f6a3b;
}

.spotlight-points {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.spotlight-points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.spotlight-point-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(79, 130, 201, 0.12);
  border: 1px solid rgba(79, 130, 201, 0.16);
}

.spotlight-point-icon svg {
  width: 14px;
  height: 14px;
}

.showcase-link {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 71, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 242, 255, 0.92));
  color: var(--brand);
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(16, 38, 71, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.showcase-link:hover,
.showcase-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(16, 38, 71, 0.22);
  box-shadow: 0 16px 28px rgba(16, 38, 71, 0.14);
}

.showcase-preview {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  padding: 1rem;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(135, 177, 232, 0.28), rgba(135, 177, 232, 0) 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 255, 0.92)),
    #dfeaff;
  border: 1px solid rgba(16, 38, 71, 0.09);
  box-shadow: 0 24px 54px rgba(16, 38, 71, 0.14);
}

.showcase-preview img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 28px rgba(16, 38, 71, 0.12);
}

.showcase-preview img.preview-contain {
  object-fit: contain;
}

.showcase-preview img.preview-cover {
  object-fit: cover;
}

.showcase-spotlight-grid {
  align-items: stretch;
}

.home-page,
.about-page,
.showcases-page,
.faq-page,
.contact-page,
.thanks-page,
.services-page {
  --hero-overlay-top: rgba(8, 20, 39, 0.38);
  --hero-overlay-bottom: rgba(16, 38, 71, 0.52);
  --hero-accent-cool: rgba(79, 130, 201, 0.08);
  --hero-accent-warm: rgba(255, 181, 95, 0.03);
  --hero-copy-shadow: 0 10px 22px rgba(7, 18, 34, 0.06);
}

.home-page {
  --hero-image: url("https://images.unsplash.com/photo-1690609900572-8f9d32cbd8b7?auto=format&fit=crop&w=1800&q=80");
  --hero-copy-wash: linear-gradient(90deg, rgba(7, 18, 34, 0.32) 0%, rgba(7, 18, 34, 0.24) 36%, rgba(7, 18, 34, 0.12) 64%, rgba(7, 18, 34, 0.03) 84%, rgba(7, 18, 34, 0) 100%);
}

.about-page {
  --hero-image: url("../Pictures/North_Shore.webp");
  --hero-copy-wash: linear-gradient(90deg, rgba(7, 18, 34, 0.36) 0%, rgba(7, 18, 34, 0.28) 38%, rgba(7, 18, 34, 0.14) 66%, rgba(7, 18, 34, 0.04) 86%, rgba(7, 18, 34, 0) 100%);
}

.about-page main > section:not(.hero) {
  scroll-margin-top: 88px;
}

.about-page .section-head {
  margin-bottom: 2rem;
}

.about-page .section-head .section-kicker {
  margin-bottom: 0.7rem;
}

.about-page .section-head .section-title {
  max-width: 15ch;
}

.about-page .section-head .section-copy {
  max-width: 60ch;
}

.about-story-section .section-head,
.about-value-section .section-head,
.about-leadership-section .section-head,
.about-cta-section .section-head,
.about-investment-section .section-head {
  max-width: 800px;
}

.about-story-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(79, 130, 201, 0.14), transparent 24%),
    radial-gradient(circle at 12% 86%, rgba(255, 181, 95, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(240, 246, 253, 0.94));
  border-top: 1px solid rgba(16, 38, 71, 0.04);
  border-bottom: 1px solid rgba(16, 38, 71, 0.06);
}

.about-fit-section .split-layout,
.about-story-section .split-layout {
  align-items: center;
}

.about-fit-section .partnership-fit-cards,
.about-story-section .editorial-stack {
  align-self: stretch;
}

.about-story-section .editorial-stack,
.about-fit-section .partnership-fit-cards {
  gap: 1.1rem;
}

.about-story-section .surface-panel,
.about-fit-section .surface-panel,
.about-value-section .mini-panel,
.about-leadership-section .surface-panel {
  height: 100%;
}

.about-leadership-section .leadership-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 38, 71, 0.07);
  border: 1px solid rgba(16, 38, 71, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-fit-section a.surface-panel {
  display: block;
  color: inherit;
  text-decoration: none;
}

.about-fit-section a.surface-panel:hover,
.about-fit-section a.surface-panel:focus-visible {
  border-color: rgba(236, 244, 255, 0.28);
  box-shadow: 0 22px 44px rgba(6, 15, 29, 0.18);
  transform: translateY(-2px);
}

.about-story-section .surface-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 253, 0.94)),
    rgba(255, 255, 255, 0.96);
  border-color: rgba(16, 38, 71, 0.1);
  box-shadow: 0 18px 34px rgba(16, 38, 71, 0.08);
}

.about-fit-section {
  position: relative;
}

.about-fit-section .section-head {
  margin-bottom: 1.7rem;
  max-width: 760px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-fit-section .about-fit-heading {
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.about-fit-section .about-detail-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-fit-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(236, 244, 255, 0.4) 18%, rgba(236, 244, 255, 0.15) 82%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.about-investment-section .feature-grid,
.about-leadership-section .principles-grid,
.about-value-section .mini-grid {
  align-items: stretch;
}

.about-investment-section .section-head {
  margin-bottom: 2.15rem;
}

.about-investment-section .feature-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 38, 71, 0.1);
}

.about-value-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 181, 95, 0.12), transparent 22%),
    radial-gradient(circle at 86% 82%, rgba(79, 130, 201, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.88));
  border-top: 1px solid rgba(16, 38, 71, 0.04);
  border-bottom: 1px solid rgba(16, 38, 71, 0.05);
}

.about-value-section .mini-grid {
  gap: 1.15rem;
}

.about-value-section .mini-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 255, 0.93)),
    rgba(255, 255, 255, 0.95);
  border-color: rgba(16, 38, 71, 0.08);
}

.about-leadership-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(79, 130, 201, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(243, 248, 255, 0.54)),
    rgba(255, 255, 255, 0.3);
}

.about-leadership-section .principles-grid {
  gap: 1.15rem;
}

.about-leadership-section .surface-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 253, 0.94)),
    rgba(255, 255, 255, 0.96);
}

.about-cta-section {
  border-bottom: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 181, 95, 0.1), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(79, 130, 201, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(238, 245, 252, 0.92));
}

.about-cta-section::after {
  display: none;
}

.about-cta-section .closing-panel {
  padding: 1.8rem 1.9rem;
  border: 1px solid rgba(16, 38, 71, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.94)),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(16, 38, 71, 0.12);
}

.about-cta-section .closing-panel h2 {
  max-width: 15ch;
}

.showcases-page {
  --hero-image: url("https://images.unsplash.com/photo-1666962647530-4762af97e062?auto=format&fit=crop&w=1800&q=80");
  --hero-copy-wash: linear-gradient(90deg, rgba(7, 18, 34, 0.42) 0%, rgba(7, 18, 34, 0.32) 38%, rgba(7, 18, 34, 0.17) 66%, rgba(7, 18, 34, 0.05) 86%, rgba(7, 18, 34, 0) 100%);
}

.faq-page {
  --hero-image: url("../Pictures/FAQ_Hero.webp");
  --hero-position: center 40%;
  --hero-copy-wash: linear-gradient(90deg, rgba(7, 18, 34, 0.44) 0%, rgba(7, 18, 34, 0.34) 40%, rgba(7, 18, 34, 0.18) 68%, rgba(7, 18, 34, 0.05) 88%, rgba(7, 18, 34, 0) 100%);
}

.contact-page {
  --hero-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80");
  --hero-copy-wash: linear-gradient(90deg, rgba(7, 18, 34, 0.32) 0%, rgba(7, 18, 34, 0.24) 38%, rgba(7, 18, 34, 0.11) 66%, rgba(7, 18, 34, 0.03) 86%, rgba(7, 18, 34, 0) 100%);
}

.thanks-page {
  --hero-image: url("https://images.unsplash.com/photo-1647031821674-0a79e499fbc0?auto=format&fit=crop&w=1800&q=80");
  --hero-copy-wash: linear-gradient(90deg, rgba(7, 18, 34, 0.34) 0%, rgba(7, 18, 34, 0.25) 36%, rgba(7, 18, 34, 0.12) 64%, rgba(7, 18, 34, 0.03) 84%, rgba(7, 18, 34, 0) 100%);
}

.services-page {
  --hero-copy-wash: linear-gradient(90deg, rgba(7, 18, 34, 0.34) 0%, rgba(7, 18, 34, 0.25) 38%, rgba(7, 18, 34, 0.12) 66%, rgba(7, 18, 34, 0.03) 86%, rgba(7, 18, 34, 0) 100%);
}

.showcase-listing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.showcase-tile {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(16, 38, 71, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.showcase-tile > * {
  position: relative;
  z-index: 1;
}

.showcase-tile-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 255, 0.86)),
    linear-gradient(180deg, rgba(22, 46, 87, 0.22), rgba(22, 46, 87, 0.1)),
    url("../Pictures/Poster 1.webp") center / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.showcase-tile-design::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 255, 0.86)),
    linear-gradient(180deg, rgba(22, 46, 87, 0.2), rgba(22, 46, 87, 0.08)),
    url("../Pictures/Designing 1.webp") center / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.showcase-tile-client::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 255, 0.86)),
    linear-gradient(180deg, rgba(22, 46, 87, 0.18), rgba(22, 46, 87, 0.08)),
    url("../Pictures/Client Visit 1.webp") center / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.showcase-tile:hover,
.showcase-tile.active {
  transform: translateY(-4px);
  border-color: rgba(16, 38, 71, 0.18);
  box-shadow: 0 18px 36px rgba(16, 38, 71, 0.12);
}

.showcase-tile:focus-visible {
  border-color: rgba(16, 38, 71, 0.22);
  box-shadow: var(--shadow);
}

.showcase-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 71, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.showcase-status-live {
  border-color: rgba(57, 140, 84, 0.22);
  background: rgba(239, 249, 242, 0.9);
  color: #1f6a3b;
}

.showcase-status-development,
.showcase-status-pipeline {
  border-color: rgba(16, 38, 71, 0.1);
  background: rgba(248, 250, 255, 0.9);
  color: var(--brand);
}

.showcase-source {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
}

.showcase-badge.partner {
  background: var(--accent-soft);
  color: #7c5321;
}

.showcase-badge.inhouse {
  background: var(--brand-soft);
  color: var(--brand);
}

.showcase-tile h3 {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.showcase-tile p {
  margin: 0;
  color: var(--ink-soft);
}

.showcase-collection-head {
  margin-bottom: 0.4rem;
}

.showcase-closing-panel {
  margin-top: 1.6rem;
}

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

.faq-intro {
  margin-bottom: 1rem;
}

.faq-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-shortcut {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 71, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-shortcut:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 38, 71, 0.22);
  box-shadow: var(--shadow);
}

.faq-shortcut:focus-visible {
  border-color: rgba(16, 38, 71, 0.22);
  box-shadow: var(--shadow);
}

.faq-sections {
  display: grid;
  gap: 2.4rem;
}

.faq-group {
  position: relative;
  scroll-margin-top: 84px;
  padding: 1.5rem;
  border: 1px solid rgba(16, 38, 71, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 40px rgba(16, 38, 71, 0.06);
}

.faq-group:nth-child(even) {
  background:
    linear-gradient(145deg, rgba(248, 251, 255, 0.94), rgba(239, 245, 253, 0.88)),
    rgba(244, 248, 253, 0.86);
}

.faq-group-head {
  margin-bottom: 1rem;
  padding-top: 0.55rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 71, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.legal-page .back-to-top {
  bottom: 4.25rem;
}

.faq-item {
  padding: 0;
}

.faq-list details {
  border-radius: inherit;
}

.faq-list summary {
  list-style: none;
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 0.9rem;
  align-items: center;
  padding: 1.2rem 1.25rem;
  cursor: pointer;
}

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

.faq-question {
  margin: 0;
  font-size: 1.18rem;
  color: var(--ink);
}

.faq-toggle {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 71, 0.14);
  color: var(--brand);
  transition: transform 180ms ease;
}

.faq-list details[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.2rem 5.2rem;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p,
.faq-answer ul + p,
.faq-answer p + ul {
  margin-top: 0.9rem;
}

.faq-answer ul {
  margin: 0;
  padding-left: 1.15rem;
}

.faq-answer li + li {
  margin-top: 0.55rem;
}

.faq-service-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0.16rem 0.18rem 0;
  padding: 0.16rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 71, 0.1);
  background: rgba(248, 250, 255, 0.92);
  color: var(--brand);
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
}

.faq-service-pill:hover,
.faq-service-pill:focus-visible {
  border-color: rgba(16, 38, 71, 0.18);
  background: rgba(241, 246, 255, 0.96);
}

.form-wrap {
  padding: 1.4rem;
}

.form-intro {
  margin-bottom: 1rem;
}

.form-intro h2 {
  margin: 0 0 0.4rem;
  font-family: "Exo 2", sans-serif;
  font-size: 1.9rem;
}

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

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

.form-field {
  display: grid;
  align-content: start;
}

label {
  margin-bottom: 0.42rem;
  font-weight: 700;
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.86rem;
  border-radius: 16px;
  border: 1px solid rgba(16, 38, 71, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(16, 38, 71, 0.24);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(79, 130, 201, 0.56);
  box-shadow: 0 0 0 4px rgba(79, 130, 201, 0.14);
}

.field-note,
.form-status {
  min-height: 1.3rem;
  margin-top: 0.42rem;
  font-size: 0.88rem;
}

.form-subnote {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
  opacity: 0.82;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-color: #aa4e4e;
  box-shadow: 0 0 0 4px rgba(170, 78, 78, 0.1);
}

.field-note.is-error,
.form-status.is-error,
.form-field.has-error label {
  color: #934040;
}

.field-note.is-valid,
.form-status.is-success {
  color: var(--success);
}

.contact-aside {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.contact-layout {
  align-items: start;
}

.contact-aside .mini-panel {
  padding: 1.2rem;
}

.contact-aside h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.contact-aside p {
  margin: 0;
}

.contact-path {
  padding: 1.15rem;
  border-radius: 28px;
  border: 1px solid rgba(16, 38, 71, 0.08);
  background:
    linear-gradient(145deg, rgba(237, 243, 252, 0.92), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.contact-path-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem) !important;
}

.contact-path .timeline {
  gap: 0.8rem;
}

.contact-path .timeline-step {
  grid-template-columns: 54px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.contact-path .timeline-rail {
  align-self: stretch;
  align-items: center;
}

.contact-path .step-number {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #f7f6f2;
  border-color: rgba(16, 38, 71, 0.08);
  box-shadow: 0 12px 22px rgba(16, 38, 71, 0.14);
}

.contact-path .step-number svg {
  width: 15px;
  height: 15px;
}

.contact-path .timeline-card {
  padding: 0.9rem 1rem;
  border-radius: 22px;
  border-color: rgba(16, 38, 71, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.9)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 24px rgba(16, 38, 71, 0.06);
}

.contact-path .timeline-phase {
  margin-bottom: 0.3rem;
  color: rgba(16, 38, 71, 0.52);
}

.contact-path .timeline-title {
  font-size: 1.05rem;
  color: var(--ink);
}

.contact-path .timeline-copy {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-cta {
  padding: 3rem 0 0;
}

.closing-panel {
  padding: 1.6rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 38, 71, 0.08);
  box-shadow: var(--shadow);
}

.closing-panel h2 {
  margin: 0 0 0.55rem;
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
}

.closing-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.closing-panel .section-actions {
  justify-content: flex-end;
  align-items: center;
}

.site-footer {
  margin-top: 0.75rem;
  padding: 1.7rem 0 0.9rem;
  color: rgba(237, 240, 236, 0.8);
  background:
    radial-gradient(circle at top right, rgba(255, 181, 95, 0.14), transparent 24%),
    linear-gradient(135deg, #102647, #1f3d6d 55%, #2b5189);
}

.home-page .site-footer {
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: 0.85rem;
  align-items: start;
}

.footer-brand-text {
  color: #fff;
  font-size: 1.2rem;
}

.footer-brand-block p,
.footer-location,
.footer-country {
  margin: 0;
}

.footer-brand-block p {
  margin-top: 0.5rem;
  max-width: 34ch;
}

.footer-origin {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.footer-location,
.footer-country {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.86);
}

.footer-maple {
  font-size: 0.98rem;
  line-height: 1;
  filter: saturate(1.2);
}

.footer-links-group h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 0.95rem;
}

.footer-links-group a {
  display: block;
  width: fit-content;
  margin-bottom: 0.28rem;
  color: rgba(237, 240, 236, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links-group a:hover,
.footer-bottom-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-links-group a:focus-visible,
.footer-bottom-links a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(237, 240, 236, 0.64);
  font-size: 0.88rem;
}

.thanks-panel {
  max-width: 680px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 255, 0.9)),
    rgba(255, 255, 255, 0.94);
}

.thanks-panel .eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brand);
}

.thanks-panel .thank-you-title {
  max-width: 10ch;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 0.96;
}

.thanks-panel .hero-lead {
  max-width: 32ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

.thanks-panel .hero-actions {
  margin-top: 1.5rem;
}

.legal-page {
  --anchor-offset: 112px;
  --legal-accent: rgba(79, 130, 201, 0.95);
  --legal-accent-soft: rgba(79, 130, 201, 0.1);
  --legal-accent-border: rgba(79, 130, 201, 0.18);
  --legal-accent-ink: #1f3d6d;
}

.legal-home-page {
  --legal-accent: rgba(52, 94, 148, 0.95);
  --legal-accent-soft: rgba(52, 94, 148, 0.1);
  --legal-accent-border: rgba(52, 94, 148, 0.18);
  --legal-accent-ink: #17355d;
}

.legal-page .site-header {
  background: rgba(16, 38, 71, 0.94);
}

.legal-page .nav-links {
  gap: 0.4rem;
}

.legal-main {
  padding: 4.25rem 0 4rem;
}

.legal-layout {
  display: grid;
  gap: 1.4rem;
  max-width: 860px;
}

.legal-card,
.legal-section-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 38, 71, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.legal-card::before,
.legal-section-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--legal-accent), rgba(255, 181, 95, 0.72));
}

.legal-card {
  padding: 2rem;
}

.legal-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.legal-index-link {
  display: grid;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(16, 38, 71, 0.1);
  background: linear-gradient(180deg, rgba(232, 241, 255, 0.6), rgba(255, 255, 255, 0.94));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.legal-index-link::before {
  content: "";
  width: 3.25rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--link-accent, var(--legal-accent));
}

.legal-index-link:hover,
.legal-index-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 130, 201, 0.34);
  box-shadow: 0 18px 34px rgba(16, 38, 71, 0.1);
}

.legal-index-link.privacy-link {
  --link-accent: rgba(69, 122, 209, 0.96);
  background: linear-gradient(180deg, rgba(229, 239, 255, 0.82), rgba(255, 255, 255, 0.96));
}

.legal-index-link.eula-link {
  --link-accent: rgba(30, 132, 129, 0.96);
  background: linear-gradient(180deg, rgba(228, 244, 242, 0.82), rgba(255, 255, 255, 0.96));
}

.legal-index-link.aup-link {
  --link-accent: rgba(181, 122, 35, 0.96);
  background: linear-gradient(180deg, rgba(255, 243, 226, 0.88), rgba(255, 255, 255, 0.96));
}

.legal-index-link.privacy-link:hover,
.legal-index-link.privacy-link:focus-visible {
  border-color: rgba(69, 122, 209, 0.34);
}

.legal-index-link.eula-link:hover,
.legal-index-link.eula-link:focus-visible {
  border-color: rgba(30, 132, 129, 0.32);
}

.legal-index-link.aup-link:hover,
.legal-index-link.aup-link:focus-visible {
  border-color: rgba(181, 122, 35, 0.3);
}

.legal-index-link strong {
  font-family: "Exo 2", sans-serif;
  font-size: 1.05rem;
}

.legal-index-link span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal-doc-header {
  display: grid;
  gap: 1rem;
}

.legal-page .legal-doc-menu .subnav {
  min-width: 320px;
  max-width: min(420px, calc(100vw - 2rem));
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.legal-page .legal-doc-menu .subnav a {
  white-space: normal;
}

.legal-doc-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--legal-accent-soft);
  color: var(--legal-accent-ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-doc-title {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.legal-doc-intro,
.legal-lead,
.legal-muted {
  color: var(--ink-soft);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-meta li {
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: var(--legal-accent-soft);
  color: var(--brand);
  font-size: 0.95rem;
}

.legal-meta strong {
  color: var(--ink);
}

.legal-summary {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: var(--legal-accent-soft);
  border: 1px solid var(--legal-accent-border);
}

.legal-summary h2,
.legal-section-card h2,
.legal-section-card h3 {
  margin: 0;
  font-family: "Exo 2", sans-serif;
}

.legal-toc-title {
  margin: 0 0 0.3rem;
  font-family: "Exo 2", sans-serif;
  font-size: 1.05rem;
}

.legal-summary p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-summary ul,
.legal-section-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-section-card {
  padding: 1.5rem 1.6rem;
}

.legal-section-card + .legal-section-card {
  margin-top: 0.1rem;
}

.legal-section-card p,
.legal-section-card li {
  color: var(--ink-soft);
}

.legal-section-card p:last-child,
.legal-section-card ul:last-child {
  margin-bottom: 0;
}

.legal-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 71, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--legal-accent-ink);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.legal-inline-links a:hover,
.legal-inline-links a:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(16, 38, 71, 0.1);
}

.legal-inline-links a.privacy-link {
  border-color: rgba(69, 122, 209, 0.22);
  background: rgba(229, 239, 255, 0.92);
  color: #1e4d93;
}

.legal-inline-links a.eula-link {
  border-color: rgba(30, 132, 129, 0.22);
  background: rgba(228, 244, 242, 0.92);
  color: #0f5f5b;
}

.legal-inline-links a.aup-link {
  border-color: rgba(181, 122, 35, 0.22);
  background: rgba(255, 243, 226, 0.94);
  color: #8c5708;
}

.legal-inline-links a.legal-home-link {
  border-color: rgba(52, 94, 148, 0.18);
  background: rgba(235, 242, 251, 0.94);
  color: #17355d;
}

.legal-note {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 181, 95, 0.12);
  border: 1px solid rgba(255, 181, 95, 0.16);
  color: var(--brand);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.legal-table th,
.legal-table td {
  padding: 0.8rem 0.85rem;
  border-bottom: 1px solid rgba(16, 38, 71, 0.1);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  font-size: 0.92rem;
}

.legal-table td {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal-footer {
  margin-top: 1.5rem;
}

.legal-page .nav-links a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-left: auto;
}

.footer-bottom-links a {
  color: rgba(237, 240, 236, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.privacy-doc {
  --legal-accent: rgba(69, 122, 209, 0.96);
  --legal-accent-soft: rgba(69, 122, 209, 0.12);
  --legal-accent-border: rgba(69, 122, 209, 0.2);
  --legal-accent-ink: #1e4d93;
}

.eula-doc {
  --legal-accent: rgba(30, 132, 129, 0.96);
  --legal-accent-soft: rgba(30, 132, 129, 0.12);
  --legal-accent-border: rgba(30, 132, 129, 0.2);
  --legal-accent-ink: #0f5f5b;
}

.aup-doc {
  --legal-accent: rgba(181, 122, 35, 0.96);
  --legal-accent-soft: rgba(255, 181, 95, 0.14);
  --legal-accent-border: rgba(181, 122, 35, 0.18);
  --legal-accent-ink: #7f4e00;
}

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

@media (max-width: 720px) {
  .legal-main {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .legal-card,
  .legal-section-card {
    border-radius: 20px;
  }

  .legal-card {
    padding: 1.4rem;
  }

  .legal-section-card {
    padding: 1.25rem;
  }

  .legal-meta {
    display: grid;
  }

  .legal-doc-header-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    margin-left: 0;
  }

  .legal-page .back-to-top {
    bottom: 5.25rem;
  }
}

.services-intro {
  display: grid;
  gap: 1rem;
}

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

.bands {
  display: grid;
  gap: 0.85rem;
}

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

.offerings-more {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.offerings-more .btn {
  min-width: 168px;
}

.offerings-tier-section {
  position: relative;
  overflow: hidden;
}

.offerings-tier-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, var(--tier-glow-soft, rgba(79, 130, 201, 0.12)), transparent 26%),
    linear-gradient(180deg, var(--tier-top, rgba(232, 241, 255, 0.78)) 0%, rgba(255, 255, 255, 0.58) 38%, rgba(255, 255, 255, 0.22) 72%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.offerings-tier-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, var(--tier-glow, rgba(79, 130, 201, 0.12)), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.24), transparent 38%);
  pointer-events: none;
}

.offerings-tier-section > .container {
  position: relative;
  z-index: 1;
}

.offerings-tier-section.tier-one {
  --tier-top: rgba(236, 243, 255, 0.78);
  --tier-glow: rgba(79, 130, 201, 0.12);
  --tier-glow-soft: rgba(79, 130, 201, 0.1);
  --offering-pill-bg: #e8f1ff;
  --offering-pill-border: #c8daef;
  --offering-pill-hover: #dce9fc;
}

.offerings-tier-section.tier-two {
  --tier-top: rgba(239, 245, 255, 0.76);
  --tier-glow: rgba(100, 149, 210, 0.1);
  --tier-glow-soft: rgba(100, 149, 210, 0.08);
  --offering-pill-bg: #dce9fc;
  --offering-pill-border: #bfd4ef;
  --offering-pill-hover: #d1e2f8;
}

.offerings-tier-section.tier-three {
  --tier-top: rgba(231, 239, 251, 0.8);
  --tier-glow: rgba(47, 90, 147, 0.1);
  --tier-glow-soft: rgba(47, 90, 147, 0.08);
  --offering-pill-bg: #d1e2f8;
  --offering-pill-border: #afc7ea;
  --offering-pill-hover: #c5d9f3;
}

.band-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(16, 38, 71, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.band-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 60%);
  pointer-events: none;
}

.band-card > * {
  position: relative;
  z-index: 1;
}

.band-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(16, 38, 71, 0.16);
}

.band-card:focus-visible {
  outline: 2px solid rgba(79, 130, 201, 0.7);
  outline-offset: 3px;
}

.offering-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(16, 38, 71, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.offering-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 60%);
  pointer-events: none;
}

.offering-card > * {
  position: relative;
  z-index: 1;
}

.offering-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(16, 38, 71, 0.16);
}

.offering-card:focus-visible {
  outline: 2px solid rgba(79, 130, 201, 0.7);
  outline-offset: 3px;
}

.offering-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 62px;
}

.offering-card-jump {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 62px;
  width: fit-content;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease;
}

.offering-card-jump:hover .band-title,
.offering-card-jump:focus-visible .band-title {
  color: var(--brand-strong);
}

.offering-card-jump:hover .band-number,
.offering-card-jump:focus-visible .band-number {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(16, 38, 71, 0.22);
}

.offering-card-jump:focus-visible {
  outline: 2px solid rgba(79, 130, 201, 0.7);
  outline-offset: 4px;
  border-radius: 18px;
}

.offering-card-top > div {
  display: grid;
  align-content: start;
  min-width: 0;
}

.band-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.band-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(16, 38, 71, 0.18);
  flex: 0 0 auto;
}

.band-title {
  margin: 0 0 0.25rem;
  font-size: 1.18rem;
  line-height: 1.08;
  min-height: 2.55rem;
}

.band-copy {
  margin: 0;
  color: #4b5f7d;
  min-height: 3rem;
}

.offering-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
  color: var(--brand);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.offering-section-link::after {
  content: "\2192";
  font-size: 0.95rem;
  line-height: 1;
}

.offering-section-link:hover,
.offering-section-link:focus-visible {
  color: var(--ink);
  transform: translateX(2px);
}

.band-right {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.offering-pills {
  display: grid;
  flex: 1 1 auto;
  align-content: center;
  gap: 0.6rem;
  min-height: 0;
  padding: 0.2rem 0 0.1rem;
}

.offering-pills-three {
  grid-template-columns: 1fr;
}

.offering-pills-two {
  grid-template-columns: 1fr;
}

.subservice-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--offering-pill-border, #c8daef);
  background: var(--offering-pill-bg, var(--brand-soft));
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-soft);
  gap: 0.45rem;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.subservice-label:hover,
.subservice-label:focus-visible {
  background: var(--offering-pill-hover, #dce9fc);
  border-color: var(--offering-pill-border, #c8daef);
  color: var(--ink);
  transform: translateY(-1px);
}

.subservice-label i {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
}

.subservice-label span {
  display: inline-block;
}

.offerings-section-head,
.offerings-band {
  max-width: 820px;
}

.offerings-band {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin: 0 0 0.8rem;
}

.offerings-band > div {
  min-width: 0;
}

.offerings-band .section-title {
  margin: 0;
}

.offerings-number {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(16, 38, 71, 0.18);
}

.offerings-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(16, 38, 71, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  box-shadow: var(--shadow-soft);
}

.offerings-icon svg {
  width: 18px;
  height: 18px;
}

.service-level-link {
  position: relative;
  display: block;
  height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(16, 38, 71, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-level-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 56%);
  pointer-events: none;
}

.service-level-link > * {
  position: relative;
  z-index: 1;
}

.service-level-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(16, 38, 71, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(236, 244, 255, 0.96)),
    rgba(255, 255, 255, 0.98);
}

.service-level-link:focus-visible {
  outline: 2px solid rgba(79, 130, 201, 0.7);
  outline-offset: 3px;
}

.service-level-title {
  margin: 0 0 0.5rem;
  font-size: 1.26rem;
}

.service-level-topline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.95rem;
}

.service-level-copy {
  margin: 0 0 1.2rem;
  color: #4b5f7d;
}

.service-level-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #cddcf2;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-level-link:hover .service-level-cta,
.service-level-link:focus-visible .service-level-cta {
  transform: translateY(-1px);
  background: var(--accent);
  color: #fff;
  border-color: rgba(16, 38, 71, 0.24);
  box-shadow: 0 16px 28px rgba(16, 38, 71, 0.18);
}

.service-level-link:hover .service-level-cta svg,
.service-level-link:focus-visible .service-level-cta svg {
  transform: translateX(2px);
}

.service-level-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.service-grid-already-started .service-card {
  min-height: 0;
}

.service-grid-already-started .service-card-tag {
  min-height: 3.9rem;
}

.service-grid-already-started .service-card-copy {
  min-height: 4.8rem;
  margin-bottom: 0.75rem;
}

.service-grid-already-started .service-outcomes {
  gap: 0.5rem;
}

.service-grid-already-started .service-card-link {
  margin-top: 0.95rem;
}

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

.service-grid-tier-three > .service-card:first-child {
  grid-column: span 1;
}

.service-grid-tier-three > .service-card-visual-wide {
  grid-column: span 2;
}

.service-grid-single {
  grid-template-columns: minmax(280px, 460px);
  justify-content: start;
}

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

.service-grid-centered-single > .service-card:only-child {
  grid-column: 2;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 27.75rem;
  scroll-margin-top: 110px;
  padding: 1.4rem;
  border: 1px solid rgba(16, 38, 71, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 56%);
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-visual {
  background:
    linear-gradient(160deg, rgba(247, 250, 255, 0.98), rgba(235, 242, 251, 0.96)),
    rgba(255, 255, 255, 0.95);
}

.service-card-visual-only {
  display: flex;
  align-self: stretch;
  height: 100%;
  padding: 0;
  min-height: 0;
}

.service-card-media {
  position: relative;
  overflow: hidden;
  margin: -1.4rem -1.4rem 1.15rem;
  min-height: 235px;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 22px 22px;
  background:
    linear-gradient(135deg, rgba(16, 38, 71, 0.16), rgba(16, 38, 71, 0.04)),
    rgba(221, 231, 245, 0.9);
}

.service-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 20, 39, 0.04), rgba(8, 20, 39, 0.3)),
    linear-gradient(135deg, rgba(218, 233, 255, 0.18), rgba(255, 255, 255, 0.04) 56%, rgba(255, 196, 120, 0.08));
  pointer-events: none;
}

.service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 18%;
  filter: saturate(0.82) contrast(1.03) brightness(0.93);
}

.service-card-visual-only .service-card-media {
  margin: 0;
  flex: 1 1 auto;
  height: 100%;
  min-height: 100%;
  max-height: 440px;
  border-radius: inherit;
}

.service-card-visual-wide .service-card-media {
  max-height: none;
}

.service-card-visual-wide .service-card-media::before {
  background:
    linear-gradient(180deg, rgba(8, 20, 39, 0.1), rgba(8, 20, 39, 0.34)),
    linear-gradient(135deg, rgba(216, 232, 255, 0.14), rgba(255, 255, 255, 0.02) 54%, rgba(255, 196, 120, 0.06));
}

.service-card-visual-wide .service-card-media img {
  object-position: 64% 70%;
  filter: saturate(0.78) contrast(1.02) brightness(0.86);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
  min-height: 72px;
}

.service-card-header .point-icon {
  box-shadow: var(--shadow-soft);
  margin-top: 0.12rem;
}

.service-card-header > div {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
}

.service-card-title {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.08;
  min-height: 0;
}

.service-brand-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(16, 38, 71, 0.08);
  border: 1px solid rgba(16, 38, 71, 0.08);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-copy .service-brand-pill {
  margin: 0.24rem 0 0.8rem;
  padding: 0.42rem 0.8rem;
  background: linear-gradient(135deg, rgba(7, 18, 34, 0.72), rgba(16, 38, 71, 0.52));
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  box-shadow: 0 14px 28px rgba(7, 18, 34, 0.22);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
}

.service-brand-inline {
  font-weight: 800;
  color: var(--ink);
}

.hero-copy .service-brand-inline {
  color: inherit;
}

.service-context-bar-wrap {
  position: fixed;
  top: calc(var(--service-context-top, 74px) + 6px);
  right: clamp(0.9rem, 2vw, 2rem);
  z-index: 44;
  pointer-events: none;
}

.service-context-bar {
  width: fit-content;
  max-width: min(100%, 360px);
  margin: 0;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(16, 38, 71, 0.94);
  box-shadow: 0 10px 22px rgba(8, 20, 39, 0.18);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: auto;
}

.service-context-bar-wrap.is-visible .service-context-bar {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-context-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.service-context-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-context-icon svg {
  width: 14px;
  height: 14px;
}

.service-context-stage,
.service-context-name {
  margin: 0;
}

.service-context-stage {
  color: rgba(188, 208, 236, 0.9);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-context-name {
  color: #f5f8fd;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
}

.service-hero-art,
.service-brand-row-icon {
  display: none;
}

.service-card-tag {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.52;
  min-height: 4.3rem;
}

.service-card-copy {
  margin: 0 0 0.85rem;
  color: #4b5f7d;
  font-size: 0.98rem;
  line-height: 1.62;
  min-height: 5.85rem;
}

.service-card-link {
  margin: auto 0 0;
  text-align: right;
}

.service-card-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.service-card-link a::after {
  content: "\2192";
  font-size: 0.95rem;
  line-height: 1;
}

.service-card-link a:hover,
.service-card-link a:focus-visible {
  color: var(--ink);
  transform: translateX(2px);
}

.service-card-tag strong,
.service-card-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.service-card-subtitle {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-points,
.service-outcomes,
.service-start-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-points,
.service-outcomes {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  min-height: 7.9rem;
}

.service-points li,
.service-outcomes li,
.service-start-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #4b5f7d;
}

.service-points li::before,
.service-outcomes li::before,
.service-start-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 0 0 4px rgba(79, 130, 201, 0.12);
  flex: 0 0 auto;
}

.service-start-panel {
  display: grid;
  gap: 1.1rem;
}

.service-quiz-panel {
  max-width: 760px;
  padding: 1.45rem;
  border: 1px solid rgba(16, 38, 71, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.quiz-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.quiz-step {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(232, 241, 255, 0.9);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quiz-reset {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
  opacity: 0.82;
}

.quiz-reset:hover {
  opacity: 1;
}

.quiz-stage,
.quiz-result {
  display: grid;
  gap: 0.85rem;
}

.quiz-stage[hidden],
.quiz-result[hidden] {
  display: none !important;
}

.quiz-question,
.quiz-result-title {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.08;
  color: var(--ink);
}

.quiz-options {
  display: grid;
  gap: 0.7rem;
}

.quiz-option {
  width: 100%;
  display: grid;
  gap: 0.28rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(16, 38, 71, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quiz-option:hover,
.quiz-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(16, 38, 71, 0.18);
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(236, 244, 255, 0.96)),
    rgba(255, 255, 255, 0.98);
  outline: none;
}

.quiz-option.is-selected {
  border-color: rgba(16, 38, 71, 0.22);
  background:
    linear-gradient(145deg, rgba(232, 241, 255, 0.98), rgba(241, 247, 255, 0.96)),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 30px rgba(16, 38, 71, 0.14);
}

.quiz-option strong {
  display: block;
  font-size: 0.98rem;
}

.quiz-option span,
.quiz-result-copy {
  color: #4b5f7d;
  font-size: 0.95rem;
}

.quiz-result-copy {
  margin: 0;
}

.quiz-summary {
  display: grid;
  gap: 0.55rem;
}

.quiz-summary-label {
  margin: 0;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quiz-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.quiz-summary-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #4b5f7d;
}

.quiz-summary-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 0 0 4px rgba(79, 130, 201, 0.12);
  flex: 0 0 auto;
}

.quiz-recommendations {
  display: grid;
  gap: 0.85rem;
}

.quiz-recommendation {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 38, 71, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.quiz-recommendation h4 {
  margin: 0 0 0.35rem;
  font-family: "Exo 2", sans-serif;
  font-size: 1.08rem;
  line-height: 1.08;
}

.quiz-recommendation p {
  margin: 0 0 0.8rem;
  color: #4b5f7d;
}

.quiz-recommendation a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-weight: 700;
}

.quiz-result-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.quiz-result-points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #4b5f7d;
}

.quiz-result-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 0 0 4px rgba(79, 130, 201, 0.12);
  flex: 0 0 auto;
}

.quiz-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.service-start-list {
  display: grid;
  gap: 1rem;
}

.service-start-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.service-start-item span {
  color: #4b5f7d;
}

.thank-you-title {
  margin: 0 0 0.7rem;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.reveal {
  opacity: 1;
  transform: translateY(16px);
  transition: transform 460ms ease;
}

.reveal.visible {
  transform: translateY(0);
}

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

  .hero-scroll-cue span {
    animation: none;
  }

  .reveal,
  .btn,
  .showcase-tile,
  .filter-btn,
  .nav-links a,
  .faq-toggle,
  .skip-link {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .story-grid,
  .contact-layout,
  .closing-panel,
  .showcase-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    width: 100%;
    justify-self: stretch;
  }

  .service-detail-grid,
  .service-example-grid,
  .service-outcome-grid,
  .service-cta-panel {
    grid-template-columns: 1fr;
  }

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

  .clarity-bridge {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .showcase-listing,
  .principles-grid,
  .mini-grid,
  .service-level-grid,
  .offerings-columns,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid-centered-single > .service-card:only-child {
    grid-column: auto;
  }

  .quiz-status,
  .quiz-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .offering-card-top {
    min-height: 0;
  }

  .band-title,
  .band-copy {
    min-height: 0;
  }

  .service-card,
  .service-card-title,
  .service-card-tag,
  .service-card-copy,
  .service-outcomes {
    min-height: 0;
  }

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

  .service-grid-already-started .service-card-tag,
  .service-grid-already-started .service-card-copy,
  .service-grid-already-started .service-outcomes {
    min-height: 0;
  }

  .service-grid-already-started .service-card-copy {
    margin-bottom: 0.85rem;
  }

  .service-grid-already-started .service-card-link {
    margin-top: auto;
  }


  .image-panel,
  .image-panel.image-panel-tall,
  .image-panel.image-panel-short {
    min-height: 240px;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .about-fit-section .about-detail-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: 0.6rem;
    max-height: calc(100svh - 74px);
    overflow-y: auto;
    padding: 1rem;
    background: rgba(10, 22, 18, 0.98);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
    z-index: 45;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 50px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-item {
    display: grid;
    gap: 0.45rem;
  }

  .nav-item.has-subnav {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .nav-item.has-subnav > a[data-nav] {
    grid-column: 1;
  }

  .subnav-toggle {
    min-width: 50px;
    min-height: 50px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(235, 240, 236, 0.8);
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  }

  .subnav-toggle span {
    width: 0.68rem;
    height: 0.68rem;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 180ms ease;
  }

  .nav-item.subnav-open > .subnav-toggle {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .nav-item.subnav-open > .subnav-toggle span {
    transform: rotate(-135deg) translate(-1px, 1px);
  }

  .subnav {
    grid-column: 1 / -1;
    position: static;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    gap: 0.45rem;
    display: none;
  }

  .subnav a {
    margin-left: 0.9rem;
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-item.has-subnav > a[data-nav]::after {
    display: none;
  }

  .nav-item.subnav-open > .subnav {
    display: grid;
  }

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

  body.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  body.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .timeline,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .timeline-rail {
    justify-items: flex-start;
    align-self: auto;
  }


  .faq-list summary {
    grid-template-columns: 42px 1fr 26px;
  }

  .faq-answer {
    padding-left: 1.25rem;
  }

  .image-panel figcaption {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }
}

@media (max-height: 820px) and (min-width: 960px) {
  main section {
    padding: 3.2rem 0;
  }

  .hero {
    min-height: clamp(620px, calc(100svh - 74px), 760px);
  }

  .hero.hero-compact {
    min-height: clamp(620px, calc(100svh - 74px), 760px);
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .closing-panel,
  .showcase-spotlight-grid {
    gap: 1.5rem;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  }

  .hero-lead {
    margin-bottom: 1.15rem;
  }

  .service-detail-page .hero.hero-compact {
    min-height: clamp(590px, calc(100svh - 74px), 700px);
  }

  .service-detail-page .hero .container {
    padding-top: clamp(3.7rem, 4.8vw, 4.5rem);
    padding-bottom: clamp(4.9rem, 6vw, 5.7rem);
  }

  .selective-builds-page .hero.hero-compact {
    min-height: clamp(550px, calc(100svh - 74px), 660px);
  }

  .selective-builds-page .hero .container {
    padding-top: clamp(3.1rem, 4vw, 3.9rem);
    padding-bottom: clamp(4.2rem, 5vw, 4.8rem);
  }

  .selective-builds-page .hero h1 {
    font-size: clamp(2.55rem, 4vw, 3.95rem);
  }

  .selective-builds-page .hero .hero-lead {
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 640px) {
  .page-shell::before,
  .page-shell::after {
    filter: blur(14px);
  }

  .page-shell::before {
    width: 220px;
    height: 220px;
    left: -120px;
  }

  .page-shell::after {
    width: 260px;
    height: 260px;
    right: -140px;
  }

  .container {
    width: min(1180px, calc(100% - 1.2rem));
  }

  .about-fit-section .section-head {
    margin-bottom: 1.2rem;
  }

  .about-fit-section .about-fit-heading {
    font-size: 0.9rem;
    letter-spacing: 0.11em;
  }

  .about-fit-section .about-detail-cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .about-fit-section .partnership-fit-card {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .about-fit-section .partnership-fit-title {
    font-size: 1.02rem;
    line-height: 1.28;
  }

  .about-fit-section .partnership-fit-title.title-with-icon {
    gap: 0.65rem;
    align-items: center;
  }

  .about-fit-section .partnership-fit-title .title-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .about-fit-section .partnership-fit-title .title-icon + span {
    flex: 1 1 auto;
    min-width: 0;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero.hero-compact,
  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero {
    min-height: calc(100svh - 74px);
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero .container {
    padding-top: 3.7rem;
    padding-bottom: 4.35rem;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-grid {
    gap: 1rem;
    align-content: center;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-copy {
    min-height: 0;
    padding-top: 1.15rem;
    padding-bottom: 1.35rem;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-copy .eyebrow {
    margin-bottom: 0.75rem;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-copy h1 {
    margin-bottom: 0.85rem;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-copy .hero-lead {
    margin-bottom: 1rem;
  }

  .service-detail-page .service-hero-art {
    position: absolute;
    top: 0.25rem;
    right: 0.35rem;
    width: 72px;
    height: 72px;
    display: inline-grid;
    place-items: center;
    color: rgba(36, 74, 128, 0.18);
    pointer-events: none;
  }

  .service-detail-page .service-hero-art svg {
    width: 50px;
    height: 50px;
    stroke-width: 1.55;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-side {
    padding: 1rem 1rem 0.95rem;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-side .section-kicker {
    margin-bottom: 0.6rem !important;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-badges {
    gap: 0.5rem;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-badges li {
    gap: 0.7rem;
    align-items: center;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-badges .icon-chip {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-badges .mini-note {
    display: none;
  }

  :is(.about-page, .showcases-page, .faq-page, .contact-page) .hero-badges strong {
    display: block;
    line-height: 1.28;
  }

  main section {
    padding: 2.9rem 0;
  }

  .hero {
    min-height: auto;
  }

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

  .service-detail-page .hero.hero-compact {
    min-height: calc(100svh - 74px);
  }

  .hero .container {
    width: var(--container);
    padding-top: 4.6rem;
    padding-bottom: 4.2rem;
  }

  .service-detail-page .hero .container {
    padding-top: 3.8rem;
    padding-bottom: 4.8rem;
  }

  .service-detail-page .hero-grid {
    align-content: center;
  }

  .service-detail-page .hero-copy {
    min-height: 0;
  }

  .service-detail-page .hero-side,
  .service-detail-page .service-hero-side {
    display: none;
  }

  .service-detail-page .service-hero-summary-mobile {
    display: block;
    padding-top: 1rem;
  }

  .hero-scroll-cue {
    bottom: 0.9rem;
  }

  .service-context-bar-wrap {
    top: calc(var(--service-context-top, 74px) + 4px);
    right: 0.75rem;
  }

  .service-context-bar {
    max-width: 100%;
    margin-right: 0;
    padding: 0.38rem 0.56rem;
  }

  .service-context-copy {
    gap: 0.48rem;
  }

  .service-context-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    border-radius: 9px;
  }

  .service-context-icon svg {
    width: 13px;
    height: 13px;
  }

  .service-context-stage {
    font-size: 0.6rem;
  }

  .service-context-name {
    font-size: 0.82rem;
  }

  .image-panel,
  .image-panel.image-panel-tall,
  .image-panel.image-panel-short {
    min-height: 200px;
  }

  .hero-actions,
  .section-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .stats-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .closing-panel .section-actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
