:root {
  --bg: #eef3f6;
  --bg-soft: #e3ebf0;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-muted: rgba(233, 241, 246, 0.84);
  --surface-dark: #0e1722;
  --surface-dark-soft: #162433;
  --text: #0f1721;
  --text-soft: #5b6775;
  --text-muted: #7a8898;
  --text-inverse: #f7fbfd;
  --line: rgba(18, 30, 42, 0.12);
  --line-strong: rgba(18, 30, 42, 0.22);
  --accent: #5fa8bb;
  --accent-strong: #2d6b81;
  --accent-soft: rgba(95, 168, 187, 0.16);
  --warm: #f0b56d;
  --success: #3b9a70;
  --danger: #cf5960;
  --shadow-xs: 0 10px 24px rgba(14, 23, 34, 0.05);
  --shadow-sm: 0 24px 54px rgba(14, 23, 34, 0.08);
  --shadow-md: 0 34px 80px rgba(14, 23, 34, 0.12);
  --shadow-lg: 0 48px 120px rgba(14, 23, 34, 0.16);
  --radius-xs: 14px;
  --radius-sm: 22px;
  --radius-md: 32px;
  --radius-lg: 42px;
  --radius-xl: 52px;
  --container: 1680px;
  --space-2xs: 0.375rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", "Manrope", "Segoe UI", Arial, sans-serif;
  --anchor-offset: 112px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  overflow-x: hidden;
}

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

/* Catalog page polish */
.page-catalogs {
  --catalog-ink: #102033;
  --catalog-muted: rgba(44, 63, 82, 0.78);
  --catalog-line: rgba(16, 32, 51, 0.08);
  --catalog-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.92));
  --catalog-shadow: 0 22px 48px rgba(89, 117, 143, 0.14);
}

.page-catalogs .catalogs-hero {
  padding-bottom: clamp(28px, 5vw, 56px);
}

.page-catalogs .catalogs-main {
  padding-top: 0;
}

.page-catalogs .catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-catalogs .catalog-grid--priority {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.page-catalogs .catalog-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(176px, 248px) 1fr;
  overflow: hidden;
  min-height: 100%;
  color: var(--catalog-ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.page-catalogs .catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px rgba(73, 101, 128, 0.18);
  border-color: rgba(16, 32, 51, 0.12);
}

.page-catalogs .catalog-card--priority {
  grid-column: span 4;
}

.page-catalogs .catalog-card--priority:first-child {
  grid-column: span 12;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  grid-template-rows: none;
}

.page-catalogs .catalog-card--priority:not(:first-child) {
  grid-template-rows: minmax(188px, 232px) 1fr;
}

.page-catalogs .catalog-card--priority:first-child .catalog-card__body {
  padding: clamp(26px, 3vw, 36px);
}

.page-catalogs .catalog-card--priority:first-child .catalog-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.page-catalogs .catalog-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(118, 160, 199, 0.28), transparent 32%),
    linear-gradient(145deg, #14263a 0%, #1a2f46 48%, #223d58 100%);
}

.page-catalogs .catalog-card--priority:first-child .catalog-media {
  min-height: 100%;
}

.page-catalogs .catalog-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 16%, transparent 16% 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) left 28px bottom 54px / calc(100% - 56px) 3px no-repeat;
}

.page-catalogs .catalog-media.has-image::before {
  background: linear-gradient(180deg, rgba(10, 21, 33, 0.06), rgba(10, 21, 33, 0.32));
}

.page-catalogs .catalog-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-catalogs .catalog-media__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f3f7fb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.page-catalogs .catalog-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.page-catalogs .catalog-title {
  margin: 0;
  color: var(--catalog-ink);
}

.page-catalogs .catalog-desc {
  margin: 0;
  color: var(--catalog-muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.page-catalogs .catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-catalogs .catalog-actions .cta {
  min-width: 168px;
  justify-content: center;
}

.page-catalogs .catalog-subhead {
  display: grid;
  gap: 10px;
  margin: clamp(36px, 6vw, 64px) 0 24px;
}

.page-catalogs .catalog-subhead h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.page-catalogs .catalogs-request {
  padding-top: clamp(48px, 7vw, 84px);
}

.page-catalogs .catalogs-request__grid {
  align-items: stretch;
  gap: 24px;
}

.page-catalogs .catalogs-request-panel,
.page-catalogs .catalogs-quote-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--catalog-line);
  background: var(--catalog-surface);
  box-shadow: var(--catalog-shadow);
}

.page-catalogs .catalogs-request-panel {
  display: grid;
  gap: 20px;
  min-height: 100%;
}

.page-catalogs .catalogs-request-panel h2,
.page-catalogs .catalogs-quote-card h3 {
  margin: 0;
  color: var(--catalog-ink);
}

.page-catalogs .catalogs-request-panel p,
.page-catalogs .catalogs-quote-card .form-note,
.page-catalogs .catalogs-quote-card .form-consent__text {
  color: var(--catalog-muted);
}

.page-catalogs .catalogs-request-panel__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-catalogs .catalogs-request-panel__list li {
  position: relative;
  padding-left: 18px;
  color: var(--catalog-ink);
}

.page-catalogs .catalogs-request-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e17f35;
}

.page-catalogs .catalogs-request-panel__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.page-catalogs .catalogs-request-panel__meta-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--catalog-line);
  background: rgba(255, 255, 255, 0.78);
}

.page-catalogs .catalogs-request-panel__meta-item span {
  color: rgba(62, 80, 100, 0.8);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-catalogs .catalogs-request-panel__meta-item strong {
  color: var(--catalog-ink);
  font-size: 1.05rem;
}

.page-catalogs .catalogs-request-panel__link {
  justify-self: start;
}

.page-catalogs .quote-form--catalogs {
  display: grid;
  gap: 18px;
}

.page-catalogs .quote-form--catalogs .quote-form__grid {
  display: grid;
  gap: 16px;
}

.page-catalogs .quote-form--catalogs .quote-form__grid--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-catalogs .quote-form--catalogs .quote-form__field {
  display: grid;
  gap: 8px;
}

.page-catalogs .quote-form--catalogs label {
  color: var(--catalog-ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.page-catalogs .quote-form--catalogs input,
.page-catalogs .quote-form--catalogs select,
.page-catalogs .quote-form--catalogs textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--catalog-ink);
  font: inherit;
  box-sizing: border-box;
}

.page-catalogs .quote-form--catalogs textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.page-catalogs .quote-form--catalogs input:focus,
.page-catalogs .quote-form--catalogs select:focus,
.page-catalogs .quote-form--catalogs textarea:focus {
  outline: none;
  border-color: rgba(17, 57, 95, 0.35);
  box-shadow: 0 0 0 4px rgba(85, 132, 176, 0.12);
}

.page-catalogs .quote-form--catalogs .form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.page-catalogs .quote-form--catalogs .form-consent input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.page-catalogs .quote-form--catalogs .quote-form__actions {
  display: grid;
  gap: 12px;
}

.page-catalogs .quote-form--catalogs .quote-form__actions .cta {
  width: 100%;
  justify-content: center;
}

.page-catalogs .quote-form--catalogs .form-status {
  min-height: 20px;
}

@media (max-width: 1180px) {
  .page-catalogs .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-catalogs .catalog-grid--priority {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-catalogs .catalog-card--priority,
  .page-catalogs .catalog-card--priority:first-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 280px) 1fr;
  }
}

@media (max-width: 820px) {
  .page-catalogs .catalog-grid,
  .page-catalogs .catalog-grid--priority,
  .page-catalogs .catalogs-request-panel__meta,
  .page-catalogs .quote-form--catalogs .quote-form__grid--pair {
    grid-template-columns: 1fr;
  }

  .page-catalogs .catalog-actions .cta,
  .page-catalogs .catalogs-request-panel__link {
    width: 100%;
  }
}

/* April 2026: do not constrain public page heading widths */
body[class*="page-"] main :is(h1, h2, h3),
body[class*="page-"] contentinfo :is(h1, h2, h3) {
  max-width: none !important;
  max-inline-size: none !important;
}

/* April 2026: keep public headings readable without crushing local layouts */
body[class*="page-"] main h1,
body[class*="page-"] contentinfo h1 {
  font-size: clamp(2rem, 3.45vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

body[class*="page-"] main h2,
body[class*="page-"] contentinfo h2 {
  font-size: clamp(1.48rem, 2.18vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

body[class*="page-"] main h3,
body[class*="page-"] contentinfo h3 {
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: 0;
}

@media (max-width: 820px) {
  body[class*="page-"] main h1,
  body[class*="page-"] contentinfo h1 {
    font-size: clamp(1.75rem, 7vw, 2.45rem);
    line-height: 1.05;
  }

  body[class*="page-"] main h2,
  body[class*="page-"] contentinfo h2 {
    font-size: clamp(1.28rem, 5.2vw, 1.85rem);
    line-height: 1.1;
  }

  body[class*="page-"] main h3,
  body[class*="page-"] contentinfo h3 {
    font-size: clamp(1rem, 4vw, 1.22rem);
    line-height: 1.18;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 34%),
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #eef3f6 0%, #e5edf2 52%, #dde7ed 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 30, 42, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 30, 42, 0.028) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.36), transparent 92%);
}

img,
svg,
video,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

main {
  display: block;
}

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

.page-shell {
  padding-bottom: var(--space-3xl);
}

.section-shell {
  padding: 0 0 clamp(42px, 5vw, 60px);
}

.section-shell--accent::before {
  content: "";
  display: block;
  width: min(100% - 40px, var(--container));
  height: 1px;
  margin: 0 auto var(--space-xl);
  background: linear-gradient(90deg, transparent, rgba(18, 30, 42, 0.14), transparent);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 24px 36px;
}

.section-heading__aside {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.page-home .section-heading--split {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 440px);
  align-items: start;
  gap: 26px 52px;
}

.page-home .section-heading--split > div:first-child {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  padding-right: 42px;
}

.page-home .section-heading--split > div:first-child::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 1px;
  height: calc(100% - 12px);
  background: linear-gradient(180deg, rgba(18, 30, 42, 0.18), rgba(18, 30, 42, 0.04));
}

.page-home .section-heading--split h2 {
  max-width: none;
  font-size: clamp(2.45rem, 4vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: pretty;
}

.page-home .section-heading__aside {
  position: relative;
  align-self: start;
  max-width: 30ch;
  padding: 16px 0 0 28px;
  color: rgba(18, 30, 42, 0.62);
  font-size: 1.02rem;
  line-height: 1.72;
  border-left: 1px solid rgba(18, 30, 42, 0.1);
}

.page-home .section-heading__aside::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242, 181, 109, 0.96), rgba(242, 181, 109, 0.22));
  box-shadow: 0 0 0 8px rgba(242, 181, 109, 0.08);
}

.page-home .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18, 30, 42, 0.1);
  letter-spacing: 0.22em;
}

.page-home .section-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 181, 109, 0.94), rgba(242, 181, 109, 0.14));
}

.section-eyebrow,
.service-card__eyebrow,
.hero-panel__label,
.site-footer__eyebrow,
.mobile-nav__eyebrow,
.brand-copy__eyebrow {
  margin: 0;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: -0.052em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.7rem, 5.1vw, 4.5rem);
  max-width: none;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
}

h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.55rem);
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icon {
  inline-size: 1rem;
  block-size: 1rem;
  fill: currentColor;
}

.icon--solo {
  inline-size: 1.125rem;
  block-size: 1.125rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-top: clamp(8px, 1vw, 14px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-shell {
  position: relative;
  padding-bottom: 8px;
}

.header-content {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(660px, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 0.9vw, 14px);
  min-height: 70px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(214, 228, 240, 0.92);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.92));
  box-shadow:
    0 18px 44px rgba(24, 40, 56, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled .header-content {
  transform: translateY(-1px);
  box-shadow:
    0 20px 48px rgba(17, 30, 43, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  border-color: rgba(212, 226, 238, 0.98);
  background: rgba(251, 253, 254, 0.98);
}

@media (min-width: 1440px) {
  .site-header .header-shell {
    width: min(calc(100% - 48px), 1760px);
  }

  .header-content {
    grid-template-columns: minmax(170px, 230px) minmax(0, 1fr) auto;
    gap: clamp(12px, 1vw, 18px);
    padding-inline: clamp(18px, 1.2vw, 24px) clamp(14px, 1vw, 20px);
  }

  .brand-cluster {
    max-width: 230px;
  }

  .brand-cluster__logo {
    width: clamp(148px, 9vw, 176px);
  }

  .nav--desktop {
    justify-content: space-between;
    gap: 4px;
  }

  .nav--desktop a {
    flex: 1 1 auto;
    min-width: max-content;
    padding-inline: clamp(12px, 0.8vw, 20px);
  }

  .header-actions {
    min-width: max-content;
  }
}

.brand-cluster {
  display: grid;
  gap: 4px;
  align-content: center;
  min-width: 0;
  max-width: 300px;
  padding-left: 2px;
}

.brand-cluster__logo {
  display: block;
  width: clamp(150px, 13vw, 190px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
  object-position: left center;
}

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

.brand-cluster__dot {
  inline-size: 8px;
  block-size: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #efb15f;
  box-shadow: 0 0 0 7px rgba(239, 177, 95, 0.1);
}

.brand-cluster__name {
  min-width: 0;
  color: rgba(13, 24, 37, 0.98);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  white-space: nowrap;
}

.brand-cluster__descriptor {
  max-width: 280px;
  overflow: hidden;
  color: rgba(91, 111, 132, 0.84);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.nav--desktop {
  width: 100%;
  justify-self: stretch;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(221, 232, 241, 0.78);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(249, 252, 254, 0.92), rgba(241, 247, 251, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav--desktop a,
.nav--mobile a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: rgba(66, 84, 105, 0.94);
  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nav--desktop a {
  padding: 0 clamp(10px, 0.9vw, 16px);
  background: transparent;
  box-shadow: none;
}

.nav--desktop a:hover,
.nav--desktop a:focus-visible {
  color: rgba(13, 24, 37, 0.98);
  background: rgba(255, 255, 255, 0.74);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(52, 76, 98, 0.08);
}

.nav--desktop a.active {
  color: rgba(13, 24, 37, 0.98);
  background: #ffffff;
  border-color: transparent;
  box-shadow:
    0 10px 22px rgba(47, 73, 96, 0.11),
    inset 0 0 0 1px rgba(218, 230, 240, 0.96);
  font-weight: 850;
}

.nav--desktop a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #4fb5d4;
  transform: translateX(-50%);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 10px;
}

.header-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #dbe8f2;
  border-radius: 16px;
  background: rgba(246, 250, 254, 0.96);
  flex: 0 0 auto;
}

.header-status__dot {
  inline-size: 6px;
  block-size: 6px;
  border-radius: 999px;
  background: #6fd0b0;
}

.header-status__text {
  color: rgba(82, 99, 120, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.15;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 4px;
  border: 1px solid rgba(215, 228, 239, 0.94);
  border-radius: 18px;
  background: rgba(246, 250, 253, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  flex: 0 0 auto;
}

.lang-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 39px;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 14px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang-switch__item.is-active {
  background: #0d1825;
  color: var(--text-inverse);
  box-shadow: 0 8px 16px rgba(13, 24, 37, 0.18);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
}

.cta:focus-visible,
.nav a:focus-visible,
.lang-switch__item:focus-visible,
.nav-toggle:focus-visible,
.mobile-nav__close:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(95, 168, 187, 0.28);
  outline-offset: 2px;
}

.cta.primary {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top center, rgba(116, 199, 215, 0.28), transparent 72%),
    linear-gradient(135deg, #0f1925, #20384b);
  box-shadow: 0 18px 38px rgba(17, 33, 47, 0.22);
}

.cta.primary:hover,
.cta.primary:focus-visible {
  box-shadow: 0 24px 46px rgba(17, 33, 47, 0.28);
}

.cta.secondary,
.cta.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(18, 30, 42, 0.12);
}

.cta.secondary:hover,
.cta.ghost:hover,
.cta.secondary:focus-visible,
.cta.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(18, 30, 42, 0.18);
}

.cta--header {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 17px;
  flex: 0 0 auto;
  font-size: 0.94rem;
  box-shadow: 0 16px 34px rgba(15, 30, 44, 0.2);
}

.cta__dot {
  inline-size: 6px;
  block-size: 6px;
  border-radius: 999px;
  background: #3fb6da;
  flex: 0 0 auto;
}

.cta--header .cta__dot {
  box-shadow: 0 0 0 5px rgba(63, 182, 218, 0.16);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(214, 228, 240, 0.94);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.9));
  color: var(--text);
  box-shadow: 0 10px 24px rgba(20, 31, 46, 0.08);
  cursor: pointer;
  gap: 10px;
}

.nav-toggle::after {
  content: "Меню";
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.nav-toggle__bars {
  display: grid;
  gap: 4px;
}

.nav-toggle .bar {
  display: block;
  inline-size: 16px;
  block-size: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  color: var(--text-inverse);
}

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

body.nav-open .nav-toggle .bar-2 {
  opacity: 0;
}

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

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(9, 18, 29, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
}

.mobile-nav__panel {
  position: absolute;
  top: 84px;
  right: max(16px, env(safe-area-inset-right));
  bottom: 16px;
  left: auto;
  width: min(430px, calc(100vw - 32px));
  overflow: hidden;
  padding: 14px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  border: 1px solid rgba(213, 227, 239, 0.94);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(245, 249, 252, 0.96)),
    rgba(251, 253, 254, 0.97);
  box-shadow: 0 28px 72px rgba(10, 22, 35, 0.22);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(0) scale(0.98);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .mobile-nav {
  pointer-events: auto;
}

body.nav-open .mobile-nav__panel {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.mobile-nav__scroll {
  min-height: 0;
  display: block;
  overflow-y: auto;
  padding-right: 4px;
  margin-right: -2px;
  overscroll-behavior: contain;
}

.mobile-nav__scroll::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav__scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(123, 144, 166, 0.34);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(218, 230, 240, 0.78);
}

.mobile-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-nav__brand-icon {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(13, 24, 37, 0.14);
}

.mobile-nav__brand-name {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(13, 24, 37, 0.07);
  color: #0d1825;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-nav__eyebrow,
.mobile-nav__title {
  display: none;
}

.mobile-nav__intro {
  display: none;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 42px;
  block-size: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(13, 24, 37, 0.92);
  border-radius: 16px;
  background: #0d1825;
  color: var(--text-inverse);
  box-shadow: 0 12px 26px rgba(13, 24, 37, 0.18);
  cursor: pointer;
}

.nav--mobile {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
}

.nav--mobile a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-inline: 16px;
  border-radius: 16px;
  color: #1a2a3c;
  font-size: 0.96rem;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(218, 230, 240, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav--mobile a.active {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top center, rgba(116, 199, 215, 0.22), transparent 72%),
    linear-gradient(135deg, #0f1925, #20384b);
  border-color: rgba(15, 25, 37, 0.92);
  box-shadow: 0 12px 26px rgba(17, 27, 36, 0.16);
}

.nav--mobile a.active::after {
  color: rgba(247, 251, 253, 0.76);
}

.nav--mobile a::after {
  content: ">";
  color: rgba(32, 48, 65, 0.36);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.nav--mobile a.active::after {
  color: rgba(247, 251, 253, 0.76);
}

.nav--mobile a:hover,
.nav--mobile a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(70, 114, 141, 0.26);
  box-shadow: 0 14px 28px rgba(20, 31, 46, 0.08);
}

.mobile-nav__footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(218, 230, 240, 0.78);
}

.mobile-nav__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 10px 14px;
  border-radius: 18px;
  text-decoration: none;
  background:
    radial-gradient(circle at top right, rgba(93, 170, 191, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(12, 21, 31, 0.98), rgba(20, 33, 48, 0.96));
  border: 1px solid rgba(170, 202, 227, 0.14);
  box-shadow: 0 18px 36px rgba(14, 23, 34, 0.14);
}

.mobile-nav__contact-label {
  color: rgba(242, 181, 109, 0.92);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav__contact-phone {
  color: rgba(247, 251, 253, 0.96);
  font-size: 0.98rem;
  line-height: 1.32;
  white-space: nowrap;
}

.mobile-nav__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.mobile-nav__cta {
  flex: 1 1 auto;
  min-height: 50px;
  padding-inline: 18px;
  border-radius: 18px;
}

.lang-switch--mobile {
  padding: 4px;
  border-radius: 999px;
  background: rgba(250, 252, 254, 0.9);
  border: 1px solid rgba(222, 232, 242, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

@media (min-width: 1201px) and (max-width: 1380px) {
  .header-content {
    grid-template-columns: minmax(178px, 0.5fr) minmax(480px, 1fr) auto;
    gap: 10px;
    padding-inline: 14px;
  }

  .brand-cluster__descriptor {
    letter-spacing: 0.16em;
  }

  .nav--desktop a {
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .cta--header {
    padding-inline: 18px;
  }
}

@media (max-width: 1200px) {
  :root {
    --anchor-offset: 104px;
  }

  .header-content {
    grid-template-columns: minmax(180px, 1fr) auto;
    min-height: 68px;
    padding: 10px 12px 10px 16px;
    border-radius: 22px;
  }

  .nav--desktop {
    display: none;
  }

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

@media (max-width: 820px) {
  :root {
    --anchor-offset: 96px;
  }

  .site-header {
    padding-top: 8px;
  }

  .header-content {
    grid-template-columns: minmax(128px, 1fr) auto;
    gap: 8px;
    min-height: 66px;
    padding: 8px 10px 8px 12px;
  }

  .brand-cluster {
    overflow: hidden;
  }

  .brand-cluster__descriptor,
  .header-actions > .lang-switch {
    display: none;
  }

  .brand-cluster__name {
    overflow: hidden;
    max-width: clamp(104px, 34vw, 168px);
    text-overflow: ellipsis;
  }

  .brand-cluster__logo {
    width: clamp(126px, 36vw, 168px);
    max-height: 34px;
  }

  .header-actions {
    gap: 7px;
  }

  .cta--header {
    min-width: 94px;
    min-height: 44px;
    padding-inline: 14px;
    border-radius: 15px;
  }

  .cta--header span:first-child {
    font-size: 0;
  }

  .cta--header span:first-child::after {
    content: "Расчет";
    font-size: 0.78rem;
    font-weight: 850;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 12px;
  }

  .mobile-nav__panel {
    top: 80px;
    right: 10px;
    left: auto;
    bottom: 10px;
    width: min(430px, calc(100vw - 20px));
    padding: 16px;
    border-radius: 26px;
  }

  .nav--mobile a {
    min-height: 50px;
    font-size: 0.95rem;
  }

  .mobile-nav__footer {
    gap: 10px;
  }

  .mobile-nav__contact {
    padding: 12px 14px;
    border-radius: 20px;
  }

  .mobile-nav__contact-phone {
    font-size: 0.96rem;
  }

  .mobile-nav__actions {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 640px) {
  .mobile-nav__panel {
    top: 76px;
    right: 10px;
    left: 10px;
    width: auto;
    padding: 14px;
    border-radius: 24px;
  }
}

@media (max-width: 460px) {
  :root {
    --anchor-offset: 90px;
  }

  .site-header {
    padding-top: 6px;
  }

  .header-content {
    grid-template-columns: minmax(112px, 1fr) auto;
    padding: 8px 9px 8px 11px;
  }

  .brand-cluster__name {
    max-width: 120px;
  }

  .brand-cluster__logo {
    width: 122px;
    max-height: 32px;
  }

  .cta--header {
    min-width: 86px;
    padding-inline: 12px;
  }

  .cta--header .cta__dot {
    inline-size: 7px;
    block-size: 7px;
  }

  .nav-toggle {
    min-width: 42px;
    min-height: 42px;
    padding-inline: 12px;
  }

  .nav-toggle::after {
    content: none;
  }
}

.hero-shell {
  position: relative;
  padding: 24px 0 var(--space-2xl);
}

.hero-shell__backdrop {
  display: none;
}

.hero-shell__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 26px;
  align-items: stretch;
}

.hero-shell--home .hero-shell__grid {
  grid-template-columns: 1fr;
}

.hero-shell__content,
.hero-shell__panel,
.detail-card,
.metric-card,
.service-card,
.portfolio-card,
.timeline-card,
.blog-card,
.lead-form,
.not-found-card,
.article-content,
.contacts-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 253, 0.66)),
    var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-shell__content,
.hero-shell__panel,
.not-found-card {
  border-radius: var(--radius-lg);
}

.hero-shell__content {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 460px;
  padding: clamp(20px, 3vw, 32px);
}

.hero-shell__content h1 {
  max-width: none;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-shell__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 30, 42, 0.08);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-shell__lede {
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.58;
}

.hero-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-shell__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 4px;
}

.hero-shell__meta div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.hero-shell__meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-shell__meta strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.35;
}

.hero-shell__panel {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 460px;
  padding: clamp(18px, 2.2vw, 22px);
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #0e1722, #203446);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-shell__panel h2,
.hero-shell__panel strong,
.hero-shell__panel a,
.hero-shell__panel summary {
  color: var(--text-inverse);
}

.hero-shell__panel p,
.hero-shell__panel span,
.hero-shell__panel li,
.hero-shell__panel dd {
  color: rgba(247, 251, 253, 0.75);
}

.hero-shell__panel-copy {
  display: grid;
  gap: 8px;
}

.hero-shell__panel-copy h2 {
  max-width: none;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.02;
}

.hero-shell__panel-copy p {
  font-size: 0.82rem;
  line-height: 1.42;
}

.hero-shell--faq .hero-shell__grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
  gap: 30px;
}

.hero-shell--faq .hero-shell__content,
.hero-shell--faq .hero-shell__panel {
  min-height: clamp(520px, 45vw, 620px);
}

.hero-shell--faq .hero-shell__content {
  gap: 18px;
  padding: clamp(34px, 3.8vw, 44px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92));
}

.hero-shell--faq .hero-shell__content h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 4.9vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.hero-shell--faq .hero-shell__lede {
  max-width: 34ch;
  color: rgba(84, 101, 118, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.62;
}

.faq-hero__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 30, 42, 0.08);
}

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

.faq-hero__fact span {
  color: rgba(128, 144, 159, 0.96);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-hero__fact strong {
  color: rgba(18, 30, 42, 0.94);
  font-size: 1rem;
  line-height: 1.42;
}

.hero-shell--faq .hero-shell__panel {
  gap: 16px;
  padding: clamp(26px, 3vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(99, 156, 212, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(11, 20, 31, 0.99), rgba(24, 38, 53, 0.97));
}

.hero-shell--faq .hero-panel__label {
  color: rgba(212, 221, 229, 0.94);
  letter-spacing: 0.26em;
}

.hero-shell--faq .hero-shell__panel-copy {
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-shell--faq .hero-shell__panel-copy h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-shell--faq .hero-shell__panel-copy p {
  color: rgba(226, 235, 243, 0.84);
  font-size: 0.98rem;
  line-height: 1.58;
}

.faq-hero__questions {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  counter-reset: faq-hero;
}

.hero-shell--faq .faq-hero__questions li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 0 18px 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 253, 0.92);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  counter-increment: faq-hero;
}

.hero-shell--faq .faq-hero__questions li::before {
  inline-size: 9px;
  block-size: 9px;
  margin-top: 0;
  background: rgba(86, 203, 245, 0.96);
  box-shadow: 0 0 0 8px rgba(86, 203, 245, 0.14);
}

.hero-shell--faq .faq-hero__questions li::after {
  content: counter(faq-hero, decimal-leading-zero);
  color: rgba(196, 207, 217, 0.52);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-shell__visual {
  margin: auto 0 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.hero-shell__visual img {
  width: 100%;
  height: clamp(150px, 22vw, 210px);
  object-fit: cover;
}

.hero-slider {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.hero-slider__viewport {
  position: relative;
  min-height: clamp(250px, 31vw, 362px);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: opacity 320ms ease, transform 460ms ease;
}

.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slider__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: inherit;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  z-index: 1;
  box-shadow: none;
}

.hero-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 14, 24, 0.04) 0%, rgba(7, 14, 24, 0.08) 34%, rgba(7, 14, 24, 0.28) 100%),
    linear-gradient(90deg, rgba(7, 14, 24, 0.42) 0%, rgba(7, 14, 24, 0.14) 38%, rgba(7, 14, 24, 0.06) 62%, rgba(7, 14, 24, 0.18) 100%);
  pointer-events: none;
}

.hero-slider__caption {
  position: absolute;
  left: 30px;
  bottom: 94px;
  z-index: 3;
  display: grid;
  gap: 12px;
  width: min(560px, calc(100% - 192px));
  padding: 22px 24px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, var(--hero-slider-overlay-border, 0.04));
  overflow: hidden;
  isolation: isolate;
  background: var(--hero-slider-caption-bg,
    radial-gradient(circle at top right, rgba(111, 164, 210, var(--hero-slider-overlay-glow, 0.064)), transparent 28%),
    linear-gradient(180deg, rgba(13, 21, 33, var(--hero-slider-overlay-top, 0.32)), rgba(11, 18, 29, var(--hero-slider-overlay-bottom, 0.46))));
  box-shadow:
    0 18px 34px rgba(6, 12, 20, var(--hero-slider-overlay-shadow, 0.096)),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-slider__caption::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 74px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-slider__caption::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -88px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(113, 163, 206, 0.18) 0%, rgba(113, 163, 206, 0) 72%);
  pointer-events: none;
}

.hero-slider__caption > * {
  position: relative;
  z-index: 1;
}

.hero-slider__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  min-height: 26px;
  margin-top: 0;
  margin-bottom: 2px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  background: var(--hero-slider-eyebrow-bg, rgba(255, 255, 255, 0.018));
  color: var(--hero-slider-eyebrow-color, rgba(245, 184, 113, 0.96));
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 18px rgba(5, 10, 16, 0.045);
}

.hero-slider__caption strong {
  display: block;
  color: var(--hero-slider-caption-color, rgba(250, 252, 255, 0.98));
  font-size: clamp(1.55rem, 2.15vw, 2.28rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.hero-slider__caption p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.52;
  color: var(--hero-slider-caption-color, rgba(229, 238, 246, 0.78));
}

.hero-slider__overlay-nav {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 18, 28, 0.62);
  color: var(--text-inverse);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
  transform: translateY(-1px);
  background: rgba(10, 18, 28, 0.76);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-slider__arrow span {
  font-size: 1.75rem;
  line-height: 1;
}

.hero-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stage__footer-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  min-height: 48px;
  max-width: calc(100% - 180px);
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 18, 28, 0.82), rgba(12, 22, 34, 0.92));
  box-shadow:
    0 18px 42px rgba(6, 12, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  pointer-events: auto;
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background-color 180ms ease, width 180ms ease, box-shadow 180ms ease;
}

.hero-slider__dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, rgba(247, 251, 253, 0.98), rgba(196, 220, 240, 0.96));
  box-shadow: 0 8px 18px rgba(160, 197, 224, 0.24);
}

.hero-slider__counter {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(235, 242, 248, 0.74);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-slider__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 172px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 251, 253, 0.98);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(11, 20, 32, 0.94), rgba(17, 33, 48, 0.94));
  box-shadow: 0 14px 30px rgba(6, 12, 20, 0.24);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-slider__link:hover,
.hero-slider__link:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(13, 24, 38, 0.98), rgba(19, 39, 56, 0.98));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(6, 12, 20, 0.28);
}

.hero-stage {
  position: relative;
  min-height: 700px;
}

.hero-stage__viewport {
  min-height: 700px;
  border-radius: 34px;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(118deg, rgba(10, 18, 28, 0.94), rgba(15, 28, 40, 0.78) 42%, rgba(10, 18, 28, 0.92));
  box-shadow: 0 28px 64px rgba(10, 18, 28, 0.2);
}

.hero-stage--fallback,
.hero-stage--fallback .hero-stage__viewport {
  min-height: clamp(600px, calc(100svh - 146px), 700px);
}

.hero-stage--fallback .hero-stage__viewport {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(392px, 0.64fr);
  gap: clamp(30px, 3.6vw, 62px);
  align-items: center;
  padding: clamp(34px, 3.8vw, 52px);
  overflow: hidden;
  background: none;
  box-shadow:
    0 34px 82px rgba(16, 28, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-stage__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 214, 161, 0.08), transparent 18%),
    radial-gradient(circle at 30% 72%, rgba(173, 205, 228, 0.08), transparent 26%);
  pointer-events: none;
}

.hero-stage--fallback .hero-stage__viewport::before {
  background: none;
}

.hero-stage--fallback .hero-stage__viewport::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border-radius: 28px;
  background: none;
  opacity: 0;
  pointer-events: none;
}

.hero-stage--fallback .hero-slider__slide::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.hero-stage__fallback-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hero-stage__fallback-art::before,
.hero-stage__fallback-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-stage__fallback-art::before {
  top: 92px;
  left: 50%;
  width: 26%;
  height: 60%;
  background: linear-gradient(180deg, rgba(184, 210, 229, 0.14), rgba(184, 210, 229, 0.02));
  filter: blur(1px);
}

.hero-stage__fallback-art::after {
  right: 8%;
  bottom: 16%;
  width: 38%;
  height: 24%;
  background: radial-gradient(circle, rgba(143, 184, 214, 0.18), transparent 72%);
}

.hero-stage__fallback-beam {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 48px rgba(173, 205, 228, 0.24);
}

.hero-stage__fallback-beam--top {
  top: 68px;
  left: auto;
  right: clamp(236px, 22vw, 306px);
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 30, 42, 0), rgba(18, 30, 42, 0.22), rgba(18, 30, 42, 0));
  box-shadow: none;
}

.hero-stage__fallback-beam--side {
  top: 104px;
  right: 252px;
  width: 214px;
  height: 500px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(137, 176, 206, 0.16), rgba(210, 225, 237, 0.03));
}

.hero-stage__fallback-glass {
  position: absolute;
  display: block;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(191, 214, 232, 0.1)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 18px 42px rgba(162, 193, 219, 0.1);
  backdrop-filter: blur(10px);
}

.hero-stage__fallback-glass--left {
  top: 20px;
  left: clamp(24px, 4vw, 62px);
  width: min(44%, 648px);
  height: calc(100% - 40px);
  transform: rotate(-1.6deg);
}

.hero-stage__fallback-glass--right {
  top: clamp(96px, 9vw, 122px);
  right: clamp(30px, 4vw, 76px);
  width: min(30%, 414px);
  height: min(62%, 430px);
  background:
    radial-gradient(circle at top right, rgba(147, 201, 240, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(12, 22, 34, 0.1), rgba(23, 40, 57, 0.02));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 42px rgba(10, 18, 28, 0.07);
  transform: rotate(2.4deg);
}

.hero-stage__fallback-line {
  position: absolute;
  left: clamp(202px, 17vw, 258px);
  bottom: clamp(124px, 14vw, 162px);
  width: clamp(228px, 23vw, 312px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(108, 181, 214, 0.24), rgba(108, 181, 214, 0.74), rgba(108, 181, 214, 0.12));
  transform: rotate(-17deg);
  transform-origin: left center;
}

.hero-stage__fallback-panel {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 20px;
  width: 100%;
  max-width: 694px;
  min-width: 0;
  padding: clamp(32px, 3vw, 42px);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  box-shadow:
    0 34px 74px rgba(16, 28, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.hero-stage__fallback-panel::before,
.hero-stage__fallback-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-stage__fallback-panel::before {
  inset: 0 0 auto 0;
  height: 104px;
  border-radius: 36px 36px 0 0;
  background: none;
}

.hero-stage__fallback-panel::after {
  top: 36px;
  right: 34px;
  width: 104px;
  height: 1px;
  background: none;
}


.hero-stage__fallback-panel > * {
  position: relative;
  z-index: 1;
}

.hero-stage__fallback-panel .hero-shell__kicker {
  min-height: 36px;
  padding: 0 16px;
  border-color: rgba(18, 30, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(18, 30, 42, 0.94);
  letter-spacing: 0.16em;
}

.hero-stage__fallback-panel h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.22rem, 3.3vw, 3.64rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-wrap: pretty;
}

.hero-stage__fallback-panel .hero-shell__lede {
  max-width: 31ch;
  margin: 0;
  color: rgba(70, 87, 105, 0.9);
  font-size: 1.06rem;
  line-height: 1.66;
}

.hero-stage__fallback-actions {
  margin-top: 2px;
  gap: 14px;
}

.hero-stage__fallback-actions .cta.primary {
  min-height: 56px;
  padding-inline: 24px;
  box-shadow: 0 22px 42px rgba(17, 33, 47, 0.18);
}

.hero-stage__fallback-actions .cta.ghost {
  min-height: 56px;
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(18, 30, 42, 0.12);
}

.hero-stage__fallback-meta {
  margin-top: 10px;
  gap: 14px;
}

.hero-stage__fallback-meta div {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 30, 42, 0.1);
}

.hero-stage__fallback-meta span {
  margin-bottom: 0;
  color: rgba(120, 137, 155, 0.96);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.hero-stage__fallback-meta strong {
  max-width: none;
  color: rgba(18, 30, 42, 0.92);
  font-size: 1rem;
  line-height: 1.42;
}

.hero-stage__fallback-proof {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 18px;
  width: 100%;
  max-width: 458px;
  padding: 28px 24px 24px;
  margin: 8px 16px 0 auto;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(117, 170, 214, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(13, 22, 34, 0.985), rgba(22, 37, 52, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 58px rgba(8, 15, 24, 0.2);
}

.hero-stage__fallback-proof::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 18px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 181, 109, 0), rgba(240, 181, 109, 0.46), rgba(240, 181, 109, 0));
  pointer-events: none;
}

.hero-stage__fallback-proof::after {
  content: "";
  position: absolute;
  inset: -14px -12px 36px 34px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(140, 177, 206, 0.12), rgba(140, 177, 206, 0.02));
  opacity: 0.72;
}

.hero-stage__fallback-proof-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.hero-stage__fallback-proof-eyebrow {
  color: rgba(245, 184, 113, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-stage__fallback-proof-index {
  color: rgba(255, 255, 255, 0.15);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.hero-stage__fallback-proof h2 {
  margin: 0;
  color: rgba(248, 251, 253, 0.98);
  max-width: none;
  font-size: clamp(1.72rem, 2.25vw, 2.42rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: pretty;
}

.hero-stage__fallback-proof p {
  margin: 0;
  color: rgba(214, 224, 234, 0.84);
  max-width: none;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
  line-height: 1.68;
}

.hero-stage__fallback-proof-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.hero-stage__fallback-proof-signal {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 128px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stage__fallback-proof-signal:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 108px;
}

.hero-stage__fallback-proof-signal-label {
  color: rgba(179, 194, 208, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-stage__fallback-proof-signal strong {
  color: rgba(246, 250, 253, 0.98);
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: pretty;
}

.hero-stage__fallback-proof-signal-rule {
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: rgba(127, 190, 246, 0.98);
}

.hero-stage__fallback-proof-signal:nth-child(3) .hero-stage__fallback-proof-signal-rule {
  background: rgba(240, 181, 109, 0.98);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-stage--fallback .hero-stage__fallback-panel {
    animation: hero-fallback-panel-in 760ms cubic-bezier(0.18, 0.84, 0.22, 1) both;
  }

  .hero-stage--fallback .hero-stage__fallback-proof {
    animation: hero-fallback-proof-in 840ms cubic-bezier(0.18, 0.84, 0.22, 1) 120ms both;
  }

  .hero-stage--fallback .hero-stage__fallback-glass--left {
    animation: hero-fallback-float-left 11s ease-in-out infinite alternate;
  }

  .hero-stage--fallback .hero-stage__fallback-glass--right {
    animation: hero-fallback-float-right 12s ease-in-out infinite alternate;
  }

  .hero-stage--fallback .hero-stage__fallback-beam--top {
    animation: hero-fallback-beam-glow 8s ease-in-out infinite;
  }

  .solution-feature__body {
    animation: solution-feature-card-float 11s ease-in-out infinite alternate;
  }

  .solution-feature__media img {
    animation: solution-feature-media-drift 16s ease-in-out infinite alternate;
  }

  .portfolio-lead__body {
    animation: portfolio-lead-panel-float 12s ease-in-out infinite alternate;
  }

  .portfolio-lead__media img {
    animation: portfolio-lead-media-drift 18s ease-in-out infinite alternate;
  }

  .page-home .section-heading--split > div:first-child {
    animation: home-section-heading-copy-in 760ms cubic-bezier(0.18, 0.84, 0.22, 1) both;
  }

  .page-home .section-heading__aside {
    animation: home-section-heading-aside-in 820ms cubic-bezier(0.18, 0.84, 0.22, 1) 80ms both;
  }
}

@keyframes hero-fallback-panel-in {
  from {
    opacity: 0;
    transform: translate3d(-18px, 22px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-fallback-proof-in {
  from {
    opacity: 0;
    transform: translate3d(20px, 24px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-fallback-float-left {
  from {
    transform: rotate(-1.6deg) translateY(0);
  }

  to {
    transform: rotate(-0.6deg) translateY(10px);
  }
}

@keyframes hero-fallback-float-right {
  from {
    transform: rotate(2.4deg) translateY(0);
  }

  to {
    transform: rotate(3.2deg) translateY(-8px);
  }
}

@keyframes hero-fallback-beam-glow {
  0%,
  100% {
    opacity: 0.74;
    transform: scaleX(1);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.04);
  }
}

@keyframes hero-scene-card-float {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes hero-scene-image-drift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.05) translate3d(-10px, -8px, 0);
  }
}

@keyframes hero-scene-caption-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes hero-proof-ambient {
  from {
    opacity: 0.56;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0.9;
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes hero-fallback-glass-left-soft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(10px, 12px, 0);
  }
}

@keyframes hero-fallback-glass-right-soft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-8px, -10px, 0);
  }
}

@keyframes solution-feature-card-float {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes solution-feature-media-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-14px, -10px, 0);
  }
}

@keyframes portfolio-lead-panel-float {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes portfolio-lead-media-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.05) translate3d(12px, -8px, 0);
  }
}

@keyframes home-section-heading-copy-in {
  from {
    opacity: 0;
    transform: translate3d(-14px, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes home-section-heading-aside-in {
  from {
    opacity: 0;
    transform: translate3d(14px, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-stage__nav,
.hero-stage__footer {
  z-index: 3;
}

.hero-stage__nav {
  top: 34px;
  right: 34px;
}

.hero-stage__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px 22px;
  pointer-events: none;
}

.hero-stage__footer .hero-slider__link {
  min-height: 0;
  padding: 12px 18px;
  pointer-events: auto;
}

.hero-stage__footer .hero-slider__link:hover,
.hero-stage__footer .hero-slider__link:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(18, 30, 42, 0.12);
}

.hero-shell__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-shell__trust li,
.chip-list li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(18, 30, 42, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.15;
  word-spacing: 0.08em;
  white-space: nowrap;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-shell__panel .chip-list li,
.bullet-list--inverse li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

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

.stat-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  letter-spacing: -0.04em;
}

.stat-card span {
  font-size: 0.8rem;
  line-height: 1.5;
}

.cards-grid,
.metrics-grid,
.timeline-grid,
.portfolio-grid,
.blog-grid,
.detail-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

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

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

.detail-stack {
  display: grid;
  gap: 18px;
}

.service-card,
.metric-card,
.timeline-card,
.detail-card,
.portfolio-card,
.blog-card {
  border-radius: 24px;
  padding: 18px;
}

.service-card,
.portfolio-card,
.blog-card {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.service-card--solution {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 210px);
  align-items: stretch;
}

.service-card__copy {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.service-card__copy h3,
.metric-card h3,
.timeline-card h3,
.portfolio-card h3,
.blog-card h2,
.blog-card h3,
.detail-card h2 {
  letter-spacing: -0.04em;
}

.service-card__media,
.portfolio-card__media,
.blog-card__media,
.article-shell__media {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(240, 246, 250, 0.9), rgba(219, 230, 237, 0.86));
}

.service-card__media img,
.portfolio-card__media img,
.blog-card__media img,
.article-shell__media img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.service-card a,
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-card:hover,
.metric-card:hover,
.portfolio-card:hover,
.blog-card:hover,
.timeline-card:hover,
.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.metric-card,
.timeline-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

.metric-card h3,
.timeline-card h3 {
  font-size: 1.16rem;
}

.timeline-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.detail-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

.detail-card--cta {
  background:
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 248, 0.86));
}

.spec-list {
  display: grid;
  gap: 14px;
}

.spec-list div {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.site-footer__contacts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__contacts--panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(17, 29, 43, 0.72);
  border: 1px solid rgba(169, 193, 214, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer__contacts--panel li,
.site-footer__contacts--panel a,
.site-footer__contacts--panel span {
  color: rgba(241, 246, 252, 0.94);
  font-size: 0.98rem;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer__contacts--panel a:hover {
  color: #ffffff;
}

.bullet-list {
  display: grid;
  gap: 10px;
}

.bullet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text-soft);
  line-height: 1.65;
}

.bullet-list li::before {
  content: "";
  inline-size: 8px;
  block-size: 8px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(95, 168, 187, 0.12);
}

.link-stack {
  display: grid;
  gap: 12px;
}

.link-stack a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(18, 30, 42, 0.08);
  color: var(--text);
  font-weight: 700;
}

.portfolio-card {
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  padding: 0;
}

.portfolio-card__media {
  min-height: 220px;
  border-radius: 24px 0 0 24px;
}

.portfolio-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.gallery-albums-grid,
.client-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-album-card,
.client-card {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 249, 252, 0.76)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-album-card:hover,
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(95, 168, 187, 0.28);
}

.gallery-album-card__media,
.client-card__media {
  min-height: 180px;
  background:
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(12, 24, 36, 0.08), rgba(12, 24, 36, 0.02));
}

.gallery-album-card__media img,
.client-card__media img {
  width: 100%;
  height: 100%;
}

.gallery-album-card__media img {
  object-fit: cover;
}

.client-card__media {
  display: grid;
  place-items: center;
  padding: 20px;
}

.client-card__media img {
  max-width: min(180px, 100%);
  max-height: 72px;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.02);
}

.gallery-album-card__body,
.client-card__body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.gallery-page__hero {
  padding: clamp(12px, 2vw, 20px) 0 10px;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 16px;
  align-items: start;
  grid-auto-rows: min-content;
}

.gallery-hero__content,
.gallery-hero__panel,
.gallery-empty,
.gallery-principle-card,
.gallery-principles__cta {
  position: relative;
  align-self: start;
  height: fit-content;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.gallery-hero__content,
.gallery-empty,
.gallery-principle-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 253, 0.66)),
    var(--surface);
}

.gallery-hero__content {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 300px;
  padding: clamp(18px, 2.2vw, 26px);
}

.gallery-hero__eyebrow {
  margin: 0;
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-hero__title {
  margin: 0;
  max-width: none;
  font-size: clamp(1.55rem, 2.55vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.gallery-hero__lede {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.55;
}

.gallery-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.gallery-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.gallery-stat {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 30, 42, 0.08);
}

.gallery-stat strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.gallery-stat span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.gallery-stat--wide strong {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-hero__panel {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(16px, 2vw, 22px);
  background:
    radial-gradient(circle at top right, rgba(154, 214, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(12, 21, 31, 0.98), rgba(19, 31, 45, 0.96));
  border-color: rgba(174, 205, 229, 0.16);
  box-shadow: 0 24px 46px rgba(7, 14, 22, 0.18);
}

.gallery-hero__panel-label {
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-hero__panel-media {
  display: grid;
  gap: 8px;
}

.gallery-hero__panel-main,
.gallery-hero__panel-thumb {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(186, 214, 237, 0.14);
}

.gallery-hero__panel-main {
  height: clamp(280px, 34vw, 420px);
}

.gallery-hero__panel-main img,
.gallery-hero__panel-thumb img,
.gallery-album-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-hero__panel-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gallery-hero__panel-thumb {
  height: clamp(82px, 8vw, 112px);
}

.gallery-hero__panel-copy {
  display: grid;
  gap: 6px;
}

.gallery-hero__panel-copy h2 {
  margin: 0;
  color: rgba(247, 251, 253, 0.96);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.gallery-hero__panel-copy p {
  margin: 0;
  color: rgba(208, 219, 231, 0.82);
  font-size: 0.84rem;
  line-height: 1.48;
}

.gallery-hero__panel-points {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-hero__panel-points li {
  position: relative;
  padding-left: 14px;
  color: rgba(208, 219, 231, 0.82);
  font-size: 0.82rem;
  line-height: 1.42;
}

.gallery-hero__panel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 0 5px rgba(240, 181, 109, 0.12);
}

.gallery-page__collections {
  padding: 0 0 22px;
}

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

.gallery-album-card {
  grid-column: span 4;
  gap: 0;
  border-radius: 26px;
}

.gallery-album-card--featured {
  grid-column: span 7;
}

.gallery-album-card__media {
  position: relative;
  min-height: 220px;
  background:
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(12, 24, 36, 0.08), rgba(12, 24, 36, 0.02));
}

.gallery-album-card--featured .gallery-album-card__media {
  min-height: 280px;
}

.gallery-album-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 16, 26, 0.06), rgba(9, 16, 26, 0.38));
}

.gallery-album-card__overlay {
  position: absolute;
  inset: 12px 12px auto 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-album-card__badge,
.gallery-album-card__count,
.gallery-album-card__slug {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.gallery-album-card__badge,
.gallery-album-card__count {
  background: rgba(247, 251, 253, 0.9);
  color: var(--text);
}

.gallery-album-card__body {
  gap: 12px;
  padding: 18px;
}

.gallery-album-card__header {
  display: grid;
  gap: 8px;
}

.gallery-album-card__header h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.gallery-album-card__header p,
.gallery-album-card__body p {
  margin: 0;
}

.gallery-album-card__body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.gallery-album-card__slug {
  width: fit-content;
  color: var(--accent-strong);
  background: rgba(95, 168, 187, 0.12);
}

.gallery-album-card__preview-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gallery-album-card__preview {
  min-height: 68px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(232, 240, 245, 0.9);
}

.gallery-empty {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
}

.gallery-empty__eyebrow {
  margin: 0;
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-empty h3,
.gallery-principles__intro h2,
.gallery-principles__cta h3,
.gallery-principle-card h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.gallery-empty p,
.gallery-principle-card p,
.gallery-principles__cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-page__principles {
  padding: 0 0 56px;
}

.gallery-principles {
  display: grid;
  gap: 18px;
}

.gallery-principles__intro {
  display: grid;
  gap: 10px;
  max-width: none;
}

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

.gallery-principle-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  min-height: 100%;
}

.gallery-principles__cta {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(154, 214, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(12, 21, 31, 0.98), rgba(19, 31, 45, 0.96));
  border-color: rgba(174, 205, 229, 0.16);
  box-shadow: 0 24px 46px rgba(7, 14, 22, 0.18);
}

.gallery-principles__cta h3,
.gallery-principles__cta p {
  color: rgba(247, 251, 253, 0.94);
}

.gallery-page__albums {
  padding: clamp(18px, 2.2vw, 28px) 0 14px;
}

.portfolio-journey-shell,
.portfolio-bridge-shell {
  padding: clamp(18px, 2.4vw, 30px) 0 0;
}

#portfolio-archive,
#portfolio-cases,
#portfolio-proof,
#portfolio-cta {
  scroll-margin-top: var(--anchor-offset);
}

.portfolio-journey {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    radial-gradient(circle at top right, rgba(91, 167, 204, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 253, 0.84)),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.portfolio-journey__intro {
  display: grid;
  align-content: start;
  gap: 14px;
}

.portfolio-journey__intro h1 {
  max-width: 14.5ch;
  margin: 0;
  font-size: clamp(2.45rem, 4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.portfolio-journey__intro > p:last-of-type {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.portfolio-journey__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio-journey__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 30, 42, 0.08);
}

.portfolio-journey__metric {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(18, 30, 42, 0.08);
}

.portfolio-journey__metric:last-child {
  padding-right: 0;
  border-right: 0;
}

.portfolio-journey__metric span {
  color: rgba(121, 137, 151, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-journey__metric strong {
  color: rgba(18, 30, 42, 0.96);
  font-size: clamp(1.02rem, 1.12vw, 1.12rem);
  line-height: 1.42;
}

.portfolio-journey__steps {
  display: grid;
  gap: 12px;
  align-content: start;
}

.portfolio-journey__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 251, 0.78)),
    rgba(255, 255, 255, 0.88);
}

.portfolio-journey__step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 30, 42, 0.94);
  color: rgba(247, 251, 253, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.portfolio-journey__step-copy {
  display: grid;
  gap: 6px;
}

.portfolio-journey__step-copy h2 {
  margin: 0;
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
  line-height: 1.02;
}

.portfolio-journey__step-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.portfolio-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 26px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 252, 0.84)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(16, 25, 35, 0.06);
}

.portfolio-bridge--soft {
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.84), rgba(240, 246, 251, 0.74)),
    rgba(255, 255, 255, 0.76);
}

.portfolio-bridge__copy {
  display: grid;
  gap: 6px;
}

.portfolio-bridge__copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.gallery-album-rail {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.gallery-album-rail__item {
  grid-column: span 4;
  display: grid;
  align-self: start;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.78)),
    var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.gallery-album-rail__item:hover,
.gallery-album-rail__item.is-active {
  transform: translateY(-2px);
  border-color: rgba(95, 168, 187, 0.28);
  box-shadow: 0 18px 34px rgba(15, 29, 42, 0.1);
}

.gallery-album-rail__item.is-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 242, 247, 0.88)),
    var(--surface);
}

.gallery-album-rail__item--all {
  position: relative;
  overflow: hidden;
  grid-column: span 3;
  justify-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(154, 214, 255, 0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(95, 168, 187, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(12, 21, 31, 0.98), rgba(19, 31, 45, 0.96));
  border-color: rgba(174, 205, 229, 0.16);
  box-shadow: 0 24px 46px rgba(7, 14, 22, 0.18);
}

.gallery-album-rail__item--all::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 168, 187, 0.2) 0%, rgba(95, 168, 187, 0.06) 46%, transparent 72%);
  pointer-events: none;
}

.gallery-album-rail__item--all strong,
.gallery-album-rail__item--all span {
  color: rgba(247, 251, 253, 0.94);
}

.gallery-album-rail__item--all:hover,
.gallery-album-rail__item--all.is-active {
  border-color: rgba(174, 205, 229, 0.2);
  background:
    radial-gradient(circle at top right, rgba(154, 214, 255, 0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(95, 168, 187, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(12, 21, 31, 0.98), rgba(19, 31, 45, 0.96));
  box-shadow: 0 24px 46px rgba(7, 14, 22, 0.18);
}

.gallery-album-rail__item--all strong {
  max-width: none;
  font-size: clamp(1.32rem, 1.8vw, 1.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.gallery-album-rail__item--all > span:not(.gallery-album-rail__eyebrow):not(.gallery-album-rail__summary) {
  max-width: 26ch;
  color: rgba(221, 232, 240, 0.84);
}

.gallery-album-rail__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.gallery-album-rail__summary-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(174, 205, 229, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 251, 253, 0.96);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-album-rail__item--featured {
  grid-column: span 5;
}

.gallery-album-rail__cover {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1.9 / 1;
  max-height: 210px;
  background: rgba(228, 238, 244, 0.9);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-album-rail__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-album-rail__body {
  display: grid;
  gap: 6px;
}

.gallery-album-rail__body strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.gallery-album-rail__body span,
.gallery-album-rail__meta {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.gallery-album-rail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.gallery-album-rail__eyebrow,
.gallery-album-rail__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-album-rail__eyebrow {
  color: var(--warm);
}

.gallery-album-rail__badge {
  color: var(--accent-strong);
  background: rgba(95, 168, 187, 0.12);
}

.gallery-page__wall {
  padding: 0 0 28px;
}

.gallery-media-shell {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 253, 0.82)),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.gallery-media-shell__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.7fr);
  gap: 18px;
  align-items: end;
}

.gallery-media-shell__head h2 {
  margin: 0;
}

.gallery-media-shell__aside {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.gallery-media-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  grid-column: span 3;
  display: grid;
  gap: 10px;
}

.gallery-item--featured {
  grid-column: span 6;
}

.gallery-item.is-hidden-by-limit {
  display: none !important;
}

.gallery-item__media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(234, 241, 246, 0.9), rgba(224, 235, 242, 0.84));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1 / 1.04;
  border: 1px solid rgba(18, 30, 42, 0.06);
}

.gallery-item__trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item__trigger:focus-visible {
  outline: 2px solid rgba(95, 168, 187, 0.78);
  outline-offset: -4px;
}

.gallery-item--featured .gallery-item__media {
  aspect-ratio: 1.34 / 1;
}

.gallery-item__media img,
.gallery-item__media video,
.gallery-item__media iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}

.gallery-item figcaption {
  display: grid;
  gap: 4px;
}

.gallery-item__album {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-item__caption {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.gallery-media-shell__actions {
  display: flex;
  justify-content: center;
}

.gallery-media-shell__actions [data-gallery-more][hidden] {
  display: none !important;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  display: none;
  padding: calc(max(env(safe-area-inset-top, 0px), 12px) + var(--gallery-lightbox-offset-top, 0px)) 18px 14px;
  overflow: hidden;
}

.gallery-lightbox.is-open {
  display: grid;
  place-items: center;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 18, 0.72);
  backdrop-filter: blur(14px);
}

.gallery-lightbox__panel {
  position: relative;
  width: min(1120px, calc(100vw - 56px));
  display: grid;
  gap: 10px;
  align-items: stretch;
  max-width: 100%;
  max-height: calc(100dvh - 24px - var(--gallery-lightbox-offset-top, 0px));
  margin: auto;
}

.gallery-lightbox__toolbar {
  position: absolute;
  inset: 14px 14px auto 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 0;
}

.gallery-lightbox__stage {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 12px;
  align-items: center;
  min-height: 0;
}

.gallery-lightbox__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 34px;
  padding: 26px 74px;
  background:
    linear-gradient(180deg, rgba(8, 15, 24, 0.88), rgba(10, 18, 26, 0.95)),
    rgba(10, 18, 26, 0.95);
  border: 1px solid rgba(173, 205, 229, 0.12);
  height: min(calc(100dvh - 104px - var(--gallery-lightbox-offset-top, 0px)), 790px);
  min-height: clamp(320px, 62dvh, 620px);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.32);
}

.gallery-lightbox--portrait .gallery-lightbox__panel {
  width: min(760px, calc(100vw - 44px));
  gap: 8px;
}

.gallery-lightbox--portrait .gallery-lightbox__toolbar {
  inset: 10px 10px auto 10px;
}

.gallery-lightbox--portrait .gallery-lightbox__media {
  height: min(calc(100dvh - 92px - var(--gallery-lightbox-offset-top, 0px)), 860px);
  min-height: clamp(420px, 72dvh, 760px);
  padding: 18px 20px;
}

.gallery-lightbox--portrait .gallery-lightbox__stage {
  position: relative;
  display: block;
}

.gallery-lightbox--portrait .gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
}

.gallery-lightbox--portrait .gallery-lightbox__nav--prev {
  left: 16px;
}

.gallery-lightbox--portrait .gallery-lightbox__nav--next {
  right: 16px;
}

.gallery-lightbox--portrait .gallery-lightbox__media img,
.gallery-lightbox--portrait .gallery-lightbox__media video,
.gallery-lightbox--portrait .gallery-lightbox__media iframe {
  max-height: 100%;
}

.gallery-lightbox--portrait .gallery-lightbox__footer {
  padding-bottom: 0;
}

.gallery-lightbox--portrait .gallery-lightbox__caption {
  max-width: 38ch;
  font-size: 0.92rem;
}

.gallery-lightbox--square .gallery-lightbox__panel {
  width: min(920px, calc(100vw - 56px));
}

.gallery-lightbox__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gallery-lightbox-image);
  background-size: cover;
  background-position: center;
  filter: blur(34px);
  transform: scale(1.08);
  opacity: 0.18;
}

.gallery-lightbox__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(180deg, rgba(8, 14, 22, 0.1), rgba(8, 14, 22, 0.42));
}

.gallery-lightbox__media img,
.gallery-lightbox__media video,
.gallery-lightbox__media iframe {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(12, 21, 31, 0.72);
  color: rgba(247, 251, 253, 0.94);
  border: 1px solid rgba(173, 205, 229, 0.16);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.gallery-lightbox__close {
  font-size: 1.55rem;
  line-height: 1;
}

.gallery-lightbox__nav {
  font-size: 1.7rem;
  line-height: 1;
  justify-self: center;
}

.gallery-lightbox__nav--prev {
  grid-column: 1;
}

.gallery-lightbox__nav--next {
  grid-column: 3;
}

.gallery-lightbox__footer {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding-inline: 4px;
  padding-bottom: 2px;
}

.gallery-lightbox__caption {
  min-width: 0;
  max-width: min(760px, 100%);
  color: rgba(247, 251, 253, 0.9);
  font-size: 0.94rem;
  line-height: 1.52;
  text-align: center;
}

.gallery-lightbox__counter {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(173, 205, 229, 0.14);
  background: rgba(12, 21, 31, 0.66);
  color: rgba(247, 251, 253, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.gallery-lightbox-open .callback-widget,
body.gallery-lightbox-open .cookie-consent {
  opacity: 0;
  pointer-events: none;
}

.portfolio-card__type,
.blog-card__meta {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: min(100%, 520px);
  padding: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-xs);
}

.blog-search input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

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

.blog-card {
  padding: 0;
}

.blog-card__media {
  display: block;
}

.page-blog .blog-card__media,
.page-blog .blog-card__media img {
  width: 100%;
  min-height: 0;
}

.page-blog .blog-card__media img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: top center !important;
}

.blog-card__body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.blog-card__body p {
  font-size: 0.97rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.article-shell__intro,
.article-shell__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-sm);
}

.article-shell__intro {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(28px, 3vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 249, 252, 0.72)),
    rgba(255, 255, 255, 0.8);
}

.article-shell__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.article-content {
  padding: clamp(28px, 3vw, 42px);
  border-radius: var(--radius-lg);
}

.article-content > * + * {
  margin-top: 1.1rem;
}

.article-content h2,
.article-content h3 {
  margin-top: 2rem;
  color: var(--text);
}

.article-content ul,
.article-content ol {
  padding-left: 1.1rem;
  list-style: disc;
}

.article-content li {
  color: var(--text-soft);
  line-height: 1.72;
}

.contact-screen {
  display: grid;
  gap: 24px;
}

.contact-screen__hero,
.contact-screen__request,
.contact-screen__trust {
  position: relative;
}

.contact-hero,
.contact-request,
.contact-location,
.contact-trust {
  display: grid;
  gap: 20px;
}

.contact-hero {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  align-items: stretch;
}

.contact-screen__request,
.contact-screen__location,
.contact-screen__trust {
  margin-top: 18px;
}

.contact-hero__content,
.contact-hero__panel,
.lead-form--contact-screen,
.contact-request__support,
.contact-location__panel,
.contact-location__map-card,
.contact-trust-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 26px 60px rgba(17, 31, 45, 0.1);
}

.contact-hero__content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(30px, 3.2vw, 46px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9));
}

.contact-hero__content::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 30, 42, 0), rgba(18, 30, 42, 0.16), rgba(18, 30, 42, 0));
}

.contact-hero__pretitle {
  margin: 0;
  color: rgba(92, 109, 126, 0.9);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-hero__eyebrow,
.contact-request-card__eyebrow,
.contact-request__support-eyebrow,
.contact-location__eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-hero__title {
  margin: 0;
  max-width: none;
  font-size: clamp(2.7rem, 4.1vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-wrap: pretty;
}

.contact-hero__lede {
  margin: 0;
  max-width: 34ch;
  color: rgba(78, 94, 111, 0.94);
  font-size: 1.04rem;
  line-height: 1.7;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero__actions .cta {
  min-height: 56px;
  padding-inline: 24px;
}

.contact-hero__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.contact-info-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 118px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(242, 247, 250, 0.86)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 30, 42, 0.08);
}

.contact-info-card__label {
  margin: 0;
  color: rgba(122, 138, 153, 0.94);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-info-card__value,
.contact-info-card__value a {
  color: rgba(18, 30, 42, 0.94);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-hero__panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 3vw, 38px);
  background:
    radial-gradient(circle at top right, rgba(113, 168, 214, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(10, 18, 28, 0.985), rgba(21, 34, 47, 0.96));
  color: var(--text-inverse);
}

.contact-hero__panel > *,
.contact-location__panel > * {
  position: relative;
  z-index: 1;
}

.contact-hero__panel::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 22px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 181, 109, 0), rgba(240, 181, 109, 0.46), rgba(240, 181, 109, 0));
}

.contact-hero__panel-eyebrow {
  margin: 0;
  color: rgba(242, 182, 103, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-hero__panel-title {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: pretty;
  color: rgba(247, 250, 253, 0.98);
}

.contact-hero__panel-text {
  margin: 0;
  max-width: none;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(230, 238, 245, 0.82);
  font-size: 0.98rem;
  line-height: 1.68;
}

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

.contact-support-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 132px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-support-card:last-child {
  grid-column: 1 / -1;
  min-height: 108px;
}

.contact-support-card__label {
  color: rgba(182, 196, 210, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-support-card strong {
  color: rgba(248, 251, 253, 0.98);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.contact-support-card__rule {
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: rgba(127, 190, 246, 0.98);
}

.contact-support-card:last-child .contact-support-card__rule {
  background: rgba(240, 181, 109, 0.98);
}

.contact-request {
  grid-template-columns: 1fr;
  align-items: start;
}

.contact-request__form {
  min-width: 0;
}

.lead-form--contact-screen {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  padding: clamp(24px, 2.6vw, 34px);
  gap: clamp(20px, 1.9vw, 30px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 34%),
    radial-gradient(circle at bottom left, rgba(242, 166, 84, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 251, 0.86));
}

.lead-form--contact-screen .lead-form__intro {
  gap: 16px;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  padding-right: 4px;
}

.lead-form--contact-screen .lead-form__intro h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.1rem, 2.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.lead-form--contact-screen .lead-form__intro p:last-child {
  margin: 0;
  max-width: 38ch;
  color: rgba(84, 101, 118, 0.92);
  line-height: 1.58;
}

.lead-form--contact-screen .lead-form__intro-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-self: start;
  margin-top: 4px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(210, 221, 230, 0.78);
}

.lead-form--contact-screen .lead-form__intro-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
  row-gap: 4px;
  min-height: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(214, 224, 232, 0.76);
}

.lead-form--contact-screen .lead-form__intro-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.lead-form--contact-screen .lead-form__intro-point span {
  color: rgba(242, 166, 84, 0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(242, 166, 84, 0.16);
  background: rgba(255, 247, 238, 0.96);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  grid-row: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lead-form--contact-screen .lead-form__intro-point strong {
  color: rgba(28, 42, 57, 0.96);
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 700;
  padding-top: 3px;
  max-width: 34ch;
}

.lead-form--contact-screen .section-eyebrow {
  color: rgba(160, 173, 186, 0.96);
}

.lead-form--contact-screen .form-grid span {
  color: rgba(97, 114, 129, 0.94);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lead-form--contact-screen .form-grid input,
.lead-form--contact-screen .form-grid textarea {
  min-height: 58px;
  padding-inline: 18px;
  border-radius: 16px;
  border-color: rgba(18, 30, 42, 0.08);
  background: rgba(245, 248, 250, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.lead-form--contact-screen .form-grid textarea {
  min-height: 128px;
  padding-top: 18px;
}

.lead-form--contact-screen .form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.lead-form--contact-screen .form-consent input {
  margin-top: 3px;
}

.lead-form--contact-screen .form-consent span {
  line-height: 1.52;
}

.lead-form--contact-screen .form-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(214, 224, 232, 0.78);
}

.lead-form--contact-screen .form-helper {
  margin: 0;
  color: rgba(90, 108, 124, 0.92);
  font-size: 0.88rem;
  line-height: 1.58;
  max-width: 44ch;
}

.lead-form--contact-screen .form-shell {
  gap: 18px;
}

.lead-form--contact-screen .form-actions .cta {
  min-width: 228px;
}

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

.contact-location__map-card {
  display: flex;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 251, 0.84)),
    rgba(255, 255, 255, 0.82);
}

.contact-location__map-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 48%;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(12, 21, 32, 0), rgba(12, 21, 32, 0.7));
  pointer-events: none;
  z-index: 1;
}

.contact-location__map-card .contacts-map {
  flex: 1 1 auto;
  min-height: 100%;
}

.contact-location__map-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 28rem;
  padding: 18px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 21, 32, 0.76);
  backdrop-filter: blur(10px);
}

.contact-location__map-eyebrow {
  margin: 0;
  color: rgba(242, 182, 103, 0.94);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-location__map-title {
  margin: 0;
  color: rgba(248, 251, 253, 0.98);
  font-size: clamp(1.2rem, 2vw, 1.54rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.contact-location__map-text {
  margin: 0;
  color: rgba(221, 230, 238, 0.86);
  font-size: 0.9rem;
  line-height: 1.56;
}

.contact-location__map-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-location__map-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 248, 251, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-location__panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(26px, 3vw, 36px);
  background:
    radial-gradient(circle at top right, rgba(121, 171, 214, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(10, 18, 28, 0.985), rgba(22, 36, 50, 0.96));
  color: var(--text-inverse);
}

.contact-location__title {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: pretty;
  color: rgba(247, 250, 253, 0.98);
}

.contact-location__lede {
  margin: 0;
  color: rgba(226, 235, 243, 0.82);
  font-size: 0.98rem;
  line-height: 1.68;
}

.contact-location__facts {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.contact-location__fact {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-location__fact span {
  color: rgba(184, 198, 211, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-location__fact strong {
  color: rgba(248, 251, 253, 0.98);
  font-size: 1rem;
  line-height: 1.46;
}

.contact-location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-location__actions .cta {
  min-height: 54px;
}

.page-contacts .callback-widget {
  right: 18px;
  bottom: 18px;
}

.page-contacts .callback-widget__fab {
  inline-size: 56px;
  block-size: 56px;
  box-shadow: 0 16px 34px rgba(17, 33, 47, 0.2);
}

.contact-trust__header {
  margin-bottom: 14px;
}

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

.contact-trust-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 22px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 251, 0.84)),
    rgba(255, 255, 255, 0.84);
}

.contact-trust-card h2 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-trust-card p {
  margin: 0;
  color: rgba(84, 101, 118, 0.92);
  font-size: 0.9rem;
  line-height: 1.62;
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 16px;
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 247, 250, 0.82));
}

.lead-form__intro,
.form-shell {
  display: grid;
  align-content: start;
  gap: 14px;
}

.lead-form__visual {
  position: relative;
  min-height: 180px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 23, 34, 0.96), rgba(38, 63, 82, 0.82)),
    rgba(13, 23, 34, 0.96);
}

.lead-form__visual-frame {
  position: absolute;
  inset: 20px 34px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
}

.lead-form__visual-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-form__visual-card span {
  color: rgba(247, 251, 253, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-form__visual-card strong {
  color: var(--text-inverse);
  font-size: 0.92rem;
  line-height: 1.45;
}

.lead-form__meta {
  display: grid;
  gap: 10px;
}

.lead-form__meta div {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.lead-form__meta span {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-form__meta strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.5;
}

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

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid label {
  display: grid;
  gap: 6px;
}

.form-grid span,
.form-consent span {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(18, 30, 42, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-grid textarea {
  min-height: 160px;
  padding: 16px 18px;
}

.form-grid input:hover,
.form-grid textarea:hover,
.form-grid input:focus-visible,
.form-grid textarea:focus-visible {
  border-color: rgba(45, 107, 129, 0.34);
  box-shadow: 0 0 0 4px rgba(95, 168, 187, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(18, 30, 42, 0.08);
}

.form-consent input {
  inline-size: 18px;
  block-size: 18px;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.form-status.error {
  color: var(--danger);
}

.contacts-map-card {
  min-height: 100%;
}

.contacts-map {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(238, 244, 248, 0.96), rgba(215, 227, 235, 0.88));
}

.contacts-map iframe,
.contacts-map__fallback {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contacts-map__fallback {
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

/* Contacts page 2026 */
.contact-page {
  display: grid;
  gap: clamp(18px, 2.2vw, 32px);
  padding-bottom: clamp(28px, 5vw, 72px);
}

.contact-page__hero {
  padding-top: clamp(12px, 1.6vw, 24px);
}

.contact-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
}

.contact-page__hero-copy,
.contact-page__quick-copy,
.contact-page__map-copy,
.contact-page__trust-item,
.contact-page__contact-row {
  border: 1px solid rgba(203, 216, 226, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.94));
  box-shadow: 0 24px 70px rgba(18, 30, 42, 0.08);
}

.contact-page__hero-copy {
  min-height: clamp(520px, 52vw, 690px);
  display: grid;
  align-content: center;
  gap: clamp(16px, 1.8vw, 24px);
  padding: clamp(34px, 4.6vw, 72px);
  border-radius: 34px;
}

.contact-page__eyebrow {
  margin: 0;
  color: rgba(226, 153, 61, 0.98);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-page__hero-copy h1 {
  max-width: 13.2ch;
  margin: 0;
  color: var(--ink, #111c2d);
  font-size: clamp(2.35rem, 2.8vw, 3.65rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

body.page-contacts .contact-page__hero-copy h1 {
  max-width: 13.2ch;
  font-size: clamp(2.35rem, 2.8vw, 3.65rem);
  line-height: 0.98;
}

.contact-page__lede {
  max-width: 50ch;
  margin: 0;
  color: rgba(66, 83, 102, 0.94);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  font-weight: 700;
  line-height: 1.72;
}

.contact-page__hero-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 520px;
}

.contact-page__hero-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(203, 216, 226, 0.74);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 34px rgba(18, 30, 42, 0.06);
}

.contact-page__hero-point i {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 13px;
  background: rgba(244, 170, 88, 0.14);
  color: rgba(21, 45, 63, 0.9);
}

.contact-page__hero-point .icon {
  width: 0.96rem;
  height: 0.96rem;
}

.contact-page__hero-point span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-page__hero-point em {
  color: rgba(215, 136, 47, 0.96);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page__hero-point strong {
  color: rgba(22, 36, 52, 0.92);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.22;
}

.contact-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-page__actions .cta {
  min-height: 56px;
  padding-inline: 24px;
}

.contact-page__visual {
  position: relative;
  min-height: clamp(520px, 52vw, 690px);
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #0c1724;
  box-shadow: 0 28px 80px rgba(18, 30, 42, 0.16);
}

.contact-page__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.contact-page__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 18, 29, 0.04), rgba(9, 18, 29, 0.72)),
    linear-gradient(90deg, rgba(9, 18, 29, 0.26), rgba(9, 18, 29, 0.02) 56%, rgba(9, 18, 29, 0.46));
}

.contact-page__visual figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(20px, 3vw, 42px);
  left: clamp(20px, 3vw, 42px);
  display: grid;
  gap: 12px;
  color: #fff;
}

.contact-page__visual figcaption span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.contact-page__visual figcaption strong {
  max-width: 18ch;
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.contact-page__quick-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-page__quick-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 3vw, 36px);
  border-radius: 28px;
}

.contact-page__quick-copy h2,
.contact-page__map-copy h2 {
  margin: 0;
  color: var(--ink, #111c2d);
  font-size: clamp(1.75rem, 2.7vw, 3.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.contact-page__quick-copy p,
.contact-page__map-copy p {
  margin: 0;
  color: rgba(72, 89, 108, 0.9);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.58;
}

.contact-page__contact-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
}

.contact-page__contact-row {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border-radius: 26px;
  color: var(--ink, #111c2d);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__contact-row:hover,
.contact-page__contact-row:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(51, 135, 184, 0.42);
  box-shadow: 0 24px 54px rgba(18, 30, 42, 0.13);
}

.contact-page__contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-page__contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.82), transparent 45%),
    rgba(38, 117, 159, 0.11);
  color: rgba(28, 89, 125, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(58, 134, 178, 0.12),
    0 12px 24px rgba(34, 72, 96, 0.08);
}

.contact-page__contact-row--email .contact-page__contact-icon {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.84), transparent 45%),
    rgba(226, 153, 61, 0.13);
  color: rgba(163, 98, 31, 0.98);
}

.contact-page__contact-row--address .contact-page__contact-icon {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.84), transparent 45%),
    rgba(40, 120, 166, 0.13);
  color: rgba(31, 88, 123, 0.98);
}

.contact-page__contact-row--hours .contact-page__contact-icon {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.84), transparent 45%),
    rgba(27, 43, 61, 0.08);
  color: rgba(44, 62, 82, 0.96);
}

.contact-page__contact-label {
  color: rgba(79, 96, 116, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
}

.contact-page__contact-row strong {
  color: var(--ink, #111c2d);
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-page__form-section {
  scroll-margin-top: var(--anchor-offset);
}

.lead-form--contact-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: stretch;
  padding: clamp(24px, 3.2vw, 46px);
  border: 1px solid rgba(203, 216, 226, 0.86);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(69, 153, 201, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.96));
  box-shadow: 0 28px 80px rgba(18, 30, 42, 0.1);
}

.lead-form--contact-page .lead-form__intro {
  align-content: center;
  gap: 18px;
}

.lead-form--contact-page .lead-form__intro h2 {
  max-width: 11ch;
  color: var(--ink, #111c2d);
  font-size: clamp(2.2rem, 3.7vw, 4.25rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.lead-form--contact-page .lead-form__intro p {
  max-width: 42ch;
  color: rgba(70, 88, 108, 0.92);
  font-weight: 700;
  line-height: 1.65;
}

.lead-form--contact-page .lead-form__intro-points {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.lead-form--contact-page .lead-form__intro-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(208, 221, 231, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.lead-form--contact-page .lead-form__intro-point span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(36, 70, 94, 0.1);
  color: rgba(31, 82, 113, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
}

.lead-form--contact-page .lead-form__intro-point strong {
  color: var(--ink, #111c2d);
  font-size: 0.98rem;
  line-height: 1.25;
}

.lead-form--contact-page .form-shell {
  padding: clamp(20px, 2.6vw, 34px);
  border: 1px solid rgba(200, 214, 225, 0.88);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.lead-form--contact-page .form-grid {
  gap: 14px;
}

.lead-form--contact-page .form-grid span {
  color: rgba(47, 64, 84, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lead-form--contact-page .form-grid input,
.lead-form--contact-page .form-grid textarea {
  min-height: 54px;
  border-radius: 18px;
  border-color: rgba(190, 206, 218, 0.9);
  background: rgba(248, 251, 253, 0.96);
  color: var(--ink, #111c2d);
  font-weight: 750;
}

.lead-form--contact-page .form-grid textarea {
  min-height: 132px;
}

.lead-form--contact-page .form-consent {
  align-items: flex-start;
  color: rgba(71, 88, 107, 0.9);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.52;
}

.lead-form--contact-page .form-actions {
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.lead-form--contact-page .form-actions .cta {
  min-height: 56px;
}

.lead-form--contact-page .form-helper {
  margin: 0;
  color: rgba(76, 93, 112, 0.82);
  font-weight: 700;
}

.contact-page__map-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: stretch;
}

.contact-page__map-grid > * {
  min-width: 0;
}

.contact-page__map-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 3.4vw, 48px);
  border-color: rgba(48, 76, 101, 0.82);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(12, 23, 36, 0.98), rgba(32, 61, 83, 0.98));
  color: #fff;
  box-shadow: 0 28px 80px rgba(18, 30, 42, 0.16);
}

.contact-page__map-copy h2,
.contact-page__map-copy p {
  color: #fff;
}

.contact-page__map-copy p {
  color: rgba(227, 235, 242, 0.84);
}

.contact-page__map-facts {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.contact-page__map-facts article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.contact-page__map-fact-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 194, 111, 0.12);
  color: rgba(255, 194, 111, 0.96);
}

.contact-page__map-fact-icon .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.contact-page__map-fact-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-page__map-fact-copy > span {
  color: rgba(255, 194, 111, 0.96);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-page__map-fact-copy strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-page__map-actions {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.contact-page__map-actions > span {
  color: rgba(183, 199, 214, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page__map-action-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.contact-page__map-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(13, 24, 37, 0.96);
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(5, 11, 18, 0.16);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__map-action:hover,
.contact-page__map-action:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 18px 34px rgba(5, 11, 18, 0.2);
}

.contact-page__map-action span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  background: rgba(36, 70, 94, 0.08);
}

.contact-page__map-action strong {
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-page__map-action--google span {
  color: rgba(41, 119, 216, 0.96);
}

.contact-page__map-action--waze span {
  color: rgba(32, 137, 181, 0.96);
}

.contact-page__map-action--apple span {
  color: rgba(13, 24, 37, 0.96);
}

.contact-page__map-card {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  padding: 12px;
  border: 1px solid rgba(203, 216, 226, 0.86);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px rgba(18, 30, 42, 0.1);
}

.contact-page__map-card .contacts-map,
.contact-page__map-card .contacts-map iframe,
.contact-page__map-card .contacts-map__fallback {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 24px;
}

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

.contact-page__trust-item {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  padding: clamp(20px, 2vw, 26px);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 254, 0.9));
  border: 1px solid rgba(202, 217, 228, 0.82);
  box-shadow: 0 18px 54px rgba(18, 30, 42, 0.08);
}

.contact-page__trust-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(244, 170, 88, 0.9), rgba(60, 145, 190, 0.88));
}

.contact-page__trust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.contact-page__trust-head span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(40, 120, 166, 0.1);
  color: rgba(32, 91, 126, 0.96);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-page__trust-head i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background: rgba(244, 170, 88, 0.13);
  color: rgba(22, 47, 66, 0.9);
}

.contact-page__trust-head .icon {
  width: 1.08rem;
  height: 1.08rem;
}

.contact-page__trust-item h3 {
  margin: 0;
  color: var(--ink, #111c2d);
  max-width: 12ch;
  font-size: clamp(1.45rem, 1.9vw, 2.1rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.contact-page__trust-item p {
  margin: 0;
  color: rgba(69, 86, 106, 0.88);
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .contact-page__hero-grid,
  .contact-page__quick-grid,
  .lead-form--contact-page,
  .contact-page__map-grid {
    grid-template-columns: 1fr;
  }

  .contact-page__hero-copy,
  .contact-page__visual {
    min-height: 430px;
  }

  .contact-page__hero-copy h1 {
    max-width: 12ch;
  }

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

  .contact-page__map-card {
    align-self: start;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .contact-page {
    gap: 14px;
    padding-bottom: 44px;
  }

  .contact-page__hero {
    padding-top: 8px;
  }

  .contact-page__hero-grid {
    gap: 12px;
  }

  .contact-page__hero-copy,
  .contact-page__quick-copy,
  .lead-form--contact-page,
  .contact-page__map-copy,
  .contact-page__map-card,
  .contact-page__trust-item,
  .contact-page__contact-row {
    border-radius: 24px;
  }

  .contact-page__hero-copy {
    min-height: 0;
    padding: 24px;
    gap: 15px;
  }

  .contact-page__hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.25rem, 9.8vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.038em;
  }

  body.page-contacts .contact-page__hero-copy h1 {
    font-size: clamp(2.25rem, 9.8vw, 3.35rem);
    line-height: 0.98;
  }

  .contact-page__lede {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .contact-page__hero-points {
    grid-template-columns: 1fr;
  }

  .contact-page__hero-point {
    min-height: 62px;
    padding: 10px;
    border-radius: 17px;
  }

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

  .contact-page__actions .cta,
  .lead-form--contact-page .form-actions .cta {
    width: 100%;
    justify-content: center;
  }

  .contact-page__visual {
    min-height: 360px;
    border-radius: 24px;
  }

  .contact-page__visual figcaption strong {
    max-width: 15ch;
    font-size: clamp(1.4rem, 7.2vw, 1.7rem);
    line-height: 1;
  }

  .contact-page__visual figcaption {
    gap: 9px;
  }

  .contact-page__visual figcaption p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .contact-page__quick-copy,
  .contact-page__map-copy {
    padding: 22px;
  }

  .contact-page__map-copy h2 {
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    line-height: 1.02;
  }

  .contact-page__map-facts article {
    padding: 12px;
    border-radius: 18px;
  }

  .contact-page__map-action-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page__map-action {
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .contact-page__map-action--google {
    grid-column: 1 / -1;
  }

  .contact-page__contact-list,
  .contact-page__trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-page__contact-row {
    min-height: 108px;
    padding: 18px;
    gap: 16px;
  }

  .lead-form--contact-page {
    padding: 16px;
    gap: 16px;
  }

  .lead-form--contact-page .lead-form__intro {
    padding: 4px 4px 0;
  }

  .lead-form--contact-page .lead-form__intro h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9.2vw, 3rem);
  }

  .lead-form--contact-page .form-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .lead-form--contact-page .form-actions {
    grid-template-columns: 1fr;
  }

  .contact-page__map-card {
    aspect-ratio: 4 / 3;
    padding: 8px;
  }

  .contact-page__map-card .contacts-map,
  .contact-page__map-card .contacts-map iframe,
  .contact-page__map-card .contacts-map__fallback {
    min-height: 0;
    border-radius: 18px;
  }

  .contact-page__trust-item {
    gap: 14px;
    padding: 18px;
  }

  .contact-page__trust-item h3 {
    max-width: none;
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }
}

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

.faq-item {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 249, 252, 0.74)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-xs);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 70px 0 24px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  translate: 0 -50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 34px;
  block-size: 34px;
  border-radius: 999px;
  background: rgba(18, 30, 42, 0.06);
  color: var(--text);
  font-size: 1.2rem;
}

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

.faq-item p {
  padding: 0 24px 24px;
}

.home-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 2.8vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(186, 214, 237, 0.18);
  background:
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.18), transparent 28%),
    linear-gradient(90deg, #101a26 0%, #172734 100%);
  box-shadow: 0 18px 34px rgba(10, 23, 38, 0.14);
}

.home-final-cta__copy {
  display: grid;
  gap: 10px;
}

.home-final-cta__eyebrow {
  margin: 0;
  color: rgba(242, 182, 103, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-final-cta__copy h2 {
  margin: 0;
  max-width: none;
  color: var(--text-inverse);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.02;
}

.home-final-cta__copy p:last-child {
  margin: 0;
  max-width: 34ch;
  color: rgba(231, 240, 247, 0.82);
  font-size: 1.05rem;
  line-height: 1.58;
}

.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.section-heading--solutions,
.section-heading--portfolio-premium,
.section-heading--process-premium {
  margin-bottom: 40px;
}

.section-shell--solutions .container,
.section-shell--portfolio-premium .container,
.section-shell--process-premium .container {
  position: relative;
}

.section-shell--solutions .container::before,
.section-shell--portfolio-premium .container::before,
.section-shell--process-premium .container::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(18, 30, 42, 0.18), rgba(18, 30, 42, 0.03));
}

.solutions-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
}

.solution-feature,
.solution-compact,
.portfolio-lead,
.portfolio-compact,
.process-step {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-sm);
}

.solution-feature {
  display: block;
  min-height: 540px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.84)),
    rgba(255, 255, 255, 0.9);
}

.solution-feature__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(223, 234, 241, 0.92), rgba(211, 223, 232, 0.84));
}

.solution-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 22, 33, 0.04), rgba(12, 22, 33, 0.16)),
    linear-gradient(90deg, transparent 0%, transparent 74%, rgba(255, 255, 255, 0.18) 100%);
}

.solution-feature__media img,
.solution-compact__media img,
.portfolio-lead__media img,
.portfolio-compact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.solution-feature:hover .solution-feature__media img,
.solution-compact:hover .solution-compact__media img,
.portfolio-lead:hover .portfolio-lead__media img,
.portfolio-compact:hover .portfolio-compact__media img {
  transform: scale(1.04);
}

.solution-feature__body {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 16px;
  width: min(392px, calc(100% - 48px));
  min-height: 0;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-left: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(18, 30, 42, 0.16);
}

.solution-feature__body::before {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 181, 109, 0.92), rgba(242, 181, 109, 0.08));
}

.solution-feature__meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.solution-feature__index,
.solution-compact__index,
.why-proof-card__number,
.process-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 46px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.12);
  background: rgba(18, 30, 42, 0.04);
  color: rgba(18, 30, 42, 0.74);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.solution-feature h3 {
  color: var(--text);
  font-size: clamp(1.82rem, 2.7vw, 2.72rem);
  line-height: 0.94;
  text-wrap: pretty;
  max-width: none;
}

.solution-feature p {
  color: var(--text-soft);
  max-width: 25ch;
  margin: 0;
}

.solution-feature__link {
  margin-top: 4px;
  justify-self: end;
  margin-left: auto;
  max-width: 100%;
}

.solution-feature .service-card__eyebrow {
  color: rgba(242, 181, 109, 0.98);
}

.solution-feature__index {
  border-color: rgba(18, 30, 42, 0.12);
  background: rgba(18, 30, 42, 0.04);
  color: rgba(18, 30, 42, 0.74);
}

.solution-feature__link,
.solution-compact__copy > a,
.portfolio-editorial__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.12);
  background: rgba(18, 30, 42, 0.04);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.solution-feature__link:hover,
.solution-compact__copy > a:hover,
.portfolio-editorial__link:hover {
  transform: translateY(-1px);
  background: rgba(18, 30, 42, 0.08);
  border-color: rgba(18, 30, 42, 0.18);
}

.solution-feature p a,
.solution-compact__copy p a {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(15, 23, 33, 0.92);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
}

.solution-feature p a:hover,
.solution-compact__copy p a:hover,
.solution-feature p a:focus-visible,
.solution-compact__copy p a:focus-visible {
  background: none;
  border-color: transparent;
  color: rgba(211, 140, 66, 0.96);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  transform: none;
  box-shadow: none;
}

.solution-stack {
  display: grid;
  align-content: start;
  gap: 16px;
}

.solution-stack__header {
  display: grid;
  gap: 10px;
  padding: 18px 20px 2px;
}

.solution-stack__eyebrow {
  color: rgba(18, 30, 42, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.solution-stack__header p {
  margin: 0;
  max-width: 29ch;
  color: rgba(18, 30, 42, 0.68);
  line-height: 1.62;
}

.solution-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 152px;
  gap: 0;
  min-height: 176px;
  padding: 0;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.86)),
    rgba(255, 255, 255, 0.88);
}

.solution-compact__copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px 20px 18px;
}

.solution-compact__topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.solution-compact__copy h3 {
  font-size: clamp(1.14rem, 1.44vw, 1.34rem);
  line-height: 1.06;
}

.solution-compact__copy p:last-of-type {
  max-width: 34ch;
  margin: 0;
  color: rgba(18, 30, 42, 0.7);
}

.solution-compact__index {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(18, 30, 42, 0.22);
  font-size: 1.34rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.solution-compact__media {
  position: relative;
  min-height: 176px;
  border-left: 1px solid rgba(18, 30, 42, 0.08);
  background: linear-gradient(180deg, rgba(232, 240, 246, 0.96), rgba(215, 228, 236, 0.9));
}

.solution-stack__footer {
  display: flex;
  justify-content: flex-start;
  padding: 4px 20px 0;
}

.solution-stack__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(18, 30, 42, 0.12);
  color: rgba(18, 30, 42, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-stack__link:hover {
  color: var(--text);
  border-color: rgba(18, 30, 42, 0.24);
}

.why-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 0;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(177, 196, 214, 0.18);
  background:
    linear-gradient(135deg, rgba(10, 18, 28, 0.985), rgba(17, 30, 43, 0.96));
  box-shadow: 0 30px 80px rgba(9, 20, 30, 0.14);
}

.why-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 108px 108px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 92%);
}

.why-proof__intro,
.why-proof__grid {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 1.4vw, 18px);
}

.why-proof__intro {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-right: clamp(18px, 2vw, 26px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.why-proof__intro h2 {
  color: var(--text-inverse);
  font-size: clamp(2rem, 3.2vw, 3rem);
  max-width: none;
}

.why-proof__lede {
  max-width: 38ch;
  color: rgba(238, 245, 250, 0.74);
}

.why-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-left: clamp(18px, 2vw, 26px);
}

.why-proof-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 22px 20px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}

.why-proof-card__number {
  color: rgba(242, 181, 109, 0.92);
  border-color: rgba(242, 181, 109, 0.18);
  background: rgba(242, 181, 109, 0.08);
}

.why-proof-card h3 {
  color: var(--text-inverse);
  font-size: clamp(1.14rem, 1.5vw, 1.42rem);
}

.why-proof-card p {
  color: rgba(235, 243, 248, 0.7);
}

.portfolio-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 28px;
}

.portfolio-lead {
  display: block;
  min-height: 600px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 251, 0.88)),
    rgba(255, 255, 255, 0.9);
}

.portfolio-lead__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(230, 239, 245, 0.96), rgba(213, 225, 233, 0.92));
}

.portfolio-lead__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(8, 17, 26, 0.06) 0%, rgba(8, 17, 26, 0.14) 34%, rgba(8, 17, 26, 0.56) 100%),
    linear-gradient(90deg, rgba(8, 17, 26, 0.1) 0%, rgba(8, 17, 26, 0.02) 42%, rgba(255, 255, 255, 0.14) 100%);
}

.portfolio-lead__body {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 18px;
  width: min(660px, calc(100% - 60px));
  padding: 26px 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(96, 143, 179, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(11, 21, 31, 0.92), rgba(17, 30, 43, 0.96)),
    rgba(10, 18, 28, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(10, 18, 28, 0.32);
}

.portfolio-lead__body::before,
.portfolio-lead__body::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portfolio-lead__body::before {
  inset: 0 0 auto 0;
  height: 96px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.portfolio-lead__body::after {
  top: 28px;
  right: 88px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.portfolio-lead__eyebrow {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.portfolio-lead__index,
.portfolio-compact__index {
  color: rgba(18, 30, 42, 0.22);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.portfolio-lead__index {
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
}

.portfolio-lead__body h3 {
  color: var(--text-inverse);
  font-size: clamp(2.3rem, 3vw, 3.8rem);
  max-width: none;
  text-wrap: pretty;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.portfolio-lead__body p {
  max-width: none;
  margin: 0;
  color: rgba(236, 244, 249, 0.8);
  font-size: 1.12rem;
  line-height: 1.58;
}

.portfolio-service-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  max-width: 100%;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.portfolio-service-link::after {
  content: "->";
  font-size: 0.82rem;
  letter-spacing: 0;
  opacity: 0.72;
}

.portfolio-service-link:focus-visible {
  outline: 3px solid rgba(126, 190, 241, 0.62);
  outline-offset: 3px;
}

.portfolio-lead__service-link {
  color: rgba(248, 251, 253, 0.96);
  border: 1px solid rgba(132, 191, 242, 0.28);
  background: rgba(132, 191, 242, 0.1);
}

.portfolio-lead__service-link:hover {
  color: #ffffff;
  border-color: rgba(132, 191, 242, 0.42);
  background: rgba(132, 191, 242, 0.16);
  transform: translateY(-1px);
}

.portfolio-lead__specs {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.98fr) minmax(0, 1.14fr);
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
}

.portfolio-lead__specs::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.34;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 100%);
}

.portfolio-lead__spec {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 12px;
  min-height: 144px;
  padding: 18px 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-lead__spec:last-child {
  border-right: 0;
}

.portfolio-lead__spec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(191, 212, 229, 0.82);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-lead__spec-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(132, 191, 242, 0.96);
  box-shadow: 0 0 0 6px rgba(132, 191, 242, 0.08);
}

.portfolio-lead__spec-value {
  min-width: 0;
  color: rgba(246, 250, 252, 0.98);
  font-size: clamp(1.9rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.portfolio-lead__spec--accent .portfolio-lead__spec-value {
  font-size: clamp(1.62rem, 2.1vw, 2.02rem);
  letter-spacing: -0.03em;
}

.page-home .portfolio-lead__spec {
  gap: 9px;
  min-height: 112px;
  padding: 15px 16px 14px;
}

.page-home .portfolio-lead__spec-value,
.page-home .portfolio-lead__spec--accent .portfolio-lead__spec-value {
  font-size: clamp(1.02rem, 1.22vw, 1.32rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  overflow-wrap: normal;
}

.portfolio-lead__spec-rule {
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: rgba(132, 191, 242, 0.92);
}

.portfolio-lead__spec--accent .portfolio-lead__spec-label::before,
.portfolio-lead__spec--accent .portfolio-lead__spec-rule {
  background: rgba(242, 181, 109, 0.96);
  box-shadow: 0 0 0 6px rgba(242, 181, 109, 0.08);
}

.portfolio-rail {
  display: grid;
  align-content: start;
  gap: 16px;
}

.portfolio-rail__header {
  display: grid;
  gap: 10px;
  padding: 18px 20px 0;
}

.portfolio-rail__eyebrow {
  color: rgba(18, 30, 42, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-rail__header p {
  margin: 0;
  max-width: 28ch;
  color: rgba(18, 30, 42, 0.68);
  line-height: 1.62;
}

.portfolio-compact {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.86)),
    rgba(255, 255, 255, 0.88);
}

.portfolio-compact__media {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(233, 241, 246, 0.96), rgba(217, 229, 237, 0.9));
}

.portfolio-compact__body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px 20px 18px;
}

.portfolio-compact__topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.portfolio-compact__index {
  font-size: 1.32rem;
  letter-spacing: 0.04em;
}

.portfolio-compact__body h3 {
  font-size: clamp(1.12rem, 1.42vw, 1.36rem);
  line-height: 1.06;
}

.portfolio-compact__body p {
  margin: 0;
  color: rgba(18, 30, 42, 0.7);
}

.portfolio-compact__chips {
  gap: 6px;
}

.portfolio-compact__chips li {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(239, 244, 247, 0.86);
  color: rgba(18, 30, 42, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-compact__service-link {
  margin-top: 2px;
  color: rgba(18, 30, 42, 0.9);
  border: 1px solid rgba(18, 30, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.portfolio-compact__service-link:hover {
  border-color: rgba(18, 30, 42, 0.16);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.portfolio-editorial__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 252, 0.82)),
    rgba(255, 255, 255, 0.88);
}

.portfolio-editorial__summary {
  display: grid;
  align-content: center;
  gap: 10px;
}

.portfolio-editorial__eyebrow {
  color: rgba(18, 30, 42, 0.5);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-editorial__note {
  margin: 0;
  max-width: 50ch;
  color: rgba(18, 30, 42, 0.66);
  line-height: 1.72;
}

.portfolio-editorial__cta {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
  padding-left: 20px;
  border-left: 1px solid rgba(18, 30, 42, 0.08);
}

.portfolio-editorial__count {
  display: grid;
  gap: 4px;
  min-width: 92px;
}

.portfolio-editorial__count strong {
  color: var(--text);
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.portfolio-editorial__count span {
  color: rgba(18, 30, 42, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-editorial__link {
  color: var(--text);
  border-color: rgba(18, 30, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-editorial__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(18, 30, 42, 0.14);
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-rail::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 30, 42, 0.08), rgba(18, 30, 42, 0.22), rgba(18, 30, 42, 0.08));
}

.process-step {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 34px 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 249, 252, 0.82)),
    rgba(255, 255, 255, 0.88);
}

.process-step__index {
  position: relative;
  z-index: 1;
  border-color: rgba(18, 30, 42, 0.08);
  background: rgba(11, 22, 33, 0.96);
  color: rgba(242, 181, 109, 0.98);
}

.process-step h3 {
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
}

.page-home .section-shell--faq,
.page-faq .section-shell--faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px 36px;
  align-items: start;
}

.page-home .section-shell--faq .section-heading,
.page-faq .section-shell--faq .section-heading {
  position: sticky;
  top: 108px;
  margin-bottom: 0;
}

.page-home .section-shell--faq .section-heading--split,
.page-faq .section-shell--faq .section-heading--split {
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .section-shell--faq .faq-list,
.page-faq .section-shell--faq .faq-list {
  gap: 16px;
}

.page-home .section-shell--faq .faq-item,
.page-faq .section-shell--faq .faq-item {
  border-radius: 20px;
  border-color: rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 252, 0.84)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.page-home .section-shell--faq .faq-item summary,
.page-faq .section-shell--faq .faq-item summary {
  min-height: 84px;
  padding: 0 78px 0 26px;
  font-size: 1rem;
}

.page-home .section-shell--faq .faq-item summary::after,
.page-faq .section-shell--faq .faq-item summary::after {
  right: 22px;
  inline-size: 38px;
  block-size: 38px;
  background: rgba(18, 30, 42, 0.05);
}

.page-home .section-shell--faq .faq-item p,
.page-faq .section-shell--faq .faq-item p {
  max-width: 62ch;
  padding: 0 26px 26px;
}

.page-faq .section-shell--faq {
  margin-top: 10px;
}

.section-shell--faq-hub {
  display: grid;
  gap: 34px;
}

.page-faq .section-shell--faq-hub .section-heading {
  margin-bottom: 0;
}

.faq-directory {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.86)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.faq-directory__intro {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 18px;
  border-right: 1px solid rgba(18, 30, 42, 0.08);
}

.faq-directory__label,
.faq-group__eyebrow {
  color: rgba(123, 138, 153, 0.96);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-directory__intro h3 {
  font-size: clamp(1.4rem, 2vw, 1.92rem);
  line-height: 0.98;
}

.faq-directory__intro p:last-child {
  color: rgba(92, 108, 124, 0.92);
  font-size: 0.98rem;
  line-height: 1.66;
}

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

.faq-directory__link {
  display: grid;
  gap: 14px;
  min-height: 112px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.96), rgba(239, 245, 249, 0.84)),
    rgba(255, 255, 255, 0.9);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.faq-directory__link:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 141, 182, 0.24);
  box-shadow: 0 22px 48px rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 251, 0.92)),
    rgba(255, 255, 255, 0.96);
}

.faq-directory__link span {
  color: rgba(111, 131, 149, 0.9);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-directory__link strong {
  color: rgba(18, 30, 42, 0.96);
  font-size: 1.12rem;
  line-height: 1.2;
}

.faq-groups {
  display: grid;
  gap: 38px;
  margin-top: 8px;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 252, 0.88)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.faq-group__intro {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.faq-group__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 42px;
  block-size: 42px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background: rgba(18, 30, 42, 0.04);
  color: rgba(103, 120, 135, 0.96);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-group__intro h3 {
  max-width: none;
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.faq-group__copy {
  color: rgba(92, 108, 124, 0.94);
  font-size: 0.98rem;
  line-height: 1.68;
}

.faq-group__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: rgba(111, 131, 149, 0.94);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-group__meta::before {
  content: "";
  inline-size: 8px;
  block-size: 8px;
  border-radius: 50%;
  background: rgba(103, 198, 231, 0.96);
  box-shadow: 0 0 0 7px rgba(103, 198, 231, 0.12);
}

.page-faq .faq-group .faq-list {
  gap: 18px;
}

.faq-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  align-items: stretch;
  gap: 32px;
  padding: 32px 34px;
  margin-top: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(92, 165, 204, 0.16), transparent 32%),
    linear-gradient(135deg, #0d1722 0%, #122332 58%, #193043 100%);
  box-shadow: 0 26px 70px rgba(15, 24, 34, 0.14);
}

.faq-page-cta__copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
  padding-right: 8px;
}

.faq-page-cta__copy .section-eyebrow {
  margin-bottom: 0;
}

.faq-page-cta__copy h2 {
  max-width: 13ch;
  color: rgba(248, 251, 253, 0.98);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 0.94;
  text-wrap: balance;
}

.faq-page-cta__copy p {
  max-width: 62ch;
  color: rgba(214, 225, 234, 0.86);
  font-size: 1rem;
  line-height: 1.66;
}

.faq-page-cta__actions {
  display: grid;
  align-content: center;
  gap: 14px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 24px;
}

.faq-page-cta__actions .cta {
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.section-shell--portfolio-page .container,
.section-shell--portfolio-proof .container {
  display: grid;
  gap: 26px;
}

.section-heading--portfolio-page,
.section-heading--portfolio-proof {
  margin-bottom: 0;
}

.portfolio-casebook {
  display: grid;
  gap: 22px;
}

.portfolio-casebook__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(130deg, #0d1722 0%, #132231 56%, #1a3043 100%);
  box-shadow: 0 28px 72px rgba(16, 25, 35, 0.14);
}

.portfolio-casebook__lead-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-casebook__lead-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 27, 0.06) 0%, rgba(10, 18, 27, 0) 38%, rgba(10, 18, 27, 0.16) 100%);
}

.portfolio-casebook__lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.portfolio-casebook__lead-body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 28px 26px;
  min-width: 0;
}

.portfolio-casebook__lead-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.portfolio-casebook__lead-prefix {
  color: rgba(89, 197, 231, 0.92);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-casebook__lead-index,
.portfolio-casebook__item-index {
  color: rgba(191, 201, 210, 0.44);
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.portfolio-casebook__lead-body h3 {
  max-width: none;
  color: rgba(248, 251, 253, 0.98);
  font-size: clamp(2.3rem, 3.4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.portfolio-casebook__lead-body p {
  max-width: 30ch;
  color: rgba(221, 232, 240, 0.84);
  font-size: 1.04rem;
  line-height: 1.62;
}

.portfolio-casebook__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 4px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-casebook__spec {
  display: grid;
  gap: 10px;
  min-height: 132px;
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-casebook__spec:last-child {
  border-right: 0;
}

.portfolio-casebook__spec-label {
  color: rgba(104, 195, 232, 0.92);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-casebook__spec-value {
  color: rgba(248, 251, 253, 0.98);
  font-size: clamp(1.7rem, 2.3vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.portfolio-casebook__spec-rule {
  align-self: end;
  width: min(92px, 100%);
  height: 4px;
  border-radius: 999px;
  background: rgba(110, 192, 239, 0.92);
}

.portfolio-casebook__spec--accent .portfolio-casebook__spec-label {
  color: rgba(243, 181, 108, 0.98);
}

.portfolio-casebook__spec--accent .portfolio-casebook__spec-rule {
  background: rgba(243, 181, 108, 0.98);
}

.portfolio-casebook__rail {
  display: grid;
  gap: 18px;
}

.portfolio-casebook__rail-header {
  display: grid;
  gap: 10px;
  padding: 4px 4px 0;
}

.portfolio-casebook__rail-eyebrow,
.portfolio-casebook__footer-eyebrow,
.portfolio-proof__eyebrow {
  color: rgba(118, 134, 149, 0.96);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-casebook__rail-header h3 {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 0.98;
}

.portfolio-casebook__rail-header p {
  max-width: 62ch;
  color: rgba(92, 108, 124, 0.92);
  font-size: 1rem;
  line-height: 1.66;
}

.portfolio-casebook__item {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 247, 251, 0.86)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.portfolio-casebook__item-media {
  min-height: 176px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(229, 238, 245, 0.9), rgba(208, 222, 233, 0.82));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-casebook__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.portfolio-casebook__item:hover .portfolio-casebook__item-media img {
  transform: scale(1.03);
}

.portfolio-casebook__item-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.portfolio-casebook__item-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.portfolio-casebook__item-body h3 {
  max-width: none;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.portfolio-casebook__item-body p {
  max-width: 56ch;
  color: rgba(93, 109, 124, 0.92);
  font-size: 1rem;
  line-height: 1.64;
}

.portfolio-casebook__chips {
  gap: 10px;
}

.portfolio-casebook__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 251, 0.86)),
    rgba(255, 255, 255, 0.92);
}

.portfolio-casebook__footer-copy {
  display: grid;
  gap: 8px;
}

.portfolio-casebook__footer-copy p {
  color: rgba(92, 108, 124, 0.9);
  line-height: 1.64;
}

.portfolio-casebook__footer-count {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.portfolio-casebook__footer-count strong {
  color: rgba(18, 30, 42, 0.96);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.portfolio-casebook__footer-count span {
  color: rgba(118, 134, 149, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.portfolio-proof__card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 247, 251, 0.86)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.portfolio-proof__index {
  color: rgba(185, 196, 206, 0.7);
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.portfolio-proof__card h3 {
  max-width: none;
  font-size: clamp(1.26rem, 1.7vw, 1.6rem);
  line-height: 1.02;
}

.portfolio-proof__card p:last-child {
  color: rgba(92, 108, 124, 0.92);
  line-height: 1.64;
}

.portfolio-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 30px;
  align-items: stretch;
  padding: 30px 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(92, 165, 204, 0.16), transparent 32%),
    linear-gradient(135deg, #0d1722 0%, #122332 58%, #193043 100%);
  box-shadow: 0 28px 76px rgba(15, 24, 34, 0.14);
}

.portfolio-page-cta__copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.portfolio-page-cta__copy h2 {
  max-width: 14ch;
  color: rgba(248, 251, 253, 0.98);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.94;
  text-wrap: balance;
}

.portfolio-page-cta__copy p {
  max-width: 62ch;
  color: rgba(214, 225, 234, 0.86);
  line-height: 1.66;
}

.portfolio-page-cta__actions {
  display: grid;
  align-content: center;
  gap: 14px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-page-cta__actions .cta {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.home-final-cta {
  display: grid;
  position: relative;
  isolation: isolate;
  overflow: visible;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: stretch;
  gap: 36px;
  padding: clamp(32px, 4.2vw, 42px);
  border-radius: 34px;
  border: 1px solid rgba(206, 226, 242, 0.12);
  background:
    radial-gradient(circle at 78% 18%, rgba(91, 167, 204, 0.16), transparent 24%),
    radial-gradient(circle at 24% 112%, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(118deg, #0d1824 0%, #132230 48%, #192c3a 100%);
  box-shadow:
    0 32px 80px rgba(12, 22, 33, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-final-cta::before {
  content: "";
  position: absolute;
  inset: auto -6% -24% auto;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 170, 204, 0.18) 0%, rgba(104, 170, 204, 0.04) 46%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.home-final-cta__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 16px;
  padding-right: 10px;
}

.home-final-cta__copy h2 {
  max-width: 14.8ch;
  margin: 0;
  color: rgba(250, 252, 254, 0.99);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-final-cta__eyebrow {
  position: relative;
  margin: 0;
  color: rgba(245, 177, 88, 0.96);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-final-cta__route {
  display: grid;
  gap: 10px;
  max-width: 36rem;
  padding-top: 10px;
}

.home-final-cta__route-eyebrow {
  margin: 0;
  color: rgba(170, 186, 201, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-final-cta__route-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-final-cta__route-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(226, 235, 243, 0.9);
  font-size: 0.94rem;
  line-height: 1.52;
}

.home-final-cta__route-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(118, 198, 218, 0.96);
  box-shadow: 0 0 0 6px rgba(118, 198, 218, 0.12);
}

.home-final-cta__meta {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 28px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.home-final-cta__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-final-cta__signal {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 112px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.home-final-cta__signal span {
  color: rgba(171, 186, 199, 0.84);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-final-cta__signal strong {
  color: rgba(246, 250, 253, 0.98);
  font-size: 0.94rem;
  line-height: 1.48;
}

.home-final-cta__contacts {
  display: grid;
  gap: 18px;
  padding: 0;
}

.home-final-cta__contact {
  display: block;
  color: rgba(240, 247, 252, 0.9);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.home-final-cta__contact strong {
  display: block;
  font-size: clamp(1.2rem, 1.7vw, 1.42rem);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -0.025em;
}

.home-final-cta__contact:hover,
.home-final-cta__contact:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.home-final-cta__contact--static {
  cursor: default;
}

.home-final-cta__contact--static:hover,
.home-final-cta__contact--static:focus-visible {
  transform: none;
}

.home-final-cta__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.home-final-cta__actions .cta {
  min-width: 0;
  min-height: 64px;
  padding-inline: 28px;
  border-radius: 24px;
  justify-content: center;
  font-size: 1rem;
}

.home-final-cta__actions .cta.primary {
  background:
    radial-gradient(circle at 50% 0%, rgba(118, 198, 218, 0.28), transparent 72%),
    linear-gradient(135deg, #102032 0%, #213a4c 100%);
  box-shadow: 0 22px 40px rgba(10, 24, 37, 0.26);
}

.home-final-cta__actions .cta.ghost {
  color: #152534;
  background: linear-gradient(180deg, rgba(212, 218, 224, 0.94), rgba(191, 200, 208, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-final-cta__actions .cta.ghost:hover,
.home-final-cta__actions .cta.ghost:focus-visible {
  background: linear-gradient(180deg, rgba(223, 229, 235, 0.98), rgba(202, 211, 219, 0.98));
  border-color: rgba(255, 255, 255, 0.12);
}

.callback-widget {
  --callback-widget-panel-bg: #f8fbfd;
  --callback-widget-text: #102033;
  --callback-widget-accent: #2d6b81;
  --callback-widget-button-bg: #102033;
  --callback-widget-button-text: #f8fbfd;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.callback-widget--bottom-left {
  right: auto;
  left: 24px;
}

body.nav-open .callback-widget,
body.footer-in-view .callback-widget {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.callback-widget__overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 19, 29, 0.26);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.callback-widget__panel,
.callback-widget__fab {
  pointer-events: auto;
}

.callback-widget.is-open .callback-widget__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.callback-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(408px, calc(100vw - 32px));
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.18), transparent 34%),
    linear-gradient(180deg, var(--callback-widget-panel-bg), var(--callback-widget-panel-bg));
  background:
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.18), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--callback-widget-panel-bg) 96%, #ffffff), color-mix(in srgb, var(--callback-widget-panel-bg) 86%, #dbeaf3));
  box-shadow: 0 28px 80px rgba(14, 23, 34, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.985);
  transform-origin: bottom right;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  z-index: 1;
}

.callback-widget--bottom-left .callback-widget__panel {
  right: auto;
  left: 0;
  transform-origin: bottom left;
}

.callback-widget.is-open .callback-widget__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.callback-widget.is-open .callback-widget__fab {
  opacity: 0;
  transform: translateY(4px) scale(0.92);
  pointer-events: none;
}

.callback-widget__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.callback-widget__title {
  color: var(--callback-widget-text);
  font-size: clamp(1.55rem, 2vw, 2rem);
  max-width: none;
  line-height: 0.98;
}

.callback-widget__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 42px;
  block-size: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(18, 30, 42, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--callback-widget-text);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.callback-widget__close:hover,
.callback-widget__close:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(45, 107, 129, 0.26);
  transform: translateY(-1px);
}

.callback-widget__text {
  max-width: none;
  color: color-mix(in srgb, var(--callback-widget-text) 78%, #ffffff);
  font-size: 0.97rem;
  line-height: 1.7;
}

.callback-widget__form {
  display: grid;
  gap: 14px;
}

.callback-widget__hp {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.callback-widget__label {
  color: color-mix(in srgb, var(--callback-widget-text) 78%, #ffffff);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.callback-widget__input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(18, 30, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--callback-widget-text);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.callback-widget__input:hover,
.callback-widget__input:focus-visible {
  border-color: color-mix(in srgb, var(--callback-widget-accent) 54%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--callback-widget-accent) 18%, transparent);
  background: rgba(255, 255, 255, 0.98);
}

.callback-widget__consent {
  margin: 2px 0 0;
}

.callback-widget__consent .form-consent__text {
  color: color-mix(in srgb, var(--callback-widget-text) 76%, #ffffff);
  font-size: 0.9rem;
  line-height: 1.6;
}

.callback-widget__consent-link {
  color: var(--callback-widget-accent);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--callback-widget-accent) 32%, transparent);
  text-underline-offset: 0.18em;
}

.callback-widget__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--callback-widget-button-text);
  background: var(--callback-widget-button-bg);
  background:
    radial-gradient(circle at top center, color-mix(in srgb, var(--callback-widget-accent) 28%, transparent), transparent 72%),
    linear-gradient(135deg, var(--callback-widget-button-bg), color-mix(in srgb, var(--callback-widget-button-bg) 72%, #ffffff));
  box-shadow: 0 18px 38px rgba(17, 33, 47, 0.22);
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 160ms ease;
}

.callback-widget__submit:hover,
.callback-widget__submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 24px 46px rgba(17, 33, 47, 0.28);
}

.callback-widget__submit:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.callback-widget__status {
  min-height: 1.35rem;
  color: color-mix(in srgb, var(--callback-widget-text) 76%, #ffffff);
  font-size: 0.92rem;
}

.callback-widget__status.is-success {
  color: var(--success);
}

.callback-widget__status.is-error {
  color: var(--danger);
}

.callback-widget__fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 62px;
  block-size: 62px;
  border: 0;
  border-radius: 999px;
  color: var(--callback-widget-button-text);
  background: var(--callback-widget-button-bg);
  background:
    radial-gradient(circle at top center, color-mix(in srgb, var(--callback-widget-accent) 28%, transparent), transparent 72%),
    linear-gradient(135deg, var(--callback-widget-button-bg), color-mix(in srgb, var(--callback-widget-button-bg) 72%, #ffffff));
  box-shadow: 0 22px 46px rgba(17, 33, 47, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 160ms ease;
  z-index: 1;
}

.callback-widget__fab:hover,
.callback-widget__fab:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 28px 54px rgba(17, 33, 47, 0.3);
}

.cookie-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 110;
  width: min(460px, calc(100vw - 104px));
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at top left, rgba(95, 168, 187, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 250, 0.9));
  box-shadow: 0 18px 48px rgba(14, 23, 34, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-consent__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.1;
}

.cookie-consent__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 40ch;
}

.cookie-consent__text a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-color: rgba(45, 107, 129, 0.24);
  text-underline-offset: 0.18em;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.1);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(45, 107, 129, 0.28);
  box-shadow: 0 16px 36px rgba(14, 23, 34, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.cookie-consent__btn--accept {
  border: 0;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top center, rgba(116, 199, 215, 0.28), transparent 72%),
    linear-gradient(135deg, #0f1925, #20384b);
  box-shadow: 0 18px 38px rgba(17, 33, 47, 0.22);
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus-visible {
  box-shadow: 0 22px 44px rgba(17, 33, 47, 0.28);
}

.cookie-consent-open .callback-widget {
  bottom: 112px;
}

.site-footer {
  padding: 2px 0 10px;
}

.site-footer__surface {
  position: relative;
  overflow: hidden;
  padding: 8px 12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 38%, rgba(97, 171, 214, 0.24), transparent 28%),
    radial-gradient(circle at 8% 50%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(90deg, #17283d 0%, #132235 54%, #16283c 100%);
  border: 1px solid rgba(186, 214, 237, 0.18);
  box-shadow:
    0 24px 48px rgba(10, 22, 37, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-footer__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.028) 50%, transparent 100%);
}

.site-footer__surface::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.site-footer__rail,
.site-footer__rail-left,
.site-footer__rail-center,
.site-footer__rail-right,
.site-footer__mobile,
.site-footer__mobile-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.site-footer__rail {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}

.site-footer__rail-left {
  gap: 0;
  min-width: 0;
  flex: 1 1 320px;
  max-width: 380px;
}

.site-footer__brand-shell,
.site-footer__legal-shell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 10px;
  border-radius: 14px;
  border: 1px solid rgba(186, 214, 237, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 24, 39, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(9, 18, 30, 0.08);
}

.site-footer__brand-shell {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 7px 10px;
}

.site-footer__brand {
  display: grid;
  gap: 1px;
  min-width: 0;
  flex: 1 1 auto;
}

.site-footer__brand-name {
  color: var(--text-inverse);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.site-footer__brand-note {
  color: rgba(223, 233, 240, 0.72);
  max-width: none;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-transform: none;
}

.site-footer__pill--partner {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-footer__rail-center {
  justify-content: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
  flex-wrap: wrap;
}

.site-footer__rail-right {
  justify-content: flex-end;
  gap: 0;
  flex: 0 1 auto;
  min-width: 0;
}

.site-footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(186, 214, 237, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(14, 28, 45, 0.38);
  color: rgba(244, 248, 250, 0.92);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 22px rgba(9, 18, 30, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-footer__pill:hover,
.site-footer__pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(186, 214, 237, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    rgba(19, 35, 54, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(9, 18, 30, 0.12);
  color: var(--text-inverse);
}

.site-footer__pill--partner {
  min-height: 30px;
  padding-inline: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    rgba(15, 30, 48, 0.76);
  color: rgba(240, 246, 250, 0.92);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.site-footer__pill--contact {
  min-width: 0;
  padding-inline: 9px 10px;
}

.site-footer__pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 18px;
  block-size: 18px;
  border: 1px solid rgba(186, 214, 237, 0.18);
  border-radius: 999px;
  color: rgba(246, 250, 252, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.03);
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-footer__pill-icon .icon {
  inline-size: 9px;
  block-size: 9px;
  stroke: currentColor;
}

.site-footer__legal-shell {
  gap: 8px;
  padding: 6px 10px;
  min-height: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(12, 24, 39, 0.18);
}

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
  padding: 0;
}

.site-footer__copyright,
.site-footer__legal-link {
  color: rgba(224, 233, 239, 0.78);
  font-size: 0.68rem;
  font-weight: 560;
  line-height: 1;
  white-space: nowrap;
}

.site-footer__copyright {
  color: rgba(236, 243, 247, 0.82);
  font-weight: 650;
}

.site-footer__legal-link {
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
  opacity: 0.88;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  color: var(--text-inverse);
  opacity: 1;
}

.site-footer__divider {
  inline-size: 1px;
  block-size: 10px;
  background: rgba(186, 214, 237, 0.26);
}

.site-footer__mobile {
  display: none;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__mobile-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow monogram"
    "title title";
  gap: 4px;
  min-width: 0;
  align-items: flex-start;
}

.site-footer__mobile h2 {
  grid-area: title;
  color: var(--text-inverse);
  margin: 0;
  font-size: clamp(1.16rem, 1.9vw, 1.32rem);
  line-height: 1.05;
  max-width: 12ch;
}

.site-footer__eyebrow {
  grid-area: eyebrow;
  margin: 0;
  color: var(--accent);
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer__monogram {
  grid-area: monogram;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 20px;
  block-size: 20px;
  border: 1px solid rgba(186, 214, 237, 0.28);
  border-radius: 999px;
  color: rgba(247, 251, 253, 0.8);
  font-size: 0.5625rem;
  font-weight: 800;
}

.site-footer__cta {
  min-height: 38px;
  min-width: 138px;
  padding-inline: 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  box-shadow: none;
}

.not-found-card {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(28px, 4vw, 52px);
  max-width: 760px;
}

.error-page__section {
  padding: clamp(28px, 4vw, 48px) 0 clamp(72px, 9vw, 112px);
}

.error-poster {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 3.2vw, 38px);
  padding: clamp(28px, 4vw, 56px);
  border-radius: clamp(28px, 4vw, 40px);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(12, 21, 31, 0.98), rgba(19, 31, 45, 0.96));
  border: 1px solid rgba(174, 205, 229, 0.16);
  box-shadow: 0 28px 58px rgba(6, 12, 20, 0.28);
}

.error-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, transparent, rgba(7, 14, 22, 0.16));
  pointer-events: none;
}

.error-poster__body,
.error-poster__media,
.system-poster__body,
.system-poster__visual {
  position: relative;
  z-index: 1;
}

.error-poster__body,
.system-poster__body {
  display: grid;
  align-content: start;
}

.error-poster__body {
  gap: 18px;
}

.error-poster__eyebrow,
.system-poster__eyebrow,
.system-poster__info-title,
.system-timer__title {
  margin: 0;
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.error-poster__code {
  font-size: clamp(6rem, 16vw, 10rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(240, 181, 109, 0.96);
  text-shadow: 0 12px 30px rgba(240, 181, 109, 0.16);
}

.error-poster__title,
.system-poster__title {
  margin: 0;
  color: rgba(247, 251, 253, 0.96);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.error-poster__title {
  max-width: none;
  font-size: clamp(1.95rem, 4.2vw, 3.35rem);
}

.system-poster__title {
  max-width: none;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}

.error-poster__text,
.system-poster__lede,
.system-poster__text {
  margin: 0;
  color: rgba(208, 219, 231, 0.84);
}

.error-poster__text,
.system-poster__text {
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  line-height: 1.72;
}

.system-poster__lede {
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  line-height: 1.6;
}

.error-poster__actions,
.system-poster__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.error-poster__actions .cta.ghost,
.system-poster__actions .cta.ghost {
  color: rgba(247, 251, 253, 0.94);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(186, 214, 237, 0.24);
}

.error-poster__media {
  min-height: clamp(320px, 38vw, 480px);
  display: grid;
  align-items: end;
}

.error-poster__media-frame,
.system-poster__media-frame {
  position: relative;
  min-height: 100%;
  border-radius: clamp(24px, 3vw, 34px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 18, 28, 0.58), rgba(18, 30, 42, 0.16)),
    radial-gradient(circle at 82% 18%, rgba(138, 198, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(174, 205, 229, 0.14);
}

.error-poster__beam,
.system-poster__beam {
  position: absolute;
  inset: 14% auto auto 18%;
  width: 68%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(171, 225, 255, 0.3));
  filter: blur(16px);
  opacity: 0.8;
}

.error-poster__glow,
.system-poster__glow {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(167, 226, 255, 0.44), rgba(167, 226, 255, 0));
  filter: blur(8px);
}

.error-poster__slab,
.system-poster__slab {
  position: absolute;
  left: -6%;
  right: 22%;
  bottom: 12%;
  height: 34%;
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(41, 63, 84, 0.96), rgba(134, 176, 210, 0.68)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  border: 1px solid rgba(190, 225, 247, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(-8deg);
}

.error-poster__strip,
.system-poster__strip {
  position: absolute;
  left: 18%;
  right: -14%;
  bottom: 30%;
  height: 14%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 181, 109, 0.7), rgba(138, 198, 255, 0.16));
  opacity: 0.74;
  transform: rotate(-8deg);
}

.error-poster__edge,
.system-poster__edge {
  position: absolute;
  left: 6%;
  bottom: 18%;
  width: 42%;
  height: 10%;
  border-radius: 999px;
  border: 1px solid rgba(241, 248, 252, 0.28);
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(-8deg);
}

.system-page {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(157, 208, 245, 0.3), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(240, 181, 109, 0.12), transparent 22%),
    linear-gradient(180deg, #eef4f8 0%, #e3edf4 100%);
}

.system-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.system-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 252, 0.7));
  box-shadow: 0 22px 44px rgba(16, 31, 47, 0.12);
}

.system-topbar__brand {
  display: inline-flex;
  align-items: center;
}

.system-topbar__logo {
  display: block;
  width: clamp(136px, 16vw, 176px);
  height: auto;
}

.system-topbar__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.system-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-pill--status {
  color: rgba(247, 251, 253, 0.94);
  background: linear-gradient(135deg, rgba(18, 30, 42, 0.98), rgba(31, 53, 72, 0.96));
  box-shadow: 0 18px 34px rgba(12, 22, 34, 0.16);
}

.system-poster {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 3.2vw, 38px);
  padding: clamp(28px, 4vw, 56px);
  border-radius: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(174, 205, 229, 0.18);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(12, 21, 31, 0.98), rgba(19, 31, 45, 0.96));
  box-shadow: 0 32px 64px rgba(8, 14, 23, 0.24);
}

.system-poster__body {
  gap: 16px;
}

.system-poster__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 2px 0 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(186, 214, 237, 0.18);
  color: rgba(237, 244, 248, 0.94);
  font-weight: 600;
}

.system-poster__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 0 5px rgba(240, 181, 109, 0.16);
}

.system-poster__hint {
  margin: 0;
  color: rgba(165, 184, 203, 0.74);
  font-size: 0.94rem;
  line-height: 1.66;
}

.system-poster__visual {
  display: grid;
  gap: 18px;
}

.system-poster__info {
  display: grid;
  gap: 12px;
}

.system-poster__info-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(186, 214, 237, 0.16);
}

.system-poster__info-label {
  color: rgba(165, 184, 203, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-poster__info-card a {
  color: rgba(247, 251, 253, 0.94);
  text-decoration: none;
  font-weight: 600;
}

.system-poster__info-card a:hover,
.system-poster__info-card a:focus-visible {
  color: var(--warm);
}

.system-timer {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(186, 214, 237, 0.16);
}

.system-timer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 10px;
}

.system-timer__cell {
  display: grid;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 16px;
  text-align: center;
  background: rgba(10, 18, 28, 0.34);
  border: 1px solid rgba(186, 214, 237, 0.12);
}

.system-timer__value {
  color: rgba(247, 251, 253, 0.96);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.system-timer__label {
  color: rgba(165, 184, 203, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-timer__done {
  display: none;
  color: rgba(247, 251, 253, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.system-timer.is-done .system-timer__grid {
  display: none;
}

.system-timer.is-done .system-timer__done {
  display: block;
}

.requisites-page__hero {
  padding: clamp(24px, 3.4vw, 34px) 0 18px;
}

.requisites-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 20px;
}

.requisites-hero__content,
.requisites-hero__panel,
.requisites-card,
.requisites-note,
.requisites-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-sm);
}

.requisites-hero__content,
.requisites-card,
.requisites-note {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 253, 0.84)),
    var(--surface);
}

.requisites-hero__content,
.requisites-hero__panel,
.requisites-card,
.requisites-note,
.requisites-cta-card {
  border-radius: 28px;
}

.requisites-hero__content {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: clamp(24px, 3.2vw, 34px);
}

.requisites-hero__eyebrow,
.requisites-card__eyebrow,
.requisites-note__eyebrow,
.requisites-cta-card__eyebrow,
.requisites-hero__panel-eyebrow {
  margin: 0;
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.requisites-hero__title {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.requisites-hero__lede {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.06rem);
  line-height: 1.62;
}

.requisites-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.requisites-hero__panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 2.6vw, 28px);
  background:
    radial-gradient(circle at top right, rgba(190, 217, 235, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.92));
  border-color: rgba(221, 230, 238, 0.92);
  box-shadow: 0 18px 38px rgba(92, 118, 140, 0.08);
}

.requisites-hero__panel-title {
  margin: 0;
  color: rgba(18, 30, 42, 0.96);
  font-size: clamp(1.38rem, 2vw, 1.78rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.requisites-hero__panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.requisites-metric {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(221, 230, 238, 0.88);
}

.requisites-metric__label {
  color: rgba(97, 116, 136, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.requisites-metric__value {
  color: rgba(18, 30, 42, 0.94);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.requisites-hero__panel-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requisites-hero__panel-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(78, 95, 112, 0.9);
  line-height: 1.5;
}

.requisites-hero__panel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 0 5px rgba(240, 181, 109, 0.12);
}

.requisites-page__content {
  padding: 0 0 68px;
}

.requisites-grid,
.requisites-bottom {
  display: grid;
  gap: 20px;
}

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

.requisites-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 2.8vw, 28px);
}

.requisites-card__head {
  display: grid;
  gap: 6px;
}

.requisites-card__title,
.requisites-note__title,
.requisites-cta-card__title {
  margin: 0;
  letter-spacing: -0.04em;
}

.requisites-card__title {
  font-size: clamp(1.38rem, 2vw, 1.82rem);
  line-height: 1.04;
}

.requisites-register {
  display: grid;
  gap: 0;
  margin: 0;
}

.requisites-register__row {
  display: grid;
  grid-template-columns: minmax(148px, 200px) minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(18, 30, 42, 0.08);
}

.requisites-register__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.requisites-register dt {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

.requisites-register dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
  font-size: 0.96rem;
}

.requisites-register dd a {
  color: inherit;
  text-decoration: none;
}

.requisites-register dd a:hover,
.requisites-register dd a:focus-visible {
  color: var(--accent);
}

.requisites-bottom {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  margin-top: 20px;
}

.requisites-note,
.requisites-cta-card {
  padding: clamp(22px, 2.8vw, 28px);
}

.requisites-note__title {
  font-size: clamp(1.32rem, 1.8vw, 1.68rem);
  line-height: 1.05;
}

.requisites-note__text,
.requisites-cta-card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.requisites-cta-card {
  display: grid;
  align-content: start;
  gap: 12px;
  background:
    radial-gradient(circle at top right, rgba(190, 217, 235, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.92));
  border-color: rgba(221, 230, 238, 0.92);
  box-shadow: 0 18px 38px rgba(92, 118, 140, 0.08);
}

.requisites-cta-card__title {
  color: rgba(18, 30, 42, 0.96);
  font-size: clamp(1.42rem, 1.95vw, 1.82rem);
  line-height: 1.02;
}

.requisites-cta-card__text {
  color: rgba(78, 95, 112, 0.9);
}

.requisites-cta-card .cta {
  justify-self: start;
}

@media (max-width: 1200px) {
  .hero-shell__grid,
  .article-shell,
  .lead-form,
  .portfolio-card,
  .section-heading--split,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .home-final-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-final-cta__meta {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-final-cta__actions {
    max-width: 620px;
  }

  .site-footer__rail {
    flex-wrap: wrap;
    min-height: 0;
  }

  .site-footer__rail-left,
  .site-footer__rail-center,
  .site-footer__rail-right {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer__brand-shell,
  .site-footer__legal-shell {
    width: 100%;
    min-height: 0;
    padding: 14px 16px;
  }

  .site-footer__brand-shell {
    gap: 14px;
  }

  .site-footer__brand {
    min-width: min(100%, 220px);
  }

  .site-footer__rail-center {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-footer__rail-right {
    gap: 12px;
  }

  .site-footer__legal-shell {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-footer__cta {
    width: 100%;
    min-width: 0;
  }

  .error-poster,
  .system-poster {
    grid-template-columns: 1fr;
  }

  .gallery-hero {
    grid-template-columns: 1fr;
  }

  .gallery-album-card,
  .gallery-album-card--featured {
    grid-column: span 6;
  }

  .gallery-principles__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-request,
  .contact-location,
  .contact-trust {
    grid-template-columns: 1fr;
  }

  .requisites-hero,
  .requisites-bottom {
    grid-template-columns: 1fr;
  }

  .error-poster__media {
    min-height: 280px;
  }

  .hero-shell__content,
  .hero-shell__panel {
    min-height: auto;
  }

  .hero-shell__visual img {
    height: 280px;
  }

  .hero-slider__viewport {
    min-height: 300px;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-stage__viewport {
    min-height: 620px;
  }

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

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

  .portfolio-card__media {
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 960px) {
  .hero-stage--fallback,
  .hero-stage--fallback .hero-stage__viewport {
    min-height: 580px;
  }

  .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: minmax(0, 1fr) minmax(312px, 0.54fr);
    gap: 24px;
    padding: 30px;
    align-items: start;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-stage__fallback-glass--left {
    left: 34px;
    width: 40%;
  }

  .hero-stage__fallback-glass--right {
    right: 20px;
    width: 34%;
  }

  .hero-stage__fallback-beam--side {
    right: 144px;
    width: 176px;
  }

  .hero-stage__fallback-line {
    left: 186px;
    width: 204px;
    bottom: 144px;
  }

  .hero-stage__fallback-panel {
    max-width: none;
    padding: 28px 24px 22px;
  }

  .hero-stage__fallback-panel .hero-shell__kicker {
    min-height: 34px;
    padding-inline: 14px;
  }

  .hero-stage__fallback-panel h1 {
    max-width: none;
    font-size: clamp(2.02rem, 3.7vw, 2.92rem);
  }

  .hero-stage__fallback-proof {
    max-width: none;
    padding: 24px 20px 20px;
    margin: 8px 0 0 auto;
  }

  .hero-stage__fallback-proof::after {
    inset: -10px -8px 28px 18px;
  }

  .hero-stage__fallback-proof h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.78rem);
  }

  .hero-stage__fallback-proof-signals {
    grid-template-columns: 1fr;
  }

  .hero-stage__fallback-proof-signal,
  .hero-stage__fallback-proof-signal:nth-child(3) {
    min-height: 94px;
  }

  .hero-stage__fallback-proof-signal strong {
    font-size: clamp(1.44rem, 2.8vw, 1.94rem);
  }

  .header-status {
    display: none;
  }

  .cards-grid,
  .metrics-grid,
  .timeline-grid,
  .portfolio-grid,
  .blog-grid,
  .detail-grid,
  .form-grid,
  .requisites-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero__stats,
  .gallery-albums-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-album-card,
  .gallery-album-card--featured {
    grid-column: auto;
  }

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

  .hero-shell__meta {
    grid-template-columns: 1fr;
  }

  .hero-stage__viewport {
    min-height: 560px;
  }

  .hero-slider__caption {
    left: 22px;
    right: 112px;
    bottom: 86px;
    width: auto;
    gap: 10px;
    padding: 18px 18px 16px;
    border-radius: 26px;
  }

  .hero-slider__caption strong {
    font-size: clamp(1.34rem, 3.4vw, 1.92rem);
  }

  .hero-stage__footer {
    padding: 0 22px 22px;
  }

  .hero-stage__footer-left {
    max-width: calc(100% - 172px);
  }

  .hero-slider__link {
    min-height: 42px;
    padding-inline: 16px;
  }

  .hero-shell__content,
  .hero-shell__panel,
  .article-shell__intro,
  .article-content,
  .detail-card,
  .metric-card,
  .timeline-card,
  .blog-card__body,
  .portfolio-card__body,
  .requisites-card,
  .requisites-note,
  .requisites-cta-card {
    padding: 18px;
  }

  .requisites-register__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-final-cta__copy h2 {
    max-width: none;
  }

  .contact-hero__title,
  .contact-hero__panel-title,
  .lead-form--contact-screen .lead-form__intro h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero-stage--fallback,
  .hero-stage--fallback .hero-stage__viewport {
    min-height: auto;
  }

  .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-stage__fallback-beam--top,
  .hero-stage__fallback-beam--side,
  .hero-stage__fallback-line {
    display: none;
  }

  .hero-stage__fallback-glass--left {
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    border-radius: 28px;
  }

  .hero-stage__fallback-panel {
    max-width: none;
    padding: 22px 18px 18px;
    border-radius: 24px;
    gap: 12px;
  }

  .hero-stage__fallback-panel .hero-shell__kicker {
    min-height: 32px;
    padding-inline: 13px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .hero-stage__fallback-panel h1 {
    max-width: 100%;
    font-size: clamp(1.52rem, 5.5vw, 2rem);
  }

  .hero-stage__fallback-panel .hero-shell__lede {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.56;
  }

  .hero-stage__fallback-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stage__fallback-actions .cta.primary,
  .hero-stage__fallback-actions .cta.ghost {
    min-height: 52px;
    padding-inline: 20px;
  }

  .hero-stage__fallback-meta {
    grid-template-columns: 1fr;
  }

  .hero-stage__fallback-proof {
    max-width: none;
    padding: 20px 18px 18px;
    border-radius: 24px;
    gap: 12px;
    margin: 2px 0 0;
  }

  .hero-stage__fallback-proof::after {
    inset: -8px -4px 14px 10px;
    border-radius: 24px;
  }

  .hero-stage__fallback-proof-topline {
    gap: 10px;
  }

  .hero-stage__fallback-proof-index {
    font-size: 2.2rem;
  }

  .hero-stage__fallback-proof h2 {
    font-size: 1.26rem;
  }

  .hero-stage__fallback-proof p {
    padding-bottom: 14px;
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .hero-stage__fallback-proof-signals {
    margin-top: 0;
  }

  .hero-stage__fallback-proof-signal {
    gap: 12px;
    min-height: 86px;
    padding: 14px 14px 12px;
  }

  .hero-stage__fallback-proof-signal strong {
    font-size: 1.34rem;
  }

  .hero-stage__fallback-proof-signal-label {
    font-size: 0.64rem;
    letter-spacing: 0.15em;
  }

  .hero-stage__fallback-proof-signal-rule {
    width: 72px;
  }

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

  .site-footer {
    padding-top: 16px;
  }

  .site-footer__surface {
    padding: 16px;
    border-radius: 24px;
  }

  .site-footer__rail {
    display: none;
  }

  .site-footer__mobile {
    display: flex;
    align-items: center;
  }

  .site-footer__cta {
    width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.15rem, 10.8vw, 3rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .hero-shell {
    padding-top: 18px;
  }

  .hero-shell__content,
  .hero-shell__panel {
    gap: 14px;
    padding: 18px;
  }

  .hero-shell--faq .hero-shell__content,
  .hero-shell--faq .hero-shell__panel {
    min-height: 0;
  }

  .hero-shell--faq .hero-shell__content h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 9vw, 3.8rem);
  }

  .hero-shell--faq .hero-shell__panel-copy h2 {
    font-size: clamp(1.45rem, 5.8vw, 2rem);
  }

  .faq-hero__footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 18px;
  }

  .hero-shell--faq .faq-hero__questions li {
    min-height: 56px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero-slider__viewport {
    min-height: 238px;
  }

  .hero-stage__viewport {
    min-height: clamp(500px, 98vw, 620px);
    border-radius: 28px;
  }

  .hero-stage__nav {
    top: 14px;
    right: 16px;
  }

  .hero-shell__panel-copy h2 {
    font-size: clamp(0.95rem, 4.8vw, 1.15rem);
    max-width: 100%;
  }

  .hero-shell__lede,
  p,
  .blog-card__body p,
  .article-content li,
  .section-heading__aside {
    font-size: 0.96rem;
  }

  .hero-shell__actions .cta,
  .form-actions .cta,
  .nav--mobile a {
    width: 100%;
  }

  .hero-shell__actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-final-cta {
    gap: 20px;
    padding: 22px;
    border-radius: 28px;
  }

  .home-final-cta__actions {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .home-final-cta__actions .cta {
    width: 100%;
  }

  .hero-shell__trust,
  .chip-list {
    gap: 8px;
  }

  .hero-shell__trust li,
  .chip-list li {
    width: 100%;
    justify-content: center;
  }

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

  .hero-slider__caption {
    left: 14px;
    right: 14px;
    bottom: 112px;
    width: auto;
    gap: 9px;
    padding: 14px 14px 12px;
    border-radius: 22px;
  }

  .hero-slider__caption strong {
    font-size: clamp(1.32rem, 6.2vw, 1.72rem);
  }

  .hero-slider__caption p {
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-slider__overlay-nav {
    top: 14px;
    right: 14px;
    gap: 6px;
  }

  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slider__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-stage__footer-left {
    gap: 10px;
    width: auto;
    max-width: none;
    min-height: 42px;
    padding: 9px 12px;
  }

  .hero-slider__counter {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero-slider__dots {
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-slider__link {
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding-inline: 18px;
    align-self: flex-start;
  }

  .hero-stage__footer {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 0;
  }

  .blog-search {
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .callback-widget {
    left: auto;
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
  }

  .callback-widget--bottom-left {
    left: 14px;
    right: auto;
  }

  .callback-widget__panel {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 88px);
    width: auto;
    max-height: min(74vh, 620px);
    padding: 20px;
    border-radius: 28px;
    transform-origin: bottom center;
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .cookie-consent__title {
    font-size: 1rem;
  }

  .cookie-consent__text {
    max-width: none;
    font-size: 0.9rem;
  }

  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__btn {
    width: 100%;
  }

  .cookie-consent-open .callback-widget {
    bottom: 178px;
  }

  .callback-widget__title {
    max-width: none;
    font-size: 1.9rem;
    line-height: 0.96;
  }

  .callback-widget__text {
    max-width: none;
    font-size: 1rem;
    line-height: 1.6;
  }

  .callback-widget__form {
    gap: 16px;
  }

  .callback-widget__input {
    min-height: 62px;
    border-radius: 20px;
  }

  .callback-widget__submit {
    width: 100%;
    min-height: 58px;
  }

  .callback-widget__fab {
    margin-left: auto;
  }

  .callback-widget--bottom-left .callback-widget__fab {
    margin-right: auto;
    margin-left: 0;
  }

  body.callback-widget-open {
    overflow: hidden;
  }

  .site-footer__mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .site-footer__mobile-copy {
    gap: 8px 10px;
  }

  .site-footer__mobile h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    max-width: 9ch;
  }

  .site-footer__cta {
    justify-content: center;
  }

  .system-shell {
    width: min(100% - 28px, 1240px);
    padding-top: 14px;
  }

  .system-topbar {
    padding: 14px;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .error-poster,
  .system-poster {
    padding: 20px;
    border-radius: 28px;
  }

  .gallery-hero__content,
  .gallery-hero__panel,
  .gallery-principle-card,
  .gallery-principles__cta,
  .gallery-empty {
    padding: 16px;
    border-radius: 22px;
  }

  .gallery-hero__content {
    min-height: auto;
  }

  .system-topbar__logo {
    width: 128px;
  }

  .error-poster__media {
    min-height: 220px;
  }

  .error-poster__title,
  .system-poster__title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .gallery-hero__title {
    max-width: 100%;
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .gallery-hero__actions .cta,
  .gallery-principles__cta .cta {
    width: 100%;
  }

  .gallery-stat {
    padding: 10px 12px;
  }

  .gallery-album-card__media {
    min-height: 240px;
  }

  .gallery-album-card--featured .gallery-album-card__media {
    min-height: 280px;
  }

  .gallery-album-card__preview-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .error-poster__actions .cta,
  .system-poster__actions .cta {
    width: 100%;
  }

  .requisites-hero__content {
    min-height: auto;
    padding: 20px;
    border-radius: 28px;
  }

  .requisites-hero__panel {
    padding: 20px;
    border-radius: 28px;
  }

  .requisites-hero__title,
  .requisites-card__title,
  .requisites-note__title,
  .requisites-cta-card__title {
    max-width: 100%;
  }

  .requisites-hero__actions .cta,
  .requisites-cta-card .cta {
    width: 100%;
  }

  .contact-hero__content,
  .contact-hero__panel,
  .lead-form--contact-screen,
  .contact-request__support,
  .contact-request-card,
  .contact-location__panel,
  .contact-location__map-card,
  .contact-trust-card {
    padding: 18px;
    border-radius: 24px;
  }

  .contact-hero__title {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .contact-hero__lede,
  .contact-hero__panel-text,
  .contact-location__lede {
    font-size: 0.94rem;
  }

  .page-contacts .callback-widget {
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .contact-info-card {
    min-height: auto;
    padding: 14px 16px;
  }

  .contact-hero__cards,
  .contact-hero__panel-cards {
    grid-template-columns: 1fr;
  }

  .lead-form--contact-screen .lead-form__intro-points {
    grid-template-columns: 1fr;
  }

  .contact-support-card:last-child {
    grid-column: auto;
  }

  .contact-support-card,
  .contact-request-card {
    padding: 16px;
  }

  .contact-support-card strong,
  .contact-request-card h3,
  .contact-location__title {
    font-size: 1.6rem;
  }

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

  .contact-hero__actions,
  .contact-location__actions {
    flex-direction: column;
  }

  .contact-hero__actions .cta,
  .contact-location__actions .cta {
    width: 100%;
  }

  .contact-location__map-card {
    min-height: 0;
  }

  .contact-location__map-card .contacts-map,
  .contacts-map,
  .contacts-map iframe,
  .contacts-map__fallback {
    min-height: 280px;
  }

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

@media (max-width: 560px) {
  .hero-stage {
    min-height: 500px;
  }

  .hero-stage__viewport {
    min-height: clamp(430px, 92vw, 520px);
    border-radius: 24px;
  }

  .page-contacts .callback-widget__fab {
    inline-size: 52px;
    block-size: 52px;
  }

  .hero-stage__nav,
  .hero-slider__overlay-nav {
    top: 12px;
    right: 12px;
    gap: 5px;
  }

  .hero-slider__arrow {
    width: 36px;
    height: 36px;
  }

  .hero-slider__arrow span {
    font-size: 1.45rem;
  }

  .hero-slider__caption {
    left: 12px;
    right: 12px;
    bottom: 82px;
    gap: 7px;
    padding: 12px 12px 10px;
    border-radius: 20px;
  }

  .hero-slider__eyebrow {
    min-height: 22px;
    padding: 0 10px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .hero-slider__caption strong {
    font-size: clamp(1.08rem, 5.9vw, 1.42rem);
    line-height: 1;
  }

  .hero-slider__caption p {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .hero-slider__footer {
    gap: 8px;
  }

  .hero-stage__footer-left {
    min-height: 38px;
    gap: 8px;
    padding: 8px 10px;
  }

  .hero-slider__dot {
    width: 8px;
    height: 8px;
  }

  .hero-slider__dot.is-active {
    width: 28px;
  }

  .hero-slider__counter {
    padding-left: 10px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .hero-slider__link {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 0.86rem;
  }

  .hero-stage__footer {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

@media (max-width: 1200px) {
  .gallery-album-rail__item {
    grid-column: span 6;
  }

  .gallery-album-rail__item--all,
  .gallery-album-rail__item--featured {
    grid-column: span 6;
  }

  .gallery-media-shell__head {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    grid-column: span 4;
  }

  .gallery-item--featured {
    grid-column: span 8;
  }
}

@media (max-width: 960px) {
  .portfolio-journey {
    grid-template-columns: 1fr;
  }

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

  .gallery-album-rail__item,
  .gallery-album-rail__item--all,
  .gallery-album-rail__item--featured {
    grid-column: span 12;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item--featured {
    grid-column: span 12;
  }

  .gallery-lightbox__panel {
    width: min(100vw - 48px, 860px);
    gap: 10px;
  }

  .gallery-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox__media {
    height: min(72vh, 640px);
  }
}

@media (max-width: 720px) {
  .portfolio-journey-shell,
  .portfolio-bridge-shell {
    padding-top: 14px;
  }

  .portfolio-journey {
    padding: 20px;
    border-radius: 26px;
  }

  .portfolio-journey__intro h1 {
    max-width: none;
    font-size: clamp(2.1rem, 8.8vw, 3rem);
  }

  .portfolio-journey__intro > p:last-of-type,
  .portfolio-bridge__copy p:last-child {
    font-size: 0.95rem;
  }

  .portfolio-journey__actions,
  .portfolio-journey__metrics {
    grid-template-columns: 1fr;
  }

  .portfolio-journey__actions {
    display: grid;
  }

  .portfolio-journey__actions .cta,
  .portfolio-bridge .cta {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .portfolio-journey__metric {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(18, 30, 42, 0.08);
  }

  .portfolio-journey__metric:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .portfolio-journey__step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portfolio-bridge {
    padding: 16px 18px;
    border-radius: 22px;
  }

  .gallery-album-rail {
    gap: 10px;
  }

  .gallery-album-rail__item {
    padding: 12px;
    border-radius: 18px;
  }

  .gallery-media-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .gallery-item {
    grid-column: span 12;
    gap: 8px;
  }

  .gallery-item__media,
  .gallery-item--featured .gallery-item__media {
    aspect-ratio: 1 / 0.92;
    border-radius: 18px;
  }

  .gallery-lightbox__panel {
    width: min(calc(100vw - 20px), 100%);
    max-width: 100%;
    max-height: calc(100dvh - 18px - var(--gallery-lightbox-offset-top, 0px));
    gap: 10px;
  }

  .gallery-lightbox__toolbar {
    position: absolute;
    inset: 12px 12px auto 12px;
    z-index: 4;
    padding-inline: 0;
  }

  .gallery-lightbox__stage {
    position: relative;
    display: block;
  }

  .gallery-lightbox__media {
    height: min(calc(100dvh - 120px - var(--gallery-lightbox-offset-top, 0px)), 76svh);
    min-height: clamp(340px, 64svh, 560px);
    border-radius: 28px;
    padding: 22px 18px;
  }

  .gallery-lightbox__nav,
  .gallery-lightbox__close {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
  }

  .gallery-lightbox__nav--prev {
    left: 12px;
  }

  .gallery-lightbox__nav--next {
    right: 12px;
  }

  .gallery-lightbox__counter {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .gallery-lightbox__caption {
    font-size: 0.9rem;
    max-width: none;
    padding-inline: 18px;
  }

  .gallery-lightbox__footer {
    gap: 8px;
    justify-items: center;
    text-align: center;
    padding-bottom: 2px;
  }

  .gallery-lightbox__media img,
  .gallery-lightbox__media video,
  .gallery-lightbox__media iframe {
    border-radius: 18px;
  }

  .gallery-lightbox--portrait .gallery-lightbox__media,
  .gallery-lightbox--square .gallery-lightbox__media {
    padding-inline: 18px;
  }
}

@media (max-width: 720px) {
  .gallery-lightbox {
    overflow: auto;
    padding-inline: 10px;
  }
}

@media (max-width: 1180px) {
  .solutions-showcase,
  .why-proof,
  .portfolio-editorial,
  .page-home .section-shell--faq,
  .page-faq .section-shell--faq,
  .faq-directory,
  .faq-group,
  .faq-page-cta,
  .portfolio-page-cta,
  .home-final-cta {
    grid-template-columns: 1fr;
  }

  .solution-feature,
  .portfolio-lead {
    grid-template-columns: 1fr;
  }

  .page-home .section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-home .section-heading--split > div:first-child {
    padding-right: 0;
  }

  .page-home .section-heading--split > div:first-child::after {
    display: none;
  }

  .page-home .section-heading__aside {
    max-width: none;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(18, 30, 42, 0.1);
  }

  .page-home .section-heading__aside::before {
    top: -5px;
    left: 0;
  }

  .solution-feature__media {
    min-height: 100%;
  }

  .portfolio-lead {
    min-height: 520px;
  }

  .portfolio-lead__body,
  .home-final-cta__meta {
    border-left: 0;
    border-top: 0;
  }

  .solution-feature__body,
  .portfolio-lead__body,
  .home-final-cta__meta {
    min-width: 0;
  }

  .solution-feature {
    min-height: 520px;
  }

  .solution-feature__body {
    min-height: 0;
  }

  .portfolio-editorial__footer {
    grid-template-columns: 1fr;
  }

  .portfolio-editorial__cta {
    grid-template-columns: 1fr auto;
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgba(18, 30, 42, 0.08);
  }

  .why-proof__intro {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }

  .why-proof__intro h2,
  .portfolio-lead__body h3 {
    max-width: none;
  }

  .page-home .section-shell--faq .section-heading,
  .page-faq .section-shell--faq .section-heading {
    position: static;
  }

  .portfolio-casebook__lead {
    grid-template-columns: 1fr;
  }

  .portfolio-casebook__lead-media,
  .portfolio-casebook__lead-body {
    min-width: 0;
  }

  .portfolio-page-cta__actions {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .faq-directory__intro {
    padding-right: 0;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 30, 42, 0.08);
  }

  .faq-page-cta__actions {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: none;
  }
}

@media (max-width: 960px) {
  .solution-compact,
  .portfolio-compact,
  .solution-feature,
  .portfolio-lead {
    grid-template-columns: 1fr;
  }

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

  .portfolio-lead__spec {
    min-height: 94px;
    padding: 14px;
  }

  .solution-compact__media,
  .portfolio-compact__media,
  .solution-feature__media {
    min-height: 220px;
  }

  .solution-feature {
    min-height: 500px;
  }

  .solution-feature__body {
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    padding: 20px;
  }

  .solution-feature__body {
    min-height: 0;
  }

  .solution-stack__header,
  .solution-stack__footer {
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-lead__media {
    min-height: 100%;
  }

  .portfolio-lead {
    min-height: 520px;
  }

  .portfolio-lead__body {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: min(470px, calc(100% - 36px));
    padding: 22px 20px 18px;
    border-radius: 24px;
  }

  .portfolio-lead__body::before {
    border-radius: 24px 24px 0 0;
  }

  .portfolio-lead__body::after {
    top: 24px;
    right: 72px;
    width: 88px;
  }

  .portfolio-lead__body h3 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .portfolio-lead__body p {
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .why-proof__grid,
  .process-rail {
    grid-template-columns: 1fr;
  }

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

  .portfolio-casebook__item,
  .portfolio-proof {
    grid-template-columns: 1fr;
  }

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

  .portfolio-casebook__spec:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .faq-directory__nav {
    grid-template-columns: 1fr;
  }

  .faq-page-cta__actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .section-heading--solutions,
  .section-heading--portfolio-premium,
  .section-heading--process-premium {
    margin-bottom: 28px;
  }

  .page-home .section-heading--split h2 {
    max-width: none;
    font-size: clamp(2rem, 8.2vw, 2.9rem);
  }

  .page-home .section-heading__aside {
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .page-home .section-eyebrow {
    padding-bottom: 10px;
    gap: 8px;
  }

  .page-home .section-eyebrow::before {
    width: 20px;
  }

  .solution-feature {
    min-height: 420px;
    border-radius: 24px;
  }

  .solution-feature__body,
  .portfolio-lead__body,
  .portfolio-compact__body,
  .process-step {
    padding: 20px;
  }

  .solution-compact__copy {
    padding: 18px;
  }

  .solution-feature__body {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .solution-feature__meta {
    align-items: center;
  }

  .solution-feature h3 {
    font-size: clamp(1.74rem, 8vw, 2.38rem);
    max-width: none;
  }

  .solution-feature p {
    max-width: 28ch;
  }

  .why-proof {
    padding: 14px;
    border-radius: 28px;
  }

  .why-proof__intro,
  .why-proof__grid {
    padding: 12px;
  }

  .portfolio-lead__media {
    min-height: 100%;
  }

  .portfolio-lead {
    min-height: 420px;
    border-radius: 24px;
  }

  .portfolio-lead__body {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
    padding: 18px 16px 16px;
    border-radius: 20px;
    gap: 14px;
  }

  .portfolio-lead__body::before {
    border-radius: 20px 20px 0 0;
    height: 72px;
  }

  .portfolio-lead__body::after {
    top: 20px;
    right: 56px;
    width: 64px;
  }

  .portfolio-rail__header {
    padding: 8px 4px 0;
  }

  .portfolio-editorial__footer {
    padding: 18px;
    border-radius: 20px;
  }

  .portfolio-editorial__cta {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .portfolio-lead__specs {
    grid-template-columns: 1fr;
  }

  .portfolio-lead__spec {
    min-height: 88px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .portfolio-lead__spec:last-child {
    border-bottom: 0;
  }

  .portfolio-lead__spec-value {
    font-size: 1.5rem;
  }

  .portfolio-lead__body h3 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .portfolio-lead__body p {
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .page-home .section-shell--faq .faq-item summary,
  .page-faq .section-shell--faq .faq-item summary {
    min-height: 78px;
    padding: 0 68px 0 20px;
    font-size: 0.98rem;
  }

  .page-home .section-shell--faq .faq-item p,
  .page-faq .section-shell--faq .faq-item p {
    padding: 0 20px 22px;
  }

  .portfolio-casebook__specs {
    grid-template-columns: 1fr;
  }

  .portfolio-proof__card,
  .portfolio-casebook__lead,
  .portfolio-casebook__item,
  .portfolio-casebook__footer,
  .portfolio-page-cta {
    border-radius: 22px;
  }

  .portfolio-casebook__lead-media {
    min-height: 320px;
  }

  .portfolio-casebook__lead-body,
  .portfolio-casebook__item-body,
  .portfolio-proof__card,
  .portfolio-page-cta {
    padding: 20px;
  }

  .portfolio-casebook__lead-body h3 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .portfolio-casebook__lead-body p,
  .portfolio-casebook__item-body p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .portfolio-casebook__item {
    padding: 14px;
  }

  .portfolio-casebook__item-media {
    min-height: 190px;
  }

  .portfolio-casebook__footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .portfolio-casebook__footer-count {
    justify-items: start;
  }

  .portfolio-page-cta__copy h2 {
    max-width: none;
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .portfolio-page-cta__actions {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
  }

  .faq-directory,
  .faq-group,
  .faq-page-cta {
    padding: 20px;
    border-radius: 24px;
  }

  .faq-group {
    gap: 18px;
  }

  .faq-group__intro h3 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .faq-directory__intro h3 {
    font-size: clamp(1.36rem, 7.6vw, 2rem);
  }

  .faq-directory__link {
    min-height: 96px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .faq-page-cta__copy h2 {
    max-width: none;
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .faq-page-cta__actions {
    grid-template-columns: 1fr;
    padding-top: 14px;
  }

  .faq-page-cta__actions .cta {
    width: 100%;
    min-width: 0;
  }

  .home-final-cta {
    padding: 20px;
    border-radius: 28px;
  }

  .home-final-cta__copy,
  .home-final-cta__meta {
    padding: 0;
  }

  .home-final-cta__meta {
    gap: 18px;
  }

  .home-final-cta__copy h2 {
    max-width: 12.8ch;
  }

  .home-final-cta__copy p:last-child,
  .home-final-cta__contact strong {
    font-size: 1rem;
  }

  .home-final-cta__actions {
    gap: 10px;
  }

  .home-final-cta__actions .cta {
    width: 100%;
    min-width: 0;
  }
}

/* Blog Page 2026 */
.page-blog .hero-shell--blog-page {
  padding-top: clamp(24px, 4vw, 44px);
}

.page-blog .hero-shell--blog-page .hero-shell__backdrop {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 78% 16%, rgba(175, 205, 236, 0.44), rgba(175, 205, 236, 0) 34%),
    linear-gradient(180deg, rgba(237, 245, 251, 0.98), rgba(230, 239, 247, 0.98));
}

.blog-page-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(360px, 0.68fr);
  gap: 34px;
  align-items: stretch;
}

.blog-page-hero__poster,
.blog-page-hero__brief,
.blog-page-tools,
.blog-lead,
.blog-support__item,
.blog-empty,
.blog-pagination {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 60px rgba(100, 131, 154, 0.12);
}

.blog-page-hero__poster {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 500px;
  padding: clamp(34px, 4.2vw, 52px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(245, 250, 254, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(232, 241, 248, 0.72));
}

.blog-page-hero__poster::before {
  content: "";
  position: absolute;
  inset: auto 38px 36px auto;
  width: min(34vw, 360px);
  height: min(19vw, 214px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(223, 233, 241, 0.42), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(209, 222, 233, 0.56);
  opacity: 0.72;
  pointer-events: none;
}

.blog-page-hero__poster h1 {
  position: relative;
  z-index: 1;
  max-width: 10.5ch;
  margin: 0;
  font-size: clamp(3.1rem, 5.5vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.blog-page-hero__poster .hero-shell__lede {
  position: relative;
  z-index: 1;
  max-width: 37rem;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(91, 106, 123, 0.96);
}

.blog-page-hero__brief {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 500px;
  padding: 34px 30px 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 14%, rgba(97, 124, 154, 0.22), rgba(97, 124, 154, 0) 28%),
    linear-gradient(180deg, rgba(19, 31, 45, 0.98), rgba(15, 24, 37, 0.98));
  color: rgba(240, 246, 252, 0.98);
}

.blog-page-hero__brief::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 28px;
  width: 1px;
  background: linear-gradient(180deg, rgba(244, 178, 95, 0.7), rgba(244, 178, 95, 0));
  opacity: 0.68;
}

.blog-page-hero__brief-label {
  position: relative;
  padding-left: 18px;
  color: rgba(244, 178, 95, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.blog-page-hero__brief h2 {
  max-width: 10.5ch;
  margin: 0;
  font-size: clamp(1.96rem, 3.2vw, 2.72rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: rgba(246, 250, 253, 0.98);
  text-wrap: balance;
}

.blog-page-hero__brief p {
  max-width: 30rem;
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(188, 200, 214, 0.9);
}

.blog-page-hero__brief > * {
  position: relative;
  z-index: 1;
}

.blog-page-hero__brief-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-page-hero__brief-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(226, 233, 241, 0.96);
  font-size: 0.93rem;
  line-height: 1.45;
}

.blog-page-hero__brief-list li::before {
  content: "";
  position: absolute;
  inset: 22px auto auto 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #77d7f5, #4caed7);
  box-shadow: 0 0 0 6px rgba(119, 215, 245, 0.12);
}

.blog-page-hero__visual {
  position: relative;
  min-height: 132px;
  margin: 2px 0 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(91, 113, 135, 0.38);
  background: linear-gradient(180deg, rgba(33, 49, 67, 0.8), rgba(24, 37, 53, 0.94));
}

.blog-page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.blog-page-tools {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(141, 185, 217, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.86)),
    linear-gradient(180deg, rgba(229, 237, 244, 0.35), rgba(255, 255, 255, 0.08));
}

.blog-page-tools--hero {
  margin-top: clamp(14px, 2.4vw, 26px);
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 28px;
}

.blog-page-tools__intro {
  display: grid;
  align-content: start;
  gap: 10px;
}

.blog-page-tools__headline {
  max-width: 13.2ch;
  margin: 0;
  font-size: clamp(1.92rem, 3.05vw, 2.95rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.blog-page-tools__lede {
  max-width: 34rem;
  margin: 0;
  color: rgba(92, 106, 123, 0.96);
  font-size: 0.95rem;
  line-height: 1.56;
}

.blog-page-tools__support {
  max-width: 31rem;
  margin: 0;
  color: rgba(112, 126, 141, 0.94);
  font-size: 0.88rem;
  line-height: 1.54;
}

.blog-page-tools__intro h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.blog-page-tools__intro p:last-child {
  margin: 0;
  color: rgba(97, 110, 126, 0.94);
}

.blog-page-tools__controls {
  display: grid;
  grid-template-columns: minmax(160px, 184px) minmax(0, 1fr);
  grid-template-areas:
    "count search"
    "topics topics";
  gap: 12px 14px;
  align-content: start;
  align-items: start;
}

.blog-page-tools__count {
  grid-area: count;
  display: inline-grid;
  justify-items: start;
  align-content: start;
  gap: 6px;
  width: 100%;
  min-height: 0;
  padding: 16px 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(208, 220, 230, 0.84);
  background:
    radial-gradient(circle at top right, rgba(142, 190, 219, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 254, 0.82));
  box-shadow: 0 16px 32px rgba(17, 31, 46, 0.06);
}

.blog-page-tools__count strong {
  font-size: clamp(1.78rem, 3.2vw, 2.05rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.blog-page-tools__count span {
  color: rgba(97, 110, 126, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

.blog-search--page {
  grid-area: search;
  display: flex;
  align-items: center;
  min-height: 0;
  min-width: 0;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(208, 220, 230, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 254, 0.8));
  box-shadow: 0 14px 30px rgba(17, 31, 46, 0.05);
}

.blog-search--page input {
  min-width: 0;
  font-size: 0.96rem;
}

.blog-search--page .cta {
  min-width: 102px;
  min-height: 44px;
}

.blog-topic-nav {
  grid-area: topics;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(209, 220, 231, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 250, 253, 0.64));
  box-shadow: 0 12px 28px rgba(17, 31, 46, 0.04);
}

.blog-topic-nav__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(205, 216, 226, 0.88);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(24, 34, 46, 0.92);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.blog-topic-nav__chip:hover,
.blog-topic-nav__chip:focus-visible,
.blog-topic-nav__chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(121, 211, 236, 0.7);
  background: rgba(14, 31, 47, 0.96);
  color: rgba(245, 249, 252, 0.98);
  box-shadow: var(--shadow-sm);
}

.blog-editorial,
.blog-archive {
  display: grid;
  gap: 24px;
}

.blog-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.blog-lead {
  display: grid;
  grid-template-rows: minmax(176px, 244px) auto;
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(39, 59, 82, 0.72);
  box-shadow: 0 22px 52px rgba(13, 23, 36, 0.16);
  background:
    linear-gradient(180deg, rgba(17, 28, 42, 0.98), rgba(15, 24, 37, 1));
}

.blog-lead__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 176px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(138, 197, 226, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(30, 47, 66, 0.96), rgba(18, 30, 44, 0.96));
}

.blog-lead__media::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: clamp(88px, 18vw, 164px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 217, 242, 0.42));
  z-index: 1;
}

.blog-lead__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 23, 34, 0.06), rgba(14, 23, 34, 0.36)),
    linear-gradient(0deg, rgba(14, 23, 34, 0.18), transparent 42%);
  z-index: 1;
}

.blog-lead__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.015);
  font-size: 0;
  color: transparent;
}

.blog-lead__body {
  display: grid;
  gap: 12px;
  padding: 19px 22px 18px;
  color: rgba(245, 248, 252, 0.98);
  background:
    linear-gradient(180deg, rgba(16, 27, 40, 0.94), rgba(13, 23, 35, 1));
}

.blog-lead__body::before {
  content: "";
  display: block;
  width: min(100%, 112px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 179, 99, 0.84), rgba(109, 208, 234, 0.28));
}

.blog-lead__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.blog-lead__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(244, 178, 95, 0.16);
  color: rgba(244, 178, 95, 0.98);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-lead .blog-card__meta {
  color: rgba(152, 202, 231, 0.96);
}

.blog-lead__body h3,
.blog-support__item-body h4,
.blog-card--archive .blog-card__body h3 {
  max-width: none;
  margin: 0;
  letter-spacing: -0.05em;
}

.blog-lead__body h3 {
  font-size: clamp(1.62rem, 2.6vw, 2.36rem);
  line-height: 0.93;
  color: rgba(246, 250, 253, 0.99) !important;
  text-wrap: balance;
}

.blog-lead__body h3 a,
.blog-support__item-body h4 a,
.blog-card--archive .blog-card__body h3 a {
  color: inherit;
}

.blog-lead__body p {
  max-width: 38rem;
  margin: 0;
  color: rgba(211, 221, 230, 0.92);
  font-size: 0.94rem;
  line-height: 1.58;
}

.blog-lead__body .blog-card__link {
  color: rgba(243, 247, 250, 0.98);
}

.blog-support {
  display: grid;
  align-content: start;
  gap: 12px;
}

.blog-support__intro,
.blog-pagination__state {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(216, 226, 234, 0.72);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 30px rgba(105, 133, 154, 0.08);
}

.blog-support__intro h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.blog-support__intro p:last-child {
  margin: 0;
  color: rgba(96, 109, 125, 0.94);
}

.blog-support__item {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 254, 0.84));
  box-shadow: 0 14px 28px rgba(107, 135, 156, 0.08);
}

.blog-support__item-media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background:
    radial-gradient(circle at 24% 18%, rgba(176, 214, 233, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(233, 240, 246, 0.94), rgba(219, 230, 238, 0.9));
}

.blog-support__item-media::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 191, 222, 0.4), transparent 78%);
  z-index: 1;
}

.blog-support__item-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 174px;
  object-fit: cover;
  object-position: center;
  font-size: 0;
  color: transparent;
}

.blog-support__item-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 20px;
}

.blog-support__index {
  color: rgba(104, 132, 162, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-support__item-body h4 {
  font-size: 1.48rem;
  line-height: 1.02;
  text-wrap: balance;
}

.blog-support__item-body p {
  margin: 0;
  color: rgba(97, 110, 126, 0.95);
  font-size: 0.94rem;
  line-height: 1.58;
}

.blog-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card--archive {
  padding: 0;
  border-radius: 28px;
  border: 1px solid rgba(218, 228, 236, 0.82);
  box-shadow: 0 18px 40px rgba(108, 136, 157, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.9));
}

.blog-card--archive:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: stretch;
}

.blog-card--archive:first-child .blog-card__media {
  min-height: 100%;
}

.blog-card--archive:first-child .blog-card__media img {
  height: 100%;
  min-height: 100%;
}

.blog-card--archive .blog-card__body {
  gap: 15px;
  padding: 24px;
}

.blog-card--archive .blog-card__body h3 {
  font-size: 1.72rem;
  line-height: 0.98;
  text-wrap: balance;
}

.blog-card--archive .blog-card__body p {
  margin: 0;
  color: rgba(97, 110, 126, 0.95);
  line-height: 1.64;
}

.blog-card--archive:first-child .blog-card__body {
  align-content: center;
  padding: 30px 30px 28px;
}

.blog-card--archive:first-child .blog-card__body h3 {
  font-size: clamp(2rem, 2.9vw, 2.65rem);
  line-height: 0.96;
}

.blog-card__link {
  font-weight: 800;
}

.blog-empty {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.9));
}

.blog-empty h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.blog-empty p {
  max-width: 44rem;
  margin: 0;
  color: rgba(97, 110, 126, 0.96);
}

.blog-pagination {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 255, 0.84));
}

.blog-pagination__state {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(27, 36, 48, 0.94);
}

.blog-pagination__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.page-blog .callback-widget {
  right: 18px;
  bottom: 18px;
}

.page-blog .callback-widget__fab {
  inline-size: 56px;
  block-size: 56px;
  box-shadow: 0 16px 34px rgba(17, 33, 47, 0.2);
}

@media (max-width: 1180px) {
  .blog-page-hero,
  .blog-editorial__grid {
    grid-template-columns: 1fr;
  }

  .blog-page-hero__poster,
  .blog-page-hero__brief {
    min-height: 0;
  }

  .blog-page-tools {
    grid-template-columns: 1fr;
  }

  .blog-page-tools--hero {
    grid-template-columns: 1fr;
  }

  .blog-page-tools__controls {
    grid-template-columns: 1fr;
    grid-template-areas:
      "count"
      "search"
      "topics";
  }

  .blog-page-tools__count,
  .blog-search--page {
    min-height: 0;
  }

  .blog-card--archive:first-child {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .page-blog .hero-shell--blog-page {
    padding-top: 18px;
  }

  .blog-page-hero {
    gap: 20px;
  }

  .blog-page-hero__poster,
  .blog-page-hero__brief,
  .blog-page-tools,
  .blog-empty,
  .blog-pagination {
    padding: 22px;
    border-radius: 26px;
  }

  .blog-page-hero__poster h1 {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .blog-page-tools__headline {
    font-size: clamp(2.35rem, 10vw, 3.9rem);
    max-width: none;
  }

  .blog-page-hero__brief h2 {
    max-width: none;
  }

  .blog-page-hero__poster .hero-shell__lede,
  .blog-page-tools__lede,
  .blog-page-tools__support,
  .blog-page-hero__brief p,
  .blog-page-tools__intro p:last-child,
  .blog-support__item-body p,
  .blog-card--archive .blog-card__body p,
  .blog-empty p {
    font-size: 0.98rem;
  }

  .page-blog .callback-widget {
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .blog-support__item {
    grid-template-columns: 1fr;
  }

  .blog-support__item-media img {
    min-height: 190px;
  }

  .blog-grid--archive {
    grid-template-columns: 1fr;
  }

  .blog-pagination {
    grid-template-columns: 1fr;
  }

  .blog-pagination__actions {
    justify-content: stretch;
  }

  .blog-pagination__actions .cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .blog-page-hero__poster::before,
  .blog-page-hero__visual {
    display: none;
  }

  .blog-page-hero__poster,
  .blog-page-hero__brief,
  .blog-page-tools,
  .blog-empty,
  .blog-pagination {
    padding: 20px;
    border-radius: 24px;
  }

  .blog-page-hero__brief-list li {
    padding: 13px 0 13px 26px;
    border-radius: 0;
    font-size: 0.9rem;
  }

  .blog-page-hero__brief h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .blog-page-hero__brief p {
    line-height: 1.58;
  }

.blog-search--page {
    flex-direction: column;
    align-items: stretch;
  }

  .page-catalog-viewer .catalog-viewer__top,
  .page-catalog-viewer .catalog-viewer__toolbar,
  .page-catalog-viewer .catalog-viewer__reader {
    grid-template-columns: 1fr;
  }
}

/* April 2026: shared premium language for service, industry, info and document pages */
.service-page-view .hero-shell--service-page .hero-shell__grid,
.industry-page-view .hero-shell--industry-page .hero-shell__grid,
.info-page-view .hero-shell--info-page .hero-shell__grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(22px, 2.6vw, 34px);
}

.service-page-view .hero-shell__content,
.industry-page-view .hero-shell__content,
.info-page-view .hero-shell__content {
  min-height: clamp(560px, 50vw, 700px);
  padding: clamp(30px, 4.2vw, 48px);
  gap: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(242, 247, 251, 0.9));
  box-shadow: 0 26px 60px rgba(88, 119, 146, 0.12);
}

.service-page-view .hero-shell__content::before,
.industry-page-view .hero-shell__content::before,
.info-page-view .hero-shell__content::before {
  content: "";
  position: absolute;
  inset: 22px 26px auto auto;
  width: clamp(96px, 18vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 30, 42, 0.18));
}

.service-page-view .hero-shell__content::after,
.industry-page-view .hero-shell__content::after,
.info-page-view .hero-shell__content::after {
  content: "";
  position: absolute;
  inset: auto auto 26px 28px;
  width: clamp(140px, 24vw, 260px);
  height: clamp(40px, 8vw, 82px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(120, 160, 194, 0.16), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.service-page-view .hero-shell__content h1,
.industry-page-view .hero-shell__content h1,
.info-page-view .hero-shell__content h1 {
  max-width: none;
  font-size: clamp(2.58rem, 4.86vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.service-page-view .hero-shell__lede,
.industry-page-view .hero-shell__lede,
.info-page-view .hero-shell__lede {
  max-width: 38ch;
  color: rgba(84, 101, 118, 0.92);
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  line-height: 1.72;
}

.service-page-view .hero-shell__actions,
.industry-page-view .hero-shell__actions,
.info-page-view .hero-shell__actions {
  gap: 14px;
}

.service-page__hero-meta,
.industry-page__hero-focus,
.info-page__hero-map {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(18, 30, 42, 0.08);
}

.service-page__hero-meta div,
.industry-page__hero-focus-item,
.info-page__hero-map-item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 118px;
  min-width: 0;
  padding: 16px 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(214, 226, 235, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 249, 252, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-page__hero-meta div::before,
.industry-page__hero-focus-item::before,
.info-page__hero-map-item::before {
  content: "";
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(238, 174, 98, 0.9), rgba(128, 171, 205, 0.4));
}

.service-page__hero-meta span,
.industry-page__hero-focus-item span,
.info-page__hero-map-item span {
  color: rgba(120, 138, 154, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-page__hero-meta strong {
  font-size: 1.02rem;
  line-height: 1.56;
  color: rgba(18, 30, 42, 0.94);
}

.industry-page__hero-focus-item strong,
.info-page__hero-map-item strong {
  color: rgba(18, 30, 42, 0.94);
  font-size: 1rem;
  line-height: 1.52;
  overflow-wrap: anywhere;
}

.service-page__dossier,
.industry-page__panel,
.info-page__panel {
  gap: 20px;
  padding: clamp(26px, 3.2vw, 36px);
  background:
    radial-gradient(circle at top right, rgba(104, 157, 210, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(10, 18, 29, 0.99), rgba(23, 36, 51, 0.98));
  box-shadow: 0 28px 64px rgba(14, 28, 41, 0.24);
}

.service-page__dossier .hero-panel__label,
.industry-page__panel .hero-panel__label,
.info-page__panel .hero-panel__label {
  color: rgba(212, 221, 229, 0.94);
  letter-spacing: 0.24em;
}

.service-page__dossier .hero-shell__panel-copy,
.industry-page__panel .hero-shell__panel-copy,
.info-page__panel .hero-shell__panel-copy {
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page__dossier .hero-shell__panel-copy h2,
.industry-page__panel .hero-shell__panel-copy h2,
.info-page__panel .hero-shell__panel-copy h2 {
  font-size: clamp(1.72rem, 2.36vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.service-page__dossier .hero-shell__panel-copy p,
.industry-page__panel .hero-shell__panel-copy p,
.info-page__panel .hero-shell__panel-copy p {
  color: rgba(226, 235, 243, 0.84);
  font-size: 0.98rem;
  line-height: 1.58;
}

.service-page__spec-strip {
  display: grid;
  gap: 10px;
}

.service-page__spec-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(186, 214, 237, 0.12);
}

.service-page__spec-item span {
  color: rgba(165, 184, 203, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-page__spec-item strong {
  color: rgba(247, 251, 253, 0.94);
  font-size: 1rem;
  line-height: 1.46;
}

.service-page__dossier .chip-list,
.industry-page__panel .chip-list {
  gap: 12px;
}

.service-page__dossier .chip-list li,
.industry-page__panel .chip-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(172, 196, 217, 0.16);
}

.industry-page__panel-points {
  display: grid;
  gap: 10px;
}

.industry-page__panel-point {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-page__panel-point:first-child {
  padding-top: 0;
  border-top: 0;
}

.industry-page__panel-point span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 34px;
  block-size: 34px;
  border-radius: 999px;
  border: 1px solid rgba(179, 203, 223, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(156, 178, 198, 0.94);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.industry-page__panel-point strong {
  color: rgba(244, 249, 252, 0.94);
  font-size: 0.98rem;
  line-height: 1.56;
  font-weight: 600;
}

.service-page__dossier .hero-shell__visual img,
.industry-page__panel .hero-shell__visual img,
.info-page__panel .hero-shell__visual img {
  height: clamp(196px, 24vw, 266px);
}

.service-page__benefits-section .section-heading,
.industry-page__services .section-heading,
.info-page__sections .section-heading,
.info-page__process .section-heading {
  margin-bottom: 24px;
}

.service-page__benefits-section .metrics-grid {
  counter-reset: service-benefits;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-page__benefits-section .metric-card,
.info-page__process .timeline-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 253, 0.86));
}

.service-page__benefits-section .metric-card {
  position: relative;
  counter-increment: service-benefits;
  overflow: hidden;
  min-height: clamp(190px, 18vw, 228px);
  padding: 28px 30px 30px;
  border: 1px solid rgba(210, 223, 234, 0.76);
  box-shadow: 0 22px 46px rgba(107, 137, 161, 0.1);
  background:
    radial-gradient(circle at top right, rgba(124, 169, 205, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.88));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-page__benefits-section .metric-card::before {
  content: counter(service-benefits, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 40px;
  block-size: 40px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.1);
  color: rgba(121, 143, 163, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.service-page__benefit-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(134, 176, 211, 0.16), rgba(134, 176, 211, 0));
  pointer-events: none;
}

.service-page__benefit-line {
  display: inline-flex;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #efb66e, #cfdbe6);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-page__benefits-section .metric-card h3 {
  max-width: 18ch;
  font-size: clamp(1.28rem, 1.75vw, 1.78rem);
  line-height: 1.28;
  text-wrap: balance;
}

.service-page__benefits-section .metric-card:nth-child(3),
.service-page__benefits-section .metric-card:nth-child(4) {
  min-height: clamp(176px, 16vw, 208px);
}

.service-page__detail .detail-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 18px;
  align-items: stretch;
}

.service-page__detail .detail-card,
.info-page__sections .detail-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 253, 0.86));
}

.service-page__detail .detail-card:last-child {
  background:
    radial-gradient(circle at top right, rgba(131, 171, 205, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(251, 253, 255, 0.94), rgba(242, 248, 252, 0.88));
}

.service-page__detail-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(214, 225, 234, 0.82);
  box-shadow: 0 24px 54px rgba(109, 139, 162, 0.1);
}

.service-page__detail-card h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.68rem, 2.3vw, 2.24rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.service-page__detail-card--specs {
  background:
    radial-gradient(circle at top right, rgba(141, 181, 214, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.9));
}

.service-page__detail-card--specs::after {
  content: none;
}

.service-page__detail-card--usage {
  background:
    radial-gradient(circle at top right, rgba(126, 173, 210, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(249, 252, 255, 0.94), rgba(239, 246, 251, 0.9));
}

.service-page__detail .spec-list div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(209, 221, 231, 0.82);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 249, 252, 0.68));
}

.service-page__detail .spec-list div:first-child {
  padding-top: 16px;
}

.service-page__detail .spec-list div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 3px;
  height: calc(100% - 36px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(131, 191, 223, 0.98), rgba(207, 221, 231, 0.2));
}

.service-page__detail .spec-list div:first-child::before {
  top: 18px;
}

.service-page__detail .spec-list dt {
  padding-left: 14px;
  color: rgba(112, 126, 141, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.45;
}

.service-page__detail .spec-list dd {
  margin: 0;
  color: rgba(20, 33, 47, 0.92);
  line-height: 1.56;
}

.service-page__usage-list {
  gap: 12px;
  margin-top: 0;
  counter-reset: service-usage;
}

.service-page__usage-list li {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(207, 220, 230, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 250, 253, 0.6));
  color: rgba(21, 35, 50, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.service-page__usage-list li::before {
  content: counter(service-usage, decimal-leading-zero);
  counter-increment: service-usage;
  inline-size: 44px;
  block-size: 44px;
  margin-top: 0;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(248, 251, 253, 0.94);
  border: 1px solid rgba(18, 30, 42, 0.08);
  color: rgba(118, 141, 161, 0.96);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 8px 18px rgba(124, 149, 170, 0.08);
}

.service-page__contact .lead-form,
.industry-page__contact .lead-form,
.info-page__contact .lead-form {
  background:
    radial-gradient(circle at top right, rgba(125, 168, 205, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 253, 0.86));
}

.service-page__contact .lead-form__intro h2,
.industry-page__contact .lead-form__intro h2,
.info-page__contact .lead-form__intro h2 {
  max-width: 10ch;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.service-page__faq .faq-block {
  border-radius: 30px;
}

.industry-page__cards {
  gap: 20px;
}

.industry-page__cards .service-card {
  min-height: 368px;
  grid-template-rows: auto minmax(190px, 1fr);
  padding: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(128, 168, 203, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 252, 0.88));
  box-shadow: 0 18px 42px rgba(116, 144, 167, 0.12);
}

.industry-page__cards .service-card__copy {
  padding: 26px 26px 18px;
  gap: 14px;
}

.industry-page__cards .service-card__media {
  border-radius: 0 0 30px 30px;
}

.industry-page__cards .service-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  grid-template-rows: none;
  min-height: 430px;
}

.industry-page__cards .service-card:first-child .service-card__copy {
  padding: clamp(30px, 3.5vw, 40px);
  align-content: center;
}

.industry-page__cards .service-card:first-child .service-card__copy h3 {
  font-size: clamp(2.16rem, 3.1vw, 3.18rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.industry-page__cards .service-card:first-child .service-card__media {
  border-radius: 0 32px 32px 0;
}

.industry-page__cards .service-card a {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.1);
  color: rgba(18, 30, 42, 0.92);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.industry-page__cards .service-card a:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 116, 149, 0.2);
  box-shadow: 0 10px 22px rgba(20, 34, 50, 0.08);
}

.info-page__sections .detail-stack {
  counter-reset: info-sections;
  gap: 20px;
}

.info-page__sections .detail-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: clamp(88px, 9vw, 128px);
  box-shadow: 0 20px 46px rgba(110, 140, 163, 0.1);
}

.info-page__sections .detail-card::before {
  counter-increment: info-sections;
  content: counter(info-sections, decimal-leading-zero);
  position: absolute;
  left: 30px;
  top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 42px;
  block-size: 42px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.14);
  color: rgba(116, 139, 160, 0.96);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.info-page__sections .detail-card::after {
  content: "";
  position: absolute;
  left: 50px;
  top: 82px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, rgba(116, 139, 160, 0.22), rgba(116, 139, 160, 0));
}

.info-page__sections .detail-card h2 {
  font-size: clamp(1.56rem, 2.24vw, 2.26rem);
  line-height: 1.04;
}

.info-page__process .timeline-grid {
  gap: 18px;
}

.info-page__process .timeline-card {
  gap: 14px;
  box-shadow: 0 18px 42px rgba(112, 142, 164, 0.1);
}

.info-page__process .timeline-card p {
  color: rgba(86, 103, 120, 0.94);
  line-height: 1.66;
}

.page-catalogs .catalogs-hero__content {
  padding: clamp(30px, 4vw, 46px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9));
  box-shadow: 0 24px 44px rgba(115, 147, 170, 0.12);
}

.page-catalogs .catalogs-hero__content h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.page-catalogs .catalogs-hero__inline {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(243, 247, 250, 0.84);
  border: 1px solid rgba(18, 30, 42, 0.08);
}

.page-catalogs .catalog-grid--priority {
  gap: 18px;
}

.page-catalogs .catalog-card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 253, 0.86));
  box-shadow: var(--shadow-sm);
}

.page-catalogs .catalog-card--priority:first-child {
  grid-column: 1 / -1;
}

.page-catalogs .catalog-card__body {
  gap: 12px;
}

.page-catalogs .catalog-title {
  font-size: clamp(1.32rem, 2.2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-catalogs .catalog-actions {
  margin-top: auto;
}

.page-catalogs .catalogs-request-panel,
.page-catalogs .catalogs-quote-card {
  border-radius: 30px;
}

.page-catalog-viewer .catalog-viewer__shell {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 252, 0.88));
  box-shadow: 0 28px 48px rgba(111, 141, 165, 0.12);
}

.page-catalog-viewer .catalog-viewer__top {
  gap: 20px;
  margin-bottom: 24px;
}

.page-catalog-viewer .catalog-viewer__copy h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.page-catalog-viewer .catalog-viewer__meta {
  gap: 14px;
}

.page-catalog-viewer .catalog-viewer__meta-item,
.page-catalog-viewer .catalog-viewer__toolbar,
.page-catalog-viewer .catalog-flipbook__page {
  border-radius: 24px;
}

.page-catalog-viewer .catalog-viewer__stage {
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 28px;
  background: rgba(234, 241, 246, 0.72);
  border: 1px solid rgba(18, 30, 42, 0.08);
}

.page-catalog-viewer .catalog-viewer__reader {
  gap: 18px;
}

.page-requisites .requisites-hero__content,
.page-requisites .requisites-card,
.page-requisites .requisites-note,
.page-privacy-policy .requisites-card,
.page-privacy-policy .policy-note,
.page-privacy-policy .policy-sources-card {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9));
}

.page-requisites .requisites-hero,
.page-privacy-policy .requisites-hero__grid {
  gap: 28px;
}

.page-requisites .requisites-cta-card,
.page-privacy-policy .requisites-hero__panel {
  box-shadow: 0 26px 48px rgba(10, 18, 28, 0.16);
}

.privacy-premium {
  padding-bottom: 92px;
}

.page-privacy-policy .requisites-hero,
.page-privacy-policy .privacy-nav-section,
.page-privacy-policy .requisites-main,
.page-privacy-policy .requisites-extra {
  display: block;
}

.page-privacy-policy .requisites-hero {
  padding: clamp(30px, 4vw, 46px) 0 18px;
}

.page-privacy-policy .requisites-hero > .container,
.page-privacy-policy .privacy-nav-section > .container,
.page-privacy-policy .requisites-main > .container,
.page-privacy-policy .requisites-extra > .container {
  width: min(100% - 40px, var(--container));
  max-width: var(--container);
  margin: 0 auto;
}

.page-privacy-policy .requisites-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: start;
}

.page-privacy-policy .requisites-hero__content {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: clamp(28px, 3.6vw, 40px);
  border-radius: 32px;
}

.page-privacy-policy .requisites-hero__content h1 {
  max-width: 10.6ch;
  margin: 0;
  font-size: clamp(2.7rem, 4.6vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.page-privacy-policy .requisites-hero__content .lede {
  max-width: 38ch;
  margin: 0;
  color: rgba(78, 95, 111, 0.92);
  font-size: clamp(0.98rem, 1.15vw, 1.05rem);
  line-height: 1.68;
}

.page-privacy-policy .policy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-privacy-policy .policy-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(19, 31, 43, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(27, 39, 52, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-privacy-policy .requisites-hero__actions {
  margin-top: 4px;
}

.page-privacy-policy .requisites-hero__panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 32px;
}

.page-privacy-policy .requisites-hero__panel h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-privacy-policy .requisites-hero__meta {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-privacy-policy .requisites-hero__meta li {
  color: rgba(221, 231, 240, 0.88);
  line-height: 1.64;
}

.page-privacy-policy .policy-panel-section {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.page-privacy-policy .policy-panel-section h3 {
  margin: 0;
  color: rgba(247, 251, 253, 0.96);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.page-privacy-policy .policy-controller {
  display: grid;
  gap: 0;
  margin: 0;
}

.page-privacy-policy .policy-controller__row {
  display: grid;
  grid-template-columns: minmax(118px, 142px) minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.page-privacy-policy .policy-controller__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-privacy-policy .policy-controller dt {
  color: rgba(171, 189, 206, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-privacy-policy .policy-controller dd,
.page-privacy-policy .policy-transition p,
.page-privacy-policy .policy-updated--panel {
  margin: 0;
  color: rgba(236, 243, 248, 0.9);
  line-height: 1.62;
}

.page-privacy-policy .policy-inline-link {
  color: rgba(201, 232, 255, 0.96);
  text-decoration: underline;
  text-decoration-color: rgba(152, 210, 255, 0.42);
  text-underline-offset: 0.18em;
}

.page-privacy-policy .policy-inline-link--action {
  font-weight: 700;
}

.page-privacy-policy .privacy-nav-section {
  padding: 0 0 22px;
}

.page-privacy-policy .policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 30, 42, 0.08);
  box-shadow: 0 20px 36px rgba(107, 136, 159, 0.08);
}

.page-privacy-policy .policy-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(245, 249, 252, 0.92);
  color: rgba(36, 51, 66, 0.88);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

@media (max-width: 1100px) {
  .page-privacy-policy .policy-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-privacy-policy .policy-nav a {
    justify-content: center;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .page-privacy-policy .policy-nav {
    grid-template-columns: minmax(0, 1fr);
  }
}

.page-privacy-policy .policy-nav a:hover,
.page-privacy-policy .policy-nav a:focus-visible {
  background: rgba(18, 30, 42, 0.08);
  color: rgba(18, 30, 42, 0.96);
  transform: translateY(-1px);
}

.page-privacy-policy .requisites-main {
  padding: 0 0 22px;
}

.page-privacy-policy .requisites-main__grid,
.page-privacy-policy .requisites-extra__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.page-privacy-policy .policy-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 2.8vw, 32px);
  border-radius: 30px;
  box-shadow: 0 20px 38px rgba(111, 141, 165, 0.08);
}

.page-privacy-policy .policy-card h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.02;
}

.page-privacy-policy .policy-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(19, 31, 43, 0.96), rgba(33, 50, 66, 0.92));
  color: rgba(247, 251, 253, 0.96);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-privacy-policy .policy-list,
.page-privacy-policy .policy-sources {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-privacy-policy .policy-list li,
.page-privacy-policy .policy-sources li {
  position: relative;
  padding-left: 18px;
  color: rgba(73, 90, 106, 0.94);
  line-height: 1.68;
}

.page-privacy-policy .policy-list li::before,
.page-privacy-policy .policy-sources li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 0 5px rgba(240, 181, 109, 0.12);
}

.page-privacy-policy .policy-note,
.page-privacy-policy .policy-sources-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 2.8vw, 30px);
  border-radius: 30px;
  box-shadow: 0 20px 38px rgba(111, 141, 165, 0.08);
}

.page-privacy-policy .policy-note h3,
.page-privacy-policy .policy-sources-card h3 {
  margin: 0;
  font-size: clamp(1.32rem, 1.8vw, 1.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.page-privacy-policy .policy-note p,
.page-privacy-policy .policy-sources a {
  color: rgba(77, 93, 108, 0.92);
  line-height: 1.68;
}

.page-privacy-policy .policy-sources a {
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 30, 42, 0.12);
}

.page-privacy-policy .policy-sources a:hover,
.page-privacy-policy .policy-sources a:focus-visible {
  color: rgba(18, 30, 42, 0.96);
  border-bottom-color: rgba(18, 30, 42, 0.36);
}

.page-privacy-policy .policy-updated {
  margin: 2px 0 0;
  color: rgba(97, 113, 128, 0.88);
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .page-privacy-policy .requisites-hero__grid,
  .page-privacy-policy .requisites-main__grid,
  .page-privacy-policy .requisites-extra__grid {
    grid-template-columns: 1fr;
  }

  .page-privacy-policy .requisites-hero__content h1 {
    max-width: 11.4ch;
    font-size: clamp(2.28rem, 6vw, 3.5rem);
  }

  .page-privacy-policy .policy-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: thin;
  }

  .page-privacy-policy .policy-nav a {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .privacy-premium {
    padding-bottom: 72px;
  }

  .page-privacy-policy .requisites-hero {
    padding-top: 20px;
  }

  .page-privacy-policy .requisites-hero__content,
  .page-privacy-policy .requisites-hero__panel,
  .page-privacy-policy .policy-card,
  .page-privacy-policy .policy-note,
  .page-privacy-policy .policy-sources-card {
    padding: 20px;
    border-radius: 26px;
  }

  .page-privacy-policy .requisites-hero__content h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 2.85rem);
    line-height: 0.94;
  }

  .page-privacy-policy .requisites-hero__content .lede {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .page-privacy-policy .policy-controller__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .page-privacy-policy .policy-chips {
    gap: 8px;
  }

  .page-privacy-policy .policy-chips li {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
  }
}

.services-page-view .hero-shell--services-page .hero-shell__grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 32px;
  align-items: stretch;
}

.services-page-view .hero-shell__content {
  min-height: clamp(500px, 44vw, 610px);
  padding: clamp(34px, 4vw, 52px);
  gap: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.97), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.93));
}

.services-page-view .hero-shell__content h1 {
  max-width: none;
  font-size: clamp(2.42rem, 4.18vw, 4.08rem);
  line-height: 0.93;
  letter-spacing: -0.082em;
  text-wrap: balance;
}

.services-page-view .hero-shell__lede {
  max-width: 39ch;
  color: rgba(79, 97, 114, 0.92);
  font-size: clamp(0.98rem, 1.08vw, 1.06rem);
  line-height: 1.72;
}

.services-page-view .hero-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.services-page__hero-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.services-page__hero-route-item {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(214, 224, 231, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 250, 0.92)),
    linear-gradient(180deg, rgba(221, 230, 236, 0.18), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 36px rgba(75, 100, 124, 0.08);
}

.services-page__hero-route-item span {
  color: rgba(128, 145, 161, 0.94);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.services-page__hero-route-item strong {
  color: rgba(26, 39, 53, 0.96);
  font-size: clamp(1rem, 1.04vw, 1.08rem);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.services-page__panel {
  gap: 20px;
  padding: clamp(28px, 3vw, 36px);
  background:
    radial-gradient(circle at top right, rgba(101, 160, 216, 0.18), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(63, 112, 157, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(11, 20, 31, 0.99), rgba(22, 35, 48, 0.98));
  box-shadow: 0 26px 46px rgba(9, 16, 24, 0.16);
  overflow: hidden;
}

.services-page__panel .hero-panel__label {
  color: rgba(214, 223, 231, 0.96);
  letter-spacing: 0.24em;
}

.services-page__panel .hero-shell__panel-copy {
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-page__panel .hero-shell__panel-copy h2 {
  font-size: clamp(1.54rem, 2vw, 2.08rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.services-page__panel .hero-shell__panel-copy p,
.services-page__panel .bullet-list--inverse li {
  color: rgba(223, 232, 241, 0.84);
}

.services-page__panel .bullet-list--inverse {
  gap: 8px;
  margin-top: 8px;
  border-top: 0;
}

.services-page__panel .bullet-list--inverse li {
  min-height: auto;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.016);
  color: rgba(241, 246, 250, 0.96);
  font-size: clamp(0.96rem, 1.02vw, 1.04rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.42;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.services-page__panel .bullet-list--inverse li::before {
  inline-size: 9px;
  block-size: 9px;
  margin-top: 0.4rem;
  background: #f4b463;
  box-shadow:
    0 0 0 5px rgba(244, 180, 99, 0.14),
    0 0 12px rgba(244, 180, 99, 0.14);
}

.services-page__panel .hero-shell__visual {
  margin-top: auto;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(130, 173, 209, 0.08));
}

.services-page__panel .hero-shell__visual img {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 286px);
  object-fit: cover;
  object-position: center;
}

.services-page__overview .section-heading,
.services-page__crosslinks .detail-grid {
  margin-bottom: 26px;
}

.services-page__overview-shell {
  display: grid;
  gap: 28px;
}

.services-page__overview .section-heading {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 32px;
  align-items: start;
}

.services-page__overview .section-heading > div {
  display: grid;
  gap: 10px;
}

.services-page__editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.services-page__overview .section-heading h2,
.services-page__cross-card h2 {
  max-width: none;
}

.services-page__overview .section-heading h2 {
  font-size: clamp(1.98rem, 3.16vw, 3.28rem);
  line-height: 0.94;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

.services-page__overview .section-heading__aside {
  max-width: 38ch;
  padding-left: 18px;
  border-left: 1px solid rgba(18, 30, 42, 0.1);
  color: rgba(88, 104, 120, 0.92);
  font-size: clamp(0.94rem, 0.98vw, 1rem);
  line-height: 1.68;
}

.services-page__editorial-stage {
  display: grid;
  gap: 24px;
}

.services-page__feature,
.services-page__rail-item,
.services-page__subrail-item,
.services-page__cross-card,
.services-page__cta-shell {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.services-page__feature {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(300px, 360px) minmax(0, 1fr);
  height: 100%;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(177, 209, 235, 0.18), transparent 28%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9));
  box-shadow: 0 28px 48px rgba(111, 141, 165, 0.12);
}

.services-page__feature-copy {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 20px;
  padding: clamp(34px, 3vw, 42px);
  border-top: 1px solid rgba(18, 30, 42, 0.06);
}

.services-page__feature-copy-main {
  display: grid;
  align-content: start;
  gap: 16px;
}

.services-page__feature-copy .service-card__eyebrow,
.services-page__rail-item .service-card__eyebrow,
.services-page__subrail-item .service-card__eyebrow {
  color: rgba(245, 168, 98, 0.96);
  letter-spacing: 0.2em;
}

.services-page__feature-copy h3 {
  max-width: none;
  font-size: clamp(2rem, 2.96vw, 3.18rem);
  line-height: 0.92;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

.services-page__feature-copy p:last-of-type {
  max-width: 22ch;
  color: rgba(81, 98, 114, 0.92);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.74;
}

.services-page__feature-copy-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(18, 30, 42, 0.08);
}

.services-page__feature-copy .cta {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  margin-top: 0;
}

.services-page__feature-media {
  order: -1;
  position: relative;
  min-height: 100%;
  padding: 26px 26px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%),
    radial-gradient(circle at 15% 18%, rgba(19, 35, 51, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(232, 240, 246, 0.92), rgba(214, 227, 236, 0.88));
}

.services-page__feature-media::after {
  content: "";
  position: absolute;
  inset: 26px 26px 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.services-page__feature-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 28px 28px 0 0;
  object-fit: cover;
  object-position: center;
}

.services-page__rail {
  display: grid;
  grid-template-rows: auto repeat(3, minmax(0, 1fr));
  align-content: stretch;
  gap: 12px;
  height: 100%;
}

.services-page__rail-head {
  padding: 4px 4px 8px;
}

.services-page__rail-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: center;
  height: 100%;
  padding: 28px 28px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 252, 0.88));
  box-shadow: var(--shadow-sm);
}

.services-page__rail-item > div {
  display: grid;
  gap: 10px;
}

.services-page__rail-item h3 {
  max-width: none;
  font-size: clamp(1.34rem, 1.72vw, 1.82rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.services-page__rail-item p:last-of-type {
  max-width: 29ch;
  color: rgba(92, 107, 122, 0.92);
  font-size: 0.94rem;
  line-height: 1.62;
}

.services-page__rail-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

.services-page__rail-item p a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 109, 142, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.services-page__subrail {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 2.8vw, 32px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 251, 0.86));
  box-shadow: 0 24px 42px rgba(103, 132, 156, 0.1);
}

.services-page__subrail-head {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  gap: 24px;
  align-items: start;
  padding: 2px 4px 0;
}

.services-page__subrail-head > div {
  display: grid;
  gap: 10px;
}

.services-page__subrail-head h3 {
  font-size: clamp(1.56rem, 2.4vw, 2.46rem);
  line-height: 0.96;
  letter-spacing: -0.056em;
  text-wrap: balance;
}

.services-page__subrail-aside {
  max-width: 36ch;
  justify-self: end;
  color: rgba(89, 105, 121, 0.9);
  font-size: 0.96rem;
  line-height: 1.68;
}

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

.services-page__subrail-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 252, 0.84));
  box-shadow: 0 18px 34px rgba(108, 137, 161, 0.08);
}

.services-page__subrail-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background: rgba(247, 250, 252, 0.94);
  color: rgba(18, 30, 42, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.services-page__subrail-item > div {
  display: grid;
  gap: 10px;
}

.services-page__subrail-item h3 {
  font-size: clamp(1.18rem, 1.46vw, 1.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.services-page__subrail-item p:last-of-type {
  color: rgba(89, 105, 121, 0.9);
  font-size: 0.94rem;
  line-height: 1.62;
}

.services-page__subrail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.services-page__subrail-item p a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 109, 142, 0.24);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.services-page__subrail-cta:hover,
.services-page__subrail-cta:focus-visible {
  background: rgba(255, 255, 255, 0.94);
}

.services-page__cross-card {
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.9));
  box-shadow: 0 22px 42px rgba(108, 137, 161, 0.1);
}

.services-page__cross-card h2 {
  font-size: clamp(1.58rem, 2.2vw, 2.34rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.services-page__cross-card p:last-of-type {
  color: rgba(87, 103, 119, 0.92);
  line-height: 1.68;
}

.services-page__cross-card .link-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.services-page__cross-card .link-stack a {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.services-page__cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: 30px;
  align-items: stretch;
  min-height: 286px;
  padding: clamp(28px, 3vw, 40px);
  background:
    radial-gradient(circle at 78% 48%, rgba(91, 152, 198, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(136, 190, 229, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(11, 20, 31, 0.99), rgba(20, 31, 43, 0.97));
  box-shadow: 0 28px 48px rgba(9, 16, 24, 0.16);
  overflow: hidden;
}

.services-page__cta-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 44rem;
}

.services-page__cta-shell h2 {
  color: rgba(247, 251, 253, 0.97);
  max-width: 17ch;
  font-size: clamp(1.94rem, 2.7vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

.services-page__cta-shell p:last-of-type {
  color: rgba(212, 223, 232, 0.84);
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.72;
}

.services-page__cta-actions {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-left: 28px;
  position: relative;
}

.services-page__cta-actions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.services-page__cta-actions .cta {
  min-width: 204px;
  min-height: 64px;
  padding: 0 30px;
  font-size: 1rem;
}

.services-page__cta-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.12);
}

.services-page__cta-actions .cta.ghost:hover,
.services-page__cta-actions .cta.ghost:focus-visible,
.services-page__rail-cta:hover,
.services-page__rail-cta:focus-visible,
.services-page__feature:hover,
.services-page__feature:focus-within,
.services-page__rail-item:hover,
.services-page__rail-item:focus-within,
.services-page__subrail-item:hover,
.services-page__subrail-item:focus-within,
.services-page__cross-card:hover,
.services-page__cross-card:focus-within,
.services-page__cta-shell:hover,
.services-page__cta-shell:focus-within,
.services-page__cross-card .link-stack a:hover,
.services-page__cross-card .link-stack a:focus-visible {
  border-color: rgba(126, 171, 205, 0.2);
  box-shadow: 0 28px 50px rgba(102, 133, 159, 0.14);
  transform: translateY(-2px);
}

.services-page__cta-actions .cta.ghost:hover,
.services-page__cta-actions .cta.ghost:focus-visible,
.services-page__rail-cta:hover,
.services-page__rail-cta:focus-visible,
.services-page__cross-card .link-stack a:hover,
.services-page__cross-card .link-stack a:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.about-page-view .hero-shell--about-page .hero-shell__grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 26px;
  align-items: start;
}

.about-page-view .hero-shell__content {
  min-height: 0;
  padding: clamp(28px, 3.2vw, 40px);
  gap: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 251, 0.92));
}

.about-page-view .hero-shell__content h1 {
  max-width: 11.8ch;
  font-size: clamp(2.34rem, 4vw, 3.72rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.about-page-view .hero-shell__lede {
  max-width: 36ch;
  color: rgba(82, 100, 117, 0.92);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  line-height: 1.66;
}

.about-page__hero-note {
  color: rgba(101, 118, 134, 0.9);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.about-page__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.about-page__trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 31, 43, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 251, 0.84)),
    rgba(255, 255, 255, 0.9);
  color: rgba(24, 37, 50, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.about-page__panel {
  gap: 18px;
  padding: clamp(24px, 2.8vw, 32px);
  background:
    radial-gradient(circle at top right, rgba(105, 168, 221, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(9, 18, 28, 0.99), rgba(20, 32, 44, 0.98));
}

.about-page__panel .hero-panel__label {
  color: rgba(214, 223, 231, 0.96);
  letter-spacing: 0.24em;
}

.about-page__panel .hero-shell__panel-copy {
  gap: 12px;
}

.about-page__panel .hero-shell__panel-copy h2 {
  font-size: clamp(1.58rem, 1.95vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.about-page__panel .hero-shell__panel-copy p {
  color: rgba(223, 232, 241, 0.84);
  line-height: 1.66;
}

.about-page__panel-list {
  display: grid;
  gap: 12px;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-page__panel-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.about-page__panel-list-item span {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(244, 181, 108, 0.96);
  box-shadow: 0 0 0 6px rgba(244, 181, 108, 0.1);
}

.about-page__panel-list-item p {
  color: rgba(240, 246, 250, 0.9);
  font-size: 0.98rem;
  line-height: 1.56;
}

.about-page__stats-grid {
  gap: 12px;
}

.about-page__panel .stat-card {
  min-height: 0;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(186, 214, 237, 0.12);
}

.about-page__panel .hero-shell__visual {
  margin-top: auto;
}

.about-page__panel .hero-shell__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-page__manifesto .section-heading,
.about-page__portfolio-proof .section-heading,
.about-page__principles .section-heading,
.about-page__operations .section-heading {
  margin-bottom: 24px;
}

.about-page-view .section-heading h2 {
  font-size: clamp(2rem, 3.05vw, 3.1rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.about-page__manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 0.84fr);
  gap: 20px;
  align-items: start;
}

.about-page__manifesto-card,
.about-page__trust-panel,
.about-page__principle-card,
.about-page__sector-card,
.about-page__process-shell .timeline-card {
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(16, 28, 40, 0.06);
}

.about-page__manifesto-card,
.about-page__trust-panel {
  align-self: start;
}

.about-page__manifesto-card,
.about-page__principle-card,
.about-page__sector-card {
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.97), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 252, 0.9));
}

.about-page__manifesto-card h3,
.about-page__trust-panel h3,
.about-page__sector-card h3 {
  font-size: clamp(1.34rem, 1.6vw, 1.72rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.about-page__manifesto-card p:last-child,
.about-page__trust-panel p:last-of-type,
.about-page__sector-card p:last-of-type {
  color: rgba(90, 107, 122, 0.94);
  line-height: 1.68;
}

.about-page__trust-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 28px);
  border: 1px solid rgba(18, 30, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(88, 170, 221, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(245, 249, 252, 0.98), rgba(233, 241, 247, 0.92));
}

.about-page__trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.about-page__trust-list-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 31, 43, 0.06);
  color: rgba(21, 33, 45, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.about-page__casebook {
  display: grid;
  gap: 20px;
}

.about-page__casebook .portfolio-casebook__lead {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
}

.about-page__casebook .portfolio-casebook__lead-media {
  min-height: 0;
  aspect-ratio: 1.1 / 1;
}

.about-page__casebook .portfolio-casebook__specs {
  margin-top: 8px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.about-page__casebook .portfolio-casebook__spec {
  gap: 8px;
  min-height: 120px;
  padding: 18px 18px 16px;
}

.about-page__casebook .portfolio-casebook__spec-label {
  color: rgba(172, 198, 220, 0.88);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.about-page__casebook .portfolio-casebook__spec-value {
  font-size: clamp(1.34rem, 1.65vw, 1.92rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.about-page__casebook .portfolio-casebook__spec--accent .portfolio-casebook__spec-value {
  font-size: clamp(1.22rem, 1.45vw, 1.56rem);
}

.about-page__casebook .portfolio-casebook__spec-rule {
  width: min(72px, 100%);
  height: 3px;
}

.about-page__casebook-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about-page__casebook-footer p:last-child {
  color: rgba(91, 107, 123, 0.94);
  line-height: 1.64;
}

.about-page__casebook-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.about-page__casebook .portfolio-casebook__item {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 18px 20px;
  align-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 251, 0.88));
  box-shadow: 0 18px 40px rgba(111, 141, 165, 0.08);
}

.about-page__casebook .portfolio-casebook__item-media {
  min-height: 0;
  aspect-ratio: 1.14 / 0.76;
  border-radius: 24px;
}

.about-page__casebook .portfolio-casebook__item-body {
  gap: 12px;
}

.about-page__casebook .portfolio-casebook__item-body h3 {
  font-size: clamp(1.54rem, 1.95vw, 2.22rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-page__casebook .portfolio-casebook__item-body p {
  max-width: 42ch;
  font-size: 1.04rem;
  line-height: 1.62;
}

.about-page__casebook-footer.portfolio-casebook__footer {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(111, 141, 165, 0.06);
}

.about-page__casebook .portfolio-casebook__item-topline {
  align-items: start;
}

.about-page__casebook .portfolio-casebook__rail-eyebrow {
  color: rgba(109, 126, 142, 0.94);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.about-page__casebook .portfolio-casebook__lead-prefix {
  color: rgba(92, 109, 124, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.about-page__casebook .portfolio-casebook__item-index {
  color: rgba(191, 201, 210, 0.52);
  font-size: clamp(3rem, 4vw, 4.6rem);
}

.about-page__casebook-chips .chip {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(20, 31, 43, 0.9);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.5;
}

.about-page__casebook-chips .chip:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin-left: 14px;
  background: rgba(20, 31, 43, 0.16);
  vertical-align: middle;
}

.about-page__casebook-footer .portfolio-casebook__footer-copy {
  gap: 10px;
}

.about-page__casebook-footer .portfolio-casebook__footer-eyebrow {
  color: rgba(102, 119, 135, 0.96);
  letter-spacing: 0.2em;
}

.about-page__casebook-footer .cta {
  min-height: 58px;
  padding: 0 28px;
}

.about-page__principles-grid {
  gap: 18px;
}

.about-page__principle-card {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.about-page__principle-index {
  color: rgba(191, 201, 210, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-page__principle-card h3 {
  font-size: clamp(1.26rem, 1.4vw, 1.56rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.about-page__principle-card p {
  color: rgba(92, 108, 123, 0.94);
  line-height: 1.66;
}

.about-page__operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: start;
}

.about-page__sector-shell,
.about-page__process-shell {
  display: grid;
  gap: 18px;
}

.about-page__sector-shell .section-heading,
.about-page__process-shell .section-heading {
  margin-bottom: 0;
}

.about-page__sector-shell .section-heading--split,
.about-page__process-shell .section-heading--split {
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-page__sector-shell .section-heading--split > div,
.about-page__process-shell .section-heading--split > div {
  display: grid;
  gap: 10px;
}

.about-page__sector-shell .section-heading h2,
.about-page__process-shell .section-heading h2 {
  max-width: none;
  text-wrap: balance;
}

.about-page__sector-shell .section-heading h2 {
  max-width: 12.5ch;
  font-size: clamp(1.88rem, 2.45vw, 2.58rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.about-page__sector-shell .section-heading__aside {
  max-width: 46ch;
  color: rgba(92, 108, 123, 0.9);
  font-size: 0.98rem;
  line-height: 1.76;
}

.about-page__sector-grid {
  display: grid;
  gap: 14px;
}

.about-page__sector-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(20, 31, 43, 0.92);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-page__sector-link::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.about-page__process-shell {
  padding: clamp(20px, 2.4vw, 24px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(101, 164, 218, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(10, 19, 29, 0.99), rgba(18, 30, 42, 0.97));
  box-shadow: 0 28px 48px rgba(9, 16, 24, 0.14);
}

.about-page__process-shell .section-heading h2 {
  max-width: 13ch;
  font-size: clamp(1.82rem, 2.25vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-page__process-shell .section-eyebrow,
.about-page__process-shell .section-heading h2,
.about-page__process-shell .section-heading__aside {
  color: rgba(244, 248, 251, 0.96);
}

.about-page__process-shell .section-heading__aside {
  max-width: 48ch;
  color: rgba(214, 225, 233, 0.82);
  font-size: 0.98rem;
  line-height: 1.76;
}

.about-page__process-shell .timeline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-page__process-shell .timeline-card {
  gap: 10px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.about-page__process-shell .timeline-card span,
.about-page__process-shell .timeline-card h3 {
  color: rgba(247, 251, 253, 0.98);
}

.about-page__process-shell .timeline-card h3 {
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
  line-height: 1.08;
}

.about-page__process-shell .timeline-card p {
  color: rgba(216, 226, 235, 0.82);
  font-size: 0.98rem;
  line-height: 1.64;
}

.about-page__cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: 30px;
  align-items: stretch;
  min-height: 286px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 78% 48%, rgba(91, 152, 198, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(136, 190, 229, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(11, 20, 31, 0.99), rgba(20, 31, 43, 0.97));
  box-shadow: 0 28px 48px rgba(9, 16, 24, 0.16);
  overflow: hidden;
}

.about-page__cta-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.about-page__cta-shell h2 {
  color: rgba(247, 251, 253, 0.97);
  font-size: clamp(1.96rem, 2.55vw, 3.04rem);
  line-height: 0.94;
  letter-spacing: -0.068em;
  max-width: 18.6ch;
  text-wrap: balance;
}

.about-page__cta-shell p:last-of-type {
  max-width: 40ch;
  color: rgba(212, 223, 232, 0.84);
  font-size: 1rem;
  line-height: 1.72;
}

.about-page__cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  gap: 16px;
  padding-left: 28px;
  position: relative;
}

.about-page__cta-actions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.about-page__cta-actions .cta {
  min-width: 204px;
  min-height: 64px;
  padding: 0 30px;
  font-size: 1rem;
}

.about-page__cta-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.12);
}

.about-page__cta-actions .cta.ghost:hover,
.about-page__cta-actions .cta.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1024px) {
  .about-page-view .hero-shell--about-page .hero-shell__grid,
  .about-page__manifesto-grid,
  .about-page__operations-grid,
  .about-page__cta-shell,
  .services-page-view .hero-shell--services-page .hero-shell__grid,
  .services-page__editorial,
  .services-page__feature,
  .services-page__cta-shell,
  .service-page-view .hero-shell--service-page .hero-shell__grid,
  .industry-page-view .hero-shell--industry-page .hero-shell__grid,
  .info-page-view .hero-shell--info-page .hero-shell__grid,
  .service-page__detail .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-page__benefits-section .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page__benefits-section .metric-card,
  .service-page__benefits-section .metric-card:first-child,
  .service-page__benefits-section .metric-card:nth-child(2) {
    grid-column: span 1;
  }

  .service-page__benefits-section .metric-card,
  .service-page__benefits-section .metric-card:nth-child(3),
  .service-page__benefits-section .metric-card:nth-child(4) {
    min-height: 0;
  }

  .industry-page__cards .service-card:first-child {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .industry-page__cards .service-card:first-child .service-card__media {
    border-radius: 0 0 30px 30px;
  }

  .service-page__hero-meta,
  .industry-page__hero-focus,
  .info-page__hero-map {
    grid-template-columns: 1fr;
  }

  .page-catalog-viewer .catalog-viewer__top {
    grid-template-columns: 1fr;
  }

  .about-page__casebook .portfolio-casebook__lead {
    grid-template-columns: 1fr;
  }

  .about-page__casebook .portfolio-casebook__lead-media {
    min-height: 0;
    aspect-ratio: 1.2 / 1;
  }

  .about-page__casebook .portfolio-casebook__item {
    grid-template-columns: 1fr;
  }

  .about-page__casebook .portfolio-casebook__item-media {
    aspect-ratio: 1.3 / 0.88;
  }

  .about-page__sector-shell .section-heading h2,
  .about-page__process-shell .section-heading h2 {
    max-width: none;
  }

  .about-page-view .hero-shell__content h1 {
    max-width: none;
    font-size: clamp(2.08rem, 5.3vw, 3.12rem);
  }

  .about-page__panel .hero-shell__panel-copy h2,
  .about-page-view .section-heading h2 {
    max-width: none;
  }

  .services-page-view .hero-shell__content h1,
  .services-page__overview .section-heading h2,
  .services-page__cross-card h2,
  .services-page__cta-shell h2 {
    max-width: none;
  }

  .services-page__feature {
    min-height: 0;
  }

  .services-page__rail-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .services-page__overview .section-heading__aside {
    max-width: none;
    padding-left: 0;
    border-left: 0;
  }

  .services-page__subrail-grid,
  .services-page__subrail-item {
    grid-template-columns: 1fr;
  }

  .services-page__cta-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .services-page__cta-actions::before {
    display: none;
  }

  .about-page__process-shell .timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-page-view .hero-shell__content,
  .about-page__panel,
  .about-page__manifesto-card,
  .about-page__trust-panel,
  .about-page__principle-card,
  .about-page__sector-card,
  .about-page__process-shell,
  .about-page__cta-shell {
    padding: 20px;
    border-radius: 24px;
  }

  .about-page__trust-strip,
  .about-page__trust-list {
    gap: 8px;
  }

  .about-page__trust-chip,
  .about-page__trust-list-item {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .about-page__cta-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .about-page__cta-actions::before {
    display: none;
  }

  .about-page__casebook .portfolio-casebook__lead-media {
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .about-page__casebook .portfolio-casebook__item-media {
    aspect-ratio: 1.2 / 0.9;
  }

  .about-page-view .hero-shell__content h1 {
    font-size: clamp(1.78rem, 8.1vw, 2.42rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
  }

  .about-page__panel .hero-shell__panel-copy h2,
  .about-page-view .section-heading h2 {
    font-size: clamp(1.62rem, 7vw, 2.16rem);
  }

  .about-page-view .hero-shell__lede {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .about-page__hero-note {
    font-size: 0.8rem;
  }

  .about-page__cta-shell h2 {
    max-width: none;
  }

  .about-page__cta-actions .cta {
    min-width: 0;
    width: 100%;
  }

  .services-page-view .hero-shell__content,
  .services-page__panel {
    padding: 20px;
    border-radius: 24px;
  }

  .services-page__feature-copy,
  .services-page__rail-item,
  .services-page__subrail-item,
  .services-page__cta-shell,
  .services-page__cross-card {
    padding: 20px;
  }

  .services-page-view .hero-shell__content h1 {
    font-size: clamp(1.74rem, 6.7vw, 2.24rem);
    line-height: 1;
    letter-spacing: -0.056em;
  }

  .services-page-view .hero-shell__lede {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .services-page__panel .hero-shell__panel-copy h2,
  .services-page__feature-copy h3,
  .services-page__cross-card h2,
  .services-page__cta-shell h2 {
    max-width: none;
    font-size: clamp(1.44rem, 5.9vw, 1.88rem);
  }

  .services-page__overview .section-heading {
    gap: 14px;
  }

  .services-page__overview .section-heading__aside {
    max-width: none;
    padding-left: 0;
    border-left: 0;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .services-page__feature-media img {
    min-height: 240px;
  }

  .services-page__subrail {
    gap: 14px;
  }

  .services-page__subrail-grid {
    gap: 12px;
  }

  .services-page__subrail-head h3 {
    font-size: clamp(1.34rem, 5.4vw, 1.72rem);
  }

  .services-page__subrail-aside {
    max-width: none;
    justify-self: start;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .services-page__cta-actions {
    justify-content: flex-start;
    gap: 12px;
  }

  .services-page__cta-actions .cta {
    min-width: 0;
    width: 100%;
  }

  .service-page-view .hero-shell__content,
  .industry-page-view .hero-shell__content,
  .info-page-view .hero-shell__content,
  .service-page__dossier,
  .industry-page__panel,
  .info-page__panel,
  .page-catalogs .catalogs-hero__content,
  .page-catalog-viewer .catalog-viewer__shell {
    padding: 20px;
    border-radius: 24px;
  }

  .service-page-view .hero-shell__content h1,
  .industry-page-view .hero-shell__content h1,
  .info-page-view .hero-shell__content h1,
  .page-catalogs .catalogs-hero__content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .service-page__benefits-section .metrics-grid,
  .industry-page__cards,
  .page-catalogs .catalog-grid,
  .page-catalogs .catalog-grid--priority {
    grid-template-columns: 1fr;
  }

  .service-page__benefits-section .metric-card {
    padding: 24px;
  }

  .service-page__benefits-section .metric-card h3 {
    max-width: none;
    font-size: clamp(1.24rem, 7vw, 1.72rem);
  }

  .service-page__detail-card h2 {
    max-width: none;
    font-size: clamp(1.92rem, 9vw, 2.5rem);
  }

  .info-page__sections .detail-card {
    padding-left: 20px;
    padding-top: 68px;
  }

  .info-page__sections .detail-card::before {
    left: 20px;
    top: 20px;
  }

  .info-page__sections .detail-card::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .blog-topic-nav__chip {
    width: 100%;
    justify-content: flex-start;
  }

  .blog-lead {
    grid-template-rows: minmax(152px, 196px) auto;
    border-radius: 24px;
  }

  .blog-lead__media {
    min-height: 152px;
  }

  .blog-lead__body,
  .blog-support__item-body,
  .blog-card--archive .blog-card__body,
  .blog-support__intro {
    padding: 18px;
  }

  .blog-lead__body h3,
  .blog-card--archive .blog-card__body h3 {
    font-size: clamp(1.38rem, 7.2vw, 1.92rem);
  }

  .blog-support__item-body h4 {
    font-size: 1.48rem;
  }

  .blog-page-tools__count {
    width: 100%;
  }

  .page-blog .callback-widget__fab {
    inline-size: 52px;
    block-size: 52px;
  }
}

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

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

/* Home Hero Redesign */

.hero-stage--fallback {
  min-height: clamp(640px, calc(100svh - 142px), 760px);
}

.hero-stage--fallback .hero-stage__viewport {
  position: relative;
  min-height: clamp(640px, calc(100svh - 142px), 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.6fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
  padding: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: none;
  box-shadow:
    0 32px 80px rgba(16, 28, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-stage--fallback .hero-stage__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: none;
  pointer-events: none;
}

.hero-stage--fallback .hero-stage__viewport::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: none;
  pointer-events: none;
}

.hero-stage__fallback-art {
  inset: 0;
  z-index: 0;
}

.hero-stage__fallback-bg-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(0.94) brightness(0.84);
  opacity: var(--hero-fallback-bg-opacity, 0.68);
  transform: scale(1.04);
}

.hero-stage__fallback-bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
}

.hero-stage__fallback-art::before {
  top: 62px;
  left: 54%;
  width: min(30%, 360px);
  height: 68%;
  background: linear-gradient(180deg, rgba(177, 204, 224, 0.18), rgba(177, 204, 224, 0.02));
  filter: blur(0);
}

.hero-stage__fallback-art::after {
  right: 6%;
  bottom: 8%;
  width: 42%;
  height: 28%;
  background: radial-gradient(circle, rgba(118, 164, 199, 0.16), transparent 72%);
}

.hero-stage__fallback-beam--top {
  top: 84px;
  right: clamp(210px, 20vw, 290px);
  width: 132px;
}

.hero-stage__fallback-beam--side {
  top: 108px;
  right: 252px;
  width: 228px;
  height: 74%;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(166, 193, 214, 0.16), rgba(210, 224, 236, 0.02));
}

.hero-stage__fallback-glass {
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(191, 214, 232, 0.06)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 48px rgba(101, 135, 162, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stage__fallback-glass--left {
  top: 18px;
  left: 18px;
  width: min(48%, 720px);
  height: calc(100% - 36px);
  transform: none;
}

.hero-stage__fallback-glass--right {
  top: 76px;
  right: 24px;
  width: min(30%, 388px);
  height: min(64%, 470px);
  background:
    radial-gradient(circle at top right, rgba(147, 201, 240, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(12, 22, 34, 0.12), rgba(23, 40, 57, 0.03));
  border-color: rgba(255, 255, 255, 0.16);
  transform: none;
}

.hero-stage__fallback-line {
  left: 38%;
  right: 10%;
  bottom: 26%;
  width: auto;
  height: 2px;
  transform: none;
  background: linear-gradient(90deg, rgba(111, 175, 217, 0.08), rgba(111, 175, 217, 0.78), rgba(111, 175, 217, 0.08));
}

.hero-stage__fallback-panel,
.hero-stage__fallback-proof {
  position: relative;
  z-index: 2;
}

.hero-stage__fallback-panel {
  display: grid;
  align-content: space-between;
  gap: 24px;
  max-width: none;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 251, 0.84));
  box-shadow:
    0 26px 70px rgba(16, 28, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
}

.hero-stage__fallback-panel::before {
  height: 92px;
  border-radius: 30px 30px 0 0;
}

.hero-stage__fallback-panel::after {
  top: 34px;
  right: 32px;
  width: 120px;
}

.hero-stage__fallback-panel .hero-shell__kicker {
  min-height: 38px;
  width: fit-content;
  padding: 0 16px;
  border: 1px solid rgba(24, 36, 49, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: #132236;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-stage__fallback-copyflow {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(220px, 0.54fr);
  gap: 22px;
  align-items: start;
}

.hero-stage__fallback-copymain {
  display: grid;
  gap: 14px;
}

.hero-stage__fallback-panel h1 {
  margin: 0;
  max-width: 12ch;
  color: #121d2c;
  font-size: clamp(2.45rem, 4vw, 4.55rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.hero-stage__fallback-panel .hero-shell__lede {
  max-width: 34ch;
  color: rgba(74, 90, 108, 0.92);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-stage__fallback-salesnote {
  display: grid;
  gap: 12px;
  max-width: 240px;
  justify-self: end;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(212, 223, 232, 0.88);
  background:
    radial-gradient(circle at top right, rgba(166, 196, 220, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 249, 252, 0.92));
  box-shadow:
    0 14px 28px rgba(18, 34, 52, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.hero-stage__fallback-salesnote-eyebrow {
  color: rgba(111, 128, 145, 0.94);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stage__fallback-salesnote strong {
  color: rgba(22, 34, 48, 0.96);
  font-size: 0.98rem;
  line-height: 1.34;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-stage__fallback-salesnote-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stage__fallback-salesnote-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(77, 94, 110, 0.94);
  font-size: 0.82rem;
  line-height: 1.46;
}

.hero-stage__fallback-salesnote-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(91, 169, 221, 0.92);
  box-shadow: 0 0 0 4px rgba(91, 169, 221, 0.12);
}

.hero-stage__fallback-actions {
  gap: 14px;
}

.hero-stage__fallback-actions .cta.primary,
.hero-stage__fallback-actions .cta.ghost {
  min-height: 56px;
  padding-inline: 26px;
  border-radius: 999px;
}

.hero-stage__fallback-actions .cta.primary {
  box-shadow: 0 18px 40px rgba(16, 28, 42, 0.16);
}

.hero-stage__fallback-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(20, 34, 48, 0.12);
}

.hero-stage__fallback-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1.1fr);
  gap: 14px;
  align-items: stretch;
}

.hero-stage__fallback-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
  align-content: stretch;
}

.hero-stage__fallback-feature {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 138px;
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(214, 224, 233, 0.88);
  background:
    radial-gradient(circle at top right, rgba(170, 201, 226, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 250, 252, 0.92));
  box-shadow:
    0 16px 34px rgba(18, 34, 52, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  overflow: hidden;
}

.hero-stage__fallback-feature:first-child {
  grid-column: 1 / -1;
  min-height: 118px;
  padding-right: 22px;
  background:
    linear-gradient(90deg, rgba(99, 168, 214, 0.08), rgba(99, 168, 214, 0) 28%),
    radial-gradient(circle at top right, rgba(170, 201, 226, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 250, 252, 0.94));
}

.hero-stage__fallback-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 68px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-stage__fallback-feature::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(136, 181, 214, 0.16), rgba(136, 181, 214, 0));
  pointer-events: none;
}

.hero-stage__fallback-feature-topline {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(118, 134, 150, 0.96);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero-stage__fallback-feature-topline > span:last-child {
  color: rgba(128, 144, 160, 0.94);
}

.hero-stage__fallback-feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 14px;
  border: 1px solid rgba(185, 204, 220, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 249, 0.86));
  color: rgba(18, 34, 52, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.hero-stage__fallback-feature strong {
  color: rgba(22, 34, 48, 0.96);
  font-size: 1.08rem;
  line-height: 1.42;
  letter-spacing: -0.04em;
  text-wrap: balance;
  max-width: 18ch;
}

.hero-stage__fallback-feature:first-child strong {
  font-size: 1.16rem;
  max-width: 26ch;
}

.hero-stage__fallback-feature:nth-child(2),
.hero-stage__fallback-feature:nth-child(3) {
  align-content: space-between;
}

.hero-stage__fallback-scene {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(211, 222, 231, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 249, 252, 0.78));
  box-shadow: 0 18px 36px rgba(18, 34, 52, 0.08);
}

.hero-stage__fallback-scene img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 284px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.hero-stage__fallback-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 22, 34, 0.04), rgba(11, 22, 34, 0.06) 40%, rgba(11, 22, 34, 0.48) 100%);
  pointer-events: none;
}

.hero-stage__fallback-scene-note {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 23, 34, 0.48);
  color: rgba(248, 251, 253, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-stage__fallback-scene-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(12, 23, 34, 0.62), rgba(12, 23, 34, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stage__fallback-scene-caption span {
  color: rgba(240, 182, 112, 0.96);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-stage__fallback-scene-caption strong {
  color: rgba(248, 251, 253, 0.98);
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-stage__fallback-scene-caption p {
  margin: 0;
  color: rgba(227, 235, 242, 0.84);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hero-stage__fallback-proof {
  display: grid;
  align-content: start;
  gap: 20px;
  max-width: none;
  margin: 0;
  padding: clamp(28px, 2.6vw, 36px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 82% 16%, rgba(96, 147, 187, 0.16), transparent 26%),
    radial-gradient(circle at 20% 84%, rgba(60, 102, 136, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(14, 24, 37, 0.99), rgba(22, 36, 51, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 64px rgba(7, 15, 24, 0.24);
  isolation: isolate;
}

.hero-stage__fallback-proof::before {
  inset: 18px auto 18px 18px;
  width: 2px;
}

.hero-stage__fallback-proof::after {
  inset: auto -18px 24px 52px;
  z-index: -1;
  height: 60%;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(126, 165, 196, 0.18), rgba(126, 165, 196, 0.03));
}

.hero-stage__fallback-proof-topline {
  gap: 18px;
}

.hero-stage__fallback-proof-eyebrow {
  color: rgba(241, 180, 107, 0.96);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-stage__fallback-proof-index {
  font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  color: rgba(255, 255, 255, 0.1);
}

.hero-stage__fallback-proof h2 {
  max-width: 10ch;
  font-size: clamp(1.96rem, 2.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-stage__fallback-proof p {
  max-width: 31ch;
  padding-bottom: 20px;
  color: rgba(214, 224, 234, 0.84);
  font-size: 0.98rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage__fallback-proof-signals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.hero-stage__fallback-proof-signal {
  position: relative;
  gap: 14px;
  min-height: 0;
  padding: 22px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 28px rgba(7, 15, 24, 0.12);
  overflow: hidden;
}

.hero-stage__fallback-proof-signal:nth-child(3) {
  min-height: 0;
  padding-top: 18px;
  background:
    radial-gradient(circle at top right, rgba(241, 180, 107, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.024);
}

.hero-stage__fallback-proof-signal-label {
  color: rgba(163, 180, 194, 0.82);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-stage__fallback-proof-signal strong {
  font-size: clamp(2rem, 2.3vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-stage__fallback-proof-signal-rule {
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 190, 246, 0.96), rgba(120, 190, 246, 0.42));
}

.hero-stage__fallback-proof-signal:nth-child(2) {
  transform: translateY(12px);
}

.hero-stage__fallback-proof-signal::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 64px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-stage__fallback-proof-footer {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage__fallback-proof-footer span {
  color: rgba(241, 180, 107, 0.94);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stage__fallback-proof-footer p {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(222, 231, 239, 0.86);
  font-size: 0.9rem;
  line-height: 1.62;
}

@media (max-width: 1100px) {
  .hero-stage--fallback,
  .hero-stage--fallback .hero-stage__viewport {
    min-height: 620px;
  }

  .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
    gap: 20px;
    padding: 20px;
  }

  .hero-stage__fallback-glass--right {
    width: min(34%, 340px);
    right: 12px;
  }

  .hero-stage__fallback-beam--side {
    right: 164px;
    width: 180px;
  }

  .hero-stage__fallback-panel,
  .hero-stage__fallback-proof {
    padding: 24px;
  }

  .hero-stage__fallback-copyflow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-stage__fallback-editorial {
    grid-template-columns: 1fr;
  }

  .hero-stage__fallback-panel h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.45rem);
  }

  .hero-stage__fallback-proof h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  }

  .hero-stage__fallback-meta {
    grid-template-columns: 1fr;
  }

  .hero-stage__fallback-feature {
    min-height: 96px;
  }
}

@media (max-width: 720px) {
  .hero-stage--fallback,
  .hero-stage--fallback .hero-stage__viewport {
    min-height: auto;
  }

  .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
  }

  .hero-stage__fallback-bg-media {
    opacity: calc(var(--hero-fallback-bg-opacity, 0.68) * 0.9);
  }

  .hero-stage__fallback-beam--top,
  .hero-stage__fallback-beam--side,
  .hero-stage__fallback-line,
  .hero-stage__fallback-glass--right {
    display: none;
  }

  .hero-stage__fallback-glass--left {
    inset: 14px;
    width: auto;
    height: auto;
    border-radius: 20px;
  }

  .hero-stage__fallback-panel,
  .hero-stage__fallback-proof {
    border-radius: 22px;
    padding: 20px 18px;
  }

  .hero-stage__fallback-panel::after {
    top: 30px;
    right: 22px;
    width: 72px;
  }

  .hero-stage__fallback-panel h1 {
    max-width: 100%;
    font-size: clamp(1.88rem, 8.2vw, 2.6rem);
    line-height: 0.96;
  }

  .hero-stage__fallback-panel .hero-shell__lede {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-stage__fallback-salesnote {
    padding: 16px 15px 14px;
    border-radius: 18px;
  }

  .hero-stage__fallback-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stage__fallback-editorial {
    gap: 10px;
  }

  .hero-stage__fallback-actions .cta.primary,
  .hero-stage__fallback-actions .cta.ghost {
    min-height: 52px;
  }

  .hero-stage__fallback-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stage__fallback-feature {
    min-height: auto;
    gap: 10px;
    padding: 16px 15px 14px;
  }

  .hero-stage__fallback-feature:first-child {
    grid-column: auto;
  }

  .hero-stage__fallback-proof-signal:nth-child(2) {
    transform: none;
  }

  .hero-stage__fallback-feature strong {
    font-size: 0.95rem;
  }

  .hero-stage__fallback-scene {
    min-height: 220px;
  }

  .hero-stage__fallback-scene img {
    min-height: 220px;
  }

  .hero-stage__fallback-scene-caption {
    padding: 16px 15px 14px;
  }

  .hero-stage__fallback-scene-caption strong {
    font-size: 1.02rem;
  }

  .hero-stage__fallback-scene-caption p {
    font-size: 0.8rem;
  }

  .hero-stage__fallback-proof::after {
    inset: auto -8px 12px 20px;
    height: 54%;
  }

  .hero-stage__fallback-proof-topline {
    align-items: center;
  }

  .hero-stage__fallback-proof-index {
    font-size: 2.3rem;
  }

  .hero-stage__fallback-proof h2 {
    max-width: none;
    font-size: 1.42rem;
  }

  .hero-stage__fallback-proof > p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .hero-stage__fallback-proof-signals {
    grid-template-columns: 1fr;
  }

  .hero-stage__fallback-proof-signal,
  .hero-stage__fallback-proof-signal:nth-child(3) {
    min-height: auto;
  }
}

/* April 2026: service-section refinement pass */
body.page-services .hero-shell__kicker,
.service-page-view .hero-shell__kicker,
.industry-page-view .hero-shell__kicker,
.info-page-view .hero-shell__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.services-page-view .hero-shell__content,
.service-page-view .hero-shell__content,
.industry-page-view .hero-shell__content,
.info-page-view .hero-shell__content {
  border-radius: 34px;
}

.services-page__panel,
.service-page__dossier,
.industry-page__panel,
.info-page__panel {
  border-radius: 34px;
}

.services-page-view .hero-shell__actions .cta,
.service-page-view .hero-shell__actions .cta,
.industry-page-view .hero-shell__actions .cta,
.info-page-view .hero-shell__actions .cta {
  min-height: 54px;
}

.service-page__hero-meta,
.industry-page__hero-focus,
.info-page__hero-map {
  gap: 14px;
}

.service-page__hero-meta div,
.industry-page__hero-focus-item,
.info-page__hero-map-item {
  min-height: 124px;
  padding: 18px 20px 20px;
}

.service-page__hero-meta span,
.industry-page__hero-focus-item span,
.info-page__hero-map-item span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.service-page__hero-meta strong,
.industry-page__hero-focus-item strong,
.info-page__hero-map-item strong {
  font-size: 1.04rem;
  line-height: 1.48;
}

.service-page__dossier .hero-shell__panel-copy p,
.industry-page__panel .hero-shell__panel-copy p,
.info-page__panel .hero-shell__panel-copy p,
.services-page__panel .hero-shell__panel-copy p {
  max-width: 40ch;
}

.service-page__spec-item,
.industry-page__panel-point,
.info-page__panel .bullet-list--inverse li {
  backdrop-filter: blur(10px);
}

.info-page__panel .bullet-list--inverse {
  gap: 10px;
  margin-top: 6px;
}

.info-page__panel .bullet-list--inverse li {
  align-items: start;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.016);
  color: rgba(235, 242, 248, 0.94);
  line-height: 1.46;
}

.info-page__panel .bullet-list--inverse li::before {
  margin-top: 0.4rem;
}

.service-page__spec-item span,
.industry-page__panel-point span,
.info-page__hero-map-item span {
  font-size: 0.74rem;
}

.service-page__benefits-section .metrics-grid {
  gap: 24px;
}

.service-page__benefits-section .metric-card {
  gap: 18px;
  min-width: 0;
  overflow: clip;
  isolation: isolate;
}

.service-page__benefits-section .metric-card h3 {
  max-width: none;
  overflow-wrap: anywhere;
}

.service-page__detail .detail-grid,
.services-page__editorial,
.services-page__subrail-grid,
.industry-page__cards,
.info-page__sections .detail-stack,
.info-page__process .timeline-grid {
  gap: 24px;
}

.service-page__detail-card,
.industry-page__cards .service-card,
.info-page__sections .detail-card,
.info-page__process .timeline-card,
.services-page__feature,
.services-page__rail-item,
.services-page__subrail-item,
.services-page__cross-card,
.services-page__cta-shell {
  min-width: 0;
}

.service-page__detail-card h2,
.info-page__sections .detail-card h2,
.info-page__process .timeline-card h3,
.industry-page__cards .service-card h3,
.services-page__feature-copy h3,
.services-page__rail-item h3,
.services-page__subrail-item h3 {
  overflow-wrap: anywhere;
}

.service-page__detail .spec-list dd,
.service-page__usage-list li,
.industry-page__cards .service-card p:last-of-type,
.info-page__sections .detail-card p,
.info-page__process .timeline-card p,
.services-page__feature-copy p:last-of-type,
.services-page__rail-item p:last-of-type,
.services-page__subrail-item p:last-of-type,
.services-page__cross-card p:last-of-type,
.services-page__cta-shell p:last-of-type {
  color: rgba(77, 95, 112, 0.92);
  line-height: 1.7;
}

.service-page__usage-list li {
  padding: 17px 18px;
}

.industry-page__cards .service-card {
  min-height: 392px;
  overflow: hidden;
}

.industry-page__cards .service-card__copy {
  align-items: start;
  align-content: start;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 18px;
  row-gap: 12px;
}

.industry-page__cards .service-card__eyebrow {
  grid-column: 1 / -1;
}

.industry-page__cards .service-card h3 {
  grid-column: 1;
  max-width: 22ch;
}

.industry-page__cards .service-card p:last-of-type {
  grid-column: 1 / -1;
}

.industry-page__cards .service-card a {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: start;
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.industry-page__cards .service-card:first-child {
  min-height: 450px;
}

.industry-page__cards .service-card:first-child .service-card__media img,
.industry-page__cards .service-card__media img,
.services-page__feature-media img {
  display: block;
}

.info-page__sections .detail-card {
  gap: 16px;
  padding-right: clamp(24px, 3vw, 34px);
}

.info-page__process .timeline-card {
  padding: 28px;
  border-radius: 28px;
}

.services-page__overview .section-heading__aside,
.service-page__process .section-heading__aside,
.industry-page__services .section-heading__aside,
.info-page__sections .section-heading__aside,
.info-page__process .section-heading__aside {
  max-width: 40ch;
  color: rgba(84, 100, 116, 0.92);
}

.services-page__rail-item,
.services-page__subrail-item {
  align-content: start;
}

.services-page__rail-cta,
.services-page__subrail-cta,
.services-page__cross-card .link-stack a {
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .service-page__hero-meta,
  .industry-page__hero-focus,
  .info-page__hero-map {
    gap: 10px;
  }

  .service-page__hero-meta div,
  .industry-page__hero-focus-item,
  .info-page__hero-map-item {
    min-height: auto;
    padding: 16px 16px 17px;
  }

  .services-page__feature,
  .services-page__cta-shell,
  .industry-page__cards .service-card:first-child {
    min-height: auto;
  }

  .services-page__rail-item,
  .services-page__subrail-item,
  .industry-page__cards .service-card,
  .info-page__process .timeline-card {
    border-radius: 26px;
  }

  .industry-page__cards .service-card__copy {
    grid-template-columns: 1fr;
  }

  .industry-page__cards .service-card a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .info-page__sections .detail-card {
    gap: 14px;
  }
}

/* April 2026: service pages should grow with content, not fixed heights */
.services-page-view .hero-shell__content,
.service-page-view .hero-shell__content,
.industry-page-view .hero-shell__content,
.info-page-view .hero-shell__content {
  min-height: auto;
}

.service-page__hero-meta div,
.industry-page__hero-focus-item,
.info-page__hero-map-item {
  min-height: auto;
}

.service-page__dossier .hero-shell__visual,
.industry-page__panel .hero-shell__visual,
.info-page__panel .hero-shell__visual,
.services-page__panel .hero-shell__visual,
.services-page__feature-media {
  overflow: visible;
}

.service-page__dossier .hero-shell__visual img,
.industry-page__panel .hero-shell__visual img,
.info-page__panel .hero-shell__visual img {
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 10;
}

.service-page__benefits-section .metric-card,
.service-page__benefits-section .metric-card:nth-child(3),
.service-page__benefits-section .metric-card:nth-child(4),
.industry-page__cards .service-card,
.industry-page__cards .service-card:first-child,
.services-page__feature,
.services-page__cta-shell {
  min-height: auto;
}

.service-page__benefits-section .metric-card {
  overflow: visible;
  justify-content: flex-start;
}

.service-page__hero-meta,
.industry-page__hero-focus,
.info-page__hero-map,
.service-page__benefits-section .metrics-grid {
  overflow: hidden;
}

.service-page__detail-card {
  overflow: visible;
}

.services-page__feature {
  grid-template-rows: auto auto;
  height: auto;
}

.services-page__feature-copy {
  grid-template-rows: auto auto;
}

.services-page__feature-media {
  min-height: auto;
  padding-bottom: 0;
}

.services-page__feature-media img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.services-page__rail {
  grid-template-rows: auto;
  height: auto;
}

.services-page__rail-item,
.services-page__subrail-item,
.services-page__cross-card,
.services-page__cta-shell,
.info-page__process .timeline-card,
.info-page__sections .detail-card,
.service-page__detail .detail-card {
  height: auto;
}

.industry-page__cards .service-card__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: inherit;
}

.industry-page__panel .hero-shell__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: inherit;
}

/* Final cross-page polish pass for labels, overflow, and card rhythm. */
.hero-shell__kicker,
.hero-stage__fallback-feature-topline,
.hero-stage__fallback-proof-signal-label,
.portfolio-casebook__spec-label,
.portfolio-casebook__rail-eyebrow,
.portfolio-casebook__footer-eyebrow,
.portfolio-proof__eyebrow,
.faq-directory__label,
.faq-group__index,
.contact-hero__eyebrow,
.contact-request-card__eyebrow,
.contact-request__support-eyebrow,
.contact-location__eyebrow,
.contact-info-card__label,
.contact-support-card__label,
.requisites-hero__eyebrow,
.requisites-card__eyebrow,
.requisites-note__eyebrow,
.requisites-cta-card__eyebrow,
.requisites-hero__panel-eyebrow,
.requisites-metric__label,
.form-grid span {
  font-size: 0.78rem;
  line-height: 1.38;
  letter-spacing: 0.16em;
}

.hero-shell__meta span,
.service-page__hero-meta span,
.industry-page__hero-focus-item span,
.info-page__hero-map-item span {
  font-size: 0.76rem;
  line-height: 1.34;
  letter-spacing: 0.15em;
}

.hero-shell__meta div,
.service-page__hero-meta div,
.industry-page__hero-focus-item,
.info-page__hero-map-item {
  align-content: start;
  overflow: hidden;
}

.service-page__hero-meta,
.industry-page__hero-focus,
.info-page__hero-map {
  gap: 14px;
}

.service-page__hero-meta div,
.industry-page__hero-focus-item,
.info-page__hero-map-item,
.contact-info-card,
.contact-support-card,
.requisites-metric {
  padding: 18px 18px 17px;
  border-radius: 20px;
}

.service-page__hero-meta strong,
.industry-page__hero-focus-item strong,
.info-page__hero-map-item strong {
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.hero-stage__fallback-proof {
  overflow: hidden;
}

.hero-stage__fallback-proof-signals {
  gap: 14px;
  align-items: end;
}

.hero-stage__fallback-proof-signal,
.hero-stage__fallback-proof-signal:nth-child(3) {
  min-height: auto;
  padding: 22px 20px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stage__fallback-proof-signal:nth-child(2) {
  transform: translateY(12px);
}

.hero-stage__fallback-proof-signal:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(241, 180, 107, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.024);
}

.hero-stage__fallback-proof-signal strong {
  line-height: 1.04;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-stage__fallback-scene {
    animation: hero-scene-card-float 12s ease-in-out infinite alternate;
  }

  .hero-stage__fallback-scene img {
    animation: hero-scene-image-drift 18s ease-in-out infinite alternate;
    transform-origin: center center;
  }

  .hero-stage__fallback-scene-caption {
    animation: hero-scene-caption-drift 10s ease-in-out infinite alternate;
  }

  .hero-stage__fallback-proof::after {
    animation: hero-proof-ambient 16s ease-in-out infinite alternate;
  }

  .hero-stage__fallback-glass--left {
    animation: hero-fallback-glass-left-soft 16s ease-in-out infinite alternate;
  }

  .hero-stage__fallback-glass--right {
    animation: hero-fallback-glass-right-soft 18s ease-in-out infinite alternate;
  }
}

.hero-stage__fallback-copyflow {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.hero-stage__fallback-copymain {
  max-width: 760px;
  gap: 18px;
}

.hero-stage__fallback-panel h1 {
  max-width: 13.8ch;
  font-size: clamp(2.7rem, 4.4vw, 4.95rem);
}

.hero-stage__fallback-panel .hero-shell__lede {
  max-width: 42ch;
}

.hero-stage__fallback-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 14px;
  align-items: end;
}

.hero-stage__fallback-showcase-media {
  position: relative;
  margin: 0;
  min-height: 0;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(208, 220, 229, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 251, 0.82));
  box-shadow: 0 16px 34px rgba(18, 34, 52, 0.08);
}

.hero-stage__fallback-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.hero-stage__fallback-showcase-note {
  display: grid;
  align-content: end;
  align-self: end;
  gap: 10px;
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(214, 224, 233, 0.88);
  background:
    radial-gradient(circle at top right, rgba(168, 198, 222, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 249, 252, 0.94));
  box-shadow:
    0 16px 34px rgba(18, 34, 52, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.hero-stage__fallback-showcase-note span {
  color: rgba(240, 175, 101, 0.98);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stage__fallback-showcase-note strong {
  color: rgba(22, 34, 48, 0.98);
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-stage__fallback-showcase-note p {
  margin: 0;
  color: rgba(81, 96, 112, 0.94);
  font-size: 0.9rem;
  line-height: 1.56;
}

.hero-stage__fallback-salesnote {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.2fr);
  gap: 10px 24px;
  align-items: start;
  max-width: min(100%, 760px);
  justify-self: start;
  padding: 20px 22px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(166, 196, 220, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 248, 252, 0.94));
}

.hero-stage__fallback-salesnote-eyebrow {
  grid-column: 1;
}

.hero-stage__fallback-salesnote strong {
  grid-column: 1;
  max-width: 20ch;
  font-size: 1.02rem;
}

.hero-stage__fallback-salesnote-list {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  gap: 10px 18px;
}

.hero-stage__fallback-editorial {
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 18px;
}

.hero-stage__fallback-meta {
  gap: 12px;
}

.hero-stage__fallback-scene img {
  min-height: 312px;
}

.hero-stage__fallback-proof {
  align-self: start;
  gap: 18px;
}

.hero-stage__fallback-proof h2 {
  max-width: 11.5ch;
}

.hero-stage__fallback-proof p {
  max-width: 34ch;
  padding-bottom: 18px;
}

.hero-stage__fallback-proof-signals {
  gap: 12px;
}

.hero-stage__fallback-proof-signal:nth-child(2) {
  transform: none;
}

.hero-stage__fallback-proof-footer {
  gap: 12px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(241, 180, 107, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.018);
}

.hero-stage__fallback-scene::after {
  display: none;
}

.hero-stage__fallback-editorial {
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-stage__fallback-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stage__fallback-feature,
.hero-stage__fallback-feature:first-child {
  grid-column: auto;
  min-height: 138px;
}

.hero-stage__fallback-feature:first-child strong {
  max-width: 18ch;
}

.hero-stage__fallback-feature::after {
  width: 64px;
  height: 64px;
}

.hero-stage__fallback-feature strong,
.hero-stage__fallback-feature:first-child strong {
  font-size: 1rem;
  line-height: 1.34;
}

.hero-stage__fallback-feature-topline > span:last-child {
  max-width: 8ch;
}

.hero-stage__fallback-feature:nth-child(2),
.hero-stage__fallback-feature:nth-child(3) {
  align-content: start;
}

/* Home hero performance pass: remove the most expensive always-on filters and motion. */
.hero-stage__fallback-bg-media {
  filter: saturate(0.9) brightness(0.9);
  transform: none;
}

.hero-stage__fallback-glass {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(101, 135, 162, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-stage__fallback-panel {
  box-shadow:
    0 18px 42px rgba(16, 28, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-stage__fallback-proof {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 38px rgba(7, 15, 24, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-stage__fallback-scene,
  .hero-stage__fallback-scene img,
  .hero-stage__fallback-scene-caption,
  .hero-stage__fallback-proof::after,
  .hero-stage__fallback-glass--left,
  .hero-stage__fallback-glass--right {
    animation: none;
  }
}

/* Home hero feature-card compaction pass. */
.hero-stage__fallback-meta {
  gap: 10px;
}

.hero-stage__fallback-feature {
  gap: 12px;
  min-height: 116px;
  padding: 16px 18px 16px;
  border-radius: 22px;
}

.hero-stage__fallback-feature:first-child {
  min-height: 94px;
  padding-right: 18px;
}

.hero-stage__fallback-feature::before {
  height: 46px;
}

.hero-stage__fallback-feature::after {
  right: 16px;
  bottom: 14px;
  width: 72px;
  height: 72px;
  opacity: 0.82;
}

.hero-stage__fallback-feature-topline {
  gap: 10px;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.hero-stage__fallback-feature-topline > span:last-child {
  max-width: 11ch;
}

.hero-stage__fallback-feature-index {
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
}

.hero-stage__fallback-feature strong {
  font-size: 0.98rem;
  line-height: 1.34;
  max-width: 17ch;
}

.hero-stage__fallback-feature:first-child strong {
  font-size: 1.02rem;
  max-width: 24ch;
}

.hero-stage__fallback-feature:nth-child(2),
.hero-stage__fallback-feature:nth-child(3) {
  align-content: start;
}

/* Home hero compact pass for the two main panels. */
.hero-stage--fallback,
.hero-stage--fallback .hero-stage__viewport {
  min-height: clamp(580px, calc(100svh - 156px), 690px);
}

.hero-stage--fallback .hero-stage__viewport {
  gap: clamp(18px, 2.2vw, 28px);
  padding: clamp(18px, 2vw, 28px);
}

.hero-stage__fallback-panel {
  gap: 18px;
  padding: clamp(24px, 2.4vw, 32px);
}

.hero-stage__fallback-panel .hero-shell__lede {
  line-height: 1.64;
}

.hero-stage__fallback-actions {
  gap: 12px;
}

.hero-stage__fallback-actions .cta.primary,
.hero-stage__fallback-actions .cta.ghost {
  min-height: 52px;
  padding-inline: 22px;
}

.hero-stage__fallback-showcase {
  gap: 12px;
}

.hero-stage__fallback-showcase-media {
  aspect-ratio: 1.5 / 1;
  border-radius: 22px;
}

.hero-stage__fallback-showcase-note {
  gap: 8px;
  padding: 16px 16px 15px;
  border-radius: 22px;
}

.hero-stage__fallback-showcase-note strong {
  font-size: 1.08rem;
}

.hero-stage__fallback-showcase-note p {
  font-size: 0.84rem;
  line-height: 1.48;
}

.hero-stage__fallback-meta {
  gap: 8px;
}

.hero-stage__fallback-feature {
  min-height: 102px;
  gap: 10px;
  padding: 14px 16px 14px;
}

.hero-stage__fallback-feature:first-child {
  min-height: 84px;
  padding-right: 16px;
}

.hero-stage__fallback-feature strong,
.hero-stage__fallback-feature:first-child strong {
  font-size: 0.94rem;
  line-height: 1.28;
}

.hero-stage__fallback-proof {
  gap: 14px;
  padding: clamp(24px, 2.2vw, 30px);
}

.hero-stage__fallback-proof h2 {
  font-size: clamp(1.76rem, 2.2vw, 2.55rem);
}

.hero-stage__fallback-proof p {
  padding-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.58;
}

.hero-stage__fallback-proof-signals {
  gap: 10px;
}

.hero-stage__fallback-proof-signal,
.hero-stage__fallback-proof-signal:nth-child(3) {
  padding: 18px 16px 15px;
  border-radius: 20px;
}

.hero-stage__fallback-proof-signal strong {
  font-size: clamp(1.8rem, 2.1vw, 2.5rem);
}

.hero-stage__fallback-proof-footer {
  gap: 10px;
  padding: 14px 16px 15px;
  border-radius: 20px;
}

/* Extra compact pass for the two main hero panels. */
.hero-stage--fallback,
.hero-stage--fallback .hero-stage__viewport {
  min-height: clamp(520px, calc(100svh - 176px), 620px);
}

.hero-stage--fallback .hero-stage__viewport {
  gap: 16px;
  padding: 16px;
}

.hero-stage__fallback-panel {
  gap: 14px;
  padding: 20px 20px 18px;
}

.hero-stage__fallback-panel h1 {
  font-size: clamp(2.28rem, 3.5vw, 4rem);
}

.hero-stage__fallback-panel .hero-shell__lede {
  font-size: 0.94rem;
  line-height: 1.54;
}

.hero-stage__fallback-actions .cta.primary,
.hero-stage__fallback-actions .cta.ghost {
  min-height: 48px;
  padding-inline: 18px;
}

.hero-stage__fallback-showcase {
  gap: 10px;
}

.hero-stage__fallback-showcase-media {
  aspect-ratio: 1.7 / 1;
  border-radius: 20px;
}

.hero-stage__fallback-showcase-note {
  gap: 7px;
  padding: 13px 14px 12px;
  border-radius: 18px;
}

.hero-stage__fallback-showcase-note span {
  font-size: 0.62rem;
}

.hero-stage__fallback-showcase-note strong {
  font-size: 1rem;
}

.hero-stage__fallback-showcase-note p {
  font-size: 0.8rem;
  line-height: 1.42;
}

.hero-stage__fallback-meta {
  gap: 8px;
}

.hero-stage__fallback-feature {
  min-height: 88px;
  gap: 8px;
  padding: 12px 13px 12px;
  border-radius: 18px;
}

.hero-stage__fallback-feature:first-child {
  min-height: 72px;
  padding-right: 13px;
}

.hero-stage__fallback-feature::before {
  height: 36px;
}

.hero-stage__fallback-feature::after {
  width: 54px;
  height: 54px;
  right: 12px;
  bottom: 10px;
}

.hero-stage__fallback-feature-topline {
  gap: 8px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.hero-stage__fallback-feature-index {
  min-width: 28px;
  height: 28px;
  border-radius: 10px;
}

.hero-stage__fallback-feature strong,
.hero-stage__fallback-feature:first-child strong {
  font-size: 0.88rem;
  line-height: 1.22;
}

.hero-stage__fallback-proof {
  gap: 12px;
  padding: 20px 18px 18px;
}

.hero-stage__fallback-proof-topline {
  gap: 12px;
}

.hero-stage__fallback-proof-index {
  font-size: clamp(2.6rem, 3.4vw, 4rem);
}

.hero-stage__fallback-proof h2 {
  font-size: clamp(1.56rem, 2vw, 2.15rem);
  line-height: 0.94;
}

.hero-stage__fallback-proof p {
  padding-bottom: 12px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-stage__fallback-proof-signals {
  gap: 8px;
}

.hero-stage__fallback-proof-signal,
.hero-stage__fallback-proof-signal:nth-child(3) {
  gap: 10px;
  padding: 14px 13px 12px;
  border-radius: 16px;
}

.hero-stage__fallback-proof-signal-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.hero-stage__fallback-proof-signal strong {
  font-size: clamp(1.56rem, 1.9vw, 2.1rem);
}

.hero-stage__fallback-proof-signal-rule {
  width: 60px;
  height: 3px;
}

.hero-stage__fallback-proof-footer {
  gap: 8px;
  padding: 12px 13px 12px;
  border-radius: 16px;
}

.hero-stage__fallback-proof-footer p {
  font-size: 0.82rem;
  line-height: 1.44;
}

/* Ultra compact pass for users who want the hero significantly shorter. */
.hero-stage--fallback,
.hero-stage--fallback .hero-stage__viewport {
  min-height: clamp(440px, calc(100svh - 210px), 540px);
}

.hero-stage--fallback .hero-stage__viewport {
  gap: 14px;
  padding: 14px;
}

.hero-stage__fallback-panel {
  gap: 12px;
  padding: 16px 16px 15px;
}

.hero-stage__fallback-panel h1 {
  max-width: 11.2ch;
  font-size: clamp(1.88rem, 3vw, 3.1rem);
  line-height: 0.92;
}

.hero-stage__fallback-panel .hero-shell__lede {
  max-width: 36ch;
  font-size: 0.86rem;
  line-height: 1.42;
}

.hero-stage__fallback-actions {
  gap: 10px;
}

.hero-stage__fallback-actions .cta.primary,
.hero-stage__fallback-actions .cta.ghost {
  min-height: 42px;
  padding-inline: 15px;
}

.hero-stage__fallback-showcase {
  gap: 8px;
}

.hero-stage__fallback-showcase-media {
  aspect-ratio: 1.95 / 1;
  border-radius: 18px;
}

.hero-stage__fallback-showcase-note {
  gap: 6px;
  padding: 10px 11px;
  border-radius: 14px;
}

.hero-stage__fallback-showcase-note span {
  font-size: 0.56rem;
}

.hero-stage__fallback-showcase-note strong {
  font-size: 0.88rem;
  line-height: 1.02;
}

.hero-stage__fallback-showcase-note p {
  font-size: 0.74rem;
  line-height: 1.32;
}

.hero-stage__fallback-meta {
  gap: 6px;
}

.hero-stage__fallback-feature {
  min-height: 72px;
  gap: 6px;
  padding: 10px 11px 10px;
  border-radius: 15px;
}

.hero-stage__fallback-feature:first-child {
  min-height: 62px;
  padding-right: 11px;
}

.hero-stage__fallback-feature::before {
  height: 28px;
}

.hero-stage__fallback-feature::after {
  width: 42px;
  height: 42px;
  right: 10px;
  bottom: 8px;
}

.hero-stage__fallback-feature-topline {
  gap: 6px;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.hero-stage__fallback-feature-topline > span:last-child {
  max-width: 7.5ch;
}

.hero-stage__fallback-feature-index {
  min-width: 24px;
  height: 24px;
  border-radius: 8px;
}

.hero-stage__fallback-feature strong,
.hero-stage__fallback-feature:first-child strong {
  font-size: 0.78rem;
  line-height: 1.16;
  max-width: none;
}

.hero-stage__fallback-proof {
  gap: 10px;
  padding: 16px 14px 14px;
}

.hero-stage__fallback-proof-topline {
  gap: 10px;
}

.hero-stage__fallback-proof-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.hero-stage__fallback-proof-index {
  font-size: clamp(2.1rem, 2.8vw, 3.2rem);
}

.hero-stage__fallback-proof h2 {
  max-width: 10.5ch;
  font-size: clamp(1.24rem, 1.7vw, 1.7rem);
}

.hero-stage__fallback-proof p {
  max-width: 30ch;
  padding-bottom: 10px;
  font-size: 0.78rem;
  line-height: 1.38;
}

.hero-stage__fallback-proof-signals {
  gap: 6px;
}

.hero-stage__fallback-proof-signal,
.hero-stage__fallback-proof-signal:nth-child(3) {
  gap: 8px;
  padding: 11px 10px 10px;
  border-radius: 13px;
}

.hero-stage__fallback-proof-signal-label {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
}

.hero-stage__fallback-proof-signal strong {
  font-size: clamp(1.28rem, 1.55vw, 1.74rem);
  line-height: 0.96;
}

.hero-stage__fallback-proof-signal-rule {
  width: 44px;
}

.hero-stage__fallback-proof-footer {
  gap: 6px;
  padding: 10px;
  border-radius: 13px;
}

.hero-stage__fallback-proof-footer span {
  font-size: 0.58rem;
}

.hero-stage__fallback-proof-footer p {
  font-size: 0.74rem;
  line-height: 1.32;
}

/* Left hero redesign: three-piece top rail, then copy and actions. */
.hero-stage__fallback-panel {
  align-content: start;
  gap: 10px;
}

.hero-stage__fallback-toprail {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.7fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-stage__fallback-toprail-visual {
  grid-row: 1 / span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(205, 217, 227, 0.9);
  background: rgba(255, 255, 255, 0.78);
  aspect-ratio: 1.78 / 1;
}

.hero-stage__fallback-toprail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.hero-stage__fallback-toprail-card {
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 11px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(211, 223, 232, 0.9);
  background:
    radial-gradient(circle at top right, rgba(164, 196, 220, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(244, 249, 252, 0.94));
}

.hero-stage__fallback-toprail-card span {
  color: rgba(240, 175, 101, 0.98);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stage__fallback-toprail-card strong {
  color: rgba(24, 37, 52, 0.98);
  font-size: 0.82rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero-stage__fallback-copyflow {
  gap: 10px;
}

.hero-stage__fallback-copymain {
  gap: 10px;
}

.hero-stage__fallback-copymain .hero-shell__kicker {
  margin-bottom: 2px;
}

.hero-stage__fallback-actions {
  margin-top: 2px;
}

.hero-stage__fallback-tailnote {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 2px;
}

.hero-stage__fallback-tailnote span {
  color: rgba(117, 133, 149, 0.92);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stage__fallback-tailnote strong {
  color: rgba(48, 64, 81, 0.94);
  font-size: 0.78rem;
  line-height: 1.2;
}

.hero-stage__fallback-showcase,
.hero-stage__fallback-editorial {
  display: none;
}

/* Refined compact pass: freer text width and shorter left hero. */
.hero-stage__fallback-panel {
  gap: 8px;
  padding: 14px 14px 13px;
}

.hero-stage__fallback-toprail {
  grid-template-columns: minmax(0, 1.55fr) minmax(200px, 0.8fr);
  gap: 6px;
}

.hero-stage__fallback-toprail-visual {
  position: relative;
  border-radius: 14px;
  aspect-ratio: 2.34 / 1;
  box-shadow:
    0 14px 28px rgba(18, 34, 52, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-stage__fallback-toprail-card {
  position: relative;
  gap: 5px;
  padding: 10px 11px 9px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(18, 34, 52, 0.04);
}

.hero-stage__fallback-toprail-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 21, 33, 0.22), rgba(11, 21, 33, 0.02) 26%, rgba(11, 21, 33, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-stage__fallback-toprail-visual::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-stage__fallback-toprail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(240, 175, 101, 0.94), rgba(240, 175, 101, 0.28));
}

.hero-stage__fallback-toprail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-stage__fallback-toprail-card-label {
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  color: rgba(240, 175, 101, 0.98);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stage__fallback-toprail-card-value {
  color: rgba(18, 32, 46, 0.98);
  font-size: 0.78rem;
  line-height: 1.14;
  max-width: 21ch;
}

.hero-stage__fallback-toprail-card-index {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(168, 182, 196, 0.42);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stage__fallback-copyflow {
  gap: 8px;
}

.hero-stage__fallback-copymain {
  max-width: none;
  width: 100%;
  gap: 8px;
}

.hero-stage__fallback-copymain .hero-shell__kicker {
  margin-bottom: 0;
}

.hero-stage__fallback-panel h1 {
  max-width: none;
  font-size: clamp(1.86rem, 2.9vw, 3.08rem);
  letter-spacing: -0.06em;
}

.hero-stage__fallback-panel .hero-shell__lede {
  max-width: none;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(83, 97, 112, 0.96);
}

.hero-stage__fallback-actions {
  gap: 8px;
  margin-top: 0;
}

.hero-stage__fallback-cta-row {
  display: grid;
  grid-template-columns: auto minmax(210px, 0.9fr);
  gap: 16px;
  align-items: end;
}

.hero-stage__fallback-actions .cta.primary,
.hero-stage__fallback-actions .cta.ghost {
  min-height: 38px;
  padding-inline: 14px;
}

.hero-stage__fallback-actions .cta.primary {
  box-shadow: 0 12px 22px rgba(18, 31, 45, 0.14);
}

.hero-stage__fallback-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.82);
}

.hero-stage__fallback-tailnote {
  display: none;
}

@media (max-width: 1100px) {
  .hero-stage__fallback-toprail {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-stage__fallback-toprail-visual {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .hero-stage__fallback-toprail {
    gap: 6px;
  }

  .hero-stage__fallback-panel {
    gap: 8px;
    padding: 12px;
  }

  .hero-stage__fallback-toprail-visual,
  .hero-stage__fallback-toprail-card {
    border-radius: 14px;
  }

  .hero-stage__fallback-toprail-card {
    padding: 10px;
  }

  .hero-stage__fallback-panel h1 {
    font-size: clamp(1.58rem, 7vw, 2.2rem);
    max-width: none;
  }

  .hero-stage__fallback-panel .hero-shell__lede {
    max-width: none;
    font-size: 0.78rem;
  }

  .hero-stage__fallback-tailnote {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 1100px) {
  .hero-stage__fallback-panel h1 {
    max-width: 12.8ch;
  }

  .hero-stage__fallback-showcase {
    grid-template-columns: 1fr;
  }

  .hero-stage__fallback-showcase-media,
  .hero-stage__fallback-showcase-media img {
    min-height: 0;
  }

  .hero-stage__fallback-meta {
    grid-template-columns: 1fr;
  }

  .hero-stage__fallback-salesnote {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
  }

  .hero-stage__fallback-salesnote strong,
  .hero-stage__fallback-salesnote-list {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }

  .hero-stage__fallback-editorial {
    grid-template-columns: 1fr;
  }

  .hero-stage__fallback-feature,
  .hero-stage__fallback-feature:first-child {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .hero-stage__fallback-panel h1 {
    max-width: 11.5ch;
    font-size: clamp(1.96rem, 8.2vw, 2.72rem);
    line-height: 0.95;
  }

  .hero-stage__fallback-showcase {
    gap: 10px;
  }

  .hero-stage__fallback-showcase-media,
  .hero-stage__fallback-showcase-media img {
    min-height: 0;
    border-radius: 20px;
  }

  .hero-stage__fallback-showcase-note {
    padding: 16px 15px 14px;
    border-radius: 18px;
  }

  .hero-stage__fallback-showcase-note strong {
    font-size: 1rem;
  }

  .hero-stage__fallback-showcase-note p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .hero-stage__fallback-salesnote {
    padding: 16px 15px 14px;
    border-radius: 18px;
  }

  .hero-stage__fallback-scene img {
    min-height: 220px;
  }

  .hero-stage__fallback-proof-footer {
    padding: 15px 15px 14px;
    border-radius: 18px;
  }

  .hero-stage__fallback-feature {
    gap: 10px;
    padding: 14px 14px 13px;
  }

  .hero-stage__fallback-feature:first-child {
    padding-right: 14px;
  }

  .hero-stage__fallback-feature strong,
  .hero-stage__fallback-feature:first-child strong {
    font-size: 0.94rem;
    line-height: 1.32;
    max-width: none;
  }
}

/* Final premium refinement pass for the two main hero blocks. */
.hero-stage__fallback-panel {
  border-color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.98), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(173, 202, 224, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 252, 0.9));
  box-shadow:
    0 22px 44px rgba(17, 30, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-stage__fallback-toprail {
  position: relative;
  padding-bottom: 6px;
}

.hero-stage__fallback-toprail::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(206, 220, 231, 0), rgba(206, 220, 231, 0.72), rgba(206, 220, 231, 0));
}

.hero-stage__fallback-toprail-visual {
  border-color: rgba(214, 225, 233, 0.94);
  box-shadow:
    0 16px 30px rgba(17, 32, 46, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-stage__fallback-toprail-visual::before {
  background:
    linear-gradient(90deg, rgba(11, 21, 33, 0.26), rgba(11, 21, 33, 0.04) 28%, rgba(11, 21, 33, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.hero-stage__fallback-toprail-card {
  padding-left: 14px;
  align-content: center;
  border-color: rgba(215, 226, 234, 0.94);
  background:
    radial-gradient(circle at top right, rgba(159, 191, 216, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 252, 0.96));
  box-shadow:
    0 12px 24px rgba(18, 34, 52, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-stage__fallback-toprail-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(240, 175, 101, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 242, 0.96));
}

.hero-stage__fallback-toprail-card-label {
  color: rgba(224, 150, 69, 0.98);
}

.hero-stage__fallback-toprail-card-value {
  color: rgba(21, 34, 47, 0.98);
  font-size: 0.8rem;
}

.hero-stage__fallback-copyflow {
  padding-top: 4px;
}

.hero-stage__fallback-copymain .hero-shell__kicker {
  color: rgba(18, 34, 52, 0.96);
  border-color: rgba(204, 218, 230, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-stage__fallback-panel h1 {
  color: #16253a;
}

.hero-stage__fallback-panel .hero-shell__lede {
  color: rgba(73, 89, 106, 0.96);
}

.hero-stage__fallback-actions .cta.primary {
  box-shadow: 0 14px 24px rgba(18, 31, 45, 0.16);
}

.hero-stage__fallback-proof {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 16%, rgba(100, 151, 192, 0.18), transparent 26%),
    radial-gradient(circle at 20% 84%, rgba(56, 98, 132, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(13, 24, 38, 0.995), rgba(21, 37, 54, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 46px rgba(8, 16, 25, 0.22);
}

.hero-stage__fallback-proof::before {
  background: linear-gradient(180deg, rgba(240, 175, 101, 0.18), rgba(120, 190, 246, 0.08));
}

.hero-stage__fallback-proof-topline {
  padding-bottom: 2px;
}

.hero-stage__fallback-proof h2 {
  color: rgba(248, 251, 253, 0.98);
  text-wrap: balance;
}

.hero-stage__fallback-proof p {
  color: rgba(219, 228, 236, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.hero-stage__fallback-proof-signal,
.hero-stage__fallback-proof-signal:nth-child(3) {
  border-color: rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.024);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 24px rgba(8, 15, 24, 0.14);
}

.hero-stage__fallback-proof-signal strong {
  color: rgba(248, 251, 253, 0.98);
}

.hero-stage__fallback-proof-signal:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(241, 180, 107, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.03);
}

.hero-stage__fallback-proof-footer {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(240, 175, 101, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
}

@media (max-width: 720px) {
  .hero-stage__fallback-cta-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-stage__fallback-toprail::after {
    display: none;
  }

  .hero-stage__fallback-panel {
    padding: 12px;
  }

  .hero-stage__fallback-toprail-card {
    padding-left: 12px;
  }
}

/* Disable fallback entrance flicker so the hero looks stable on first paint. */
@media (prefers-reduced-motion: no-preference) {
  .hero-stage--fallback .hero-stage__fallback-panel,
  .hero-stage--fallback .hero-stage__fallback-proof,
  .hero-stage--fallback .hero-stage__fallback-glass--left,
  .hero-stage--fallback .hero-stage__fallback-glass--right,
  .hero-stage--fallback .hero-stage__fallback-beam--top {
    animation: none;
  }
}

/* Right block cleanup: remove excessive background lines and rails behind the proof panel. */
.hero-stage--fallback .hero-stage__viewport::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.hero-stage--fallback .hero-stage__viewport::after {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.hero-stage__fallback-beam--top,
.hero-stage__fallback-beam--side,
.hero-stage__fallback-line,
.hero-stage__fallback-glass--right {
  display: none;
}

.hero-stage__fallback-proof::before,
.hero-stage__fallback-proof::after {
  display: none;
}

.gallery-album-rail__item--all {
  min-height: 0;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
}

.gallery-album-rail__item--all::before {
  inset: auto -10% -20% auto;
  width: 150px;
}

.gallery-album-rail__item--all > span:not(.gallery-album-rail__eyebrow):not(.gallery-album-rail__summary) {
  max-width: 34ch;
  line-height: 1.55;
}

.gallery-album-rail__summary {
  row-gap: 10px;
}

.solution-feature,
.solution-feature__media,
.blog-lead__media {
  overflow: hidden;
}

.solution-feature__media,
.blog-lead__media {
  border-radius: inherit;
}

.solution-feature__media::after {
  background:
    linear-gradient(180deg, rgba(12, 22, 33, 0.03), rgba(12, 22, 33, 0.12)),
    linear-gradient(90deg, transparent 0%, transparent 76%, rgba(255, 255, 255, 0.12) 100%);
}

.blog-lead__media::before {
  inset: 18px 18px auto auto;
  width: clamp(72px, 14vw, 132px);
}

.lead-form--contact-screen .form-grid span {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

@media (max-width: 900px) {
  .service-page__hero-meta,
  .industry-page__hero-focus,
  .info-page__hero-map {
    gap: 12px;
  }

  .gallery-album-rail__item--all > span:not(.gallery-album-rail__eyebrow):not(.gallery-album-rail__summary) {
    max-width: none;
  }
}

/* Final professional refinement pass for cross-page rhythm and liveliness. */
.page-home .hero-shell__kicker,
.page-portfolio .hero-shell__kicker,
.page-clients .hero-shell__kicker {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.services-page-view .section-shell,
.service-page-view .section-shell,
.industry-page-view .section-shell,
.info-page-view .section-shell {
  padding-bottom: clamp(42px, 5vw, 56px);
}

.services-page-view .section-heading,
.service-page-view .section-heading,
.industry-page-view .section-heading,
.info-page-view .section-heading {
  margin-bottom: 26px;
}

.service-page__dossier,
.industry-page__panel,
.info-page__panel {
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(111, 167, 214, 0.2), transparent 30%),
    radial-gradient(circle at bottom left, rgba(241, 182, 103, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(10, 18, 29, 0.99), rgba(23, 36, 51, 0.98));
}

.service-page__hero-meta div,
.industry-page__hero-focus-item,
.info-page__hero-map-item,
.service-page__benefits-section .metric-card,
.industry-page__cards .service-card,
.info-page__sections .detail-card,
.info-page__process .timeline-card,
.services-page__feature,
.services-page__cta-shell {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-page__hero-meta div:hover,
.industry-page__hero-focus-item:hover,
.info-page__hero-map-item:hover,
.service-page__benefits-section .metric-card:hover,
.industry-page__cards .service-card:hover,
.info-page__sections .detail-card:hover,
.info-page__process .timeline-card:hover,
.services-page__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(17, 31, 44, 0.12);
}

.service-page__benefits-section .metric-card,
.industry-page__cards .service-card,
.info-page__sections .detail-card,
.info-page__process .timeline-card {
  border-radius: 26px;
}

.portfolio-casebook__lead-topline,
.portfolio-casebook__item-topline {
  min-width: 0;
  line-height: 1;
}

.portfolio-casebook__lead-index,
.portfolio-casebook__item-index {
  line-height: 0.92;
}

.gallery-album-rail__item--all {
  align-content: start;
}

.gallery-album-rail__item--all strong {
  line-height: 1.04;
}

.client-card {
  border-radius: 26px;
}

.client-card__media {
  min-height: 188px;
  background:
    radial-gradient(circle at top right, rgba(95, 168, 187, 0.24), transparent 44%),
    linear-gradient(180deg, rgba(12, 24, 36, 0.06), rgba(12, 24, 36, 0.02));
}

.client-card__media img {
  transition: transform 180ms ease, filter 180ms ease;
}

.client-card:hover .client-card__media img {
  transform: scale(1.02);
  filter: saturate(1) contrast(1.04);
}

.client-card__media img[data-fallback="1"] {
  max-width: none;
  width: 100%;
  max-height: none;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.page-catalogs .catalogs-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 24px;
  align-items: stretch;
}

.page-catalogs .catalogs-hero__aside {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 34px;
  color: #f4f7fb;
  background:
    radial-gradient(circle at top right, rgba(78, 133, 171, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(10, 18, 29, 0.98), rgba(16, 29, 44, 0.94));
  box-shadow: 0 28px 50px rgba(11, 20, 32, 0.18);
}

.page-catalogs .catalogs-hero__aside-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 194, 111, 0.94);
}

.page-catalogs .catalogs-hero__aside h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.28rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #fff;
}

.page-catalogs .catalogs-hero__aside > p {
  margin: 0;
  color: rgba(229, 236, 244, 0.82);
  line-height: 1.68;
}

.page-catalogs .catalogs-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-catalogs .catalogs-hero__stat {
  display: grid;
  gap: 10px;
  min-height: 110px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.page-catalogs .catalogs-hero__stat span,
.page-catalogs .catalogs-hero__codes > span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(207, 219, 232, 0.72);
}

.page-catalogs .catalogs-hero__stat strong {
  font-size: clamp(1.18rem, 1.5vw, 1.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
}

.page-catalogs .catalogs-hero__route-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-catalogs .catalogs-hero__route-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(232, 239, 246, 0.84);
  line-height: 1.58;
}

.page-catalogs .catalogs-hero__route-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 194, 111, 0.92);
  box-shadow: 0 0 0 6px rgba(255, 194, 111, 0.12);
}

.page-catalogs .catalogs-hero__codes {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.page-catalogs .catalogs-hero__code-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-catalogs .catalogs-hero__code-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
  font-weight: 700;
  color: #fff;
}

.clients-page-view .client-showcase-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clients-page-view .client-showcase-summary__card {
  display: grid;
  gap: 12px;
  min-height: 156px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9));
  box-shadow: 0 20px 42px rgba(111, 141, 165, 0.12);
}

.clients-page-view .client-showcase-summary__card span,
.clients-page-view .client-card__host {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(89, 108, 128, 0.8);
}

.clients-page-view .client-showcase-summary__card strong {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #132132;
}

.clients-page-view .client-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.clients-page-view .client-card {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.clients-page-view .client-card:first-child {
  grid-column: span 1;
  grid-template-columns: 1fr;
}

.clients-page-view .client-card__body {
  gap: 16px;
}

.clients-page-view .client-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.clients-page-view .client-card__linkline {
  color: rgba(73, 90, 108, 0.82);
  font-weight: 600;
}

.clients-page-view .hero-shell__panel .bullet-list--inverse {
  gap: 10px;
}

.clients-page-view .hero-shell__panel .bullet-list--inverse li {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(247, 251, 253, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.clients-page-view .hero-shell__panel .bullet-list--inverse li::before {
  background: rgba(112, 226, 255, 0.95);
  box-shadow: 0 0 0 6px rgba(112, 226, 255, 0.12);
}

.page-blog .blog-page-tools__summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-blog .blog-search--page,
.page-blog .blog-topic-nav,
.page-blog .blog-page-tools__brief {
  grid-column: 1 / -1;
}

.page-blog .blog-page-tools__summary-card {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9));
  box-shadow: 0 18px 36px rgba(112, 142, 164, 0.1);
}

.page-blog .blog-page-tools__summary-card strong {
  font-size: clamp(1.18rem, 1.6vw, 1.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #132132;
}

.page-blog .blog-page-tools__summary-card span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(89, 108, 128, 0.78);
}

.page-blog .blog-page-tools__brief {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 28px;
  color: #f5f8fb;
  background:
    radial-gradient(circle at top right, rgba(78, 133, 171, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(10, 18, 29, 0.98), rgba(16, 29, 44, 0.94));
  box-shadow: 0 22px 42px rgba(12, 21, 31, 0.16);
}

.page-blog .blog-page-tools__brief-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 194, 111, 0.94);
}

.page-blog .blog-page-tools__brief h2 {
  margin: 0;
  font-size: clamp(1.32rem, 2vw, 1.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}

.page-blog .blog-page-tools__brief p {
  margin: 0;
  color: rgba(229, 236, 244, 0.84);
}

.page-blog .blog-page-tools__brief-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-blog .blog-page-tools__brief-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(240, 245, 250, 0.9);
  line-height: 1.58;
}

.page-blog .blog-page-tools__brief-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 194, 111, 0.92);
  box-shadow: 0 0 0 6px rgba(255, 194, 111, 0.12);
}

@media (max-width: 1100px) {
  .page-catalogs .catalogs-hero__grid,
  .clients-page-view .client-card:first-child {
    grid-template-columns: 1fr;
  }

  .clients-page-view .client-card:first-child {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .page-catalogs .catalogs-hero__stats,
  .clients-page-view .client-showcase-summary__grid,
  .page-blog .blog-page-tools__summary {
    grid-template-columns: 1fr;
  }

  .clients-page-view .client-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-catalogs .catalogs-hero__aside,
  .clients-page-view .client-showcase-summary__card,
  .page-blog .blog-page-tools__brief,
  .page-blog .blog-page-tools__summary-card {
    padding: 20px;
    border-radius: 24px;
  }

  .clients-page-view .client-showcase-grid {
    grid-template-columns: 1fr;
  }

  .page-catalogs .catalogs-hero__stat,
  .page-blog .blog-page-tools__summary-card {
    min-height: 0;
  }

  .clients-page-view .client-card__meta-row {
    align-items: start;
    flex-direction: column;
  }
}

/* June 2026: catalogs page cleanup - tighter B2B layout, less empty vertical mass. */
body.page-catalogs .catalogs-hero {
  padding: clamp(18px, 2.4vw, 34px) 0 clamp(26px, 3.8vw, 48px);
}

body.page-catalogs .catalogs-hero__grid {
  align-items: stretch;
  gap: clamp(14px, 1.4vw, 22px);
}

body.page-catalogs .catalogs-hero__content,
body.page-catalogs .catalogs-hero__aside {
  min-width: 0;
  border-radius: 28px;
}

body.page-catalogs .catalogs-hero__content {
  display: grid;
  align-content: center;
  gap: clamp(14px, 1.5vw, 20px);
  padding: clamp(24px, 3vw, 40px);
}

body.page-catalogs .catalogs-hero__content h1 {
  max-width: 12.8ch !important;
  font-size: clamp(2.7rem, 3.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

body.page-catalogs .catalogs-hero__content .lede {
  max-width: 58ch;
  line-height: 1.58;
}

body.page-catalogs .catalogs-hero__inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  margin-top: 8px;
  padding: clamp(16px, 1.6vw, 20px);
  border-radius: 22px;
}

body.page-catalogs .catalogs-hero__inline h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

body.page-catalogs .catalogs-hero__inline .section-subtitle {
  margin-top: 8px;
  line-height: 1.48;
}

body.page-catalogs .catalogs-hero__aside {
  gap: 14px;
  padding: clamp(22px, 2.4vw, 30px);
}

body.page-catalogs .catalogs-hero__aside h2 {
  font-size: clamp(1.4rem, 1.7vw, 1.85rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

body.page-catalogs .catalogs-hero__aside > p,
body.page-catalogs .catalogs-hero__route-list li {
  line-height: 1.48;
}

body.page-catalogs .catalogs-hero__stat {
  min-height: 86px;
  padding: 13px 14px;
  gap: 6px;
  border-radius: 18px;
}

body.page-catalogs .catalogs-hero__code-list i {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
}

body.page-catalogs .catalogs-main {
  padding-bottom: clamp(34px, 4vw, 54px);
}

body.page-catalogs .catalog-grid,
body.page-catalogs .catalog-grid--priority {
  gap: clamp(12px, 1.2vw, 18px);
}

body.page-catalogs .catalog-card {
  grid-template-rows: minmax(160px, 210px) 1fr;
  border-radius: 24px;
}

body.page-catalogs .catalog-card--priority:first-child {
  min-height: 0;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

body.page-catalogs .catalog-card--priority:first-child .catalog-media {
  min-height: 0;
}

body.page-catalogs .catalog-card--priority:first-child .catalog-card__body {
  padding: clamp(22px, 2.4vw, 30px);
}

body.page-catalogs .catalog-card--priority:first-child .catalog-title {
  font-size: clamp(1.85rem, 2.2vw, 2.55rem);
  line-height: 1.02;
}

body.page-catalogs .catalog-card--priority:not(:first-child) {
  grid-template-rows: minmax(160px, 205px) 1fr;
}

body.page-catalogs .catalog-media {
  min-height: 0;
  padding: 18px;
}

body.page-catalogs .catalog-card__body {
  gap: 11px;
  padding: clamp(18px, 1.7vw, 22px);
}

body.page-catalogs .catalog-title {
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

body.page-catalogs .catalog-desc {
  font-size: 0.93rem;
  line-height: 1.5;
}

body.page-catalogs .catalog-actions {
  gap: 9px;
}

body.page-catalogs .catalog-actions .cta {
  min-width: 0;
  min-height: 48px;
  flex: 1 1 148px;
  padding-inline: 16px;
  border-radius: 16px;
}

body.page-catalogs .catalog-subhead {
  margin: clamp(28px, 3.8vw, 46px) 0 18px;
}

body.page-catalogs .catalogs-request {
  padding-top: clamp(34px, 4.4vw, 58px);
}

body.page-catalogs .catalogs-request__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(16px, 1.4vw, 24px);
}

body.page-catalogs .catalogs-request-panel,
body.page-catalogs .catalogs-quote-card {
  padding: clamp(22px, 2.2vw, 30px);
  border-radius: 26px;
}

body.page-catalogs .catalogs-request-panel {
  gap: 16px;
}

body.page-catalogs .catalogs-request-panel__list {
  gap: 8px;
}

body.page-catalogs .catalogs-request-panel__meta {
  gap: 10px;
}

body.page-catalogs .catalogs-request-panel__meta-item {
  padding: 13px 14px;
  border-radius: 17px;
}

body.page-catalogs .quote-form--catalogs {
  gap: 14px;
}

body.page-catalogs .quote-form--catalogs textarea {
  min-height: 112px;
}

@media (min-width: 1440px) {
  body.page-catalogs .catalogs-hero__grid,
  body.page-catalogs .catalogs-main > .container,
  body.page-catalogs .catalogs-request__grid {
    width: min(calc(100% - 48px), 1540px);
  }
}

@media (max-width: 1100px) {
  body.page-catalogs .catalogs-hero__grid,
  body.page-catalogs .catalogs-request__grid {
    grid-template-columns: 1fr;
  }

  body.page-catalogs .catalogs-hero__content,
  body.page-catalogs .catalogs-hero__aside {
    border-radius: 26px;
  }
}

@media (max-width: 820px) {
  body.page-catalogs .catalogs-hero {
    padding-top: 8px;
    padding-bottom: 22px;
  }

  body.page-catalogs .catalogs-hero__content,
  body.page-catalogs .catalogs-hero__aside {
    padding: 18px;
    border-radius: 24px;
  }

  body.page-catalogs .catalogs-hero__content {
    gap: 12px;
  }

  body.page-catalogs .catalogs-hero__content h1 {
    max-width: 13.5ch !important;
    font-size: clamp(1.95rem, 8.2vw, 2.55rem);
    line-height: 1.02;
  }

  body.page-catalogs .catalogs-hero__content .lede {
    font-size: 0.97rem;
    line-height: 1.44;
  }

  body.page-catalogs .catalogs-hero__inline {
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 0;
    padding: 14px;
    border-radius: 20px;
  }

  body.page-catalogs .catalogs-hero__inline h2 {
    font-size: 1.08rem;
    line-height: 1.12;
  }

  body.page-catalogs .catalogs-hero__inline .section-subtitle {
    display: none;
  }

  body.page-catalogs .catalogs-hero__inline .cta {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  body.page-catalogs .catalogs-hero__aside {
    gap: 8px;
  }

  body.page-catalogs .catalogs-hero__aside h2 {
    font-size: 1.2rem;
    line-height: 1.16;
  }

  body.page-catalogs .catalogs-hero__route-list,
  body.page-catalogs .catalogs-hero__codes {
    display: none;
  }

  body.page-catalogs .catalogs-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.page-catalogs .catalogs-hero__stat {
    min-height: 72px;
    padding: 10px;
  }

  body.page-catalogs .catalogs-hero__stat span {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  body.page-catalogs .catalogs-hero__stat strong {
    font-size: 1rem;
  }

  body.page-catalogs .catalog-card,
  body.page-catalogs .catalog-card--priority,
  body.page-catalogs .catalog-card--priority:first-child,
  body.page-catalogs .catalog-card--priority:not(:first-child) {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(150px, 180px) auto;
  }

  body.page-catalogs .catalog-card--priority:first-child .catalog-title,
  body.page-catalogs .catalog-title {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  body.page-catalogs .catalog-card__body {
    gap: 9px;
    padding: 18px;
  }

  body.page-catalogs .catalog-desc {
    font-size: 0.9rem;
    line-height: 1.44;
  }

  body.page-catalogs .catalog-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.page-catalogs .catalog-actions .cta {
    width: 100%;
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.82rem;
    line-height: 1.12;
    text-align: center;
  }

  body.page-catalogs .catalogs-request__grid,
  body.page-catalogs .quote-form--catalogs .quote-form__grid--pair {
    grid-template-columns: 1fr;
  }

  body.page-catalogs .catalogs-request-panel,
  body.page-catalogs .catalogs-quote-card {
    padding: 20px 18px;
  }
}

/* Minimalist refinement for /clients */
.clients-page-view .hero-shell__grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 24px;
}

.clients-page-view .hero-shell__content {
  min-height: 0;
  gap: 18px;
  padding: clamp(28px, 3.4vw, 40px);
  border: 1px solid rgba(221, 230, 238, 0.94);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(192, 219, 237, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.92));
  box-shadow: 0 20px 46px rgba(92, 118, 140, 0.08);
}

.clients-page-view .hero-shell__content h1 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.clients-page-view .hero-shell__lede {
  max-width: 34ch;
  color: rgba(78, 95, 112, 0.9);
}

.clients-page-view .clients-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.clients-page-view .clients-hero__meta-item {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 0;
  padding: 16px 16px 18px;
  border: 1px solid rgba(221, 230, 238, 0.9);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.9));
}

.clients-page-view .clients-hero__meta-item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(97, 116, 136, 0.76);
}

.clients-page-view .clients-hero__meta-item strong {
  color: rgba(17, 27, 39, 0.96);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.clients-page-view .clients-hero__panel {
  min-height: 0;
  gap: 18px;
  padding: clamp(26px, 3vw, 34px);
  color: rgba(18, 30, 42, 0.96);
  border: 1px solid rgba(221, 230, 238, 0.92);
  background:
    radial-gradient(circle at top right, rgba(180, 210, 230, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.92));
  box-shadow: 0 20px 44px rgba(90, 116, 138, 0.08);
}

.clients-page-view .clients-hero__panel .hero-panel__label,
.clients-page-view .clients-hero__panel .hero-shell__panel-copy h2,
.clients-page-view .clients-hero__panel .hero-shell__panel-copy p,
.clients-page-view .clients-hero__panel .clients-hero__note {
  color: rgba(18, 30, 42, 0.94);
}

.clients-page-view .clients-hero__panel .hero-shell__panel-copy {
  gap: 12px;
  padding-bottom: 0;
  border-bottom: 0;
}

.clients-page-view .clients-hero__panel .hero-shell__panel-copy h2 {
  font-size: clamp(1.72rem, 2.2vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.clients-page-view .clients-hero__panel .hero-shell__panel-copy p {
  max-width: 32ch;
  color: rgba(78, 95, 112, 0.88);
  font-size: 0.98rem;
  line-height: 1.6;
}

.clients-page-view .clients-hero__points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clients-page-view .clients-hero__points li {
  position: relative;
  padding-left: 18px;
  color: rgba(62, 79, 97, 0.9);
  line-height: 1.58;
}

.clients-page-view .clients-hero__points li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(228, 154, 70, 0.92);
  box-shadow: 0 0 0 5px rgba(228, 154, 70, 0.1);
}

.clients-page-view .clients-hero__note {
  margin: 2px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(97, 116, 136, 0.72);
}

.clients-page-view .client-showcase-summary {
  padding-top: 8px;
}

.clients-page-view .client-showcase-summary__heading {
  margin-bottom: 18px;
}

.clients-page-view .client-showcase-summary__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(220, 229, 237, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(89, 116, 138, 0.06);
}

.clients-page-view .client-showcase-summary__item {
  display: grid;
  gap: 6px;
  align-content: start;
}

.clients-page-view .client-showcase-summary__item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(97, 116, 136, 0.72);
}

.clients-page-view .client-showcase-summary__item strong {
  color: rgba(16, 26, 38, 0.95);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.clients-page-view .section-heading__aside {
  max-width: 34ch;
}

.clients-page-view .client-showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.clients-page-view .client-card,
.clients-page-view .client-card:first-child {
  grid-column: auto;
  grid-template-columns: 138px minmax(0, 1fr);
  min-height: 0;
  border-radius: 28px;
  border-color: rgba(221, 230, 238, 0.92);
  background:
    radial-gradient(circle at top right, rgba(184, 212, 231, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.9));
  box-shadow: 0 18px 40px rgba(93, 118, 138, 0.08);
}

.clients-page-view .client-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(87, 113, 134, 0.1);
  border-color: rgba(211, 223, 233, 0.96);
}

.clients-page-view .client-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(249, 251, 253, 0.98), rgba(242, 247, 251, 0.92));
  border-right: 1px solid rgba(221, 230, 238, 0.82);
  border-bottom: 0;
}

.clients-page-view .client-card__media img {
  max-width: 84px;
  max-height: 52px;
  filter: saturate(0.9) contrast(1.02);
}

.clients-page-view .client-card__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(19, 33, 50, 0.96), rgba(28, 46, 67, 0.92));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(24, 41, 59, 0.16);
}

.clients-page-view .client-card__body {
  align-content: center;
  gap: 8px;
  padding: 18px 20px;
}

.clients-page-view .client-card__meta-row {
  display: block;
}

.clients-page-view .client-card__host {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(98, 116, 136, 0.76);
}

.clients-page-view .client-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.4vw, 1.34rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: rgba(15, 23, 33, 0.98);
}

.clients-page-view .client-card p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(80, 98, 116, 0.88);
  line-height: 1.5;
}

.clients-page-view .client-card__linkline {
  color: rgba(64, 82, 101, 0.86);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .clients-page-view .hero-shell__grid,
  .clients-page-view .client-showcase-summary__strip,
  .clients-page-view .client-showcase-grid {
    grid-template-columns: 1fr;
  }

  .clients-page-view .clients-hero__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .clients-page-view .hero-shell__content,
  .clients-page-view .clients-hero__panel,
  .clients-page-view .client-showcase-summary__strip,
  .clients-page-view .client-card,
  .clients-page-view .client-card:first-child {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .clients-page-view .clients-hero__meta-item,
  .clients-page-view .client-card__body,
  .clients-page-view .client-card__media {
    padding: 20px;
  }

  .clients-page-view .client-card__media {
    border-right: 0;
    border-bottom: 1px solid rgba(221, 230, 238, 0.82);
  }
}

/* Focused correction pass for /services visual balance. */
.services-page-view .hero-shell--services-page {
  padding-bottom: 56px;
}

.services-page-view .hero-shell--services-page .hero-shell__grid {
  align-items: start;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
}

.services-page-view .hero-shell__content {
  min-height: 0;
  padding: clamp(28px, 3.2vw, 42px);
  gap: 16px;
}

.services-page__panel {
  gap: 18px;
  padding: clamp(22px, 2.3vw, 30px);
  border-radius: 30px;
  box-shadow: 0 24px 42px rgba(9, 16, 24, 0.14);
}

.services-page__panel .hero-shell__panel-copy {
  gap: 10px;
  padding-bottom: 14px;
}

.services-page__panel .bullet-list--inverse {
  gap: 10px;
  margin-top: 4px;
}

.services-page__panel .bullet-list--inverse li {
  grid-template-columns: 16px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.012);
  font-size: 0.92rem;
  line-height: 1.46;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.services-page__panel .hero-shell__visual {
  display: none;
}

body.page-services main .services-page__panel .hero-shell__panel-copy h2 {
  font-size: clamp(1.9rem, 2.42vw, 2.42rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.044em !important;
}

body.page-services main .services-page__panel .hero-shell__panel-copy p {
  max-width: 30ch;
  font-size: 0.96rem;
  line-height: 1.58;
  color: rgba(223, 232, 241, 0.88);
}

body.page-services main .services-page__panel .hero-panel__label {
  letter-spacing: 0.18em;
}

body.page-services main .services-page__panel .bullet-list--inverse li::before {
  inline-size: 8px;
  block-size: 8px;
  margin-top: 0.48rem;
  box-shadow:
    0 0 0 4px rgba(244, 180, 99, 0.12),
    0 0 10px rgba(244, 180, 99, 0.12);
}

.services-page__overview-shell {
  gap: 22px;
}

.services-page__overview .section-heading {
  gap: 24px;
  margin-bottom: 22px;
}

.services-page__overview .section-heading__aside {
  padding-left: 14px;
  border-left-color: rgba(18, 30, 42, 0.08);
  color: rgba(74, 91, 108, 0.96);
  font-size: 1.04rem;
  line-height: 1.72;
}

body.page-services main .services-page__overview .section-heading h2,
body.page-services main .services-page__cross-card h2,
body.page-services main .services-page__cta-shell h2 {
  font-size: clamp(1.72rem, 2.3vw, 2.5rem) !important;
  line-height: 0.96 !important;
}

.services-page__editorial-stage {
  gap: 18px;
}

@media (max-width: 1024px) {
  .services-page-view .hero-shell--services-page .hero-shell__grid {
    grid-template-columns: 1fr;
  }

  .services-page-view .hero-shell__content {
    order: 0;
  }

  .services-page__panel {
    order: 1;
  }
}

.services-page__editorial {
  align-items: start;
}

.services-page__feature {
  min-height: 0;
  grid-template-rows: minmax(208px, 236px) auto;
  border-radius: 30px;
  box-shadow: 0 22px 40px rgba(111, 141, 165, 0.1);
}

.services-page__feature-copy {
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 2.1vw, 28px);
}

.services-page__feature-copy-main {
  gap: 10px;
}

body.page-services main .services-page__feature-copy h3,
body.page-services main .services-page__feature-title {
  font-size: clamp(1.62rem, 2vw, 2.18rem) !important;
  line-height: 0.96 !important;
}

.services-page__feature-copy p:last-of-type {
  max-width: 34ch;
  color: rgba(70, 86, 103, 0.94);
  line-height: 1.56;
}

.services-page__feature-copy-footer {
  padding-top: 8px;
  border-top-color: rgba(18, 30, 42, 0.05);
}

.services-page__feature-copy .cta {
  width: fit-content;
  padding-inline: 26px;
}

.services-page__feature-media {
  display: grid;
  overflow: hidden;
  padding: 18px;
}

.services-page__feature-media::after {
  inset: 18px;
  border-radius: 22px;
}

.services-page__feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.services-page__rail {
  gap: 12px;
  grid-template-rows: auto repeat(2, auto);
}

.services-page__rail-item {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 20px 22px 20px;
  border-radius: 28px;
  align-items: start;
}

body.page-services main .services-page__rail-item h3,
body.page-services main .services-page__rail-title {
  font-size: clamp(1.14rem, 1.24vw, 1.36rem) !important;
  line-height: 1.08 !important;
}

body.page-services main .services-page__subrail-head h3,
body.page-services main .services-page__subrail-item h3,
body.page-services main .services-page__subrail-title {
  font-size: clamp(1.18rem, 1.4vw, 1.5rem) !important;
  line-height: 1.06 !important;
}

.services-page__rail-item p:last-of-type {
  max-width: none;
  color: rgba(72, 89, 106, 0.94);
  line-height: 1.56;
  font-size: 0.97rem;
}

.services-page__rail-cta {
  justify-self: start;
  min-height: 44px;
  padding: 0 16px;
}

.services-page__subrail {
  gap: 14px;
  padding: clamp(20px, 2.2vw, 26px);
}

.services-page__subrail-item,
.services-page__cross-card {
  border-radius: 28px;
}

.services-page__cross-card {
  padding: 24px 26px 22px;
  gap: 10px;
}

.services-page__cross-card h2 {
  color: rgba(18, 30, 42, 0.96);
}

.services-page__cross-card p:last-of-type {
  max-width: 58ch;
  color: rgba(76, 92, 109, 0.95);
  font-size: 1.02rem;
  line-height: 1.64;
}

.services-page__subrail-item {
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px 18px 16px;
  gap: 12px;
}

.services-page__subrail-head {
  gap: 16px;
}

.services-page__subrail-aside {
  color: rgba(82, 99, 116, 0.92);
  font-size: 0.98rem;
  line-height: 1.68;
}

.services-page__subrail-item p:last-of-type {
  color: rgba(76, 92, 109, 0.95);
  font-size: 0.98rem;
  line-height: 1.62;
}

.services-page__subrail-cta {
  grid-column: 2;
  justify-self: start;
  min-height: 42px;
  padding: 0 15px;
}

.services-page__cta-shell {
  border-radius: 30px;
  padding: clamp(22px, 2.3vw, 30px);
  background:
    radial-gradient(circle at 82% 28%, rgba(99, 165, 216, 0.16), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(244, 180, 99, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92));
  box-shadow: 0 24px 42px rgba(110, 141, 165, 0.1);
}

.services-page__cta-copy {
  gap: 10px;
  max-width: 40rem;
}

.services-page__cta-shell h2 {
  color: rgba(18, 30, 42, 0.96);
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.services-page__cta-shell p:last-of-type {
  max-width: 46ch;
  color: rgba(74, 90, 107, 0.96);
  font-size: 1.02rem;
  line-height: 1.68;
}

.services-page__cta-actions {
  gap: 10px;
}

/* April 2026: live refinement pass for /services after browser review */
.services-page-view .section-shell {
  padding-block: clamp(42px, 4.6vw, 62px);
}

.services-page__hero-route {
  gap: 10px;
}

.services-page__hero-route-item {
  min-height: 0;
  gap: 6px;
  padding: 16px 16px 14px;
  box-shadow: 0 12px 24px rgba(105, 133, 156, 0.06);
}

.services-page__overview .section-heading {
  gap: 22px;
  margin-bottom: 18px;
}

.services-page__overview .section-heading__aside {
  max-width: none;
  padding: 18px 20px;
  border-left: 0;
  border: 1px solid rgba(212, 223, 232, 0.8);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 252, 0.84));
  box-shadow: 0 16px 30px rgba(108, 137, 161, 0.06);
}

.services-page__editorial-stage {
  gap: 16px;
}

.services-page__feature {
  min-height: 0;
  grid-template-rows: minmax(240px, 282px) auto;
  box-shadow: 0 18px 36px rgba(108, 137, 161, 0.09);
}

.services-page__feature-copy {
  gap: 14px;
  padding: clamp(22px, 2.3vw, 30px);
}

.services-page__feature-copy-main {
  gap: 12px;
}

.services-page__feature-copy p:last-of-type {
  max-width: none;
}

.services-page__feature-copy .cta {
  width: fit-content;
  min-height: 52px;
  padding-inline: 24px;
}

.services-page__feature-media {
  padding: 16px;
}

.services-page__feature-media::after {
  inset: 16px;
  border-radius: 22px;
}

.services-page__feature-media img {
  min-height: 240px;
  border-radius: 22px;
}

.services-page__rail {
  gap: 10px;
  grid-template-rows: auto repeat(2, auto);
}

.services-page__rail-item {
  gap: 12px;
  padding: 18px 20px;
  box-shadow: 0 14px 28px rgba(108, 137, 161, 0.07);
}

.services-page__rail-item p:last-of-type {
  max-width: none;
}

.services-page__subrail {
  gap: 16px;
  padding: clamp(22px, 2.4vw, 28px);
}

.services-page__subrail-head {
  grid-template-columns: 1fr;
  gap: 12px;
}

.services-page__subrail-aside {
  justify-self: start;
  max-width: 58ch;
}

.services-page__subrail-grid {
  gap: 12px;
}

.services-page__subrail-item {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px 18px 16px;
}

.services-page__subrail-cta {
  grid-column: 2;
  justify-self: start;
  min-height: 40px;
  padding: 0 14px;
}

.services-page__crosslinks .detail-grid {
  gap: 18px;
  align-items: start;
}

.services-page__cross-card {
  min-height: 0;
  padding: 22px 24px;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(108, 137, 161, 0.07);
}

.services-page__cross-card p:last-of-type {
  max-width: none;
}

.services-page__cross-card .link-stack {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.services-page__cross-card .link-stack a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  width: 100%;
  padding: 0 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 252, 0.84));
}

.services-page__cross-card .link-stack a::after {
  content: "\2197";
  color: rgba(84, 126, 156, 0.78);
  font-size: 1rem;
  font-weight: 700;
}

.services-page__cta-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 0;
  padding: clamp(24px, 2.6vw, 30px);
  background:
    radial-gradient(circle at 86% 26%, rgba(127, 183, 225, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.9));
  box-shadow: 0 18px 36px rgba(108, 137, 161, 0.08);
}

.services-page__cta-copy {
  gap: 10px;
  max-width: 42rem;
}

.services-page__cta-shell h2 {
  max-width: 13ch;
  color: rgba(18, 30, 42, 0.96);
}

.services-page__cta-shell p:last-of-type {
  max-width: 42ch;
  color: rgba(79, 96, 113, 0.94);
}

.services-page__cta-actions {
  align-self: end;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 0;
}

.services-page__cta-actions::before {
  content: none;
}

.services-page__cta-actions .cta {
  min-width: 0;
  min-height: 56px;
  padding: 0 24px;
}

.services-page__cta-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(18, 30, 42, 0.08);
}

@media (max-width: 1024px) {
  .services-page__overview .section-heading__aside {
    padding: 16px 18px;
  }

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

  .services-page__cta-actions {
    align-self: start;
  }
}

@media (max-width: 900px) {
  .services-page-view .section-shell {
    padding-block: 34px;
  }

  .services-page__cross-card .link-stack a {
    min-height: 48px;
  }
}

/* April 2026: diversified hero patterns for service, industry, info and article pages */
.service-page-view .hero-shell--service-page .hero-shell__grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.96fr);
  gap: clamp(24px, 2.8vw, 34px);
}

.service-page-view .hero-shell__content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(243, 248, 252, 0.94)),
    linear-gradient(180deg, rgba(229, 236, 242, 0.35), rgba(255, 255, 255, 0.1));
}

.service-page__hero-meta {
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(218, 228, 236, 0.9);
  background:
    linear-gradient(180deg, rgba(247, 250, 253, 0.94), rgba(240, 246, 250, 0.88));
}

.service-page__dossier {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}

.service-page__spec-strip {
  gap: 10px;
}

.service-page__spec-item {
  padding: 16px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.service-page__dossier .hero-shell__visual {
  margin-top: auto;
  min-height: 0;
}

.service-page__dossier .hero-shell__visual img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.industry-page-view .hero-shell--industry-page .hero-shell__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(400px, 1.04fr);
  gap: clamp(24px, 2.8vw, 36px);
}

.industry-page-view .hero-shell__content {
  background:
    radial-gradient(circle at top left, rgba(82, 143, 194, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(12, 20, 31, 0.99), rgba(22, 35, 50, 0.98));
  box-shadow: 0 30px 68px rgba(13, 28, 43, 0.22);
}

.industry-page-view .hero-shell__content::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
}

.industry-page-view .hero-shell__content::after {
  background: radial-gradient(circle, rgba(119, 215, 245, 0.18), transparent 70%);
}

.industry-page-view .section-eyebrow,
.industry-page-view .hero-shell__kicker,
.industry-page-view .hero-shell__content h1,
.industry-page-view .hero-shell__content .cta.primary {
  color: rgba(246, 250, 253, 0.98);
}

.industry-page-view .hero-shell__lede {
  color: rgba(204, 215, 225, 0.92);
}

.industry-page__hero-focus {
  padding-top: 20px;
  border-top-color: rgba(255, 255, 255, 0.12);
}

.industry-page__hero-focus-item {
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: none;
}

.industry-page__hero-focus-item span {
  color: rgba(160, 183, 204, 0.9);
}

.industry-page__hero-focus-item strong {
  color: rgba(246, 250, 253, 0.96);
}

.industry-page__panel {
  background:
    radial-gradient(circle at top right, rgba(135, 178, 210, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(253, 254, 255, 0.98), rgba(241, 247, 251, 0.94));
  box-shadow: 0 28px 64px rgba(68, 96, 120, 0.14);
}

.industry-page__panel .hero-panel__label,
.industry-page__panel .hero-shell__panel-copy h2,
.industry-page__panel .hero-shell__panel-copy p,
.industry-page__panel .industry-page__panel-point span,
.industry-page__panel .industry-page__panel-point strong {
  color: rgba(18, 30, 42, 0.94);
}

.industry-page__panel .hero-shell__panel-copy {
  border-bottom-color: rgba(18, 30, 42, 0.08);
}

.industry-page__panel .hero-shell__panel-copy p {
  color: rgba(82, 98, 116, 0.9);
}

.industry-page__panel-point {
  border: 1px solid rgba(209, 221, 231, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 249, 252, 0.9));
  box-shadow: 0 14px 32px rgba(45, 69, 91, 0.06);
}

.industry-page__panel .hero-shell__visual {
  min-height: 220px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(209, 220, 231, 0.88);
  background: rgba(235, 242, 247, 0.8);
}

.industry-page__panel .hero-shell__visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.info-page-view .hero-shell--info-page .hero-shell__grid {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.2vw, 24px);
}

.info-page-view .hero-shell__content {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: end;
  gap: clamp(18px, 2.4vw, 28px);
}

.info-page__hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.info-page__hero-copy h1 {
  max-width: 10.6ch;
}

.info-page__hero-map {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  grid-template-columns: 1fr;
  align-self: stretch;
  gap: 10px;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(217, 227, 235, 0.88);
  background:
    linear-gradient(180deg, rgba(248, 251, 254, 0.92), rgba(240, 246, 250, 0.86));
}

.info-page__hero-map-item {
  min-height: 0;
}

.info-page__panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  align-items: stretch;
  gap: 18px;
}

.info-page__panel-main {
  display: grid;
  align-content: start;
  gap: 16px;
}

.info-page__panel .hero-shell__panel-copy {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-page__panel .bullet-list--inverse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.info-page__panel .bullet-list--inverse li {
  min-height: 100%;
  padding: 16px 14px 16px 36px;
}

.info-page__panel .hero-shell__visual {
  min-height: 100%;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
}

.info-page__panel .hero-shell__visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.page-blog-post .hero-shell--article-page .article-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(24px, 3vw, 34px);
  align-items: start;
}

.page-blog-post .article-shell__intro {
  gap: 18px;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.88)),
    linear-gradient(180deg, rgba(228, 236, 243, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: 0 24px 56px rgba(65, 94, 122, 0.1);
}

.page-blog-post .article-shell__masthead {
  display: grid;
  gap: 18px;
}

.page-blog-post .article-shell__masthead h1 {
  max-width: 10.2ch;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.page-blog-post .article-shell__meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 30, 42, 0.08);
}

.page-blog-post .article-shell__meta-item,
.page-blog-post .article-shell__topic {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(215, 224, 232, 0.88);
  background: rgba(251, 253, 255, 0.9);
  color: rgba(26, 39, 53, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-blog-post .article-shell__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-blog-post .article-shell__media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  border: 1px solid rgba(214, 224, 231, 0.88);
  background:
    linear-gradient(180deg, rgba(232, 238, 243, 0.9), rgba(214, 223, 231, 0.76));
  box-shadow: 0 22px 54px rgba(72, 99, 123, 0.1);
  min-height: clamp(320px, 26vw, 420px);
}

.page-blog-post .article-shell__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  block-size: 38%;
  background: linear-gradient(180deg, rgba(12, 23, 34, 0), rgba(12, 23, 34, 0.24));
  pointer-events: none;
}

.page-blog-post .article-shell__media-label {
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(12, 23, 34, 0.56);
  backdrop-filter: blur(14px);
  color: rgba(247, 250, 252, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-blog-post .article-shell__media img {
  min-height: 0;
  width: 100%;
  height: auto;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: top center !important;
  filter: saturate(0.84) contrast(0.98);
}

.page-blog-post .article-layout {
  max-width: 980px;
}

.page-blog-post .article-content {
  padding: clamp(32px, 4vw, 52px);
  border-radius: 32px;
  border: 1px solid rgba(220, 229, 236, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 253, 0.92));
  box-shadow: 0 22px 52px rgba(70, 95, 119, 0.08);
}

.page-blog-post .article-content > * {
  max-width: 42rem;
}

.page-blog-post .article-content > img,
.page-blog-post .article-content > figure,
.page-blog-post .article-content > table,
.page-blog-post .article-content > div {
  max-width: none;
}

.page-blog-post .article-content p,
.page-blog-post .article-content li {
  color: rgba(61, 77, 93, 0.96);
  font-size: 1.03rem;
  line-height: 1.82;
}

.page-blog-post .article-content h2 {
  margin-top: 2.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(18, 30, 42, 0.1);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-blog-post .article-content h3 {
  font-size: 1.3rem;
  line-height: 1.16;
}

.page-blog-post .article-content hr {
  height: 1px;
  margin: 2rem 0;
  border: 0;
  background: rgba(18, 30, 42, 0.1);
}

.page-blog-post .article-related .section-heading {
  max-width: 44rem;
}

.page-blog-post .article-related .blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-blog-post .article-related .blog-card {
  border-radius: 28px;
  border: 1px solid rgba(217, 226, 233, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 252, 0.88));
  box-shadow: 0 20px 44px rgba(70, 95, 119, 0.08);
}

.page-blog-post .article-related .blog-card__body {
  gap: 12px;
}

.page-blog-post .article-related .blog-card__body h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.page-blog-post .article-related .blog-card__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .service-page-view .hero-shell--service-page .hero-shell__grid,
  .industry-page-view .hero-shell--industry-page .hero-shell__grid,
  .page-blog-post .hero-shell--article-page .article-shell {
    grid-template-columns: 1fr;
  }

  .info-page-view .hero-shell__content,
  .info-page__panel,
  .page-blog-post .article-related .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-page__hero-meta,
  .industry-page__hero-focus,
  .info-page__hero-map,
  .info-page__panel .bullet-list--inverse {
    grid-template-columns: 1fr;
  }

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

  .page-blog-post .article-shell__media img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .info-page__hero-map,
  .page-blog-post .article-shell__intro,
  .page-blog-post .article-content {
    padding: 22px;
  }

  .page-blog-post .article-shell__masthead h1 {
    max-width: 11ch;
  }
}

/* Article page fallback selectors in case body class is simplified by layout */
.hero-shell--article-page .article-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(24px, 3vw, 34px);
  align-items: start;
}

.article-shell__intro {
  gap: 18px;
}

.hero-shell--article-page .article-shell__intro {
  padding: clamp(32px, 4vw, 48px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.88)),
    linear-gradient(180deg, rgba(228, 236, 243, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: 0 24px 56px rgba(65, 94, 122, 0.1);
}

.article-shell__masthead {
  display: grid;
  gap: 18px;
}

.article-shell__masthead h1 {
  max-width: 10.2ch;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.article-shell__meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 30, 42, 0.08);
}

.article-shell__meta-item,
.article-shell__topic {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(215, 224, 232, 0.88);
  background: rgba(251, 253, 255, 0.9);
  color: rgba(26, 39, 53, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-shell__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-shell--article-page .article-shell__media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  border: 1px solid rgba(214, 224, 231, 0.88);
  background:
    linear-gradient(180deg, rgba(232, 238, 243, 0.9), rgba(214, 223, 231, 0.76));
  box-shadow: 0 22px 54px rgba(72, 99, 123, 0.1);
}

.hero-shell--article-page .article-shell__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  block-size: 38%;
  background: linear-gradient(180deg, rgba(12, 23, 34, 0), rgba(12, 23, 34, 0.24));
  pointer-events: none;
}

.article-shell__media-label {
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(12, 23, 34, 0.56);
  backdrop-filter: blur(14px);
  color: rgba(247, 250, 252, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-shell--article-page .article-shell__media img {
  min-height: 0;
  aspect-ratio: auto !important;
  width: 100%;
  height: auto;
  filter: saturate(0.84) contrast(0.98);
}

.hero-shell--article-page .article-shell__intro {
  align-content: start;
}

.article-layout {
  max-width: 980px;
  margin: 0 auto;
}

.article-body-shell .article-content {
  padding: clamp(32px, 4vw, 52px);
  border-radius: 32px;
  border: 1px solid rgba(220, 229, 236, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 253, 0.92));
  box-shadow: 0 22px 52px rgba(70, 95, 119, 0.08);
}

.article-body-shell .article-content > * {
  max-width: 42rem;
}

.article-body-shell .article-content > img,
.article-body-shell .article-content > figure,
.article-body-shell .article-content > table,
.article-body-shell .article-content > div {
  max-width: none;
}

.article-body-shell .article-content p,
.article-body-shell .article-content li {
  color: rgba(61, 77, 93, 0.96);
  font-size: 1.03rem;
  line-height: 1.82;
}

.article-body-shell .article-content h2 {
  margin-top: 2.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(18, 30, 42, 0.1);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.article-body-shell .article-content h3 {
  font-size: 1.3rem;
  line-height: 1.16;
}

.article-body-shell .article-content hr {
  height: 1px;
  margin: 2rem 0;
  border: 0;
  background: rgba(18, 30, 42, 0.1);
}

.article-related .section-heading {
  max-width: 44rem;
}

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

.article-related .blog-card {
  border-radius: 28px;
  border: 1px solid rgba(217, 226, 233, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 252, 0.88));
  box-shadow: 0 20px 44px rgba(70, 95, 119, 0.08);
}

.article-related .blog-card__body {
  gap: 12px;
}

.article-related .blog-card__body h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.article-related .blog-card__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .hero-shell--article-page .article-shell,
  .article-related .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-shell--article-page .article-shell__media img {
    aspect-ratio: auto !important;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 720px) {
  .hero-shell--article-page .article-shell__intro,
  .article-body-shell .article-content {
    padding: 22px;
  }

  .article-shell__masthead h1 {
    max-width: 11ch;
    font-size: clamp(2.3rem, 11.8vw, 3.9rem);
    line-height: 0.92;
    letter-spacing: -0.072em;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
}

/* April 2026: service pages need thematic art direction, not one shared shell */
.service-page-view {
  --sp-content-bg:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(243, 248, 252, 0.94));
  --sp-content-shadow: 0 26px 60px rgba(88, 119, 146, 0.12);
  --sp-content-rule: linear-gradient(90deg, transparent, rgba(18, 30, 42, 0.18));
  --sp-content-glow: radial-gradient(circle, rgba(120, 160, 194, 0.16), transparent 72%);
  --sp-eyebrow: rgba(120, 138, 154, 0.94);
  --sp-kicker: rgba(18, 30, 42, 0.72);
  --sp-title: rgba(18, 30, 42, 0.98);
  --sp-lede: rgba(84, 101, 118, 0.92);
  --sp-meta-bg: linear-gradient(180deg, rgba(247, 250, 253, 0.94), rgba(240, 246, 250, 0.88));
  --sp-meta-border: rgba(218, 228, 236, 0.9);
  --sp-meta-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 249, 252, 0.72));
  --sp-meta-card-border: rgba(214, 226, 235, 0.92);
  --sp-meta-label: rgba(120, 138, 154, 0.92);
  --sp-meta-value: rgba(18, 30, 42, 0.94);
  --sp-meta-line: linear-gradient(90deg, rgba(238, 174, 98, 0.9), rgba(128, 171, 205, 0.4));
  --sp-panel-bg:
    radial-gradient(circle at top right, rgba(104, 157, 210, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(10, 18, 29, 0.99), rgba(23, 36, 51, 0.98));
  --sp-panel-shadow: 0 28px 64px rgba(14, 28, 41, 0.24);
  --sp-panel-label: rgba(212, 221, 229, 0.94);
  --sp-panel-title: rgba(247, 251, 253, 0.98);
  --sp-panel-copy: rgba(226, 235, 243, 0.84);
  --sp-panel-divider: rgba(255, 255, 255, 0.08);
  --sp-spec-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  --sp-spec-border: rgba(186, 214, 237, 0.12);
  --sp-spec-label: rgba(165, 184, 203, 0.74);
  --sp-spec-value: rgba(247, 251, 253, 0.94);
  --sp-chip-bg: rgba(255, 255, 255, 0.08);
  --sp-chip-border: rgba(172, 196, 217, 0.16);
  --sp-chip-color: rgba(240, 246, 251, 0.92);
  --sp-visual-ratio: 5 / 4;
  --sp-visual-radius: 24px;
  --sp-visual-filter: none;
  --sp-benefit-bg:
    radial-gradient(circle at top right, rgba(124, 169, 205, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.88));
  --sp-benefit-border: rgba(210, 223, 234, 0.76);
  --sp-benefit-line: linear-gradient(90deg, #efb66e, #cfdbe6);
  --sp-detail-specs-bg:
    radial-gradient(circle at top right, rgba(141, 181, 214, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.9));
  --sp-detail-usage-bg:
    radial-gradient(circle at top right, rgba(126, 173, 210, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(249, 252, 255, 0.94), rgba(239, 246, 251, 0.9));
}

.service-page-view .hero-shell__content {
  background: var(--sp-content-bg);
  box-shadow: var(--sp-content-shadow);
}

.service-page-view .hero-shell__content::before {
  background: var(--sp-content-rule);
}

.service-page-view .hero-shell__content::after {
  background: var(--sp-content-glow);
}

.service-page-view .hero-shell__content .section-eyebrow {
  color: var(--sp-eyebrow);
}

.service-page-view .hero-shell__kicker {
  color: var(--sp-kicker);
}

.service-page-view .hero-shell__content h1 {
  color: var(--sp-title);
}

.service-page-view .hero-shell__lede {
  color: var(--sp-lede);
}

.service-page__hero-meta {
  background: var(--sp-meta-bg);
  border-color: var(--sp-meta-border);
}

.service-page__hero-meta div {
  background: var(--sp-meta-card-bg);
  border-color: var(--sp-meta-card-border);
}

.service-page__hero-meta div::before {
  background: var(--sp-meta-line);
}

.service-page__hero-meta span {
  color: var(--sp-meta-label);
}

.service-page__hero-meta strong {
  color: var(--sp-meta-value);
}

.service-page__dossier {
  background: var(--sp-panel-bg);
  box-shadow: var(--sp-panel-shadow);
}

.service-page__dossier .hero-panel__label {
  color: var(--sp-panel-label);
}

.service-page__dossier .hero-shell__panel-copy {
  border-bottom-color: var(--sp-panel-divider);
}

.service-page__dossier .hero-shell__panel-copy h2 {
  color: var(--sp-panel-title);
}

.service-page__dossier .hero-shell__panel-copy p {
  color: var(--sp-panel-copy);
}

.service-page__spec-strip {
  gap: 0;
  padding: 4px 0;
  border-top: 1px solid var(--sp-panel-divider);
  border-bottom: 1px solid var(--sp-panel-divider);
}

.service-page__spec-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr);
  gap: 12px 18px;
  align-items: start;
  padding: 16px 0 16px 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-page__spec-item + .service-page__spec-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-page__spec-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 4px;
  height: calc(100% - 36px);
  border-radius: 999px;
  background: var(--sp-meta-line);
  opacity: 0.9;
}

.service-page__spec-item span {
  color: var(--sp-spec-label);
  padding-top: 2px;
  line-height: 1.42;
}

.service-page__spec-item strong {
  color: var(--sp-spec-value);
  font-size: 1.02rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.service-page__dossier .chip-list {
  gap: 10px;
}

.service-page__dossier .chip-list li {
  background: var(--sp-chip-bg);
  border-color: var(--sp-chip-border);
  color: var(--sp-chip-color);
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.84rem;
}

.service-page__dossier .hero-shell__visual {
  border-radius: var(--sp-visual-radius);
}

.service-page__dossier .hero-shell__visual img {
  aspect-ratio: var(--sp-visual-ratio);
  filter: var(--sp-visual-filter);
}

.service-page__benefits-section .metric-card {
  background: var(--sp-benefit-bg);
  border-color: var(--sp-benefit-border);
}

.service-page__benefit-line {
  background: var(--sp-benefit-line);
}

.service-page__detail-card--specs {
  background: var(--sp-detail-specs-bg);
}

.service-page__detail-card--usage {
  background: var(--sp-detail-usage-bg);
}

.service-page__signature .section-heading {
  margin-bottom: 24px;
}

.service-page__signature-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 22px;
  align-items: start;
}

.service-page__signature-spotlight,
.service-page__signature-point {
  border-radius: 30px;
  border: 1px solid rgba(212, 224, 233, 0.78);
  box-shadow: var(--sp-soft-shadow);
}

.service-page__signature-spotlight {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 0;
  padding: clamp(28px, 3vw, 38px);
  background:
    radial-gradient(circle at top right, rgba(129, 171, 205, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.88));
}

.service-page__signature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(230, 178, 105, 0.18);
  background: rgba(255, 248, 239, 0.94);
  color: rgba(233, 152, 54, 0.98);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-page__signature-spotlight h3 {
  max-width: 12ch;
  margin: 0;
  color: rgba(20, 33, 47, 0.96);
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.service-page__signature-spotlight p {
  max-width: 38ch;
  margin: 0;
  color: rgba(76, 93, 109, 0.92);
  font-size: 1rem;
  line-height: 1.68;
}

.service-page__signature-rail {
  display: grid;
  gap: 16px;
}

.service-page__signature-point {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px 22px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 252, 0.84));
}

.service-page__signature-point span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 46px;
  block-size: 46px;
  border-radius: 18px;
  border: 1px solid rgba(18, 30, 42, 0.08);
  background: rgba(248, 251, 253, 0.96);
  color: rgba(234, 152, 55, 0.98);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-page__signature-point div {
  display: grid;
  gap: 8px;
}

.service-page__signature-point h3 {
  margin: 0;
  color: rgba(18, 31, 45, 0.96);
  font-size: clamp(1.16rem, 1.5vw, 1.42rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-page__signature-point p {
  margin: 0;
  color: rgba(84, 102, 118, 0.92);
  line-height: 1.6;
}

.service-family--office {
  --sp-content-bg:
    radial-gradient(circle at 12% 10%, rgba(147, 185, 214, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(241, 246, 250, 0.94));
  --sp-meta-line: linear-gradient(90deg, rgba(95, 165, 213, 0.92), rgba(216, 228, 238, 0.8));
  --sp-visual-ratio: 16 / 10;
}

.service-family--interior {
  --sp-content-bg:
    radial-gradient(circle at 82% 18%, rgba(237, 196, 151, 0.18), transparent 22%),
    radial-gradient(circle at 14% 82%, rgba(190, 211, 225, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.98), rgba(245, 242, 238, 0.94));
  --sp-content-rule: linear-gradient(90deg, transparent, rgba(154, 128, 110, 0.24));
  --sp-meta-bg: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(247, 242, 236, 0.9));
  --sp-panel-bg:
    radial-gradient(circle at top right, rgba(206, 221, 231, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(254, 251, 247, 0.98), rgba(243, 238, 232, 0.94));
  --sp-panel-shadow: 0 28px 56px rgba(118, 110, 100, 0.12);
  --sp-panel-label: rgba(112, 98, 86, 0.84);
  --sp-panel-title: rgba(33, 31, 29, 0.96);
  --sp-panel-copy: rgba(90, 82, 76, 0.88);
  --sp-panel-divider: rgba(70, 58, 49, 0.08);
  --sp-spec-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 243, 238, 0.7));
  --sp-spec-border: rgba(209, 197, 186, 0.76);
  --sp-spec-label: rgba(128, 113, 100, 0.84);
  --sp-spec-value: rgba(33, 31, 29, 0.92);
  --sp-chip-bg: rgba(255, 255, 255, 0.74);
  --sp-chip-border: rgba(210, 198, 187, 0.72);
  --sp-chip-color: rgba(50, 44, 38, 0.92);
  --sp-visual-ratio: 4 / 3;
  --sp-visual-filter: saturate(0.94) contrast(1.02);
  --sp-benefit-bg:
    radial-gradient(circle at top right, rgba(230, 194, 156, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(245, 240, 234, 0.88));
  --sp-benefit-line: linear-gradient(90deg, #d7a36d, #d8e3ea);
}

.service-family--glass {
  --sp-content-bg:
    radial-gradient(circle at 16% 16%, rgba(171, 205, 228, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(251, 254, 255, 0.98), rgba(242, 249, 253, 0.92));
  --sp-content-rule: linear-gradient(90deg, transparent, rgba(115, 173, 217, 0.22));
  --sp-content-glow: radial-gradient(circle, rgba(170, 212, 236, 0.24), transparent 72%);
  --sp-meta-bg: linear-gradient(180deg, rgba(250, 254, 255, 0.94), rgba(239, 248, 252, 0.88));
  --sp-panel-bg:
    radial-gradient(circle at top right, rgba(178, 217, 238, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(250, 254, 255, 0.98), rgba(238, 247, 252, 0.92));
  --sp-panel-shadow: 0 26px 58px rgba(90, 124, 150, 0.12);
  --sp-panel-label: rgba(96, 128, 151, 0.86);
  --sp-panel-title: rgba(18, 35, 50, 0.96);
  --sp-panel-copy: rgba(73, 92, 108, 0.88);
  --sp-panel-divider: rgba(90, 128, 152, 0.14);
  --sp-spec-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(240, 248, 252, 0.72));
  --sp-spec-border: rgba(189, 214, 230, 0.74);
  --sp-spec-label: rgba(101, 131, 154, 0.82);
  --sp-spec-value: rgba(23, 39, 54, 0.92);
  --sp-chip-bg: rgba(255, 255, 255, 0.74);
  --sp-chip-border: rgba(189, 214, 230, 0.72);
  --sp-chip-color: rgba(32, 49, 64, 0.92);
  --sp-benefit-bg:
    radial-gradient(circle at top right, rgba(156, 208, 236, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(240, 248, 252, 0.9));
  --sp-benefit-line: linear-gradient(90deg, #82cae5, #d8e8f0);
  --sp-detail-specs-bg:
    radial-gradient(circle at top right, rgba(164, 211, 235, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 252, 0.9));
  --sp-detail-usage-bg:
    radial-gradient(circle at top right, rgba(144, 205, 232, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(250, 254, 255, 0.94), rgba(236, 246, 251, 0.9));
}

.service-family--technical {
  --sp-content-bg:
    radial-gradient(circle at 88% 14%, rgba(240, 178, 99, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(14, 20, 30, 0.995), rgba(29, 39, 53, 0.98));
  --sp-content-shadow: 0 30px 68px rgba(13, 24, 37, 0.24);
  --sp-content-rule: linear-gradient(90deg, transparent, rgba(248, 199, 133, 0.28));
  --sp-content-glow: radial-gradient(circle, rgba(238, 178, 99, 0.16), transparent 72%);
  --sp-eyebrow: rgba(183, 199, 214, 0.9);
  --sp-kicker: rgba(227, 236, 243, 0.74);
  --sp-title: rgba(247, 251, 253, 0.98);
  --sp-lede: rgba(205, 216, 225, 0.9);
  --sp-meta-bg: linear-gradient(180deg, rgba(20, 29, 40, 0.94), rgba(30, 41, 54, 0.9));
  --sp-meta-border: rgba(255, 255, 255, 0.09);
  --sp-meta-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  --sp-meta-card-border: rgba(255, 255, 255, 0.1);
  --sp-meta-label: rgba(170, 189, 205, 0.84);
  --sp-meta-value: rgba(246, 250, 253, 0.94);
  --sp-meta-line: linear-gradient(90deg, rgba(241, 176, 98, 0.96), rgba(137, 171, 199, 0.38));
  --sp-panel-bg:
    radial-gradient(circle at top right, rgba(250, 214, 176, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(254, 252, 249, 0.98), rgba(244, 239, 233, 0.94));
  --sp-panel-shadow: 0 28px 58px rgba(65, 73, 83, 0.14);
  --sp-panel-label: rgba(104, 91, 77, 0.88);
  --sp-panel-title: rgba(30, 31, 34, 0.96);
  --sp-panel-copy: rgba(86, 80, 74, 0.9);
  --sp-panel-divider: rgba(78, 64, 49, 0.1);
  --sp-spec-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 241, 236, 0.72));
  --sp-spec-border: rgba(213, 197, 182, 0.8);
  --sp-spec-label: rgba(128, 109, 92, 0.84);
  --sp-spec-value: rgba(36, 34, 31, 0.92);
  --sp-chip-bg: rgba(255, 255, 255, 0.76);
  --sp-chip-border: rgba(216, 198, 182, 0.78);
  --sp-chip-color: rgba(48, 44, 38, 0.92);
  --sp-benefit-bg:
    radial-gradient(circle at top right, rgba(242, 183, 107, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(252, 250, 247, 0.98), rgba(243, 238, 232, 0.9));
  --sp-benefit-line: linear-gradient(90deg, #efb66e, #8aa4b8);
}

.service-family--wellness {
  --sp-content-bg:
    radial-gradient(circle at 14% 14%, rgba(168, 217, 228, 0.22), transparent 22%),
    radial-gradient(circle at 84% 20%, rgba(232, 241, 247, 0.48), transparent 24%),
    linear-gradient(180deg, rgba(251, 254, 255, 0.98), rgba(239, 248, 250, 0.93));
  --sp-content-rule: linear-gradient(90deg, transparent, rgba(114, 181, 201, 0.22));
  --sp-panel-bg:
    radial-gradient(circle at top right, rgba(179, 228, 236, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(250, 254, 255, 0.98), rgba(236, 246, 248, 0.92));
  --sp-panel-shadow: 0 26px 56px rgba(88, 127, 138, 0.12);
  --sp-panel-label: rgba(87, 126, 135, 0.86);
  --sp-panel-title: rgba(19, 37, 46, 0.96);
  --sp-panel-copy: rgba(76, 95, 103, 0.9);
  --sp-panel-divider: rgba(95, 131, 141, 0.12);
  --sp-spec-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(237, 247, 248, 0.74));
  --sp-spec-border: rgba(182, 214, 220, 0.76);
  --sp-spec-label: rgba(92, 132, 142, 0.82);
  --sp-spec-value: rgba(23, 38, 45, 0.92);
  --sp-chip-bg: rgba(255, 255, 255, 0.74);
  --sp-chip-border: rgba(184, 214, 220, 0.74);
  --sp-chip-color: rgba(29, 44, 52, 0.92);
  --sp-visual-ratio: 4 / 5;
  --sp-benefit-line: linear-gradient(90deg, #72bfd3, #d9ecef);
}

.service-family--facade {
  --sp-content-bg:
    radial-gradient(circle at 88% 18%, rgba(238, 189, 122, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(242, 238, 232, 0.94));
  --sp-content-rule: linear-gradient(90deg, transparent, rgba(115, 99, 80, 0.22));
  --sp-meta-bg: linear-gradient(180deg, rgba(255, 251, 246, 0.95), rgba(243, 238, 232, 0.9));
  --sp-panel-bg:
    radial-gradient(circle at top right, rgba(241, 182, 111, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.99), rgba(32, 41, 55, 0.98));
  --sp-panel-label: rgba(222, 229, 234, 0.92);
  --sp-panel-title: rgba(249, 251, 253, 0.98);
  --sp-panel-copy: rgba(219, 228, 235, 0.86);
  --sp-panel-divider: rgba(255, 255, 255, 0.09);
  --sp-spec-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  --sp-spec-border: rgba(205, 218, 229, 0.12);
  --sp-spec-label: rgba(170, 185, 198, 0.78);
  --sp-spec-value: rgba(247, 251, 253, 0.94);
  --sp-chip-bg: rgba(255, 255, 255, 0.08);
  --sp-chip-border: rgba(205, 218, 229, 0.14);
  --sp-chip-color: rgba(241, 247, 251, 0.94);
  --sp-visual-ratio: 21 / 10;
  --sp-benefit-bg:
    radial-gradient(circle at top right, rgba(239, 190, 126, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(242, 238, 232, 0.9));
}

.service-family--movement {
  --sp-content-bg:
    radial-gradient(circle at 16% 16%, rgba(136, 171, 210, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(251, 254, 255, 0.98), rgba(240, 247, 252, 0.93));
  --sp-content-rule: linear-gradient(90deg, transparent, rgba(87, 134, 177, 0.22));
  --sp-panel-bg:
    radial-gradient(circle at top right, rgba(126, 176, 217, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(15, 24, 37, 0.99), rgba(27, 39, 56, 0.98));
  --sp-panel-label: rgba(206, 217, 226, 0.94);
  --sp-panel-title: rgba(249, 251, 253, 0.98);
  --sp-panel-copy: rgba(220, 230, 237, 0.86);
  --sp-visual-ratio: 21 / 9;
  --sp-benefit-line: linear-gradient(90deg, #85b9e3, #efb66e);
}

.service-family--custom {
  --sp-content-bg:
    radial-gradient(circle at 84% 18%, rgba(222, 188, 150, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(252, 250, 247, 0.98), rgba(241, 238, 233, 0.94));
  --sp-content-rule: linear-gradient(90deg, transparent, rgba(121, 111, 98, 0.22));
  --sp-panel-bg:
    radial-gradient(circle at top right, rgba(181, 197, 210, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.99), rgba(34, 41, 52, 0.98));
  --sp-panel-label: rgba(214, 221, 228, 0.92);
  --sp-panel-title: rgba(249, 251, 253, 0.98);
  --sp-panel-copy: rgba(221, 228, 235, 0.86);
  --sp-visual-ratio: 3 / 2;
  --sp-benefit-bg:
    radial-gradient(circle at top right, rgba(203, 178, 145, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(252, 249, 246, 0.96), rgba(241, 237, 232, 0.9));
}

.service-page--frameless-partitions .hero-shell__content,
.service-page--glass-railings .hero-shell__content {
  padding-bottom: clamp(26px, 3vw, 38px);
}

.service-page--frameless-partitions .service-page__hero-meta,
.service-page--glass-railings .service-page__hero-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-page--frameless-partitions .service-page__hero-meta div,
.service-page--glass-railings .service-page__hero-meta div {
  padding: 14px 16px 16px;
  border-radius: 20px;
}

.service-page--sanitary-partitions .hero-shell__actions .cta.primary,
.service-page--fire-rated-doors-and-partitions .hero-shell__actions .cta.primary {
  color: rgba(20, 30, 42, 0.96);
  background: rgba(248, 250, 252, 0.98);
  border-color: rgba(248, 250, 252, 0.98);
}

.service-page--sanitary-partitions .hero-shell__actions .cta.ghost,
.service-page--fire-rated-doors-and-partitions .hero-shell__actions .cta.ghost {
  color: rgba(241, 247, 251, 0.94);
  border-color: rgba(241, 247, 251, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.service-page--glass-canopies .service-page__dossier .hero-shell__visual img,
.service-page--sliding-and-swing-doors .service-page__dossier .hero-shell__visual img {
  object-position: center 42%;
}

.service-page--shower-cabins .service-page__dossier,
.service-page--interior-partitions .service-page__dossier,
.service-page--frameless-partitions .service-page__dossier,
.service-page--glass-railings .service-page__dossier {
  grid-template-rows: auto auto auto auto;
}

.service-page--office-partitions .service-page__benefits-section .metric-card h3,
.service-page--interior-partitions .service-page__benefits-section .metric-card h3,
.service-page--frameless-partitions .service-page__benefits-section .metric-card h3,
.service-page--glass-railings .service-page__benefits-section .metric-card h3 {
  max-width: 20ch;
}

.service-page--glass-canopies .service-page__benefits-section .metric-card,
.service-page--aluminum-and-glass-solutions .service-page__benefits-section .metric-card {
  min-height: clamp(176px, 15vw, 204px);
}

.service-page--sanitary-partitions .service-page__detail-card,
.service-page--fire-rated-doors-and-partitions .service-page__detail-card {
  border-color: rgba(204, 191, 176, 0.78);
}

.service-page--shower-cabins .service-page__usage-list li,
.service-page--interior-partitions .service-page__usage-list li,
.service-page--frameless-partitions .service-page__usage-list li,
.service-page--glass-railings .service-page__usage-list li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(240, 248, 252, 0.68));
}

.service-page--office-partitions .service-page__signature-stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.service-page--office-partitions .service-page__signature-spotlight {
  background:
    radial-gradient(circle at 88% 18%, rgba(117, 184, 225, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(251, 254, 255, 0.98), rgba(241, 247, 251, 0.9));
}

.service-page--office-partitions .service-page__signature-rail {
  grid-template-columns: 1fr;
}

.service-page--interior-partitions .service-page__signature-stage {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.service-page--interior-partitions .service-page__signature-spotlight {
  order: 2;
  background:
    radial-gradient(circle at top right, rgba(232, 196, 160, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(244, 239, 233, 0.92));
}

.service-page--interior-partitions .service-page__signature-rail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.service-page--interior-partitions .service-page__signature-point:last-child {
  grid-column: 1 / -1;
}

.service-page--frameless-partitions .service-page__signature-stage {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.service-page--frameless-partitions .service-page__signature-spotlight {
  background:
    radial-gradient(circle at 14% 18%, rgba(162, 214, 236, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(239, 247, 252, 0.9));
}

.service-page--frameless-partitions .service-page__signature-point {
  border-radius: 26px;
}

.service-page--sanitary-partitions .service-page__signature-stage,
.service-page--fire-rated-doors-and-partitions .service-page__signature-stage {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.service-page--sanitary-partitions .service-page__signature-spotlight,
.service-page--fire-rated-doors-and-partitions .service-page__signature-spotlight {
  background:
    radial-gradient(circle at top right, rgba(243, 184, 105, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(18, 24, 34, 0.995), rgba(31, 40, 52, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(15, 24, 36, 0.24);
}

.service-page--sanitary-partitions .service-page__signature-tag,
.service-page--fire-rated-doors-and-partitions .service-page__signature-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 182, 101, 0.18);
}

.service-page--sanitary-partitions .service-page__signature-spotlight h3,
.service-page--fire-rated-doors-and-partitions .service-page__signature-spotlight h3,
.service-page--sanitary-partitions .service-page__signature-spotlight p,
.service-page--fire-rated-doors-and-partitions .service-page__signature-spotlight p {
  color: rgba(241, 246, 250, 0.96);
}

.service-page--sanitary-partitions .service-page__signature-rail,
.service-page--fire-rated-doors-and-partitions .service-page__signature-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--sanitary-partitions .service-page__signature-point,
.service-page--fire-rated-doors-and-partitions .service-page__signature-point {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px;
}

.service-page--shower-cabins .service-page__signature-stage {
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
}

.service-page--shower-cabins .service-page__signature-spotlight {
  background:
    radial-gradient(circle at top right, rgba(176, 226, 237, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(250, 254, 255, 0.98), rgba(235, 246, 248, 0.9));
}

.service-page--shower-cabins .service-page__signature-spotlight h3 {
  max-width: 11ch;
}

.service-page--glass-canopies .service-page__signature-stage {
  grid-template-columns: 1fr;
}

.service-page--glass-canopies .service-page__signature-spotlight {
  background:
    radial-gradient(circle at 88% 24%, rgba(241, 182, 109, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 25, 36, 0.995), rgba(34, 42, 55, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.service-page--glass-canopies .service-page__signature-spotlight h3,
.service-page--glass-canopies .service-page__signature-spotlight p {
  color: rgba(244, 248, 252, 0.96);
}

.service-page--glass-canopies .service-page__signature-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--glass-railings .service-page__signature-stage {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.service-page--glass-railings .service-page__signature-spotlight {
  background:
    radial-gradient(circle at 18% 18%, rgba(156, 215, 236, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(237, 247, 252, 0.9));
}

.service-page--sliding-and-swing-doors .service-page__signature-stage {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.service-page--sliding-and-swing-doors .service-page__signature-spotlight {
  background:
    radial-gradient(circle at top right, rgba(134, 183, 223, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(17, 25, 38, 0.995), rgba(31, 41, 55, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.service-page--sliding-and-swing-doors .service-page__signature-spotlight h3,
.service-page--sliding-and-swing-doors .service-page__signature-spotlight p {
  color: rgba(242, 247, 252, 0.96);
}

.service-page--sliding-and-swing-doors .service-page__signature-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page--sliding-and-swing-doors .service-page__signature-point {
  grid-template-columns: 1fr;
}

.service-page--aluminum-and-glass-solutions .service-page__signature-stage {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
}

.service-page--aluminum-and-glass-solutions .service-page__signature-spotlight {
  background:
    radial-gradient(circle at top right, rgba(208, 185, 155, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(254, 251, 247, 0.98), rgba(242, 238, 232, 0.92));
}

.service-page--aluminum-and-glass-solutions .service-page__signature-rail {
  grid-template-columns: 1fr 1fr;
}

.service-page--aluminum-and-glass-solutions .service-page__signature-point:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .service-page-view {
    --sp-visual-ratio: 16 / 10;
  }

  .service-page__signature-stage,
  .service-page--office-partitions .service-page__signature-stage,
  .service-page--interior-partitions .service-page__signature-stage,
  .service-page--frameless-partitions .service-page__signature-stage,
  .service-page--sanitary-partitions .service-page__signature-stage,
  .service-page--fire-rated-doors-and-partitions .service-page__signature-stage,
  .service-page--shower-cabins .service-page__signature-stage,
  .service-page--glass-railings .service-page__signature-stage,
  .service-page--sliding-and-swing-doors .service-page__signature-stage,
  .service-page--aluminum-and-glass-solutions .service-page__signature-stage {
    grid-template-columns: 1fr;
  }

  .service-page--glass-canopies .service-page__signature-rail,
  .service-page--sanitary-partitions .service-page__signature-rail,
  .service-page--fire-rated-doors-and-partitions .service-page__signature-rail,
  .service-page--sliding-and-swing-doors .service-page__signature-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-page-view {
    --sp-visual-ratio: 4 / 3;
  }

  .service-page__dossier,
  .service-page--shower-cabins .service-page__dossier,
  .service-page--interior-partitions .service-page__dossier,
  .service-page--frameless-partitions .service-page__dossier,
  .service-page--glass-railings .service-page__dossier {
    grid-template-rows: auto;
  }

  .service-page__signature-rail,
  .service-page--interior-partitions .service-page__signature-rail,
  .service-page--aluminum-and-glass-solutions .service-page__signature-rail {
    grid-template-columns: 1fr;
  }

  .service-page__signature-spotlight,
  .service-page__signature-point {
    border-radius: 26px;
  }
}

/* April 2026: service benefits cards should feel compact and intentional, not empty tiles */
.service-page__benefits-section .metrics-grid {
  gap: 18px;
  align-items: stretch;
}

.service-page__benefits-section .metric-card,
.service-page__benefits-section .metric-card:nth-child(3),
.service-page__benefits-section .metric-card:nth-child(4),
.service-page--glass-canopies .service-page__benefits-section .metric-card,
.service-page--aluminum-and-glass-solutions .service-page__benefits-section .metric-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "index line"
    "index title";
  align-content: start;
  align-items: start;
  justify-content: start;
  gap: 12px 18px;
  min-height: 0;
  padding: 24px 24px 26px;
  border-radius: 30px;
  overflow: hidden;
}

.service-page__benefits-section .metric-card::before {
  grid-area: index;
  inline-size: 48px;
  block-size: 48px;
  border-radius: 18px;
  align-self: start;
  border-color: rgba(18, 30, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 20px rgba(126, 154, 176, 0.08);
}

.service-page__benefit-card::after {
  content: none;
}

.service-page__benefit-line {
  grid-area: line;
  width: 60px;
  height: 3px;
  margin-top: 11px;
  align-self: start;
  opacity: 0.96;
}

.service-page__benefits-section .metric-card h3 {
  grid-area: title;
  max-width: none;
  margin: 0;
  color: rgba(18, 30, 42, 0.96);
  font-size: clamp(1.16rem, 1.5vw, 1.44rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.service-page__benefits-section .metric-card:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 252, 0.89));
}

.service-page__benefits-section .metric-card:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .service-page__benefits-section .metric-card,
  .service-page__benefits-section .metric-card:nth-child(3),
  .service-page__benefits-section .metric-card:nth-child(4),
  .service-page--glass-canopies .service-page__benefits-section .metric-card,
  .service-page--aluminum-and-glass-solutions .service-page__benefits-section .metric-card {
    gap: 12px 16px;
    padding: 20px 20px 22px;
    border-radius: 26px;
  }

  .service-page__benefits-section .metric-card::before {
    inline-size: 42px;
    block-size: 42px;
    border-radius: 16px;
  }

  .service-page__benefits-section .metric-card h3 {
    font-size: clamp(1.06rem, 5vw, 1.28rem);
    line-height: 1.24;
  }

  .service-page__detail .detail-card {
    padding: 20px;
    border-radius: 24px;
  }

  .service-page__detail-card {
    gap: 16px;
  }

  .service-page__detail-card h2 {
    font-size: clamp(1.34rem, 5.7vw, 1.72rem);
    line-height: 1.06;
  }

  .service-page__detail .spec-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 14px 14px 16px;
    border-radius: 18px;
  }

  .service-page__detail .spec-list dt {
    padding-left: 10px;
    font-size: 0.68rem;
  }

  .service-page__detail .spec-list dd {
    padding-left: 10px;
  }

  .service-page__detail .spec-list div::before {
    left: 12px;
    top: 14px;
    width: 2px;
    height: calc(100% - 28px);
  }

  .service-page__spec-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0 14px 14px;
  }

  .service-page__spec-item::before {
    top: 16px;
    height: calc(100% - 32px);
  }

  .service-page__spec-item strong {
    font-size: 0.96rem;
  }

  .service-page__usage-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 14px 14px 16px;
    border-radius: 18px;
  }

  .service-page__usage-list li::before {
    inline-size: 38px;
    block-size: 38px;
    border-radius: 14px;
    font-size: 0.68rem;
  }
}

/* April 2026: live browser polish across all service pages */
.service-page-view {
  --sp-featured-benefit-bg: linear-gradient(180deg, rgba(18, 30, 42, 0.98), rgba(31, 42, 56, 0.94));
  --sp-featured-benefit-border: rgba(255, 255, 255, 0.08);
  --sp-featured-benefit-title: rgba(244, 248, 252, 0.97);
  --sp-featured-benefit-copy: rgba(210, 221, 230, 0.86);
  --sp-featured-index-bg: rgba(255, 255, 255, 0.08);
  --sp-featured-index-border: rgba(255, 255, 255, 0.08);
  --sp-featured-index-color: rgba(245, 249, 252, 0.94);
  --sp-process-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 252, 0.9));
  --sp-process-card-border: rgba(208, 221, 231, 0.84);
  --sp-process-title: rgba(18, 31, 45, 0.96);
  --sp-process-copy: rgba(82, 100, 116, 0.9);
  --sp-process-step: rgba(230, 151, 54, 0.98);
  --sp-process-line: linear-gradient(90deg, rgba(230, 151, 54, 0.34), rgba(136, 185, 218, 0.2));
  --sp-soft-shadow: 0 14px 34px rgba(98, 126, 149, 0.08);
  --sp-soft-shadow-lg: 0 18px 40px rgba(96, 125, 148, 0.1);
  --sp-dark-surface-shadow: 0 18px 40px rgba(20, 31, 44, 0.18);
}

.service-family--interior,
.service-family--wellness {
  --sp-featured-benefit-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.92));
  --sp-featured-benefit-border: rgba(210, 223, 234, 0.78);
  --sp-featured-benefit-title: rgba(28, 30, 33, 0.96);
  --sp-featured-benefit-copy: rgba(89, 83, 76, 0.88);
  --sp-featured-index-bg: rgba(255, 255, 255, 0.92);
  --sp-featured-index-border: rgba(210, 223, 234, 0.78);
  --sp-featured-index-color: rgba(176, 118, 47, 0.96);
  --sp-process-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.92));
  --sp-process-card-border: rgba(210, 223, 234, 0.82);
  --sp-process-title: rgba(32, 31, 29, 0.96);
  --sp-process-copy: rgba(88, 82, 77, 0.9);
  --sp-process-line: linear-gradient(90deg, rgba(213, 160, 99, 0.34), rgba(190, 208, 219, 0.22));
}

.service-family--technical,
.service-family--facade,
.service-family--movement,
.service-family--custom {
  --sp-featured-benefit-bg:
    radial-gradient(circle at top right, rgba(241, 186, 114, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(18, 25, 36, 0.99), rgba(31, 42, 56, 0.96));
  --sp-featured-benefit-border: rgba(255, 255, 255, 0.08);
  --sp-featured-benefit-title: rgba(246, 250, 253, 0.97);
  --sp-featured-benefit-copy: rgba(216, 224, 231, 0.84);
  --sp-featured-index-bg: rgba(255, 255, 255, 0.08);
  --sp-featured-index-border: rgba(255, 255, 255, 0.08);
  --sp-featured-index-color: rgba(246, 250, 253, 0.94);
  --sp-process-card-bg:
    radial-gradient(circle at top right, rgba(241, 186, 114, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(18, 26, 38, 0.985), rgba(29, 40, 54, 0.96));
  --sp-process-card-border: rgba(255, 255, 255, 0.08);
  --sp-process-title: rgba(244, 248, 252, 0.97);
  --sp-process-copy: rgba(213, 223, 232, 0.84);
  --sp-process-step: rgba(241, 186, 114, 0.96);
  --sp-process-line: linear-gradient(90deg, rgba(241, 186, 114, 0.36), rgba(137, 175, 205, 0.16));
}

.service-page-view .hero-shell__content {
  gap: 20px;
  min-height: 0;
  box-shadow: 0 16px 38px rgba(88, 119, 146, 0.08);
}

.service-page-view .hero-shell--service-page .hero-shell__grid {
  align-items: start;
}

.service-page__hero-meta {
  gap: 10px;
  margin-top: 10px;
  padding-top: 18px;
}

.service-page__hero-meta div {
  min-height: 0;
  padding: 14px 16px 16px;
  border-radius: 20px;
  gap: 6px;
  align-content: start;
}

.service-page__hero-meta strong {
  font-size: 0.96rem;
  line-height: 1.4;
}

.service-page__dossier {
  gap: 18px;
  box-shadow: 0 20px 44px rgba(14, 28, 41, 0.2);
}

.service-page__dossier .hero-shell__visual {
  overflow: hidden;
}

.service-page__dossier .hero-shell__visual img {
  transition: transform 320ms ease, filter 320ms ease;
}

.service-page__dossier:hover .hero-shell__visual img {
  transform: scale(1.018);
}

.service-page__signature {
  position: relative;
}

.service-page__signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.1));
  opacity: 0.7;
}

.service-page__signature .container,
.service-page__benefits-section .container,
.service-page__detail .container,
.service-page__process .container {
  position: relative;
  z-index: 1;
}

.service-page__benefits-section .section-heading {
  margin-bottom: 24px;
}

.service-page__benefits-section .metrics-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.service-page__benefits-section .metric-card,
.service-page__benefits-section .metric-card:nth-child(3),
.service-page__benefits-section .metric-card:nth-child(4),
.service-page--glass-canopies .service-page__benefits-section .metric-card,
.service-page--aluminum-and-glass-solutions .service-page__benefits-section .metric-card {
  grid-column: span 3;
  min-height: 0;
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.92));
  box-shadow: none;
}

.service-page__benefits-section .metric-card:first-child,
.service-page__benefits-section .metric-card:nth-child(4) {
  grid-column: span 4;
}

.service-page__benefits-section .metric-card:nth-child(2),
.service-page__benefits-section .metric-card:nth-child(3) {
  grid-column: span 2;
}

.service-page__benefits-section .metric-card:first-child {
  background: var(--sp-featured-benefit-bg);
  border-color: var(--sp-featured-benefit-border);
  box-shadow: 0 10px 24px rgba(129, 150, 170, 0.08);
}

.service-page__benefits-section .metric-card:first-child::before {
  background: var(--sp-featured-index-bg);
  border-color: var(--sp-featured-index-border);
  color: var(--sp-featured-index-color);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.service-page__benefits-section .metric-card:first-child .service-page__benefit-line {
  background: linear-gradient(90deg, rgba(241, 186, 114, 0.96), rgba(138, 192, 226, 0.72));
}

.service-page__benefits-section .metric-card:first-child h3 {
  color: var(--sp-featured-benefit-title);
  max-width: 24ch;
}

.service-page__detail .detail-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 20px;
  align-items: start;
}

.service-page__detail .detail-card {
  align-self: start;
  border-radius: 30px;
  padding: 28px 28px 30px;
  min-height: 0;
  box-shadow: var(--sp-soft-shadow);
}

.service-page__detail-card {
  gap: 20px;
}

.service-page__detail-card--specs {
  background:
    radial-gradient(circle at top right, rgba(148, 197, 226, 0.12), transparent 24%),
    var(--sp-detail-specs-bg);
}

.service-page__detail-card--usage {
  background:
    radial-gradient(circle at top right, rgba(238, 192, 126, 0.12), transparent 24%),
    var(--sp-detail-usage-bg);
}

.service-family--technical .service-page__detail-card--usage,
.service-family--facade .service-page__detail-card--usage,
.service-family--movement .service-page__detail-card--usage,
.service-family--custom .service-page__detail-card--usage {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(241, 186, 114, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.99), rgba(31, 42, 56, 0.96));
}

.service-family--technical .service-page__detail-card--usage h2,
.service-family--technical .service-page__usage-list li,
.service-family--facade .service-page__detail-card--usage h2,
.service-family--facade .service-page__usage-list li,
.service-family--movement .service-page__detail-card--usage h2,
.service-family--movement .service-page__usage-list li,
.service-family--custom .service-page__detail-card--usage h2,
.service-family--custom .service-page__usage-list li {
  color: rgba(243, 248, 252, 0.96);
}

.service-family--technical .service-page__usage-list li,
.service-family--facade .service-page__usage-list li,
.service-family--movement .service-page__usage-list li,
.service-family--custom .service-page__usage-list li {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.service-family--technical .service-page__usage-list li::before,
.service-family--facade .service-page__usage-list li::before,
.service-family--movement .service-page__usage-list li::before,
.service-family--custom .service-page__usage-list li::before {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(241, 186, 114, 0.96);
  box-shadow: none;
}

.service-page--sanitary-partitions .service-page__detail-card--usage h2,
.service-page--sanitary-partitions .service-page__usage-list li {
  color: rgba(28, 40, 54, 0.92);
}

.service-page--sanitary-partitions .service-page__usage-list li {
  border-color: rgba(188, 210, 228, 0.56);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 250, 255, 0.68));
}

.service-page--sanitary-partitions .service-page__usage-list li::before {
  background: rgba(238, 244, 250, 0.96);
  border-color: rgba(191, 208, 225, 0.72);
  color: rgba(226, 146, 56, 0.96);
}

.service-page__detail .spec-list {
  gap: 12px;
}

.service-page__detail .spec-list div {
  gap: 10px 22px;
  padding: 16px 18px 18px 18px;
  border-radius: 20px;
}

.service-page__detail .spec-list dt,
.service-page__detail .spec-list dd {
  padding-left: 12px;
}

.service-page__usage-list {
  gap: 10px;
}

.service-page__usage-list li {
  padding: 16px 18px 16px 16px;
}

.service-page__process .section-heading {
  margin-bottom: 24px;
}

.service-page__process .timeline-grid {
  position: relative;
  gap: 18px;
  align-items: start;
}

.service-page__process .timeline-grid::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 38px;
  height: 1px;
  background: var(--sp-process-line);
  opacity: 0.9;
}

.service-page__process .timeline-card {
  position: relative;
  z-index: 1;
  padding: 24px 22px 22px;
  border-radius: 28px;
  border: 1px solid var(--sp-process-card-border);
  background: var(--sp-process-card-bg);
  box-shadow: var(--sp-soft-shadow-lg);
}

.service-page__process .timeline-card:nth-child(2),
.service-page__process .timeline-card:nth-child(4) {
  transform: translateY(24px);
}

.service-page__process .timeline-card:hover {
  transform: translateY(-3px);
}

.service-page__process .timeline-card span {
  padding: 0;
  min-height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--sp-process-step);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.service-page__process .timeline-card h3 {
  color: var(--sp-process-title);
  font-size: clamp(1.14rem, 1.45vw, 1.36rem);
  line-height: 1.14;
}

.service-page__process .timeline-card p {
  color: var(--sp-process-copy);
  line-height: 1.62;
}

.service-page__contact .lead-form__intro {
  gap: 18px;
}

.service-page__contact .lead-form {
  align-items: start;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: var(--sp-soft-shadow);
}

.service-page__contact .lead-form__intro h2 {
  max-width: 14ch;
  font-size: clamp(1.86rem, 2.5vw, 2.56rem);
  line-height: 0.98;
}

.service-page__contact .lead-form__intro p:last-child {
  max-width: 34ch;
}

.service-page__contact .lead-form__intro-points {
  margin-top: 2px;
  padding-top: 12px;
}

.service-page__contact .lead-form__intro-point {
  padding: 12px 0;
}

.service-page__contact .form-grid textarea {
  min-height: 136px;
}

.service-page__contact .form-actions {
  gap: 12px;
}

.service-family--technical .service-page__signature-spotlight,
.service-family--technical .service-page__signature-point,
.service-family--facade .service-page__signature-spotlight,
.service-family--facade .service-page__signature-point,
.service-family--movement .service-page__signature-spotlight,
.service-family--movement .service-page__signature-point,
.service-family--custom .service-page__signature-spotlight,
.service-family--custom .service-page__signature-point,
.service-family--technical .service-page__detail-card--usage,
.service-family--facade .service-page__detail-card--usage,
.service-family--movement .service-page__detail-card--usage,
.service-family--custom .service-page__detail-card--usage {
  box-shadow: var(--sp-dark-surface-shadow);
}

@media (max-width: 1180px) {
  .service-page__benefits-section .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page__benefits-section .metric-card:first-child,
  .service-page__benefits-section .metric-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .service-page__benefits-section .metric-card:nth-child(2),
  .service-page__benefits-section .metric-card:nth-child(3) {
    grid-column: span 1;
  }

  .service-page__detail .detail-grid,
  .service-page__process .timeline-grid {
    grid-template-columns: 1fr;
  }

  .service-page__process .timeline-grid::before {
    display: none;
  }

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

@media (max-width: 900px) {
  .service-page__hero-meta {
    grid-template-columns: 1fr;
  }

  .service-page__hero-meta div {
    padding: 12px 14px 14px;
    border-radius: 18px;
  }

  .service-page__benefits-section .metrics-grid {
    grid-template-columns: 1fr;
  }

  .service-page__benefits-section .metric-card,
  .service-page__benefits-section .metric-card:first-child,
  .service-page__benefits-section .metric-card:nth-child(2),
  .service-page__benefits-section .metric-card:nth-child(3),
  .service-page__benefits-section .metric-card:nth-child(4) {
    grid-column: auto;
  }

  .service-page__detail .detail-card {
    padding: 20px;
    border-radius: 24px;
  }

  .service-page__detail .spec-list div {
    padding: 14px 14px 16px;
  }

  .service-page__process .timeline-card {
    padding: 20px;
    border-radius: 24px;
  }

  .service-page__contact .lead-form {
    grid-template-columns: 1fr;
  }

  .service-page__contact .lead-form__intro h2 {
    max-width: none;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
}

/* April 2026: office-industry art direction */
.industry-page__story {
  padding-top: 10px;
}

.industry-page__story-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: start;
}

.industry-page__story-brief,
.industry-page__story-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 226, 235, 0.92);
  border-radius: 30px;
  box-shadow: 0 20px 44px rgba(88, 114, 138, 0.1);
}

.industry-page__story-brief {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 16px;
  padding: clamp(28px, 3.4vw, 40px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.9));
}

.industry-page__story-brief::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: clamp(110px, 14vw, 158px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(180, 214, 236, 0.2), transparent 72%);
  pointer-events: none;
}

.industry-page__story-brief h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.industry-page__story-brief p {
  margin: 0;
  max-width: 35rem;
  color: rgba(84, 101, 118, 0.92);
  line-height: 1.68;
}

.industry-page__story-list {
  display: grid;
  gap: 14px;
}

.industry-page__story-item {
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 22px 24px 24px 86px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 252, 0.84));
}

.industry-page__story-item::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(236, 170, 88, 0.94), rgba(141, 189, 221, 0.92));
}

.industry-page__story-item span {
  position: absolute;
  inset: 22px auto auto 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(214, 224, 233, 0.96);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(226, 146, 56, 0.96);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-page__story-item h3 {
  margin: 0;
  max-width: 24ch;
  font-size: 1.16rem;
  line-height: 1.18;
  color: rgba(18, 30, 42, 0.96);
}

.industry-page__story-item p {
  margin: 0;
  color: rgba(88, 104, 121, 0.9);
  line-height: 1.6;
}

.industry-page--for-offices .hero-shell--industry-page .hero-shell__grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(22px, 2.8vw, 34px);
}

.industry-page--for-offices .hero-shell__content {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(219, 229, 238, 0.94);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(188, 220, 240, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.92));
  box-shadow: 0 22px 48px rgba(88, 114, 138, 0.1);
  gap: 18px;
}

.industry-page--for-offices .hero-shell__content .section-eyebrow,
.industry-page--for-offices .hero-shell__content .hero-shell__kicker {
  color: rgba(85, 107, 129, 0.88);
}

.industry-page--for-offices .hero-shell__content h1 {
  max-width: 8.8ch;
  font-size: clamp(2.86rem, 4.8vw, 4.52rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  color: rgba(15, 27, 39, 0.98);
}

.industry-page--for-offices .hero-shell__lede {
  max-width: 34ch;
  color: rgba(77, 94, 111, 0.92);
}

.industry-page--for-offices .industry-page__hero-focus {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.industry-page--for-offices .industry-page__hero-focus-item {
  min-height: 0;
  padding: 16px 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(219, 228, 237, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.industry-page--for-offices .industry-page__hero-focus-item span {
  margin-bottom: 10px;
}

.industry-page--for-offices .industry-page__hero-focus-item strong {
  color: rgba(27, 40, 54, 0.96);
  font-size: 0.96rem;
  line-height: 1.36;
}

.industry-page--for-offices .industry-page__panel {
  gap: 18px;
  padding: clamp(20px, 2.6vw, 30px);
  background:
    linear-gradient(180deg, rgba(15, 28, 41, 0.98), rgba(24, 44, 61, 0.96)),
    radial-gradient(circle at top right, rgba(93, 152, 186, 0.18), transparent 46%);
}

.industry-page--for-offices .industry-page__panel .hero-panel__label,
.industry-page--for-offices .industry-page__panel .hero-shell__panel-copy h2,
.industry-page--for-offices .industry-page__panel .hero-shell__panel-copy p {
  color: #f3f7fb;
}

.industry-page--for-offices .industry-page__panel .hero-shell__panel-copy h2 {
  max-width: 12ch;
  font-size: clamp(1.82rem, 2.6vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.industry-page--for-offices .industry-page__panel .hero-shell__panel-copy p {
  max-width: 31ch;
  color: rgba(225, 233, 241, 0.78);
}

.industry-page--for-offices .industry-page__panel-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.industry-page--for-offices .industry-page__panel-point {
  min-height: 0;
  padding: 14px 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.1);
}

.industry-page--for-offices .industry-page__panel-point strong {
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(239, 244, 249, 0.84);
}

.industry-page--for-offices .industry-page__panel .hero-shell__visual {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.industry-page--for-offices .industry-page__panel .hero-shell__visual img {
  aspect-ratio: 16 / 9;
}

.industry-page--for-offices .industry-page__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.industry-page--for-offices .industry-page__services .section-heading--split {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 20px;
  margin-bottom: 8px;
}

.industry-page--for-offices .industry-page__services .section-heading__aside {
  max-width: 34ch;
  justify-self: end;
}

.industry-page--for-offices .industry-page__cards .service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
  min-height: 0;
}

.industry-page--for-offices .industry-page__cards .service-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  min-height: auto;
}

.industry-page--for-offices .industry-page__cards .service-card__copy {
  min-height: 0;
  padding: 24px 24px 20px;
  gap: 12px;
}

.industry-page--for-offices .industry-page__cards .service-card:first-child .service-card__copy {
  align-content: center;
  padding: 28px 30px;
}

.industry-page--for-offices .industry-page__cards .service-card__copy h3 {
  max-width: 14ch;
  font-size: clamp(1.5rem, 2.2vw, 2.22rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.industry-page--for-offices .industry-page__cards .service-card:first-child .service-card__copy h3 {
  max-width: 10ch;
  font-size: clamp(2rem, 3vw, 3.06rem);
}

.industry-page--for-offices .industry-page__cards .service-card p:last-of-type {
  max-width: 31ch;
}

.industry-page--for-offices .industry-page__cards .service-card__media img {
  aspect-ratio: 16 / 9;
}

.industry-page--for-offices .industry-page__cards .service-card:first-child .service-card__media img {
  aspect-ratio: 16 / 10;
}

.industry-page--for-offices .industry-page__contact .lead-form {
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
}

.industry-page--for-offices .industry-page__contact .lead-form__intro h2 {
  max-width: 11ch;
}

@media (max-width: 1180px) {
  .industry-page__story-shell {
    grid-template-columns: 1fr;
  }

  .industry-page--for-offices .industry-page__panel .hero-shell__visual {
    order: -1;
    width: 100%;
  }

  .industry-page--for-offices .industry-page__panel-points,
  .industry-page--for-offices .industry-page__hero-focus {
    grid-template-columns: 1fr;
  }

  .industry-page--for-offices .industry-page__cards,
  .industry-page--for-offices .industry-page__cards .service-card:first-child {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .industry-page__story-brief,
  .industry-page__story-item {
    border-radius: 24px;
  }

  .industry-page__story-item {
    padding: 20px 20px 20px 78px;
  }

  .industry-page--for-offices .hero-shell__content h1,
  .industry-page--for-offices .industry-page__cards .service-card:first-child .service-card__copy h3,
  .industry-page--for-offices .industry-page__cards .service-card__copy h3 {
    max-width: none;
  }

  .industry-page--for-offices .industry-page__panel-point,
  .industry-page--for-offices .industry-page__hero-focus-item {
    border-radius: 18px;
  }

  .industry-page--for-offices .industry-page__contact .lead-form {
    grid-template-columns: 1fr;
  }
}

/* April 2026: cross-page refinement pass to reduce template feel on FAQ, portfolio and contacts. */
.page-faq .faq-directory {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(193, 220, 237, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.9));
  box-shadow: 0 18px 40px rgba(89, 116, 138, 0.08);
}

.page-faq .faq-directory__intro {
  gap: 10px;
  padding-right: 0;
  border-right: 0;
  max-width: 48rem;
}

.page-faq .faq-directory__nav {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.page-faq .faq-directory__link {
  min-height: 86px;
  gap: 8px;
  padding: 16px 18px 16px 20px;
  border-radius: 20px;
  border-color: rgba(213, 225, 234, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.92));
  box-shadow: 0 12px 28px rgba(90, 116, 138, 0.06);
}

.page-faq .faq-directory__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(89, 116, 138, 0.08);
}

.page-faq .faq-directory__link strong {
  font-size: 1.02rem;
  line-height: 1.18;
}

.page-faq .faq-groups {
  gap: 24px;
}

.page-faq .faq-group {
  grid-template-columns: minmax(220px, 0.66fr) minmax(0, 1.34fr);
  gap: 22px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(193, 220, 237, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.9));
  box-shadow: 0 18px 38px rgba(89, 116, 138, 0.07);
}

.page-faq .faq-group__intro {
  gap: 10px;
}

.page-faq .faq-group__intro h3 {
  font-size: clamp(1.56rem, 2.25vw, 2.08rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-faq .faq-group__copy {
  font-size: 0.94rem;
  line-height: 1.56;
}

.page-faq .faq-group__meta {
  margin-top: 0;
  font-size: 0.76rem;
}

.page-faq .faq-group .faq-list {
  gap: 12px;
}

.page-faq .section-shell--faq .faq-item {
  border-radius: 20px;
  border-color: rgba(214, 225, 234, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.92));
  box-shadow: 0 10px 22px rgba(89, 116, 138, 0.05);
}

.page-faq .section-shell--faq .faq-item summary {
  padding: 18px 56px 18px 18px;
}

.page-faq .section-shell--faq .faq-item p {
  padding: 0 18px 18px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.page-faq .faq-page-cta {
  gap: 22px;
  padding: 24px 26px;
  border-radius: 24px;
  border-color: rgba(220, 229, 237, 0.92);
  background:
    radial-gradient(circle at top right, rgba(193, 220, 237, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.9));
  box-shadow: 0 18px 36px rgba(89, 116, 138, 0.08);
}

.page-faq .faq-page-cta__copy h2,
.page-faq .faq-page-cta__copy p {
  color: rgba(18, 30, 42, 0.96);
}

.page-faq .faq-page-cta__copy p {
  color: rgba(82, 100, 116, 0.9);
}

.page-faq .faq-page-cta__actions {
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(221, 230, 238, 0.92);
  background: none;
  border-radius: 0;
}

.page-portfolio .portfolio-bridge {
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
}

.page-portfolio .portfolio-bridge__copy {
  gap: 6px;
}

.page-portfolio .portfolio-bridge__copy p:last-child {
  color: rgba(88, 105, 121, 0.9);
  font-size: 0.92rem;
  line-height: 1.52;
}

.page-portfolio .section-shell--portfolio-page .container,
.page-portfolio .section-shell--portfolio-proof .container {
  gap: 20px;
}

.page-portfolio .portfolio-casebook {
  gap: 16px;
}

.page-portfolio .portfolio-casebook__lead {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  border-radius: 28px;
  box-shadow: 0 22px 56px rgba(16, 25, 35, 0.12);
}

.page-portfolio .portfolio-casebook__lead-media {
  min-height: 0;
  height: clamp(440px, 36vw, 560px);
}

.page-portfolio .portfolio-casebook__lead-media::after {
  background:
    linear-gradient(90deg, rgba(10, 18, 27, 0.02) 0%, rgba(10, 18, 27, 0) 42%, rgba(10, 18, 27, 0.12) 100%);
}

.page-portfolio .portfolio-casebook__lead-body {
  gap: 12px;
  padding: 22px 22px 20px;
}

.page-portfolio .portfolio-casebook__lead-prefix {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.page-portfolio .portfolio-casebook__lead-index {
  font-size: clamp(2rem, 2.8vw, 3.1rem);
}

.page-portfolio .portfolio-casebook__lead-body h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.8rem);
  line-height: 0.96;
}

.page-portfolio .portfolio-casebook__lead-body p {
  max-width: 34ch;
  font-size: 0.96rem;
  line-height: 1.58;
}

.page-portfolio .portfolio-casebook__specs {
  margin-top: 0;
  border-radius: 20px;
}

.page-portfolio .portfolio-casebook__spec {
  gap: 8px;
  min-height: 0;
  padding: 14px 14px 12px;
}

.page-portfolio .portfolio-casebook__spec-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.page-portfolio .portfolio-casebook__spec-value {
  font-size: clamp(1.02rem, 1.28vw, 1.34rem);
  line-height: 1.06;
}

.page-portfolio .portfolio-casebook__spec-rule {
  width: min(64px, 100%);
  height: 3px;
}

.page-portfolio .portfolio-casebook__rail {
  gap: 14px;
}

.page-portfolio .portfolio-casebook__rail-header {
  gap: 8px;
  padding: 0;
}

.page-portfolio .portfolio-casebook__rail-header h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.02;
}

.page-portfolio .portfolio-casebook__rail-header p {
  max-width: 54ch;
  font-size: 0.92rem;
  line-height: 1.56;
}

.page-portfolio .portfolio-casebook__item {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border-radius: 20px;
}

.page-portfolio .portfolio-casebook__item-media {
  min-height: 132px;
  border-radius: 16px;
}

.page-portfolio .portfolio-casebook__item-body {
  gap: 10px;
}

.page-portfolio .portfolio-casebook__item-index {
  font-size: clamp(1.7rem, 2vw, 2.4rem);
}

.page-portfolio .portfolio-casebook__item-body h3 {
  font-size: clamp(1.18rem, 1.45vw, 1.4rem);
  line-height: 1.08;
}

.page-portfolio .portfolio-casebook__item-body p {
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.52;
}

.page-portfolio .portfolio-casebook__chips {
  gap: 8px;
}

.page-portfolio .portfolio-casebook__footer {
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
}

.page-portfolio .portfolio-casebook__footer-copy {
  gap: 6px;
}

.page-portfolio .portfolio-casebook__footer-copy p {
  font-size: 0.9rem;
  line-height: 1.52;
}

.page-portfolio .portfolio-casebook__footer-count strong {
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
}

.page-portfolio .portfolio-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-portfolio .portfolio-proof__card {
  position: relative;
  gap: 8px;
  padding: 18px 16px 16px 18px;
  min-height: 0;
  border-radius: 22px;
  border-color: rgba(214, 225, 234, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.92));
  box-shadow: 0 14px 30px rgba(89, 116, 138, 0.06);
}

.page-portfolio .portfolio-proof__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(230, 151, 54, 0.98), rgba(136, 185, 218, 0.48));
}

.page-portfolio .portfolio-proof__index {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(182, 193, 204, 0.42);
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 0.9;
}

.page-portfolio .portfolio-proof__card h3 {
  max-width: 16ch;
  font-size: clamp(1.08rem, 1.24vw, 1.28rem);
  line-height: 1.08;
}

.page-portfolio .portfolio-proof__card p:last-child {
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-portfolio .portfolio-page-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  border-color: rgba(220, 229, 237, 0.92);
  background:
    radial-gradient(circle at top right, rgba(193, 220, 237, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.9));
  box-shadow: 0 18px 36px rgba(89, 116, 138, 0.08);
}

.page-portfolio .portfolio-page-cta__copy {
  gap: 8px;
}

.page-portfolio .portfolio-page-cta__copy h2 {
  max-width: none;
  color: rgba(18, 30, 42, 0.96);
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1;
}

.page-portfolio .portfolio-page-cta__copy p {
  max-width: 48ch;
  color: rgba(82, 100, 116, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-portfolio .portfolio-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-top: 0;
  padding-left: 0;
  border-top: 0;
  border-left: 0;
}

.page-portfolio .portfolio-page-cta__actions .cta {
  width: auto;
  min-height: 44px;
  padding-inline: 18px;
}

@media (max-width: 1180px) {
  .page-portfolio .portfolio-casebook__lead {
    grid-template-columns: 1fr;
  }

  .page-portfolio .portfolio-casebook__lead-media {
    height: 360px;
  }

  .page-portfolio .portfolio-casebook__lead-body p {
    max-width: none;
  }

  .page-portfolio .portfolio-casebook__item {
    grid-template-columns: 1fr;
  }

  .page-portfolio .portfolio-casebook__item-media {
    min-height: 220px;
  }
}

@media (max-width: 980px) {
  .page-portfolio .portfolio-proof {
    grid-template-columns: 1fr;
  }

  .page-portfolio .portfolio-page-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-portfolio .portfolio-page-cta__actions {
    justify-content: stretch;
  }

  .page-portfolio .portfolio-page-cta__actions .cta {
    flex: 1 1 220px;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page-portfolio .portfolio-bridge,
  .page-portfolio .portfolio-casebook__lead,
  .page-portfolio .portfolio-casebook__item,
  .page-portfolio .portfolio-casebook__footer,
  .page-portfolio .portfolio-proof__card,
  .page-portfolio .portfolio-page-cta {
    border-radius: 20px;
  }

  .page-portfolio .portfolio-casebook__lead-media {
    height: 300px;
  }

  .page-portfolio .portfolio-casebook__specs {
    grid-template-columns: 1fr;
  }

  .page-portfolio .portfolio-casebook__spec {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .page-portfolio .portfolio-casebook__spec:last-child {
    border-bottom: 0;
  }

  .page-portfolio .portfolio-casebook__item-media {
    min-height: 180px;
  }
}

.page-contacts .contact-location__map-card {
  padding: 14px;
}

.page-contacts .contact-location__map-card::after {
  inset: auto 14px 14px 14px;
}

.page-contacts .contact-location__map-overlay {
  left: 26px;
  right: 26px;
  bottom: 26px;
  gap: 8px;
  max-width: 25rem;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(12, 21, 32, 0.72);
}

.page-contacts .contact-location__panel {
  gap: 14px;
  padding: 24px 24px 22px;
  background:
    radial-gradient(circle at top right, rgba(193, 220, 237, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.92));
  border: 1px solid rgba(220, 229, 237, 0.92);
  color: rgba(18, 30, 42, 0.96);
  box-shadow: 0 18px 36px rgba(89, 116, 138, 0.08);
}

.page-contacts .contact-location__title,
.page-contacts .contact-location__lede,
.page-contacts .contact-location__fact strong {
  color: rgba(18, 30, 42, 0.96);
}

.page-contacts .contact-location__lede {
  color: rgba(82, 100, 116, 0.9);
}

.page-contacts .contact-location__fact {
  gap: 6px;
  padding: 12px 0 0;
  border-top-color: rgba(221, 230, 238, 0.9);
}

.page-contacts .contact-location__fact span {
  color: rgba(97, 116, 136, 0.76);
}

.page-contacts .contact-location__actions {
  gap: 10px;
  margin-top: 2px;
}

.page-contacts .contact-location__actions .cta {
  min-height: 46px;
}

.page-contacts .contact-trust {
  gap: 14px;
}

.page-contacts .contact-trust-card {
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(220, 229, 237, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.92));
  box-shadow: 0 12px 28px rgba(89, 116, 138, 0.06);
}

.page-contacts .contact-trust-card h2 {
  font-size: 1.18rem;
  line-height: 1.04;
}

.page-contacts .contact-trust-card p {
  font-size: 0.88rem;
  line-height: 1.54;
}

.page-contacts .contact-location {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 18px;
  align-items: stretch;
}

.page-contacts .contact-location__map-card {
  min-height: 460px;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(220, 229, 237, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.94));
  box-shadow: 0 18px 36px rgba(89, 116, 138, 0.08);
}

.page-contacts .contact-location__map-card::after {
  display: none;
}

.page-contacts .contact-location__map-card .contacts-map,
.page-contacts .contact-location__map-card .contacts-map iframe {
  min-height: 100%;
  border-radius: 22px;
}

.page-contacts .contact-location__map-overlay {
  left: 24px;
  right: auto;
  bottom: 24px;
  gap: 6px;
  max-width: 24rem;
  padding: 14px 16px 13px;
  border-radius: 18px;
  border: 1px solid rgba(221, 230, 238, 0.96);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(89, 116, 138, 0.12);
  backdrop-filter: none;
}

.page-contacts .contact-location__map-eyebrow {
  color: rgba(206, 139, 58, 0.92);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.page-contacts .contact-location__map-title {
  color: rgba(22, 35, 48, 0.96);
  font-size: 1.06rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.page-contacts .contact-location__map-text {
  display: none;
}

.page-contacts .contact-location__map-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-contacts .contact-location__map-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 245, 249, 0.94);
  color: rgba(81, 100, 117, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}

.page-contacts .contact-location__panel {
  gap: 18px;
  padding: 28px 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(220, 229, 237, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.94));
  box-shadow: 0 18px 36px rgba(89, 116, 138, 0.08);
  color: rgba(18, 30, 42, 0.96);
}

.page-contacts .contact-location__eyebrow {
  color: rgba(39, 97, 132, 0.92);
}

.page-contacts .contact-location__title {
  color: rgba(18, 30, 42, 0.98);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.page-contacts .contact-location__lede {
  margin: 0;
  color: rgba(85, 103, 118, 0.94);
  font-size: 0.98rem;
  line-height: 1.58;
}

.page-contacts .contact-location__facts {
  display: grid;
  gap: 0;
  margin-top: 2px;
}

.page-contacts .contact-location__fact {
  gap: 6px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(223, 232, 239, 0.94);
}

.page-contacts .contact-location__fact span {
  color: rgba(113, 132, 148, 0.82);
  font-size: 0.73rem;
  letter-spacing: 0.18em;
}

.page-contacts .contact-location__fact strong {
  color: rgba(19, 31, 43, 0.96);
  font-size: 1.02rem;
  line-height: 1.42;
}

.page-contacts .contact-location__actions {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: 4px;
}

.page-contacts .contact-location__actions .cta {
  min-height: 48px;
}

.page-contacts .contact-location__actions .cta.primary {
  padding-inline: 24px;
}

.page-contacts .contact-location__secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.page-contacts .contact-location__action-link {
  color: rgba(34, 73, 100, 0.92);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.page-contacts .contact-location__action-link:hover,
.page-contacts .contact-location__action-link:focus-visible {
  color: rgba(18, 30, 42, 0.98);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .page-contacts .contact-location {
    grid-template-columns: 1fr;
  }

  .page-contacts .contact-location__map-card,
  .page-contacts .contact-location__panel {
    border-radius: 24px;
  }

  .page-contacts .contact-location__map-card {
    min-height: 380px;
  }

  .page-contacts .contact-location__actions {
    justify-items: stretch;
  }

  .page-contacts .contact-location__actions .cta.primary {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .page-contacts .contact-location__map-card {
    min-height: 320px;
    padding: 10px;
  }

  .page-contacts .contact-location__map-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 12px 14px;
  }

  .page-contacts .contact-location__panel {
    padding: 20px 18px 18px;
  }

  .page-contacts .contact-location__secondary-actions {
    gap: 12px 18px;
  }
}

@media (max-width: 1200px) {
  .page-faq .faq-directory__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-faq .faq-group,
  .page-faq .faq-page-cta {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-page-cta__actions {
    padding-left: 0;
    border-left: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(221, 230, 238, 0.92);
  }
}

@media (max-width: 720px) {
  .page-faq .faq-directory__nav {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-directory,
  .page-faq .faq-group,
  .page-faq .faq-page-cta,
  .page-contacts .contact-location__panel,
  .page-contacts .contact-trust-card {
    border-radius: 22px;
  }
}

/* Service photo story: one image-led pattern reused across product pages. */
.service-page--shower-cabins .service-page__dossier {
  align-content: start;
}

.service-page--shower-cabins .service-page__dossier .chip-list {
  margin-top: auto;
}

.service-page__photo-story .section-heading {
  margin-bottom: 24px;
}

.service-page__photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 16px;
}

.service-page__photo-card {
  position: relative;
  overflow: hidden;
  min-height: 182px;
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(219, 229, 237, 0.42);
  background: transparent;
  box-shadow: 0 24px 54px rgba(105, 135, 160, 0.08);
}

.service-page__photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 27, 0) 45%, rgba(8, 17, 27, 0.38) 100%);
  pointer-events: none;
}

.service-page__photo-card--featured {
  grid-row: span 3;
  min-height: clamp(420px, 43vw, 560px);
}

.service-page__photo-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.service-page__photo-card figcaption {
  position: absolute;
  inset: auto 14px 14px;
  display: grid;
  gap: 6px;
  max-width: calc(100% - 28px);
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 28, 40, 0.88);
  color: rgba(244, 249, 252, 0.96);
  box-shadow: 0 14px 34px rgba(12, 24, 36, 0.16);
  backdrop-filter: blur(14px);
  z-index: 1;
}

.service-page__photo-card figcaption span {
  color: #f4b463;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-page__photo-card figcaption strong {
  color: rgba(248, 251, 253, 0.98);
  font-size: clamp(0.96rem, 1.1vw, 1.12rem);
  line-height: 1.22;
}

@media (max-width: 980px) {
  .service-page__photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .service-page__photo-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: clamp(300px, 45vw, 380px);
  }

  .service-page__photo-card:not(.service-page__photo-card--featured) {
    min-height: 210px;
  }
}

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

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

  .service-page__photo-card,
  .service-page__photo-card--featured {
    min-height: 240px;
    border-radius: 22px;
  }

  .service-page__photo-card figcaption {
    inset: auto 10px 10px;
    padding: 12px 13px;
    border-radius: 16px;
  }
}

/* Shopping centers: tighter commercial page, without office/home solutions leaking into the grid. */
.industry-page--for-shopping-centers .hero-shell--industry-page .hero-shell__grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(22px, 2.8vw, 34px);
}

.industry-page--for-shopping-centers .hero-shell--industry-page {
  padding-bottom: clamp(34px, 4vw, 54px);
}

.industry-page--for-shopping-centers .hero-shell__content,
.industry-page--for-shopping-centers .industry-page__panel {
  min-height: clamp(440px, 42vw, 570px);
  border-radius: 32px;
}

.industry-page--for-shopping-centers .hero-shell__content {
  gap: clamp(16px, 2vw, 22px);
  padding: clamp(30px, 3.8vw, 46px);
  background:
    linear-gradient(150deg, rgba(8, 18, 29, 0.99) 0%, rgba(15, 31, 45, 0.99) 58%, rgba(22, 48, 62, 0.98) 100%);
  border: 1px solid rgba(211, 229, 241, 0.08);
  box-shadow:
    0 28px 70px rgba(10, 24, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.industry-page--for-shopping-centers .hero-shell__content::before {
  inset: 24px 30px auto auto;
  width: clamp(150px, 24vw, 260px);
  background: linear-gradient(90deg, transparent, rgba(229, 239, 247, 0.2));
}

.industry-page--for-shopping-centers .hero-shell__content::after {
  display: none;
}

.industry-page--for-shopping-centers .hero-shell__content .section-eyebrow {
  margin-bottom: 2px;
  color: rgba(237, 244, 249, 0.92);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.industry-page--for-shopping-centers .hero-shell__content h1 {
  max-width: 13ch;
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(2.12rem, 3.45vw, 3.34rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.industry-page--for-shopping-centers .hero-shell__lede {
  max-width: 34ch;
  color: rgba(214, 226, 236, 0.86);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: 1.68;
}

.industry-page--for-shopping-centers .hero-shell__kicker {
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(237, 244, 249, 0.76);
  color: rgba(25, 38, 50, 0.82);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.industry-page--for-shopping-centers .hero-shell__actions {
  gap: 12px;
  padding-top: 4px;
}

.industry-page--for-shopping-centers .hero-shell__actions .cta {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
  font-size: 0.94rem;
  letter-spacing: 0;
}

.industry-page--for-shopping-centers .hero-shell__actions .cta.primary {
  background: linear-gradient(135deg, rgba(16, 45, 64, 0.98), rgba(25, 72, 92, 0.96));
  box-shadow: 0 12px 28px rgba(5, 15, 24, 0.22);
}

.industry-page--for-shopping-centers .hero-shell__actions .cta.ghost {
  background: rgba(232, 238, 243, 0.74);
  color: rgba(21, 31, 41, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
}

.industry-page--for-shopping-centers .industry-page__hero-focus {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 20px;
  border-top-color: rgba(230, 241, 249, 0.14);
}

.industry-page--for-shopping-centers .industry-page__hero-focus-item {
  min-height: 0;
  padding: 14px 16px 16px;
  border-color: rgba(214, 234, 246, 0.15);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.industry-page--for-shopping-centers .industry-page__hero-focus-item::before {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(242, 178, 102, 0.86), rgba(140, 182, 210, 0.42));
}

.industry-page--for-shopping-centers .industry-page__hero-focus-item span {
  color: rgba(180, 204, 222, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.industry-page--for-shopping-centers .industry-page__hero-focus-item strong {
  color: rgba(244, 249, 252, 0.94);
  font-size: 0.9rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.industry-page--for-shopping-centers .industry-page__panel {
  align-content: start;
  display: grid;
  gap: 16px;
  min-height: 0;
  padding: clamp(22px, 2.8vw, 32px);
  background:
    radial-gradient(circle at top right, rgba(190, 221, 239, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.92));
}

.industry-page--for-shopping-centers .industry-page__panel .hero-shell__panel-copy {
  gap: 10px;
  padding-bottom: 6px;
}

.industry-page--for-shopping-centers .industry-page__panel .hero-shell__panel-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.62rem, 2.2vw, 2.26rem);
}

.industry-page--for-shopping-centers .industry-page__panel .hero-shell__panel-copy p {
  max-width: 42ch;
  line-height: 1.54;
}

.industry-page--for-shopping-centers .industry-page__panel-points {
  gap: 8px;
}

.industry-page--for-shopping-centers .industry-page__panel-point {
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: none;
}

.industry-page--for-shopping-centers .industry-page__panel .hero-shell__visual {
  display: none;
}

.industry-page--for-shopping-centers .industry-page__services .section-heading--split {
  align-items: end;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.68fr);
  gap: 20px;
  margin-bottom: 18px;
}

.industry-page--for-shopping-centers .industry-page__services .section-eyebrow,
.industry-page--for-shopping-centers .industry-page__contact .section-eyebrow {
  color: rgba(246, 170, 92, 0.98);
}

.industry-page--for-shopping-centers .industry-page__services {
  margin-top: 0;
}

.industry-page--for-shopping-centers .industry-page__services .section-heading__aside {
  max-width: 34ch;
  justify-self: end;
}

.industry-page--for-shopping-centers .industry-page__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card {
  align-content: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card:first-child {
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr);
}

.industry-page--for-shopping-centers .industry-page__cards .service-card__copy {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 0;
  padding: 22px 24px 20px;
  column-gap: 18px;
  row-gap: 10px;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card:first-child .service-card__copy {
  align-content: start;
  padding: 22px 24px 20px;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card__copy h3 {
  grid-column: 1;
  max-width: 15ch;
  font-size: clamp(1.34rem, 1.9vw, 1.94rem);
  line-height: 1;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card:first-child .service-card__copy h3 {
  max-width: 15ch;
  font-size: clamp(1.34rem, 1.9vw, 1.94rem);
}

.industry-page--for-shopping-centers .industry-page__cards .service-card p:last-of-type {
  grid-column: 1 / -1;
  max-width: 36ch;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card__eyebrow {
  grid-column: 1 / -1;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card a {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card__media {
  aspect-ratio: 16 / 8.8;
  align-self: start;
  margin: 12px 18px 18px;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(28, 48, 62, 0.12);
}

.industry-page--for-shopping-centers .industry-page__cards .service-card:first-child .service-card__media {
  border-radius: 22px;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: inherit;
  object-fit: cover;
}

.industry-page--for-shopping-centers .industry-page__cards .service-card:first-child .service-card__media img {
  height: 100%;
}

.industry-page--for-shopping-centers .industry-page__contact .lead-form {
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  margin-top: clamp(50px, 6vw, 86px);
}

@media (max-width: 1180px) {
  .industry-page--for-shopping-centers .hero-shell--industry-page .hero-shell__grid,
  .industry-page--for-shopping-centers .industry-page__cards,
  .industry-page--for-shopping-centers .industry-page__cards .service-card:first-child {
    grid-template-columns: 1fr;
  }

  .industry-page--for-shopping-centers .hero-shell__content,
  .industry-page--for-shopping-centers .industry-page__panel {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .industry-page--for-shopping-centers .industry-page__hero-focus,
  .industry-page--for-shopping-centers .industry-page__services .section-heading--split,
  .industry-page--for-shopping-centers .industry-page__contact .lead-form {
    grid-template-columns: 1fr;
  }

  .industry-page--for-shopping-centers .industry-page__services .section-heading--split {
    align-items: start;
    gap: 10px;
  }

  .industry-page--for-shopping-centers .industry-page__services .section-heading__aside {
    justify-self: start;
    max-width: 100%;
  }

  .industry-page--for-shopping-centers .industry-page__cards .service-card {
    grid-template-rows: auto auto;
  }

  .industry-page--for-shopping-centers .industry-page__cards .service-card__copy {
    min-height: 0;
  }

  .industry-page--for-shopping-centers .industry-page__cards .service-card__media {
    margin: 10px 12px 12px;
    border-radius: 18px;
  }

  .industry-page--for-shopping-centers .industry-page__cards .service-card:first-child .service-card__media {
    border-radius: 18px;
  }

  .industry-page--for-shopping-centers .industry-page__cards .service-card__copy {
    grid-template-columns: 1fr;
  }

.industry-page--for-shopping-centers .industry-page__cards .service-card a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

.industry-page-view .industry-page__panel .hero-shell__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: inherit;
}

.industry-page--for-home .industry-page__panel .hero-shell__visual {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

/* May 2026: final media-frame polish for public pages. */
.industry-page-view .industry-page__cards .service-card {
  align-items: start;
  gap: 0;
}

.industry-page-view .industry-page__cards .service-card__media {
  align-self: start;
  margin: 14px 18px 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(211, 224, 234, 0.84);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(231, 239, 245, 0.94), rgba(211, 225, 235, 0.9));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:
    0 18px 40px rgba(35, 61, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.industry-page-view .industry-page__cards .service-card:first-child .service-card__media {
  margin: 18px;
  border-radius: 26px;
}

.industry-page-view .industry-page__cards .service-card__media img,
.industry-page-view .industry-page__cards .service-card:first-child .service-card__media img,
.industry-page-view .industry-page__panel .hero-shell__visual img,
.service-page-view .service-page__dossier .hero-shell__visual img,
.info-page-view .info-page__panel .hero-shell__visual img,
.portfolio-card__media img,
.blog-card__media img,
.article-shell__media img,
.client-card__media img,
.services-page__feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.service-page-view .service-page__dossier .hero-shell__visual,
.industry-page-view .industry-page__panel .hero-shell__visual,
.info-page-view .info-page__panel .hero-shell__visual,
.portfolio-card__media,
.blog-card__media,
.article-shell__media,
.client-card__media,
.services-page__feature-media {
  overflow: hidden;
}

.services-page__feature-media {
  padding: 0;
  border-radius: 28px;
  line-height: 0;
  background: transparent;
}

.services-page__feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 5.2;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.services-page__feature-media::after {
  display: none;
}

/* May 2026: glass canopies readability pass. */
body.service-page--glass-canopies .service-page__detail-card--usage,
.service-page-view.service-page--glass-canopies .service-page__detail-card--usage {
  background:
    radial-gradient(circle at 92% 12%, rgba(239, 182, 109, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 28, 41, 0.98), rgba(27, 39, 53, 0.96)) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 28px 68px rgba(18, 32, 44, 0.22) !important;
}

body.service-page--glass-canopies .service-page__detail-card--usage .section-eyebrow,
.service-page-view.service-page--glass-canopies .service-page__detail-card--usage .section-eyebrow {
  color: rgba(239, 182, 109, 0.98) !important;
}

body.service-page--glass-canopies .service-page__detail-card--usage h2,
.service-page-view.service-page--glass-canopies .service-page__detail-card--usage h2 {
  color: rgba(248, 251, 253, 0.98) !important;
}

body.service-page--glass-canopies .service-page__detail-card--usage .service-page__usage-list li,
.service-page-view.service-page--glass-canopies .service-page__detail-card--usage .service-page__usage-list li {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(229, 238, 245, 0.94) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.service-page--glass-canopies .service-page__detail-card--usage .service-page__usage-list li::before,
.service-page-view.service-page--glass-canopies .service-page__detail-card--usage .service-page__usage-list li::before {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(239, 182, 109, 0.98) !important;
  box-shadow: none !important;
}

@media (max-width: 820px) {
  .industry-page-view .industry-page__cards .service-card__media,
  .industry-page-view .industry-page__cards .service-card:first-child .service-card__media {
    margin: 12px;
    border-radius: 20px;
  }
}

/* May 2026: public-page visual stabilization after media/readability pass. */
.aluglass-page main :is(h1, h2, h3),
.aluglass-page footer :is(h1, h2, h3) {
  letter-spacing: 0 !important;
  overflow-wrap: anywhere;
}

.aluglass-page main h1 {
  line-height: 1.04 !important;
}

.aluglass-page main h2 {
  line-height: 1.1 !important;
}

.aluglass-page main h3 {
  line-height: 1.18 !important;
}

.aluglass-page main p,
.aluglass-page main li,
.aluglass-page main dd {
  overflow-wrap: anywhere;
}

.service-page-view .hero-shell__content,
.service-page-view .service-page__dossier,
.industry-page-view .hero-shell__content,
.industry-page-view .industry-page__panel,
.info-page-view .hero-shell__content,
.info-page-view .info-page__panel {
  min-width: 0;
}

.service-page-view .service-page__dossier,
.service-page-view .service-page__signature-spotlight,
.service-page-view .service-page__signature-point,
.service-page-view .timeline-card {
  color: rgba(236, 244, 250, 0.96);
}

.service-page-view .service-page__dossier :is(h2, h3, strong),
.service-page-view .service-page__signature-spotlight :is(h2, h3, strong),
.service-page-view .service-page__signature-point :is(h2, h3, strong),
.service-page-view .timeline-card :is(h2, h3, strong) {
  color: rgba(248, 252, 255, 0.98);
}

.service-page-view .service-page__dossier :is(p, li, dd),
.service-page-view .service-page__signature-spotlight p,
.service-page-view .service-page__signature-point p,
.service-page-view .timeline-card p {
  color: rgba(213, 226, 236, 0.88);
}

.service-page-view .service-page__signature-point,
.service-page-view .timeline-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(96, 144, 176, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 30, 43, 0.98), rgba(24, 38, 52, 0.96));
  border-color: rgba(255, 255, 255, 0.1);
}

body.service-page-view:not(.service-page--glass-canopies):not(.service-page--sliding-and-swing-doors):not(.service-page--sanitary-partitions):not(.service-page--fire-rated-doors-and-partitions):not(.service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight,
main.service-page-view:not(.service-page--glass-canopies):not(.service-page--sliding-and-swing-doors):not(.service-page--sanitary-partitions):not(.service-page--fire-rated-doors-and-partitions):not(.service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight {
  color: rgba(18, 31, 45, 0.96);
}

body.service-page-view:not(.service-page--glass-canopies):not(.service-page--sliding-and-swing-doors):not(.service-page--sanitary-partitions):not(.service-page--fire-rated-doors-and-partitions):not(.service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight :is(h2, h3, strong),
main.service-page-view:not(.service-page--glass-canopies):not(.service-page--sliding-and-swing-doors):not(.service-page--sanitary-partitions):not(.service-page--fire-rated-doors-and-partitions):not(.service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight :is(h2, h3, strong) {
  color: rgba(18, 31, 45, 0.96);
}

body.service-page-view:not(.service-page--glass-canopies):not(.service-page--sliding-and-swing-doors):not(.service-page--sanitary-partitions):not(.service-page--fire-rated-doors-and-partitions):not(.service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight p,
main.service-page-view:not(.service-page--glass-canopies):not(.service-page--sliding-and-swing-doors):not(.service-page--sanitary-partitions):not(.service-page--fire-rated-doors-and-partitions):not(.service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight p {
  color: rgba(76, 93, 109, 0.92);
}

.service-page-view .service-page__benefit-card,
.service-page-view .service-page__detail-card,
.services-page__feature,
.services-page__rail-item,
.services-page__subrail-item,
.industry-page-view .industry-page__cards .service-card,
.portfolio-casebook__item,
.gallery-item {
  overflow: hidden;
}

.service-page-view :is(.hero-shell__visual, .service-page__photo-card, .portfolio-card__media, .blog-card__media, .article-shell__media),
.industry-page-view :is(.hero-shell__visual, .service-card__media),
.services-page__feature-media,
.solution-feature__media,
.solution-compact__media,
.portfolio-lead__media,
.portfolio-compact__media,
.gallery-item__media,
.gallery-album-rail__cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-page-view :is(.hero-shell__visual img, .service-page__photo-card img),
.industry-page-view :is(.hero-shell__visual img, .service-card__media img),
.services-page__feature-media img,
.solution-feature__media img,
.solution-compact__media img,
.portfolio-lead__media img,
.portfolio-compact__media img,
.gallery-item__media img,
.gallery-album-rail__cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.service-page__contact .lead-form__intro .section-eyebrow,
.industry-page__contact .lead-form__intro .section-eyebrow,
.info-page__contact .lead-form__intro .section-eyebrow {
  color: rgba(246, 170, 92, 0.98) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.industry-page-view .section-heading .section-eyebrow,
.industry-page-view .industry-page__services .section-eyebrow,
.industry-page-view .industry-page__contact .section-eyebrow {
  color: rgba(246, 170, 92, 0.98) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.service-page__contact .lead-form__intro h2,
.industry-page__contact .lead-form__intro h2,
.info-page__contact .lead-form__intro h2 {
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 900px) {
  .aluglass-page .section-heading--split,
  .service-page__signature-stage,
  .service-page__detail .detail-grid,
  .service-page__benefits-section .metrics-grid,
  .services-page__editorial,
  .industry-page-view .hero-shell__grid,
  .industry-page-view .industry-page__cards {
    grid-template-columns: 1fr !important;
  }

  .service-page__signature-rail {
    grid-template-columns: 1fr !important;
  }
}

/* May 2026: calmer home hero art direction. One dominant image, cleaner copy, quieter proof panel. */
body.page-home .hero-shell--home {
  padding-top: clamp(20px, 2vw, 30px);
}

body.page-home .hero-stage--fallback,
body.page-home .hero-stage--fallback .hero-stage__viewport {
  border-radius: 34px;
}

body.page-home .hero-stage--fallback .hero-stage__viewport {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.62fr);
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  background: none;
}

body.page-home .hero-stage--fallback .hero-stage__viewport::before,
body.page-home .hero-stage--fallback .hero-stage__viewport::after {
  display: none;
}

body.page-home .hero-stage__fallback-art {
  display: block;
  z-index: 0;
}

body.page-home .hero-stage__fallback-bg-media {
  opacity: 1;
  filter: saturate(0.92) contrast(1) brightness(0.94);
}

body.page-home .hero-stage__fallback-bg-media::after {
  background: none;
  opacity: 0;
}

body.page-home .hero-stage__fallback-panel,
body.page-home .hero-stage__fallback-proof {
  position: relative;
  z-index: 1;
}

body.page-home .hero-stage__fallback-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(16px, 1.7vw, 24px);
  padding: clamp(22px, 2.4vw, 34px);
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

body.page-home .hero-stage__fallback-toprail {
  display: block;
  padding: 0;
}

body.page-home .hero-stage__fallback-toprail::after {
  display: none;
}

body.page-home .hero-stage__fallback-toprail-visual {
  display: none !important;
}

body.page-home .hero-stage__fallback-toprail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}

body.page-home .hero-stage__fallback-toprail-card {
  align-content: start;
}

body.page-home .hero-stage__fallback-toprail-visual img {
  object-position: center;
  filter: saturate(0.98) contrast(1.03);
}

body.page-home .hero-stage__fallback-copyflow {
  display: block;
  padding: 0;
}

body.page-home .hero-stage__fallback-copymain {
  max-width: 680px;
  gap: 14px;
}

body.page-home .hero-stage__fallback-copymain .hero-shell__kicker {
  display: none;
}

body.page-home .hero-stage__fallback-panel h1 {
  max-width: none;
  color: #132235;
  font-size: clamp(2.45rem, 4.1vw, 4.55rem);
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

body.page-home .hero-stage__fallback-panel .hero-shell__lede {
  max-width: 76ch;
  color: rgba(56, 72, 88, 0.96);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 650;
  line-height: 1.58;
}

body.page-home .hero-stage__fallback-cta-row {
  grid-template-columns: auto minmax(240px, 1fr);
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
}

body.page-home .hero-stage__fallback-actions .cta.primary,
body.page-home .hero-stage__fallback-actions .cta.ghost {
  min-height: 46px;
  padding-inline: 22px;
  font-size: 0.94rem;
}

body.page-home .hero-stage__fallback-proof {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: auto;
  padding: clamp(26px, 2.3vw, 36px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(91, 143, 182, 0.18), transparent 26%),
    linear-gradient(180deg, #101d2b 0%, #172a3a 100%);
}

body.page-home .hero-stage__fallback-proof-topline {
  align-items: start;
}

body.page-home .hero-stage__fallback-proof-eyebrow {
  color: rgba(247, 178, 99, 0.98);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

body.page-home .hero-stage__fallback-proof-index {
  color: rgba(191, 205, 216, 0.16);
  font-size: clamp(3.6rem, 5vw, 5.4rem);
}

body.page-home .hero-stage__fallback-proof h2 {
  max-width: 13ch;
  font-size: clamp(1.9rem, 2.55vw, 3.05rem);
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
}

body.page-home .hero-stage__fallback-proof p {
  max-width: 40ch;
  padding-bottom: 14px;
  font-size: 0.84rem;
  line-height: 1.45;
}

body.page-home .hero-stage__fallback-proof-signals {
  gap: 10px;
}

body.page-home .hero-stage__fallback-proof-signal,
body.page-home .hero-stage__fallback-proof-signal:nth-child(3) {
  min-height: 0;
  padding: 13px 15px;
  border-radius: 16px;
}

body.page-home .hero-stage__fallback-proof-signal strong {
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  line-height: 1;
}

body.page-home .hero-stage__fallback-proof-footer {
  padding: 14px 15px;
  border-radius: 16px;
}

@media (max-width: 1100px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-proof {
    align-content: start;
  }
}

@media (max-width: 720px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    gap: 12px;
    padding: 10px;
    border-radius: 26px;
  }

  body.page-home .hero-stage__fallback-panel,
  body.page-home .hero-stage__fallback-proof {
    border-radius: 22px;
    padding: 18px;
  }

  body.page-home .hero-stage__fallback-panel {
    gap: 18px;
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 1.5 / 1;
    border-radius: 18px;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: none;
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1 !important;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  body.page-home .hero-stage__fallback-cta-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.page-home .hero-stage__fallback-actions {
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage__fallback-actions .cta.ghost {
    width: 100%;
  }

  body.page-home .hero-stage__fallback-proof h2 {
    max-width: none;
    font-size: clamp(1.95rem, 8.5vw, 2.5rem);
  }

  body.page-home .hero-stage__fallback-proof-signals {
    grid-template-columns: 1fr;
  }
}

/* May 2026: executive-grade home hero polish. Stronger image, quieter proof panel, tighter type. */
body.page-home .hero-shell--home {
  padding-top: clamp(12px, 1.4vw, 22px);
}

body.page-home .hero-stage--fallback {
  min-height: auto;
}

body.page-home .hero-stage--fallback .hero-stage__viewport {
  min-height: clamp(620px, calc(100svh - 132px), 760px);
  grid-template-columns: minmax(0, 1.72fr) minmax(330px, 0.78fr);
  gap: clamp(10px, 1.2vw, 16px);
  padding: clamp(10px, 1vw, 14px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow:
    0 30px 90px rgba(17, 31, 45, 0.14);
}

body.page-home .hero-stage__fallback-panel {
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: clamp(20px, 2.2vw, 34px);
  padding: clamp(26px, 3vw, 42px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

body.page-home .hero-stage__fallback-toprail {
  position: relative;
  overflow: visible;
}

body.page-home .hero-stage__fallback-toprail-visual {
  max-height: none;
  aspect-ratio: 3.55 / 1;
  border-radius: 20px;
  border: 1px solid rgba(162, 187, 207, 0.92);
  background:
    linear-gradient(135deg, #152538, #d9e5ed);
  isolation: isolate;
  box-shadow:
    0 20px 48px rgba(13, 29, 45, 0.18),
    0 10px 22px rgba(13, 29, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(9, 20, 32, 0.12);
}

body.page-home .hero-stage__fallback-toprail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(7, 18, 31, 0.42), rgba(7, 18, 31, 0.08) 28%, rgba(255, 255, 255, 0.04) 58%, rgba(7, 18, 31, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 21, 35, 0.1) 46%, rgba(8, 21, 35, 0.32));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 -32px 38px rgba(13, 28, 43, 0.18);
  pointer-events: none;
  z-index: 2;
}

body.page-home .hero-stage__fallback-toprail-visual img {
  object-position: center 54%;
  transform: scale(1.075);
  filter: saturate(0.98) contrast(1.12) brightness(0.9);
  z-index: 1;
}

body.page-home .hero-stage__fallback-copymain {
  max-width: 760px;
  gap: clamp(14px, 1.4vw, 20px);
}

body.page-home .hero-stage__fallback-panel h1 {
  max-width: 12.2ch;
  color: #101c2d;
  font-size: clamp(3.1rem, 5.05vw, 5.7rem);
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body.page-home .hero-stage__fallback-panel .hero-shell__lede {
  max-width: 68ch;
  color: rgba(58, 75, 94, 0.94);
  font-size: clamp(1.02rem, 1.05vw, 1.16rem);
  font-weight: 650;
  line-height: 1.62;
}

body.page-home .hero-stage__fallback-cta-row {
  grid-template-columns: auto minmax(220px, 1fr);
  gap: clamp(16px, 1.8vw, 28px);
  align-items: center;
}

body.page-home .hero-stage__fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.page-home .hero-stage__fallback-actions .cta.primary,
body.page-home .hero-stage__fallback-actions .cta.ghost {
  min-height: 48px;
  padding-inline: 24px;
  border-radius: 999px;
  font-size: 0.94rem;
  letter-spacing: 0;
}

body.page-home .hero-stage__fallback-actions .cta.primary {
  background: #111f31;
  box-shadow: 0 16px 32px rgba(17, 31, 49, 0.22);
}

body.page-home .hero-stage__fallback-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(18, 33, 49, 0.14);
  color: #142235;
}

body.page-home .hero-stage__fallback-tailnote {
  display: none;
}

body.page-home .hero-stage__fallback-proof {
  position: relative;
  align-content: stretch;
  gap: clamp(18px, 1.55vw, 24px);
  padding: clamp(28px, 2.7vw, 42px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 90% 9%, rgba(111, 164, 203, 0.22), transparent 27%),
    linear-gradient(180deg, #0e1c2a 0%, #132638 58%, #102235 100%);
  box-shadow:
    0 24px 54px rgba(6, 16, 26, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

body.page-home .hero-stage__fallback-proof::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #f0ae62, rgba(115, 185, 237, 0.42), transparent);
  opacity: 0.78;
}

body.page-home .hero-stage__fallback-proof-topline,
body.page-home .hero-stage__fallback-proof h2,
body.page-home .hero-stage__fallback-proof > p,
body.page-home .hero-stage__fallback-proof-signals,
body.page-home .hero-stage__fallback-proof-footer {
  position: relative;
  z-index: 1;
}

body.page-home .hero-stage__fallback-proof-topline {
  align-items: start;
  gap: 16px;
}

body.page-home .hero-stage__fallback-proof-eyebrow {
  max-width: 19ch;
  color: #f2b365;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

body.page-home .hero-stage__fallback-proof-index {
  margin-top: -10px;
  color: rgba(188, 207, 221, 0.16);
  font-size: clamp(4.4rem, 6.1vw, 6.8rem);
  line-height: 0.82;
}

body.page-home .hero-stage__fallback-proof h2 {
  max-width: 12.5ch;
  color: #f7fbff;
  font-size: clamp(2.05rem, 2.75vw, 3.35rem);
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

body.page-home .hero-stage__fallback-proof > p {
  max-width: 39ch;
  padding-bottom: clamp(14px, 1.4vw, 20px);
  color: rgba(224, 234, 242, 0.84);
  font-size: 0.9rem;
  line-height: 1.55;
}

body.page-home .hero-stage__fallback-proof-signals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

body.page-home .hero-stage__fallback-proof-signal,
body.page-home .hero-stage__fallback-proof-signal:nth-child(3) {
  gap: 10px;
  padding: 16px 16px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: none;
}

body.page-home .hero-stage__fallback-proof-signal:nth-child(3) {
  grid-column: 1 / -1;
}

body.page-home .hero-stage__fallback-proof-signal-label {
  color: rgba(172, 190, 205, 0.86);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
}

body.page-home .hero-stage__fallback-proof-signal strong {
  font-size: clamp(1.36rem, 1.7vw, 1.82rem);
  line-height: 1;
  letter-spacing: 0;
}

body.page-home .hero-stage__fallback-proof-signal-rule {
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, #f0ae62, rgba(119, 190, 244, 0.72));
}

body.page-home .hero-stage__fallback-proof-footer {
  gap: 8px;
  margin-top: auto;
  padding: 16px 16px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

body.page-home .hero-stage__fallback-proof-footer span {
  color: #f2b365;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

body.page-home .hero-stage__fallback-proof-footer p {
  color: rgba(226, 235, 243, 0.86);
  font-size: 0.86rem;
  line-height: 1.5;
}

body.page-home .hero-stage__fallback-toprail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.2vw, 20px);
  align-items: stretch;
  padding: 0;
}

body.page-home .hero-stage__fallback-toprail::after {
  display: none;
}

body.page-home .hero-stage__fallback-toprail-card {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: clamp(18px, 1.2vw, 22px);
  min-height: 148px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.92));
  box-shadow: 0 20px 44px rgba(17, 31, 49, 0.08);
  backdrop-filter: blur(12px);
}

body.page-home .hero-stage__fallback-toprail-card::before,
body.page-home .hero-stage__fallback-toprail-card::after {
  display: none;
}

body.page-home .hero-stage__fallback-toprail-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(126, 147, 171, 0.96);
}

body.page-home .hero-stage__fallback-toprail-card-value {
  color: rgba(18, 31, 44, 0.96);
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 700;
  max-width: none;
}

body.page-home .hero-stage__fallback-copyflow {
  padding: 0;
}

body.page-home .hero-stage__fallback-copymain {
  max-width: 64ch;
}

body.page-home .hero-stage__fallback-panel {
  border-radius: 28px;
  padding: clamp(26px, 2.7vw, 38px);
  background: transparent;
}

body.page-home .hero-stage__fallback-proof {
  background:
    radial-gradient(circle at 92% 8%, rgba(103, 147, 186, 0.24), transparent 28%),
    linear-gradient(180deg, #0b1822 0%, #142a3b 100%);
  box-shadow:
    0 26px 60px rgba(7, 16, 28, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.page-home .hero-stage__fallback-proof-signal {
  min-height: 120px;
  padding: 18px 18px 16px;
  border-radius: 18px;
}

body.page-home .hero-stage__fallback-proof-signal:nth-child(3) {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: minmax(0, 1.34fr) minmax(312px, 0.72fr);
  }

  body.page-home .hero-stage__fallback-panel h1 {
    font-size: clamp(2.7rem, 4.6vw, 4.2rem);
  }
}

@media (max-width: 980px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-proof {
    min-height: 0;
  }

  body.page-home .hero-stage__fallback-proof h2 {
    max-width: 18ch;
  }
}

@media (max-width: 720px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    padding: 8px;
    border-radius: 24px;
  }

  body.page-home .hero-stage__fallback-panel,
  body.page-home .hero-stage__fallback-proof {
    border-radius: 20px;
    padding: 18px;
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 1.42 / 1;
    border-radius: 16px;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: 11.5ch;
    font-size: clamp(2.34rem, 10.6vw, 3.25rem);
    line-height: 1.01 !important;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  body.page-home .hero-stage__fallback-cta-row {
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage__fallback-actions .cta.ghost {
    width: 100%;
    min-height: 50px;
  }

  body.page-home .hero-stage__fallback-proof-index {
    font-size: 3.4rem;
  }

  body.page-home .hero-stage__fallback-proof h2 {
    max-width: none;
    font-size: clamp(1.86rem, 8vw, 2.48rem);
  }

  body.page-home .hero-stage__fallback-proof-signals {
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-proof-signal:nth-child(3) {
    grid-column: auto;
  }
}

/* May 2026: final home hero fit pass after live viewport review. */
body.page-home .hero-stage__fallback-panel h1,
body.page-home .hero-stage__fallback-proof h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

body.page-home .hero-stage__fallback-panel,
body.page-home .hero-stage__fallback-proof {
  min-width: 0;
}

/* May 2026: home hero trial - stronger poster image, decisive CTA, compact trust row. */
body.page-home .hero-stage--fallback .hero-stage__viewport {
  min-height: clamp(610px, calc(100svh - 126px), 740px);
  grid-template-columns: minmax(0, 1.82fr) minmax(300px, 0.68fr);
}

body.page-home .hero-stage__fallback-panel {
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(24px, 2.7vw, 38px);
}

body.page-home .hero-stage__fallback-toprail-visual {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4.85 / 1;
  min-height: clamp(160px, 16vw, 236px);
  border-radius: 22px;
}

body.page-home .hero-stage__fallback-toprail-visual img {
  object-position: center 54%;
  transform: scale(1.075);
}

body.page-home .hero-stage__fallback-panel h1 {
  width: min(100%, 11.6ch);
  max-width: 100%;
  font-size: clamp(3.45rem, 5.55vw, 6.35rem);
  line-height: 0.97 !important;
}

body.page-home .hero-stage__fallback-panel .hero-shell__lede {
  max-width: 62ch;
  font-size: clamp(1rem, 1vw, 1.12rem);
  line-height: 1.58;
}

body.page-home .hero-stage__fallback-cta-row {
  grid-template-columns: minmax(280px, auto) minmax(0, 1fr);
  align-items: start;
}

body.page-home .hero-stage__fallback-actions .cta.primary,
body.page-home .hero-stage__fallback-actions .cta.ghost {
  align-self: start;
  flex: 0 0 auto;
  min-height: 52px;
  height: 52px;
  padding-inline: 28px;
}

body.page-home .hero-stage__fallback-actions .cta.primary {
  background: linear-gradient(135deg, #101827, #182940);
  color: #fff;
  border-color: rgba(16, 24, 39, 0.92);
  box-shadow: 0 18px 34px rgba(16, 24, 39, 0.25);
}

body.page-home .hero-stage__fallback-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

body.page-home .hero-stage__fallback-proof {
  padding: clamp(24px, 2.2vw, 34px);
}

body.page-home .hero-stage__fallback-proof h2 {
  max-width: 13.5ch;
  font-size: clamp(1.85rem, 2.35vw, 2.95rem);
}

body.page-home .hero-stage__fallback-proof-index {
  font-size: clamp(3.6rem, 5.1vw, 5.5rem);
}

@media (max-width: 1180px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: minmax(0, 1.28fr) minmax(286px, 0.72fr);
  }

  body.page-home .hero-stage__fallback-panel h1 {
    font-size: clamp(3rem, 5.1vw, 4.65rem);
  }

}

@media (max-width: 1120px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    width: min(100%, 12ch);
  }

  body.page-home .hero-stage__fallback-proof {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    min-height: clamp(150px, 24vw, 220px);
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  body.page-home .hero-stage__fallback-panel {
    gap: 18px;
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 1.55 / 1;
    min-height: 0;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: 10.8ch;
    font-size: clamp(2.25rem, 10.2vw, 3.12rem);
  }

  body.page-home .hero-stage__fallback-cta-row {
    grid-template-columns: 1fr;
  }
}

/* May 2026: service readability repair after live contrast review. */
.service-page-view .hero-shell__content h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual;
}

.info-page-view .hero-shell__content h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual;
}

.service-page-view.service-page--sanitary-partitions .hero-shell__content h1 {
  max-width: 14.5ch;
}

.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier {
  color: rgba(34, 31, 28, 0.96);
}

.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier .hero-panel__label,
.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier .service-page__spec-item span {
  color: rgba(104, 91, 77, 0.88);
}

.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier :is(h2, h3, strong),
.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier .service-page__spec-item strong {
  color: rgba(31, 30, 28, 0.96);
}

.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier :is(p, li, dd),
.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier .chip-list li {
  color: rgba(76, 68, 60, 0.92);
}

.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier .hero-shell__panel-copy {
  border-bottom-color: rgba(78, 64, 49, 0.12);
}

.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier .service-page__spec-strip {
  border-top-color: rgba(78, 64, 49, 0.12);
  border-bottom-color: rgba(78, 64, 49, 0.12);
}

.service-page-view:is(.service-family--interior, .service-family--glass, .service-family--technical, .service-family--wellness) .service-page__dossier .service-page__spec-item + .service-page__spec-item {
  border-top-color: rgba(78, 64, 49, 0.1);
}

.service-page-view.service-family--office .service-page__dossier {
  background:
    radial-gradient(circle at 88% 12%, rgba(112, 171, 217, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.97), rgba(231, 241, 247, 0.93));
  border-color: rgba(190, 210, 224, 0.92);
  color: rgba(15, 27, 41, 0.96);
}

.service-page-view.service-family--office .service-page__dossier .hero-panel__label,
.service-page-view.service-family--office .service-page__dossier .service-page__spec-item span {
  color: rgba(49, 120, 146, 0.94);
}

.service-page-view.service-family--office .service-page__dossier :is(h2, h3, strong),
.service-page-view.service-family--office .service-page__dossier .service-page__spec-item strong {
  color: rgba(13, 25, 39, 0.98);
}

.service-page-view.service-family--office .service-page__dossier :is(p, li, dd),
.service-page-view.service-family--office .service-page__dossier .chip-list li {
  color: rgba(54, 72, 91, 0.94);
}

.service-page-view.service-family--office .service-page__dossier .hero-shell__panel-copy,
.service-page-view.service-family--office .service-page__dossier .service-page__spec-strip {
  border-color: rgba(120, 151, 174, 0.18);
}

.service-page-view.service-family--office .service-page__dossier .service-page__spec-item,
.service-page-view.service-family--office .service-page__dossier .chip-list li {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(237, 246, 251, 0.72));
  border-color: rgba(129, 164, 188, 0.26);
}

.service-page-view.service-family--office .hero-shell__content {
  background:
    radial-gradient(circle at 86% 12%, rgba(112, 171, 217, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.97), rgba(231, 241, 247, 0.93));
  border-color: rgba(190, 210, 224, 0.92);
  color: rgba(15, 27, 41, 0.96);
}

.service-page-view.service-family--office .hero-shell__content::before {
  background: linear-gradient(90deg, transparent, rgba(63, 95, 122, 0.24));
}

.service-page-view.service-family--office .hero-shell__content::after {
  background: radial-gradient(circle, rgba(112, 171, 217, 0.16), transparent 72%);
}

.service-page-view.service-family--office .hero-shell__content .section-eyebrow,
.service-page-view.service-family--office .hero-shell__kicker,
.service-page-view.service-family--office .service-page__hero-meta span {
  color: rgba(49, 120, 146, 0.94);
}

.service-page-view.service-family--office .hero-shell__content h1,
.service-page-view.service-family--office .service-page__hero-meta strong {
  color: rgba(13, 25, 39, 0.98);
}

.service-page-view.service-family--office .hero-shell__lede {
  color: rgba(54, 72, 91, 0.94);
}

.service-page-view.service-family--office .service-page__hero-meta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(237, 246, 251, 0.68));
  border-color: rgba(120, 151, 174, 0.18);
}

.service-page-view.service-family--office .service-page__hero-meta div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(237, 246, 251, 0.62));
  border-color: rgba(129, 164, 188, 0.24);
}

.service-page-view:is(.service-page--fire-rated-doors-and-partitions, .service-page--sliding-and-swing-doors, .service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight {
  background:
    radial-gradient(circle at 88% 18%, rgba(241, 182, 109, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(16, 25, 37, 0.995), rgba(31, 42, 55, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(244, 249, 252, 0.96);
}

.service-page-view:is(.service-page--fire-rated-doors-and-partitions, .service-page--sliding-and-swing-doors, .service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight .service-page__signature-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 182, 101, 0.18);
  color: rgba(244, 249, 252, 0.9);
}

.service-page-view:is(.service-page--fire-rated-doors-and-partitions, .service-page--sliding-and-swing-doors, .service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight :is(h2, h3, strong) {
  color: rgba(248, 251, 253, 0.98);
}

.service-page-view:is(.service-page--fire-rated-doors-and-partitions, .service-page--sliding-and-swing-doors, .service-page--aluminum-and-glass-solutions) .service-page__signature-spotlight :is(p, li) {
  color: rgba(226, 235, 243, 0.9);
}

.service-page-view:is(.service-page--fire-rated-doors-and-partitions, .service-page--sliding-and-swing-doors, .service-page--aluminum-and-glass-solutions) .service-page__detail-card--usage {
  background:
    radial-gradient(circle at top right, rgba(241, 182, 109, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(18, 27, 39, 0.985), rgba(31, 43, 56, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(244, 249, 252, 0.96);
}

.service-page-view:is(.service-page--fire-rated-doors-and-partitions, .service-page--sliding-and-swing-doors, .service-page--aluminum-and-glass-solutions) .service-page__detail-card--usage :is(h2, h3, strong) {
  color: rgba(248, 251, 253, 0.98);
}

.service-page-view:is(.service-page--fire-rated-doors-and-partitions, .service-page--sliding-and-swing-doors, .service-page--aluminum-and-glass-solutions) .service-page__detail-card--usage :is(p, li) {
  color: rgba(226, 235, 243, 0.9);
}

@media (max-width: 900px) {
  .hero-shell--faq .hero-shell__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-shell--faq .hero-shell__content,
  .hero-shell--faq .hero-shell__panel {
    width: 100%;
    min-width: 0;
  }

  .hero-shell--faq .hero-shell__content h1,
  .hero-shell--faq .hero-shell__panel-copy h2 {
    max-width: none;
    font-size: clamp(1.92rem, 8vw, 2.6rem);
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: manual;
  }
}

.page-privacy-policy .requisites-hero__content h1 {
  max-width: 100%;
  font-size: clamp(2.1rem, 3.35vw, 3.25rem);
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual;
}

.page-privacy-policy .requisites-hero__panel {
  color: rgba(34, 31, 28, 0.96);
}

.page-privacy-policy .requisites-hero__panel h2,
.page-privacy-policy .policy-panel-section h3 {
  color: rgba(31, 30, 28, 0.96);
}

.page-privacy-policy .requisites-hero__meta li,
.page-privacy-policy .policy-controller dd,
.page-privacy-policy .policy-transition p,
.page-privacy-policy .policy-updated--panel {
  color: rgba(76, 68, 60, 0.92);
}

.page-privacy-policy .policy-controller dt {
  color: rgba(104, 91, 77, 0.86);
}

.page-privacy-policy .policy-panel-section,
.page-privacy-policy .policy-controller__row {
  border-color: rgba(78, 64, 49, 0.12);
}

.page-privacy-policy .policy-inline-link {
  color: rgba(39, 125, 176, 0.96);
  text-decoration-color: rgba(39, 125, 176, 0.34);
}

@media (max-width: 640px) {
  .page-privacy-policy .requisites-hero__content h1 {
    font-size: clamp(1.45rem, 6.1vw, 1.95rem);
  }
}

/* May 2026: tablet/mobile casebook polish after live visual review. */
@media (max-width: 1180px) {
  .portfolio-casebook__specs,
  .page-portfolio .portfolio-casebook__specs,
  .about-page__casebook .portfolio-casebook__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-casebook__spec,
  .page-portfolio .portfolio-casebook__spec,
  .about-page__casebook .portfolio-casebook__spec {
    min-height: 0;
    padding: 16px 18px;
  }

  .portfolio-casebook__spec:last-child,
  .page-portfolio .portfolio-casebook__spec:last-child,
  .about-page__casebook .portfolio-casebook__spec:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .portfolio-casebook__spec-value,
  .page-portfolio .portfolio-casebook__spec-value,
  .about-page__casebook .portfolio-casebook__spec-value,
  .about-page__casebook .portfolio-casebook__spec--accent .portfolio-casebook__spec-value {
    font-size: clamp(1.05rem, 2.05vw, 1.28rem);
    line-height: 1.16;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .portfolio-casebook__spec-rule,
  .page-portfolio .portfolio-casebook__spec-rule,
  .about-page__casebook .portfolio-casebook__spec-rule {
    margin-top: 2px;
  }
}

@media (max-width: 720px) {
  .portfolio-casebook__specs,
  .page-portfolio .portfolio-casebook__specs,
  .about-page__casebook .portfolio-casebook__specs {
    grid-template-columns: 1fr;
  }

  .portfolio-casebook__spec,
  .page-portfolio .portfolio-casebook__spec,
  .about-page__casebook .portfolio-casebook__spec {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .portfolio-casebook__spec:last-child,
  .page-portfolio .portfolio-casebook__spec:last-child,
  .about-page__casebook .portfolio-casebook__spec:last-child {
    border-top: 0;
    border-bottom: 0;
  }
}

/* May 2026: remove empty visual mass from service benefit cards. */
.service-page__benefits-section .metrics-grid {
  align-items: start;
}

.service-page__benefits-section .metric-card,
.service-page__benefits-section .metric-card:first-child,
.service-page__benefits-section .metric-card:nth-child(2),
.service-page__benefits-section .metric-card:nth-child(3),
.service-page__benefits-section .metric-card:nth-child(4) {
  align-self: start;
  min-height: 0;
  gap: 18px;
  justify-content: flex-start;
}

.service-page__benefits-section .metric-card:first-child,
.service-page__benefits-section .metric-card:nth-child(2),
.service-page__benefits-section .metric-card:nth-child(3),
.service-page__benefits-section .metric-card:nth-child(4) {
  grid-column: span 3;
}

.service-page__benefits-section .metric-card h3 {
  max-width: min(24ch, 100%);
}

@media (max-width: 900px) {
  .service-page__benefits-section .metric-card:first-child,
  .service-page__benefits-section .metric-card:nth-child(2),
  .service-page__benefits-section .metric-card:nth-child(3),
  .service-page__benefits-section .metric-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .service-page__benefits-section .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page__benefits-section .metric-card:first-child,
  .service-page__benefits-section .metric-card:nth-child(2),
  .service-page__benefits-section .metric-card:nth-child(3),
  .service-page__benefits-section .metric-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (min-width: 981px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    min-height: clamp(600px, calc(100svh - 126px), 708px);
  }

  body.page-home .hero-stage__fallback-panel {
    gap: clamp(16px, 1.65vw, 26px);
    padding: clamp(24px, 2.55vw, 36px);
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 3.72 / 1;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: 12.8ch;
    font-size: clamp(2.82rem, 4.72vw, 5.25rem);
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    max-width: 66ch;
    font-size: clamp(0.98rem, 1vw, 1.1rem);
    line-height: 1.54;
  }

  body.page-home .hero-stage__fallback-proof {
    gap: clamp(13px, 1.18vw, 18px);
    padding: clamp(24px, 2.15vw, 34px);
  }

  body.page-home .hero-stage__fallback-proof-index {
    font-size: clamp(3.8rem, 5vw, 5.9rem);
  }

  body.page-home .hero-stage__fallback-proof h2 {
    max-width: 13.2ch;
    font-size: clamp(1.86rem, 2.48vw, 3rem);
  }

  body.page-home .hero-stage__fallback-proof > p {
    padding-bottom: 12px;
    font-size: 0.84rem;
    line-height: 1.48;
  }

  body.page-home .hero-stage__fallback-proof-signal,
  body.page-home .hero-stage__fallback-proof-signal:nth-child(3),
  body.page-home .hero-stage__fallback-proof-footer {
    padding: 13px 14px;
    border-radius: 15px;
  }

  body.page-home .hero-stage__fallback-proof-signal strong {
    font-size: clamp(1.24rem, 1.48vw, 1.64rem);
  }

  body.page-home .hero-stage__fallback-proof-footer p {
    font-size: 0.8rem;
    line-height: 1.42;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: minmax(0, 1.42fr) minmax(306px, 0.7fr);
  }
}

@media (max-width: 720px) {
  body.page-home .hero-shell--home {
    padding-top: 12px;
  }

  body.page-home .hero-stage--fallback .hero-stage__viewport {
    gap: 10px;
  }

  body.page-home .hero-stage__fallback-panel {
    gap: 18px;
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 1.5 / 1;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.45vw, 2.52rem);
    line-height: 1.06 !important;
    text-wrap: balance;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  body.page-home .hero-stage__fallback-proof {
    gap: 14px;
  }

  body.page-home .hero-stage__fallback-proof h2 {
    font-size: clamp(1.62rem, 6.7vw, 2.08rem);
    line-height: 1.12 !important;
  }
}

/* May 2026: keep the full proof panel inside common 768px desktop viewports. */
@media (min-width: 981px) and (max-height: 820px) {
  body.page-home .hero-shell--home {
    padding-top: 4px;
  }

  body.page-home .hero-stage--fallback .hero-stage__viewport {
    min-height: clamp(560px, calc(100svh - 156px), 646px);
  }

  body.page-home .hero-stage__fallback-panel {
    gap: clamp(12px, 1.25vw, 20px);
    padding: clamp(20px, 2.1vw, 30px);
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 4.15 / 1;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: 13.2ch;
    font-size: clamp(2.58rem, 4.35vw, 4.82rem);
    line-height: 0.99 !important;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    font-size: clamp(0.94rem, 0.94vw, 1.04rem);
    line-height: 1.48;
  }

  body.page-home .hero-stage__fallback-cta-row {
    gap: clamp(12px, 1.35vw, 20px);
  }

  body.page-home .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage__fallback-actions .cta.ghost {
    min-height: 44px;
  }

  body.page-home .hero-stage__fallback-proof {
    gap: 10px;
    padding: clamp(20px, 1.9vw, 28px);
  }

  body.page-home .hero-stage__fallback-proof-index {
    font-size: clamp(3.2rem, 4.35vw, 5rem);
  }

  body.page-home .hero-stage__fallback-proof h2 {
    max-width: 14ch;
    font-size: clamp(1.64rem, 2.16vw, 2.55rem);
    line-height: 1.1 !important;
  }

  body.page-home .hero-stage__fallback-proof > p {
    padding-bottom: 8px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  body.page-home .hero-stage__fallback-proof-signals {
    gap: 8px;
  }

  body.page-home .hero-stage__fallback-proof-signal,
  body.page-home .hero-stage__fallback-proof-signal:nth-child(3),
  body.page-home .hero-stage__fallback-proof-footer {
    gap: 7px;
    padding: 11px 12px;
    border-radius: 14px;
  }

  body.page-home .hero-stage__fallback-proof-signal-label {
    font-size: 0.56rem;
  }

  body.page-home .hero-stage__fallback-proof-signal strong {
    font-size: clamp(1.14rem, 1.35vw, 1.48rem);
  }

  body.page-home .hero-stage__fallback-proof-footer p {
    font-size: 0.76rem;
    line-height: 1.38;
  }
}

@media (min-width: 981px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    min-height: clamp(548px, calc(100svh - 150px), 642px);
  }

  body.page-home .hero-stage__fallback-panel {
    gap: clamp(12px, 1.25vw, 20px);
    padding: clamp(20px, 2vw, 30px);
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 4.8 / 1;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: 14.4ch;
    font-size: clamp(2.42rem, 3.78vw, 4.34rem);
    line-height: 1.02 !important;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    max-width: 64ch;
    font-size: clamp(0.92rem, 0.94vw, 1.02rem);
    line-height: 1.48;
  }

  body.page-home .hero-stage__fallback-cta-row {
    gap: clamp(10px, 1.2vw, 18px);
  }

  body.page-home .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage__fallback-actions .cta.ghost {
    min-height: 44px;
  }

  body.page-home .hero-stage__fallback-proof {
    gap: clamp(10px, 1vw, 16px);
    padding: clamp(20px, 1.9vw, 28px);
  }

  body.page-home .hero-stage__fallback-proof-index {
    font-size: clamp(3.2rem, 4.2vw, 5.2rem);
  }

  body.page-home .hero-stage__fallback-proof h2 {
    max-width: 14ch;
    font-size: clamp(1.56rem, 2.08vw, 2.52rem);
  }

  body.page-home .hero-stage__fallback-proof > p {
    padding-bottom: 8px;
    font-size: 0.8rem;
    line-height: 1.42;
  }

  body.page-home .hero-stage__fallback-proof-signal,
  body.page-home .hero-stage__fallback-proof-signal:nth-child(3),
  body.page-home .hero-stage__fallback-proof-footer {
    padding: 11px 12px;
  }
}

/* May 2026: professional home hero finish. Keep desktop rich, make tablet/mobile a tight poster. */
body.page-home .hero-stage__fallback-toprail,
body.page-home .hero-stage__fallback-cta-row {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.page-home .hero-stage__fallback-toprail {
  display: block;
}

body.page-home .hero-stage__fallback-toprail-visual {
  width: 100%;
  max-width: 100%;
}

body.page-home .hero-stage__fallback-cta-row {
  display: block;
  align-items: start;
}

body.page-home .hero-stage__fallback-panel h1 {
  width: min(100%, 13.8ch);
  max-width: 100%;
}

body.page-home .hero-stage__fallback-actions {
  align-items: flex-start;
  align-content: flex-start;
  margin-top: clamp(18px, 2vw, 28px);
}

body.page-home .hero-stage__fallback-actions .cta.primary,
body.page-home .hero-stage__fallback-actions .cta.ghost {
  align-self: flex-start;
  height: 52px;
  min-height: 52px;
}

@media (min-width: 1121px) {
  body.page-home .hero-stage__fallback-panel {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.62fr);
    grid-template-areas:
      "visual visual"
      "copy facts";
    column-gap: clamp(28px, 3.2vw, 46px);
    row-gap: clamp(20px, 2vw, 28px);
    align-content: start;
  }

  body.page-home .hero-stage__fallback-toprail {
    grid-area: visual;
  }

  body.page-home .hero-stage__fallback-copyflow {
    grid-area: copy;
    align-self: center;
  }

  body.page-home .hero-stage__fallback-copymain {
    max-width: 620px;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    width: min(100%, 13.2ch);
    font-size: clamp(2.68rem, 3.35vw, 4rem);
    line-height: 1.03 !important;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    max-width: 58ch;
    margin-top: clamp(14px, 1.25vw, 18px);
    font-size: clamp(0.96rem, 0.92vw, 1.02rem);
    line-height: 1.48;
  }

  body.page-home .hero-stage__fallback-actions {
    display: flex;
    gap: 14px;
  }

  body.page-home .hero-stage__fallback-cta-row {
    grid-area: facts;
    align-self: center;
    padding-bottom: 2px;
  }

}

@media (max-width: 1120px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    min-height: 0;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-proof {
    display: none;
  }

  body.page-home .hero-stage__fallback-panel {
    gap: clamp(16px, 2.3vw, 22px);
  }

  body.page-home .hero-stage__fallback-actions {
    margin-top: clamp(16px, 2vw, 22px);
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    grid-template-columns: 1fr;
  }

  body.page-home .hero-stage__fallback-panel {
    padding: 22px;
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    min-height: 180px;
    aspect-ratio: 4.8 / 1;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    width: min(100%, 16ch);
    font-size: clamp(2.6rem, 4.25vw, 3.5rem);
    line-height: 1.03 !important;
  }

  body.page-home .hero-stage__fallback-cta-row {
    display: block;
  }

}

@media (max-width: 980px) {
  body.page-home .hero-stage__fallback-panel {
    padding: clamp(20px, 3.2vw, 26px);
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    min-height: 0;
    aspect-ratio: 3.45 / 1;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    width: min(100%, 16.5ch);
    font-size: clamp(2.25rem, 4.85vw, 3rem);
    line-height: 1.04 !important;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    max-width: 58ch;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  body.page-home .hero-stage__fallback-cta-row {
    gap: 14px;
  }

  body.page-home .hero-stage__fallback-actions {
    display: flex;
  }

}

@media (max-width: 720px) {
  body.page-home .hero-shell--home {
    padding-top: 10px;
  }

  body.page-home .hero-stage--fallback .hero-stage__viewport {
    padding: 8px;
  }

  body.page-home .hero-stage__fallback-panel {
    gap: 14px;
    padding: 16px;
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 1.92 / 1;
    border-radius: 16px;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    width: min(100%, 13.5ch);
    font-size: clamp(1.95rem, 7.7vw, 2.38rem);
    line-height: 1.05 !important;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  body.page-home .hero-stage__fallback-cta-row,
  body.page-home .hero-stage__fallback-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  body.page-home .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage__fallback-actions .cta.ghost {
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding-inline: 16px;
    font-size: 0.88rem;
  }

}

@media (max-width: 420px) {
  body.page-home .hero-stage__fallback-panel h1 {
    width: 100%;
    font-size: clamp(1.9rem, 7.25vw, 2.22rem);
  }

  body.page-home .hero-stage__fallback-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-home .hero-stage__fallback-actions {
    gap: 8px;
  }

  body.page-home .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage__fallback-actions .cta.ghost {
    height: 46px;
    min-height: 46px;
    padding-inline: 8px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/* Home hero project brief: replaces the old stacked white fact cards. */
body.page-home .hero-stage__fallback-cta-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  min-width: 0;
}

body.page-home .hero-stage__project-brief {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(10px, 1.2vw, 14px);
  min-width: 0;
  width: 100%;
  min-height: 0;
  height: auto;
  padding: clamp(18px, 1.65vw, 24px);
  overflow: hidden;
  border-radius: 30px;
  color: #f7fbff;
  background:
    radial-gradient(circle at 86% 12%, rgba(109, 178, 215, 0.24), transparent 29%),
    linear-gradient(145deg, #0e1a28 0%, #172d41 58%, #102134 100%);
  border: 1px solid rgba(180, 211, 232, 0.18);
  box-shadow:
    0 28px 60px rgba(12, 29, 46, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.page-home .hero-stage__project-brief::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.035);
}

body.page-home .hero-stage__project-brief-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 6px;
}

body.page-home .hero-stage__project-brief-head span {
  color: #f0b56d;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1;
}

body.page-home .hero-stage__project-brief-head strong {
  color: rgba(225, 238, 247, 0.42);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

body.page-home .hero-stage__project-brief-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}

body.page-home .hero-stage__project-brief-item {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 12px 0 12px 56px;
  border-bottom: 1px solid rgba(218, 233, 244, 0.1);
}

body.page-home .hero-stage__project-brief-item:last-child {
  border-bottom: 0;
}

body.page-home .hero-stage__project-brief-index {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  color: #f6c27f;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(222, 239, 250, 0.15);
  box-shadow:
    0 10px 24px rgba(4, 12, 21, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
}

body.page-home .hero-stage__project-brief-label {
  color: rgba(240, 181, 109, 0.92);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

body.page-home .hero-stage__project-brief-item strong {
  max-width: 22ch;
  color: #f8fbff;
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

@media (min-width: 1121px) {
  body.page-home .hero-stage__fallback-cta-row {
    grid-area: facts;
    align-self: center;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
}

@media (min-width: 721px) and (max-width: 1120px) {
  body.page-home .hero-stage__project-brief {
    align-content: start;
    gap: 14px;
    min-height: 0;
    padding: 16px;
    border-radius: 24px;
  }

  body.page-home .hero-stage__project-brief-head {
    padding-bottom: 12px;
  }

  body.page-home .hero-stage__project-brief-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  body.page-home .hero-stage__project-brief-item {
    min-height: 108px;
    padding: 13px;
    border: 1px solid rgba(218, 233, 244, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
  }

  body.page-home .hero-stage__project-brief-index {
    position: static;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    font-size: 0.68rem;
  }

  body.page-home .hero-stage__project-brief-item strong {
    font-size: 0.82rem;
    line-height: 1.18;
  }
}

@media (max-width: 720px) {
  body.page-home .hero-stage__project-brief {
    align-content: start;
    gap: 10px;
    min-height: 0;
    padding: 12px;
    border-radius: 18px;
  }

  body.page-home .hero-stage__project-brief-head {
    display: none;
  }

  body.page-home .hero-stage__project-brief-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.page-home .hero-stage__project-brief-item {
    min-height: 76px;
    padding: 10px;
    border: 1px solid rgba(218, 233, 244, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  body.page-home .hero-stage__project-brief-item:nth-child(3) {
    display: none;
  }

  body.page-home .hero-stage__project-brief-index {
    display: none;
  }

  body.page-home .hero-stage__project-brief-label {
    color: rgba(240, 181, 109, 0.92);
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }

  body.page-home .hero-stage__project-brief-item strong {
    color: #f7fbff;
    font-size: 0.76rem;
    line-height: 1.18;
  }
}

@media (min-width: 1121px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    align-items: stretch;
    min-height: clamp(480px, calc(100svh - 270px), 540px);
  }

  body.page-home .hero-stage__fallback-panel,
  body.page-home .hero-stage__fallback-proof {
    align-self: stretch !important;
    height: auto;
  }

  body.page-home .hero-stage__fallback-panel {
    gap: clamp(12px, 1.1vw, 18px);
    padding: clamp(18px, 1.6vw, 26px);
    row-gap: clamp(14px, 1.3vw, 20px);
  }

  body.page-home .hero-stage__fallback-toprail-visual {
    aspect-ratio: 5.65 / 1;
    min-height: 0 !important;
    max-height: 145px;
  }

  body.page-home .hero-stage__fallback-copyflow {
    align-self: start;
  }

  body.page-home .hero-stage__fallback-copymain {
    gap: clamp(10px, 1vw, 14px);
  }

  body.page-home .hero-stage__fallback-panel h1 {
    width: min(100%, 14.2ch);
    font-size: clamp(2.18rem, 2.72vw, 3.38rem);
    line-height: 1.03 !important;
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    max-width: 58ch;
    margin-top: clamp(6px, 0.65vw, 10px);
    font-size: clamp(0.86rem, 0.78vw, 0.94rem);
    line-height: 1.4;
  }

  body.page-home .hero-stage__fallback-actions {
    margin-top: clamp(12px, 1.2vw, 18px);
  }

  body.page-home .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage__fallback-actions .cta.ghost {
    height: 46px;
    min-height: 46px;
  }

  body.page-home .hero-stage__project-brief {
    padding: clamp(16px, 1.35vw, 20px);
    border-radius: 24px;
  }

  body.page-home .hero-stage__project-brief-item {
    min-height: 70px;
    padding: 10px 0 10px 52px;
  }

  body.page-home .hero-stage__project-brief-index {
    top: 10px;
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }

  body.page-home .hero-stage__project-brief-item strong {
    font-size: clamp(0.9rem, 0.82vw, 1rem);
    line-height: 1.18;
  }

  body.page-home .hero-stage__fallback-proof {
    align-content: stretch;
    gap: clamp(10px, 0.9vw, 14px);
    padding: clamp(18px, 1.55vw, 24px);
  }

  body.page-home .hero-stage__fallback-proof h2 {
    font-size: clamp(1.46rem, 1.82vw, 2.25rem);
    line-height: 1.08 !important;
  }

  body.page-home .hero-stage__fallback-proof > p {
    padding-bottom: clamp(6px, 0.8vw, 10px);
    font-size: 0.74rem;
    line-height: 1.36;
  }

  body.page-home .hero-stage__fallback-proof-signals {
    gap: 10px;
  }

  body.page-home .hero-stage__fallback-proof-signal,
  body.page-home .hero-stage__fallback-proof-signal:nth-child(3),
  body.page-home .hero-stage__fallback-proof-footer {
    padding: 11px 12px;
  }

  body.page-home .hero-stage__fallback-proof-signal:nth-child(3) {
    display: none;
  }

  body.page-home .hero-stage__fallback-proof-footer p {
    font-size: 0.72rem;
    line-height: 1.32;
  }

  body.page-home .hero-stage__fallback-proof-footer {
    align-self: end;
    margin-top: auto;
  }
}

/* Home hero readability tune: bigger text, equal-height fact blocks. */
body.page-home .hero-stage__project-brief-list {
  grid-auto-rows: 1fr;
}

/* Force full transparency for the hero fallback text panel. */
.hero-stage__fallback-panel,
body.page-home .hero-stage__fallback-panel {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.hero-stage__fallback-panel::before,
body.page-home .hero-stage__fallback-panel::before,
.hero-stage__fallback-panel::after,
body.page-home .hero-stage__fallback-panel::after {
  background: none !important;
}

.hero-stage__fallback-panel .hero-shell__kicker,
body.page-home .hero-stage__fallback-panel .hero-shell__kicker {
  background: transparent !important;
}

body.page-home .hero-stage__project-brief-item {
  align-content: center;
}

body.page-home .hero-stage__fallback-proof-signals {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

body.page-home .hero-stage__fallback-proof-signal,
body.page-home .hero-stage__fallback-proof-signal:nth-child(3),
body.page-home .hero-stage__fallback-proof-footer {
  min-height: 104px;
  align-content: center;
}

@media (min-width: 1121px) {
  body.page-home .hero-stage__project-brief {
    padding: clamp(17px, 1.45vw, 22px);
  }

  body.page-home .hero-stage__project-brief-item {
    min-height: 82px;
    padding: 10px 0 10px 54px;
  }

  body.page-home .hero-stage__project-brief-index {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  body.page-home .hero-stage__project-brief-label {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  body.page-home .hero-stage__project-brief-item strong {
    font-size: clamp(1.02rem, 0.92vw, 1.1rem);
    line-height: 1.18;
  }

  body.page-home .hero-stage__fallback-proof {
    gap: clamp(8px, 0.72vw, 11px);
  }

  body.page-home .hero-stage__fallback-proof h2 {
    max-width: 15ch;
    font-size: clamp(1.56rem, 1.78vw, 2.24rem);
  }

  body.page-home .hero-stage__fallback-proof > p {
    padding-bottom: clamp(4px, 0.55vw, 8px);
    font-size: clamp(0.86rem, 0.72vw, 0.94rem);
    line-height: 1.42;
  }

  body.page-home .hero-stage__fallback-proof-signal,
  body.page-home .hero-stage__fallback-proof-signal:nth-child(3),
  body.page-home .hero-stage__fallback-proof-footer {
    min-height: 120px;
    gap: 8px;
    padding: 13px 14px;
  }

  body.page-home .hero-stage__fallback-proof-signal-label {
    font-size: 0.64rem;
    line-height: 1.18;
  }

  body.page-home .hero-stage__fallback-proof-signal strong {
    font-size: clamp(1.42rem, 1.5vw, 1.78rem);
  }

  body.page-home .hero-stage__fallback-proof-footer span {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  body.page-home .hero-stage__fallback-proof-footer p {
    font-size: clamp(0.86rem, 0.72vw, 0.94rem);
    line-height: 1.38;
  }
}

@media (min-width: 721px) and (max-width: 1120px) {
  body.page-home .hero-stage__project-brief-item {
    min-height: 112px;
  }

  body.page-home .hero-stage__project-brief-item strong {
    font-size: 0.92rem;
    line-height: 1.2;
  }
}

@media (max-width: 720px) {
  body.page-home .hero-stage__project-brief-item {
    min-height: 84px;
  }

  body.page-home .hero-stage__project-brief-item strong {
    font-size: 0.86rem;
    line-height: 1.2;
  }
}

/* Final footer unification layer: one shared footer structure for every public page. */
.site-footer {
  padding: 10px 0;
}

.site-footer__surface {
  position: relative;
  overflow: hidden;
  padding: 8px 12px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 16%, rgba(103, 158, 197, 0.24), transparent 30%),
    linear-gradient(135deg, #22384f 0%, #17283d 45%, #132236 100%);
  border: 1px solid rgba(181, 209, 229, 0.22);
  box-shadow:
    0 16px 34px rgba(15, 31, 49, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 34%, rgba(255, 255, 255, 0.018));
}

.site-footer__surface::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.035);
}

.site-footer__rail {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(320px, 520px) minmax(620px, 1fr);
  grid-template-areas:
    "brand contacts"
    "legal legal";
  align-items: center;
  gap: 10px 14px;
  min-height: 0;
}

.site-footer__brand-panel {
  grid-area: brand;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: start;
  gap: 16px;
  min-height: 70px;
  padding: 12px 16px;
  border-radius: 17px;
  border: 1px solid rgba(190, 214, 232, 0.18);
  background: rgba(20, 36, 55, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-footer__brand {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.site-footer__brand-name {
  color: #f8fbff;
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer__brand-note {
  color: rgba(223, 233, 240, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.site-footer__contacts-row {
  grid-area: contacts;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(188, 214, 233, 0.22);
  background: rgba(17, 32, 50, 0.46);
  color: rgba(247, 251, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.site-footer__pill:hover,
.site-footer__pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(213, 232, 246, 0.42);
  background: rgba(24, 43, 64, 0.74);
  color: #ffffff;
}

.site-footer__pill--partner {
  min-height: 30px;
  padding-inline: 12px;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer__pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 24px;
  block-size: 24px;
  border-radius: 999px;
  border: 1px solid rgba(188, 214, 233, 0.2);
  color: rgba(241, 248, 252, 0.82);
  background: rgba(255, 255, 255, 0.045);
  flex: 0 0 auto;
}

.site-footer__pill-icon .icon {
  inline-size: 12px;
  block-size: 12px;
  stroke: currentColor;
}

.site-footer__legal-shell {
  grid-area: legal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 15px;
  border: 1px solid rgba(188, 214, 233, 0.16);
  background: rgba(17, 32, 50, 0.38);
}

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__copyright,
.site-footer__legal-link {
  color: rgba(229, 238, 245, 0.78);
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__copyright {
  color: rgba(247, 251, 255, 0.88);
}

.site-footer__legal-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  color: #ffffff;
}

.site-footer__divider {
  inline-size: 1px;
  block-size: 14px;
  background: rgba(188, 214, 233, 0.3);
}

.site-footer__mobile {
  display: none !important;
}

@media (max-width: 1180px) {
  .site-footer__rail {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contacts"
      "legal";
  }

  .site-footer__brand-panel {
    max-width: 680px;
  }

  .site-footer__contacts-row {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 14px 0;
  }

  .site-footer__surface {
    padding: 12px;
    border-radius: 24px;
  }

  .site-footer__surface::after {
    border-radius: 23px;
  }

  .site-footer__rail {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contacts"
      "legal";
    gap: 12px;
  }

  .site-footer__brand-panel {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .site-footer__contacts-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer__pill {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    line-height: 1.25;
    min-height: 42px;
  }

  .site-footer__legal-shell {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .site-footer__legal {
    display: grid;
    gap: 10px;
  }

  .site-footer__divider {
    display: none;
  }

  .site-footer__copyright,
  .site-footer__legal-link {
    white-space: normal;
  }
}

/* May 2026: public page responsive visual QA. Keep first screens lighter on tablet/mobile. */
@media (max-width: 900px) {
  .service-page-view .hero-shell--service-page,
  .industry-page-view .hero-shell--industry-page,
  .about-page-view .hero-shell--about-page,
  .info-page-view .hero-shell--info-page,
  .services-page-view .hero-shell--services-page {
    padding-top: 16px;
    padding-bottom: 42px;
  }

  .service-page-view .hero-shell--service-page .hero-shell__grid,
  .industry-page-view .hero-shell--industry-page .hero-shell__grid,
  .about-page-view .hero-shell--about-page .hero-shell__grid,
  .info-page-view .hero-shell--info-page .hero-shell__grid,
  .services-page-view .hero-shell--services-page .hero-shell__grid {
    gap: 18px;
  }

  .service-page-view .hero-shell__content,
  .industry-page-view .hero-shell__content,
  .about-page-view .hero-shell__content,
  .info-page-view .hero-shell__content,
  .services-page-view .hero-shell__content,
  .service-page__dossier,
  .industry-page__panel,
  .about-page__panel,
  .info-page__panel,
  .services-page__panel {
    min-height: 0;
    padding: clamp(20px, 4vw, 28px);
    border-radius: 28px;
    gap: 14px;
  }

  .service-page-view .hero-shell__content h1,
  .industry-page-view .hero-shell__content h1,
  .about-page-view .hero-shell__content h1,
  .info-page-view .hero-shell__content h1,
  .services-page-view .hero-shell__content h1 {
    max-width: min(100%, 16ch);
    font-size: clamp(2rem, 7vw, 3.15rem);
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance;
  }

  .service-page-view .hero-shell__lede,
  .industry-page-view .hero-shell__lede,
  .about-page-view .hero-shell__lede,
  .info-page-view .hero-shell__lede,
  .services-page-view .hero-shell__lede {
    max-width: 52ch;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .service-page__hero-meta,
  .industry-page__hero-focus,
  .about-page__trust-strip,
  .info-page__hero-map,
  .clients-page-view .clients-hero__meta,
  .about-page__stats-grid {
    display: none;
  }

  .service-page__dossier .hero-shell__panel-copy h2,
  .industry-page__panel .hero-shell__panel-copy h2,
  .about-page__panel .hero-shell__panel-copy h2,
  .info-page__panel .hero-shell__panel-copy h2,
  .services-page__panel .hero-shell__panel-copy h2 {
    font-size: clamp(1.42rem, 4.2vw, 2rem);
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
  }

  .service-page__dossier .hero-shell__panel-copy p,
  .industry-page__panel .hero-shell__panel-copy p,
  .about-page__panel .hero-shell__panel-copy p,
  .info-page__panel .hero-shell__panel-copy p,
  .services-page__panel .hero-shell__panel-copy p {
    line-height: 1.48;
  }

  .service-page__spec-strip,
  .industry-page__panel-points,
  .about-page__stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .service-page__spec-item,
  .industry-page__panel-point,
  .about-page__panel .stat-card {
    min-height: 0;
    padding: 12px;
    border-radius: 16px;
  }

  .service-page__spec-item strong,
  .industry-page__panel-point strong,
  .about-page__panel .stat-card strong {
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .service-page__dossier .chip-list {
    gap: 6px;
  }

  .service-page__dossier .chip-list li {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .service-page__dossier .hero-shell__visual,
  .industry-page__panel .hero-shell__visual,
  .about-page__panel .hero-shell__visual,
  .info-page__panel .hero-shell__visual,
  .services-page__panel .hero-shell__visual {
    min-height: 0;
    max-height: 260px;
    aspect-ratio: 16 / 8.5;
  }

  .service-page__dossier .hero-shell__visual img,
  .industry-page__panel .hero-shell__visual img,
  .about-page__panel .hero-shell__visual img,
  .info-page__panel .hero-shell__visual img,
  .services-page__panel .hero-shell__visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .page-privacy-policy .policy-nav {
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .page-privacy-policy .policy-nav a {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .service-page-view .hero-shell--service-page,
  .industry-page-view .hero-shell--industry-page,
  .about-page-view .hero-shell--about-page,
  .info-page-view .hero-shell--info-page,
  .services-page-view .hero-shell--services-page {
    padding-top: 12px;
    padding-bottom: 34px;
  }

  .service-page-view .hero-shell__content,
  .industry-page-view .hero-shell__content,
  .about-page-view .hero-shell__content,
  .info-page-view .hero-shell__content,
  .services-page-view .hero-shell__content,
  .service-page__dossier,
  .industry-page__panel,
  .about-page__panel,
  .info-page__panel,
  .services-page__panel {
    padding: 20px;
    border-radius: 24px;
  }

  .service-page-view .hero-shell__content h1,
  .industry-page-view .hero-shell__content h1,
  .about-page-view .hero-shell__content h1,
  .info-page-view .hero-shell__content h1,
  .services-page-view .hero-shell__content h1 {
    max-width: 100%;
    font-size: clamp(1.82rem, 8.4vw, 2.52rem);
    line-height: 1.06 !important;
  }

  .hero-shell__actions .cta {
    width: 100%;
    min-height: 50px;
  }

  .hero-shell__actions,
  .requisites-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .requisites-hero__actions .cta {
    width: 100%;
    min-height: 50px;
  }

  .service-page__spec-strip,
  .service-page__dossier .chip-list,
  .industry-page__panel-points,
  .about-page__panel-list,
  .about-page__stats-grid,
  .services-page__hero-route,
  .services-page__panel .bullet-list--inverse,
  .clients-page-view .clients-hero__points,
  .clients-page-view .clients-hero__note {
    display: none;
  }

  .service-page__dossier .hero-shell__panel-copy p,
  .industry-page__panel .hero-shell__panel-copy p,
  .about-page__panel .hero-shell__panel-copy p,
  .info-page__panel .hero-shell__panel-copy p,
  .services-page__panel .hero-shell__panel-copy p {
    display: none;
  }

  .service-page__dossier .hero-shell__visual,
  .industry-page__panel .hero-shell__visual,
  .about-page__panel .hero-shell__visual,
  .info-page__panel .hero-shell__visual,
  .services-page__panel .hero-shell__visual {
    max-height: 210px;
    aspect-ratio: 16 / 9;
  }

  .blog-page-hero__brief-list,
  .hero-shell--faq .faq-hero__questions,
  .hero-shell--faq .hero-shell__panel {
    display: none;
  }

  .page-privacy-policy .requisites-hero__meta,
  .page-privacy-policy .policy-transition {
    display: none;
  }

  .page-blog .blog-page-tools__summary,
  .page-blog .blog-page-tools__brief {
    display: none;
  }

  .page-blog .blog-page-tools--hero {
    gap: 12px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-hero__content,
  .contact-hero__panel {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-hero__title {
    font-size: clamp(1.92rem, 8.6vw, 2.65rem);
    line-height: 1.06;
    letter-spacing: 0;
  }

  .contact-hero__lede {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .contact-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-hero__actions .cta {
    width: 100%;
    min-height: 50px;
  }

  .contact-hero__cards,
  .contact-hero__panel-text,
  .contact-hero__panel-cards {
    display: none;
  }

  .page-catalogs .catalogs-hero__stats,
  .page-catalogs .catalogs-hero__route-list,
  .page-catalogs .catalogs-hero__codes {
    display: none;
  }

  .page-catalogs .catalogs-hero__aside {
    gap: 12px;
    padding: 20px;
    border-radius: 24px;
  }

  .page-catalogs .catalogs-hero__aside > p {
    display: none;
  }

  .portfolio-journey__metrics,
  .portfolio-journey__steps {
    display: none;
  }

  .portfolio-journey {
    gap: 12px;
  }

  .portfolio-compact {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 100%;
    overflow: hidden;
  }

  .portfolio-compact__media,
  .portfolio-compact__body {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* June 2026: keep casebook photography dominant on wide tablet/desktop. */
@media (min-width: 1181px) {
  .page-home .portfolio-lead__body {
    width: min(460px, calc(100% - 60px));
  }

  .page-home .portfolio-lead__body h3 {
    font-size: clamp(1.78rem, 2.2vw, 2.9rem);
    line-height: 0.98;
  }

  .page-home .portfolio-lead__body p {
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.52;
  }

  .page-home .portfolio-lead__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .portfolio-lead__spec:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .portfolio-casebook__lead,
  .page-portfolio .portfolio-casebook__lead,
  .about-page__casebook .portfolio-casebook__lead {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  }

  .portfolio-casebook__lead-media,
  .page-portfolio .portfolio-casebook__lead-media,
  .about-page__casebook .portfolio-casebook__lead-media {
    order: 2;
    min-height: clamp(500px, 38vw, 620px);
    height: auto;
    aspect-ratio: auto;
  }

  .portfolio-casebook__lead-body,
  .page-portfolio .portfolio-casebook__lead-body,
  .about-page__casebook .portfolio-casebook__lead-body {
    order: 1;
    align-content: center;
    gap: clamp(12px, 1.25vw, 18px);
    padding: clamp(24px, 2.3vw, 34px);
  }

  .portfolio-casebook__lead-body h3,
  .page-portfolio .portfolio-casebook__lead-body h3,
  .about-page__casebook .portfolio-casebook__lead-body h3 {
    max-width: 15ch;
    font-size: clamp(1.95rem, 2.55vw, 3.35rem);
    line-height: 0.98;
  }

  .portfolio-casebook__lead-body p,
  .page-portfolio .portfolio-casebook__lead-body p,
  .about-page__casebook .portfolio-casebook__lead-body p {
    max-width: 34ch;
    font-size: clamp(0.98rem, 1.08vw, 1.08rem);
    line-height: 1.56;
  }

  .portfolio-casebook__specs,
  .page-portfolio .portfolio-casebook__specs,
  .about-page__casebook .portfolio-casebook__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-casebook__spec,
  .page-portfolio .portfolio-casebook__spec,
  .about-page__casebook .portfolio-casebook__spec {
    min-height: 0;
    padding: 15px 16px 14px;
  }

  .portfolio-casebook__spec:last-child,
  .page-portfolio .portfolio-casebook__spec:last-child,
  .about-page__casebook .portfolio-casebook__spec:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .portfolio-casebook__spec-value,
  .page-portfolio .portfolio-casebook__spec-value,
  .about-page__casebook .portfolio-casebook__spec-value,
  .about-page__casebook .portfolio-casebook__spec--accent .portfolio-casebook__spec-value {
    font-size: clamp(1.06rem, 1.28vw, 1.45rem);
    line-height: 1.1;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .page-home .portfolio-lead {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
    padding: clamp(14px, 2vw, 22px);
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(11, 21, 31, 0.98), rgba(18, 32, 45, 0.96)),
      rgba(10, 18, 28, 0.96);
  }

  .page-home .portfolio-lead__media {
    position: relative;
    inset: auto;
    min-height: 0;
    height: clamp(280px, 36vw, 380px);
    overflow: hidden;
    border-radius: clamp(18px, 2.4vw, 26px);
  }

  .page-home .portfolio-lead__media::after {
    background:
      linear-gradient(180deg, rgba(8, 17, 26, 0.02) 0%, rgba(8, 17, 26, 0.1) 70%, rgba(8, 17, 26, 0.34) 100%),
      linear-gradient(90deg, rgba(8, 17, 26, 0.02), rgba(255, 255, 255, 0.08));
  }

  .page-home .portfolio-lead__body {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: auto;
    margin-top: 12px;
    padding: clamp(22px, 2.6vw, 30px);
    border-radius: clamp(20px, 2.6vw, 30px);
    border-width: 1px;
    background:
      radial-gradient(circle at top right, rgba(96, 143, 179, 0.13), transparent 32%),
      linear-gradient(180deg, rgba(11, 21, 31, 0.98), rgba(17, 30, 43, 0.98));
    box-shadow: 0 20px 44px rgba(6, 14, 22, 0.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .page-home .portfolio-lead__body h3 {
    max-width: 22ch;
    font-size: clamp(1.62rem, 3vw, 2.22rem);
    line-height: 1.06;
  }

  .page-home .portfolio-lead__body p {
    max-width: 56ch;
    font-size: clamp(0.96rem, 1.6vw, 1.04rem);
    line-height: 1.52;
  }

  .page-home .portfolio-lead__specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .page-home .portfolio-lead__spec {
    min-height: 0;
    padding: 13px 14px 12px;
  }

  .page-home .portfolio-lead__spec-label {
    letter-spacing: 0.14em;
  }

  .page-home .portfolio-lead__spec-value,
  .page-home .portfolio-lead__spec--accent .portfolio-lead__spec-value {
    font-size: clamp(0.98rem, 1.7vw, 1.18rem);
    line-height: 1.08;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .page-home .portfolio-lead__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .portfolio-lead__spec:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 720px) {
  .page-home .portfolio-lead {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(11, 21, 31, 0.98), rgba(18, 32, 45, 0.96)),
      rgba(10, 18, 28, 0.96);
  }

  .page-home .portfolio-lead__media {
    position: relative;
    inset: auto;
    min-height: 0;
    height: clamp(230px, 66vw, 300px);
    overflow: hidden;
    border-radius: 18px;
  }

  .page-home .portfolio-lead__body {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: auto;
    margin-top: 10px;
    padding: 20px 18px 18px;
    border-radius: 20px;
    border-width: 1px;
    background:
      radial-gradient(circle at top right, rgba(96, 143, 179, 0.13), transparent 32%),
      linear-gradient(180deg, rgba(11, 21, 31, 0.98), rgba(17, 30, 43, 0.98));
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .page-home .portfolio-lead__body h3 {
    font-size: clamp(1.56rem, 7vw, 2.12rem);
    line-height: 1.05;
  }

  .page-home .portfolio-lead__body p {
    font-size: 0.94rem;
    line-height: 1.48;
  }
}

body.page-home .portfolio-lead__body {
  color: rgba(246, 250, 253, 0.98);
}

body.page-home .portfolio-lead__body .portfolio-card__type {
  color: rgba(89, 197, 231, 0.92);
}

body.page-home .portfolio-lead__body h3,
body.page-home .portfolio-lead__spec-value,
body.page-home .portfolio-lead__spec--accent .portfolio-lead__spec-value {
  color: rgba(248, 251, 253, 0.98);
}

body.page-home .portfolio-lead__body p {
  color: rgba(222, 233, 242, 0.88);
}

body.page-home .portfolio-lead__spec-label {
  color: rgba(191, 212, 229, 0.86);
}

body.page-home .portfolio-lead__index {
  color: rgba(255, 255, 255, 0.16);
}

/* June 2026: site background tuning - reduce over-bright white wash on public pages. */
:root {
  --surface: rgba(244, 249, 252, 0.82);
  --surface-strong: rgba(249, 252, 254, 0.94);
  --surface-muted: rgba(225, 236, 244, 0.9);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.54), transparent 26%),
    radial-gradient(circle at 94% 4%, rgba(95, 168, 187, 0.15), transparent 30%),
    radial-gradient(circle at 18% 42%, rgba(110, 152, 185, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(231, 239, 244, 0.88) 0%, rgba(222, 233, 241, 0.96) 44%, rgba(210, 224, 233, 0.98) 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(18, 30, 42, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 30, 42, 0.038) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.44), transparent 92%);
}

.hero-shell__content,
.detail-card,
.metric-card,
.service-card,
.portfolio-card,
.timeline-card,
.blog-card,
.lead-form,
.not-found-card,
.article-content,
.contacts-map {
  border-color: rgba(191, 211, 225, 0.78);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.62), transparent 26%),
    linear-gradient(180deg, rgba(249, 252, 254, 0.9), rgba(232, 241, 247, 0.82)),
    rgba(232, 241, 247, 0.86);
  box-shadow:
    0 24px 58px rgba(42, 65, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

@media (min-width: 721px) {
  body.page-home .hero-stage__viewport,
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    border-color: rgba(185, 207, 222, 0.84);
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.62), transparent 25%),
      radial-gradient(circle at 86% 12%, rgba(137, 174, 202, 0.16), transparent 30%),
      linear-gradient(135deg, rgba(238, 245, 249, 0.96) 0%, rgba(224, 235, 243, 0.94) 48%, rgba(204, 220, 232, 0.92) 100%);
    box-shadow:
      0 30px 74px rgba(20, 38, 55, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  body.page-home .solution-feature,
  body.page-home .solution-compact,
  body.page-home .portfolio-lead,
  body.page-home .portfolio-compact,
  body.page-home .portfolio-editorial__footer,
  body.page-home .process-step {
    border-color: rgba(185, 207, 222, 0.76);
    background:
      radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.5), transparent 24%),
      linear-gradient(180deg, rgba(246, 250, 253, 0.88), rgba(224, 235, 243, 0.8)),
      rgba(226, 237, 245, 0.82);
    box-shadow:
      0 22px 52px rgba(39, 61, 80, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.48);
  }

  body.page-home .solution-feature__body,
  body.page-home .portfolio-lead__body {
    border-color: rgba(185, 207, 222, 0.78);
    background:
      linear-gradient(180deg, rgba(247, 251, 253, 0.88), rgba(224, 236, 244, 0.78)),
      rgba(229, 239, 246, 0.84);
  }

  body.page-home .portfolio-lead__body {
    border-color: rgba(255, 255, 255, 0.1);
    background:
      radial-gradient(circle at top right, rgba(96, 143, 179, 0.16), transparent 30%),
      linear-gradient(180deg, rgba(11, 21, 31, 0.94), rgba(17, 30, 43, 0.97)),
      rgba(10, 18, 28, 0.92);
    color: rgba(246, 250, 253, 0.98);
  }

  body.page-home .portfolio-lead__body h3,
  body.page-home .portfolio-lead__spec-value,
  body.page-home .portfolio-lead__spec--accent .portfolio-lead__spec-value {
    color: rgba(248, 251, 253, 0.98);
  }

  body.page-home .portfolio-lead__body .portfolio-card__type {
    color: rgba(89, 197, 231, 0.92);
  }

  body.page-home .portfolio-lead__body p {
    color: rgba(222, 233, 242, 0.88);
  }

  body.page-home .portfolio-lead__specs {
    border-color: rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
      rgba(255, 255, 255, 0.04);
  }

  body.page-home .portfolio-lead__spec {
    border-right-color: rgba(255, 255, 255, 0.08);
  }

  body.page-home .portfolio-lead__spec-label {
    color: rgba(191, 212, 229, 0.86);
  }

  body.page-home .portfolio-lead__index {
    color: rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 720px) {
  body.page-home .solution-feature {
    display: grid;
    grid-template-rows: auto auto;
    gap: 12px;
    min-height: 0;
    padding: 12px;
    border-radius: 24px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(247, 251, 253, 0.98), rgba(229, 239, 246, 0.92)),
      rgba(232, 241, 248, 0.94);
  }

  body.page-home .solution-feature__media {
    position: relative;
    inset: auto;
    min-height: 0;
    height: clamp(210px, 58vw, 252px);
    border-radius: 20px;
  }

  body.page-home .solution-feature__media::after {
    background:
      linear-gradient(180deg, rgba(10, 18, 28, 0.02), rgba(10, 18, 28, 0.1)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 42%);
  }

  body.page-home .solution-feature__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  body.page-home .solution-feature__body {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: auto;
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(194, 215, 229, 0.72);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.94)),
      rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
    box-shadow: none;
  }

  body.page-home .solution-feature__body::before {
    width: 88px;
  }

  body.page-home .solution-feature h3 {
    font-size: clamp(1.54rem, 7vw, 2rem);
    line-height: 1.08;
  }

  body.page-home .solution-feature p {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  body.page-home .solution-feature__link {
    justify-self: stretch;
    width: 100%;
    min-height: 52px;
  }
}

body.page-catalogs .catalog-card {
  border-color: rgba(185, 207, 222, 0.76);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.48), transparent 24%),
    linear-gradient(180deg, rgba(246, 250, 253, 0.88), rgba(224, 235, 243, 0.8)),
    rgba(226, 237, 245, 0.82);
  box-shadow:
    0 22px 52px rgba(39, 61, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

@media (max-width: 720px) {
  body.page-home .hero-stage__viewport,
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    border-color: rgba(185, 207, 222, 0.82);
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.52), transparent 24%),
      linear-gradient(135deg, rgba(237, 245, 249, 0.95) 0%, rgba(222, 234, 242, 0.94) 52%, rgba(205, 220, 232, 0.92) 100%);
    box-shadow:
      0 24px 56px rgba(20, 38, 55, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

/* FAQ disclosure icon fix: use the real span icon, not an extra pseudo-element. */
.faq-item summary {
  justify-content: space-between;
  gap: 18px;
  padding-right: 24px;
}

.faq-item summary::after,
.page-home .section-shell--faq .faq-item summary::after,
.page-faq .section-shell--faq .faq-item summary::after {
  content: none !important;
  display: none !important;
}

.faq-item summary > span:first-child {
  min-width: 0;
}

.faq-item__icon {
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 34px;
  block-size: 34px;
  border-radius: 999px;
  background: rgba(18, 30, 42, 0.06);
  color: var(--text);
  font-size: 0;
  line-height: 1;
}

.faq-item__icon::before {
  content: "+";
  font-size: 1.2rem;
}

.faq-item[open] .faq-item__icon::before {
  content: "-";
}

.page-home .section-shell--faq .faq-item__icon,
.page-faq .section-shell--faq .faq-item__icon {
  flex-basis: 38px;
  inline-size: 38px;
  block-size: 38px;
  background: rgba(18, 30, 42, 0.05);
}

@media (max-width: 720px) {
  .page-home .section-shell--faq .faq-item summary,
  .page-faq .section-shell--faq .faq-item summary {
    padding-right: 20px;
  }
}

/* FAQ page refinement: faster answers, compact hero, clean search and denser groups. */
.page-faq .hero-shell--faq {
  padding-block: clamp(22px, 3.4vw, 42px);
}

.page-faq .hero-shell--faq .hero-shell__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: stretch;
  gap: 22px;
}

.page-faq .hero-shell--faq .hero-shell__content,
.page-faq .hero-shell--faq .hero-shell__panel {
  min-height: clamp(330px, 25vw, 390px);
  border-radius: 30px;
}

.page-faq .hero-shell--faq .hero-shell__content {
  gap: 16px;
  padding: clamp(28px, 3.3vw, 40px);
}

.page-faq .hero-shell--faq .hero-shell__content h1 {
  max-width: 15ch;
  font-size: clamp(2.28rem, 3.55vw, 3.72rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.page-faq .hero-shell--faq .hero-shell__lede {
  max-width: 58ch;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.page-faq .faq-hero__footer {
  margin-top: 10px;
  padding-top: 18px;
}

.page-faq .hero-shell--faq .hero-shell__panel {
  padding: clamp(22px, 2.4vw, 30px);
}

.page-faq .hero-shell--faq .hero-shell__panel-copy h2 {
  font-size: clamp(1.34rem, 1.8vw, 1.9rem);
  line-height: 1.04;
}

.page-faq .hero-shell--faq .faq-hero__questions {
  display: none;
}

.page-faq .section-shell--faq-hub {
  padding-top: clamp(22px, 3vw, 42px);
}

.page-faq .faq-directory {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  grid-template-areas:
    "intro search"
    "intro nav";
  gap: 18px 22px;
  padding: 24px;
}

.page-faq .faq-directory__intro {
  grid-area: intro;
  align-content: center;
  padding-right: 22px;
  border-right: 1px solid rgba(18, 30, 42, 0.08);
}

.faq-search {
  grid-area: search;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.faq-search__label {
  color: rgba(118, 137, 154, 0.95);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-search__field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(191, 211, 225, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.92)),
    rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.faq-search__icon {
  position: absolute;
  left: 18px;
  inline-size: 16px;
  block-size: 16px;
  border: 2px solid rgba(88, 112, 134, 0.7);
  border-radius: 50%;
}

.faq-search__icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  inline-size: 8px;
  block-size: 2px;
  border-radius: 999px;
  background: rgba(88, 112, 134, 0.7);
  rotate: 45deg;
}

.faq-search input {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px 0 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.faq-search input::placeholder {
  color: rgba(104, 124, 142, 0.72);
  font-weight: 600;
}

.faq-search input:focus-visible {
  border-radius: 18px;
  box-shadow: 0 0 0 3px rgba(126, 190, 241, 0.28);
}

.faq-search__empty {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(248, 183, 98, 0.14);
  color: rgba(101, 67, 20, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.page-faq .faq-directory__nav {
  grid-area: nav;
}

.page-faq .faq-directory__link {
  min-height: 78px;
  gap: 7px;
  padding: 15px 16px;
}

.page-faq .faq-groups {
  gap: 18px;
}

.page-faq .faq-group {
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 24px;
  padding: 22px;
}

.page-faq .faq-group__intro {
  position: sticky;
  top: 104px;
}

.page-faq .section-shell--faq .faq-item summary {
  min-height: 66px;
  padding: 16px 18px;
  gap: 16px;
}

.page-faq .section-shell--faq .faq-item p {
  padding: 0 18px 18px;
  max-width: 76ch;
}

.page-faq .faq-page-cta {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
}

.page-faq .faq-page-cta__copy h2 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.02;
}

@media (max-width: 1100px) {
  .page-faq .hero-shell--faq .hero-shell__grid,
  .page-faq .faq-directory,
  .page-faq .faq-group,
  .page-faq .faq-page-cta {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-directory {
    grid-template-areas:
      "intro"
      "search"
      "nav";
  }

  .page-faq .faq-directory__intro {
    padding-right: 0;
    border-right: 0;
  }

  .page-faq .hero-shell--faq .hero-shell__panel {
    display: none;
  }

  .page-faq .hero-shell--faq .hero-shell__content {
    min-height: 0;
  }

  .page-faq .faq-group__intro {
    position: static;
  }

  .page-faq .faq-page-cta__actions {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .page-faq .hero-shell--faq {
    padding-block: 16px 22px;
  }

  .page-faq .hero-shell--faq .hero-shell__content {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .page-faq .hero-shell--faq .hero-shell__content h1 {
    max-width: 11.5ch;
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .page-faq .faq-hero__footer,
  .page-faq .hero-shell--faq .hero-shell__panel {
    display: none;
  }

  .page-faq .section-shell--faq-hub {
    padding-top: 14px;
  }

  .page-faq .faq-directory,
  .page-faq .faq-group,
  .page-faq .faq-page-cta {
    padding: 16px;
    border-radius: 22px;
  }

  .page-faq .faq-directory__nav {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-directory__link {
    min-height: 62px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .page-faq .faq-group__intro h3 {
    font-size: clamp(1.45rem, 7vw, 1.88rem);
    line-height: 1.04;
  }

  .page-faq .section-shell--faq .faq-item summary {
    min-height: 62px;
    padding: 14px;
    font-size: 0.96rem;
  }

  .page-faq .faq-page-cta__actions {
    grid-template-columns: 1fr;
  }
}

/* June 2026: service CTA proof points, finished as compact decision cards. */
.service-page__contact .lead-form__intro,
.service-page__contact .lead-form__intro > p,
.service-page__contact .lead-form__intro h2,
.service-page__contact .lead-form__intro-points,
.service-page__contact .lead-form__intro-point,
.service-page__contact .lead-form__intro-point strong {
  min-width: 0;
}

.service-page__contact .lead-form__intro > p {
  max-width: 46ch;
  overflow-wrap: break-word;
}

.service-page__contact .lead-form__intro-points {
  display: grid;
  gap: 10px;
  margin-top: clamp(10px, 1.4vw, 18px);
  padding-top: 0;
}

.service-page__contact .lead-form__intro-point {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(199, 215, 228, 0.82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, rgba(250, 253, 255, 0.94), rgba(231, 240, 247, 0.84));
  box-shadow:
    0 12px 28px rgba(35, 55, 73, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.service-page__contact .lead-form__intro-point span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(194, 214, 229, 0.92);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 242, 249, 0.86));
  color: rgba(35, 80, 108, 0.96);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.service-page__contact .lead-form__intro-point strong {
  color: rgba(14, 24, 38, 0.96);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.26;
  overflow-wrap: break-word;
}

@media (max-width: 720px) {
  .service-page__contact .lead-form {
    overflow: hidden;
  }

  .service-page__contact .lead-form__intro {
    gap: 16px;
  }

  .service-page__contact .lead-form__intro h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.72rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .service-page__contact .lead-form__intro > p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.62;
  }

  .service-page__contact .lead-form__intro-points {
    gap: 9px;
    margin-top: 2px;
  }

  .service-page__contact .lead-form__intro-point {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
    border-radius: 17px;
  }

  .service-page__contact .lead-form__intro-point span {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .service-page__contact .lead-form__intro-point strong {
    font-size: 0.98rem;
    line-height: 1.3;
  }
}

/* June 2026: public section headings should feel like designed section plates, not bare text. */
.aluglass-page main .section-heading,
body.page-catalogs main .catalog-subhead,
.page-portfolio .portfolio-casebook__rail-header {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: clamp(22px, 2.55vw, 34px);
  border: 1px solid rgba(194, 212, 226, 0.78);
  border-radius: clamp(24px, 2.8vw, 34px);
  background:
    radial-gradient(circle at 88% 10%, rgba(95, 168, 187, 0.15), transparent 32%),
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(135deg, rgba(250, 253, 255, 0.94), rgba(231, 240, 247, 0.82));
  box-shadow:
    0 24px 58px rgba(36, 60, 80, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.aluglass-page main .section-heading::before,
body.page-catalogs main .catalog-subhead::before,
.page-portfolio .portfolio-casebook__rail-header::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.aluglass-page main .section-heading::after,
body.page-catalogs main .catalog-subhead::after,
.page-portfolio .portfolio-casebook__rail-header::after {
  content: "";
  position: absolute;
  inset: clamp(24px, 2.4vw, 34px) auto clamp(24px, 2.4vw, 34px) 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 181, 109, 0.98), rgba(95, 168, 187, 0.62));
  opacity: 0.92;
}

.aluglass-page main .section-heading > *,
body.page-catalogs main .catalog-subhead > *,
.page-portfolio .portfolio-casebook__rail-header > * {
  position: relative;
  z-index: 1;
}

.aluglass-page main .section-heading--split {
  align-items: center;
}

.aluglass-page main .section-heading .section-eyebrow,
body.page-catalogs main .catalog-subhead .section-eyebrow,
.page-portfolio .portfolio-casebook__rail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(196, 107, 44, 0.98);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aluglass-page main .section-heading .section-eyebrow::before,
body.page-catalogs main .catalog-subhead .section-eyebrow::before,
.page-portfolio .portfolio-casebook__rail-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 181, 109, 1), rgba(95, 168, 187, 0.92));
  box-shadow: 0 0 0 7px rgba(240, 181, 109, 0.12);
}

.aluglass-page main .section-heading h2,
body.page-catalogs main .catalog-subhead h2,
.page-portfolio .portfolio-casebook__rail-header h3 {
  max-width: min(100%, 26ch);
  color: rgba(13, 24, 38, 0.98);
  font-size: clamp(1.5rem, 1.72vw, 1.98rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-home main .section-heading--split {
  grid-template-columns: minmax(0, 1.46fr) minmax(300px, 0.54fr);
  gap: clamp(24px, 3vw, 46px);
}

.page-home main .section-heading--split h2 {
  max-width: min(100%, 20ch);
  font-size: clamp(1.86rem, 2.42vw, 2.62rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.page-home main .section-heading__aside {
  max-width: 46ch;
}

.page-home .section-shell--faq .section-heading--split {
  grid-template-columns: minmax(0, 1.62fr) minmax(290px, 0.38fr);
}

.page-home .section-shell--faq .section-heading--split h2 {
  max-width: min(100%, 24ch);
}

.about-page-view .section-heading--split {
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.64fr);
  gap: clamp(22px, 2.8vw, 42px);
}

.about-page-view .section-heading h2 {
  max-width: min(100%, 30ch);
  font-size: clamp(1.52rem, 1.92vw, 2.18rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

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

.about-page__sector-shell .section-heading--split,
.about-page__process-shell .section-heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.about-page__sector-shell .section-heading h2,
.about-page__process-shell .section-heading h2 {
  max-width: none;
  font-size: clamp(1.5rem, 1.86vw, 2.08rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

@media (min-width: 901px) {
  .page-home .section-shell--faq {
    grid-template-columns: 1fr;
  }

  .page-home .section-shell--faq .section-heading {
    position: relative;
    top: auto;
  }

  .page-home .section-shell--faq .section-heading--split {
    grid-template-columns: minmax(0, 1.44fr) minmax(300px, 0.56fr);
  }
}

.page-requisites .requisites-hero__title,
.page-privacy-policy .requisites-hero__content h1 {
  font-size: clamp(1.72rem, 2.28vw, 2.44rem);
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
}

.aluglass-page main .section-heading__aside,
.page-portfolio .portfolio-casebook__rail-header p {
  max-width: 54ch;
  padding: clamp(14px, 1.4vw, 18px) clamp(16px, 1.6vw, 22px);
  border: 1px solid rgba(205, 221, 232, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(242, 248, 252, 0.62));
  color: rgba(65, 84, 104, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.page-home .section-heading--split > div:first-child::after {
  display: none;
}

.page-home .section-heading__aside {
  border: 1px solid rgba(205, 221, 232, 0.72);
}

.page-home .section-heading__aside::before {
  content: none;
  display: none;
}

.aluglass-page main .section-heading,
body.page-catalogs main .catalog-subhead {
  margin-bottom: clamp(30px, 3vw, 44px);
}

.page-portfolio .section-shell--portfolio-page .section-heading,
.page-portfolio .section-shell--portfolio-proof .section-heading {
  margin-bottom: 0;
}

.page-portfolio .portfolio-bridge-shell {
  padding-bottom: clamp(30px, 3vw, 46px);
}

.page-portfolio .portfolio-bridge-shell--compact {
  padding-bottom: clamp(28px, 2.6vw, 40px);
}

.page-portfolio .section-shell--portfolio-page .container,
.page-portfolio .section-shell--portfolio-proof .container {
  gap: clamp(34px, 3vw, 46px);
}

.page-portfolio .portfolio-casebook {
  gap: clamp(26px, 2.6vw, 36px);
}

.page-portfolio .portfolio-casebook__rail {
  gap: clamp(22px, 2.4vw, 32px);
}

.page-portfolio .portfolio-casebook__rail-header {
  margin-bottom: 0;
}

.industry-page-view .industry-page__services .section-heading,
.industry-page--for-offices .industry-page__services .section-heading--split,
.industry-page--for-shopping-centers .industry-page__services .section-heading--split,
.page-faq .section-shell--faq-hub .section-heading {
  margin-bottom: clamp(28px, 2.8vw, 42px);
}

.page-portfolio .portfolio-journey-shell {
  padding-bottom: clamp(32px, 2.8vw, 44px);
}

.page-portfolio .gallery-page__albums {
  padding-bottom: clamp(32px, 2.8vw, 44px);
}

.page-portfolio .gallery-media-shell {
  gap: clamp(24px, 2.4vw, 34px);
}

.page-contacts .contact-page {
  gap: clamp(24px, 2.8vw, 38px);
}

.page-requisites .requisites-page__hero,
.page-privacy-policy .requisites-hero,
.page-privacy-policy .privacy-nav-section,
.page-privacy-policy .requisites-main {
  padding-bottom: clamp(30px, 2.6vw, 40px);
}

@media (max-width: 900px) {
  .aluglass-page main .section-heading,
  body.page-catalogs main .catalog-subhead,
  .page-portfolio .portfolio-casebook__rail-header {
    padding: 20px;
    border-radius: 24px;
  }

  .aluglass-page main .section-heading--split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aluglass-page main .section-heading h2,
  body.page-catalogs main .catalog-subhead h2,
  .page-portfolio .portfolio-casebook__rail-header h3 {
    max-width: none;
    font-size: clamp(1.55rem, 5.2vw, 2.15rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  .page-home main .section-heading--split,
  .page-home .section-shell--faq .section-heading--split,
  .about-page-view .section-heading--split,
  .about-page__sector-shell .section-heading--split,
  .about-page__process-shell .section-heading--split {
    grid-template-columns: 1fr;
  }

  .page-home main .section-heading--split h2,
  .about-page-view .section-heading h2,
  .about-page__sector-shell .section-heading h2,
  .about-page__process-shell .section-heading h2 {
    max-width: none;
    font-size: clamp(1.42rem, 5vw, 1.82rem);
    line-height: 1.16;
  }

  .page-requisites .requisites-hero__title,
  .page-privacy-policy .requisites-hero__content h1 {
    font-size: clamp(1.52rem, 5.6vw, 1.9rem);
    line-height: 1.16 !important;
  }

  .aluglass-page main .section-heading__aside,
  .page-portfolio .portfolio-casebook__rail-header p {
    max-width: none;
    padding: 14px 16px;
  }

  .aluglass-page main .section-heading,
  body.page-catalogs main .catalog-subhead {
    margin-bottom: clamp(24px, 6vw, 32px);
  }

  .industry-page-view .industry-page__services .section-heading,
  .industry-page--for-offices .industry-page__services .section-heading--split,
  .industry-page--for-shopping-centers .industry-page__services .section-heading--split,
  .page-faq .section-shell--faq-hub .section-heading {
    margin-bottom: clamp(22px, 6vw, 30px);
  }

  .page-portfolio .portfolio-journey-shell,
  .page-portfolio .gallery-page__albums,
  .page-requisites .requisites-page__hero,
  .page-privacy-policy .requisites-hero,
  .page-privacy-policy .privacy-nav-section,
  .page-privacy-policy .requisites-main {
    padding-bottom: clamp(22px, 6vw, 30px);
  }

  .page-portfolio .gallery-media-shell {
    gap: 22px;
  }

  .page-contacts .contact-page {
    gap: clamp(22px, 6vw, 30px);
  }

  .page-portfolio .portfolio-bridge-shell,
  .page-portfolio .portfolio-bridge-shell--compact {
    padding-bottom: clamp(22px, 6vw, 30px);
  }

  .page-portfolio .section-shell--portfolio-page .container,
  .page-portfolio .section-shell--portfolio-proof .container {
    gap: clamp(24px, 6vw, 34px);
  }

  .page-portfolio .portfolio-casebook {
    gap: 22px;
  }

  .page-portfolio .portfolio-casebook__rail {
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .aluglass-page main .section-heading,
  body.page-catalogs main .catalog-subhead,
  .page-portfolio .portfolio-casebook__rail-header {
    padding: 18px;
    border-radius: 22px;
  }

  .aluglass-page main .section-heading::after,
  body.page-catalogs main .catalog-subhead::after,
  .page-portfolio .portfolio-casebook__rail-header::after {
    inset-block: 22px;
    width: 4px;
  }

  .aluglass-page main .section-heading h2,
  body.page-catalogs main .catalog-subhead h2,
  .page-portfolio .portfolio-casebook__rail-header h3,
  .page-home main .section-heading--split h2,
  .about-page-view .section-heading h2,
  .about-page__sector-shell .section-heading h2,
  .about-page__process-shell .section-heading h2 {
    font-size: clamp(1.34rem, 5.25vw, 1.64rem);
    line-height: 1.18;
  }
}

.page-portfolio .portfolio-casebook__rail-header {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  grid-template-rows: auto 1fr;
  align-items: stretch;
  gap: clamp(16px, 2vw, 28px);
  min-height: 0;
  padding: clamp(22px, 2.2vw, 30px);
  border-color: rgba(181, 207, 224, 0.74);
  background:
    radial-gradient(circle at 88% 6%, rgba(95, 168, 187, 0.16), transparent 30%),
    radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.92), transparent 35%),
    linear-gradient(135deg, rgba(250, 253, 255, 0.96), rgba(231, 240, 247, 0.86));
  box-shadow:
    0 18px 44px rgba(36, 60, 80, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-portfolio .portfolio-casebook__rail-header::before {
  inset: 1px;
  border-color: rgba(255, 255, 255, 0.54);
}

.page-portfolio .portfolio-casebook__rail-header::after {
  content: "02-04";
  inset: clamp(22px, 2.2vw, 30px) clamp(22px, 2.2vw, 30px) auto auto;
  width: auto;
  height: auto;
  padding: 8px 12px;
  border: 1px solid rgba(13, 24, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(87, 111, 133, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  opacity: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.page-portfolio .portfolio-casebook__rail-eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-right: 82px;
}

.page-portfolio .portfolio-casebook__rail-header h3 {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  max-width: 23ch;
  font-size: clamp(1.68rem, 2.32vw, 2.48rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.page-portfolio .portfolio-casebook__rail-header p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  display: grid;
  align-content: center;
  max-width: none;
  margin: 0;
  padding: clamp(16px, 1.7vw, 22px);
  border: 1px solid rgba(205, 221, 232, 0.78);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(240, 181, 109, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(242, 248, 252, 0.68));
  color: rgba(65, 84, 104, 0.92);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.62;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .page-portfolio .portfolio-casebook__rail-header {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
  }

  .page-portfolio .portfolio-casebook__rail-header::after {
    inset: 18px 18px auto auto;
  }

  .page-portfolio .portfolio-casebook__rail-eyebrow,
  .page-portfolio .portfolio-casebook__rail-header h3,
  .page-portfolio .portfolio-casebook__rail-header p {
    grid-column: 1;
    grid-row: auto;
  }

  .page-portfolio .portfolio-casebook__rail-eyebrow {
    margin-right: 78px;
  }

  .page-portfolio .portfolio-casebook__rail-header h3 {
    align-self: start;
    max-width: none;
    font-size: clamp(1.45rem, 5vw, 1.9rem);
    line-height: 1.1;
  }

  .page-portfolio .portfolio-casebook__rail-header p {
    padding: 14px 16px;
    font-size: 0.96rem;
  }
}

@media (max-width: 560px) {
  .page-portfolio .portfolio-casebook__rail-header {
    padding: 18px;
    border-radius: 22px;
  }

  .page-portfolio .portfolio-casebook__rail-header::after {
    content: "02";
    inset: 16px 16px auto auto;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .page-portfolio .portfolio-casebook__rail-header h3 {
    font-size: clamp(1.34rem, 6vw, 1.68rem);
    line-height: 1.14;
  }
}

/* June 2026: desktop header behaves like a compact command bar, not a stretched rail. */
@media (min-width: 1201px) {
  .header-content {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) auto;
    gap: clamp(14px, 1.1vw, 20px);
  }

  .brand-cluster {
    max-width: 320px;
    overflow: hidden;
  }

  .brand-cluster__logo {
    width: clamp(178px, 13vw, 236px);
    max-height: 48px;
  }

  .brand-cluster__descriptor {
    max-width: 100%;
    width: max-content;
    overflow: hidden;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-overflow: clip;
  }

  .nav--desktop {
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .nav--desktop a {
    flex: 0 0 auto;
    min-width: 0;
    padding-inline: clamp(15px, 1.05vw, 22px);
  }
}

@media (min-width: 1440px) {
  .site-header .header-shell {
    width: min(calc(100% - 80px), 1640px);
  }

  .header-content {
    grid-template-columns: 310px minmax(0, 1fr) auto;
    padding-inline: 22px 20px;
  }

  .brand-cluster {
    max-width: 310px;
  }

  .brand-cluster__logo {
    width: clamp(210px, 13vw, 246px);
  }

  .nav--desktop {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
  }

  .nav--desktop a {
    flex: 0 0 auto;
    min-width: 0;
  }
}

@media (min-width: 1201px) and (max-width: 1380px) {
  .header-content {
    grid-template-columns: minmax(230px, 250px) minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand-cluster {
    max-width: 250px;
  }

  .brand-cluster__logo {
    width: clamp(168px, 12vw, 188px);
  }

  .brand-cluster__descriptor {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .nav--desktop {
    width: fit-content;
    max-width: 100%;
    gap: 2px;
  }

  .nav--desktop a {
    padding-inline: 9px;
  }
}

/* Blog refinement: tighter editorial rhythm and resilient article layout. */
.page-blog .section-shell--compact:first-child {
  padding-top: clamp(14px, 1.8vw, 26px);
  padding-bottom: clamp(18px, 2.2vw, 32px);
}

.page-blog .blog-page-tools--hero {
  align-items: start;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(22px, 2.35vw, 34px);
  border-radius: clamp(24px, 2vw, 32px);
}

.page-blog .blog-page-tools__intro {
  gap: clamp(12px, 1.4vw, 18px);
}

.page-blog .blog-page-tools__headline,
.page-blog .blog-page-tools__intro h2 {
  max-width: min(100%, 18ch);
  font-size: clamp(2.15rem, 3.05vw, 3.45rem);
  line-height: 1.04 !important;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.page-blog .blog-page-tools__lede {
  max-width: 58ch;
  font-size: clamp(0.98rem, 0.98vw, 1.08rem);
  line-height: 1.58;
}

.page-blog .blog-page-tools__support {
  max-width: 60ch;
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-blog .blog-page-tools__controls {
  grid-template-columns: 1fr;
  grid-template-areas: none;
  gap: 12px;
  min-width: 0;
}

.page-blog .blog-page-tools__count,
.page-blog .blog-search--page,
.page-blog .blog-topic-nav,
.page-blog .blog-page-tools__summary,
.page-blog .blog-page-tools__brief {
  grid-area: auto;
  grid-column: auto;
}

.page-blog .blog-page-tools__summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.page-blog .blog-page-tools__summary-card {
  min-height: 86px;
  padding: 14px 16px;
  border-radius: 18px;
}

.page-blog .blog-page-tools__summary-card strong {
  font-size: clamp(1.12rem, 1.18vw, 1.36rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-blog .blog-page-tools__summary-card span {
  font-size: 0.68rem;
  line-height: 1.35;
}

.page-blog .blog-search--page {
  padding: 8px;
  border-radius: 18px;
}

.page-blog .blog-topic-nav {
  padding: 8px;
  border-radius: 18px;
}

.page-blog .blog-page-tools__brief {
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
}

.page-blog .blog-page-tools__brief h2 {
  max-width: none;
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  line-height: 1.12 !important;
  letter-spacing: 0;
}

.page-blog .blog-page-tools__brief p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-blog .blog-page-tools__brief-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page-blog .blog-page-tools__brief-list li {
  min-height: 38px;
  padding: 8px 10px 8px 30px;
  font-size: 0.78rem;
  line-height: 1.28;
}

.page-blog-post .hero-shell--article-page,
.hero-shell--article-page {
  padding-top: clamp(18px, 2.2vw, 34px);
  padding-bottom: clamp(22px, 2.8vw, 42px);
}

.page-blog-post .hero-shell--article-page .article-shell,
.hero-shell--article-page .article-shell {
  align-items: start;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(20px, 2.4vw, 34px);
}

.page-blog-post .article-shell__intro,
.hero-shell--article-page .article-shell__intro {
  align-content: start;
  gap: clamp(14px, 1.4vw, 20px);
  padding: clamp(26px, 2.8vw, 38px);
}

.page-blog-post .article-shell__masthead,
.article-shell__masthead {
  gap: clamp(12px, 1.25vw, 18px);
}

.page-blog-post .article-shell__masthead h1,
.article-shell__masthead h1 {
  max-width: min(100%, 18ch);
  font-size: clamp(2.2rem, 3.25vw, 3.9rem);
  line-height: 1.03 !important;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.page-blog-post .article-shell__meta-bar,
.article-shell__meta-bar {
  padding-top: 12px;
}

.page-blog-post .article-shell__media,
.hero-shell--article-page .article-shell__media {
  border-radius: clamp(22px, 2vw, 28px);
}

.page-blog-post .article-shell__media img,
.hero-shell--article-page .article-shell__media img {
  aspect-ratio: auto !important;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: top center !important;
}

/* Force transparent home hero fallback viewport background. */
body.page-home .hero-stage__viewport,
body.page-home .hero-stage--fallback .hero-stage__viewport,
.hero-stage--fallback .hero-stage__viewport {
  background: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
}

body.page-home .hero-stage__viewport::before,
body.page-home .hero-stage__viewport::after,
body.page-home .hero-stage--fallback .hero-stage__viewport::before,
body.page-home .hero-stage--fallback .hero-stage__viewport::after,
.hero-stage--fallback .hero-stage__viewport::before,
.hero-stage--fallback .hero-stage__viewport::after {
  background: none !important;
}

.page-blog-post .article-layout,
.article-layout {
  max-width: min(100%, 1040px);
}

.page-blog-post .article-body-shell .article-layout {
  width: min(100%, 1481px);
  margin-inline: auto;
}

.page-blog-post .article-layout,
.page-blog-post .article-related .section-heading {
  width: 100%;
  max-width: none;
}

.page-blog-post .article-body-shell .article-content {
  width: 100%;
}

.page-blog-post .article-content,
.article-body-shell .article-content {
  padding: clamp(28px, 3vw, 44px);
}

.page-blog-post .article-content > *,
.article-body-shell .article-content > * {
  max-width: 100rem;
}

.page-blog-post .article-content p,
.page-blog-post .article-content li,
.article-body-shell .article-content p,
.article-body-shell .article-content li {
  line-height: 1.72;
}

.page-blog-post .article-content h2,
.article-body-shell .article-content h2 {
  max-width: min(100%, 100em);
  font-size: clamp(1.38rem, 1.45vw, 1.74rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0;
}

@media (max-width: 1180px) {
  .page-blog .blog-page-tools--hero {
    grid-template-columns: 1fr;
  }

  .page-blog .blog-page-tools__headline,
  .page-blog .blog-page-tools__intro h2 {
    max-width: 20ch;
  }

  .page-blog .blog-page-tools__controls {
    grid-template-columns: 1fr;
  }

  .page-blog .blog-page-tools__brief-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-blog-post .hero-shell--article-page .article-shell,
  .hero-shell--article-page .article-shell {
    grid-template-columns: 1fr;
  }

  .page-blog-post .article-shell__masthead h1,
  .article-shell__masthead h1 {
    max-width: 18ch;
  }

  .page-blog-post .article-shell__media img,
  .hero-shell--article-page .article-shell__media img {
    aspect-ratio: auto !important;
    max-height: 360px;
    width: 100%;
    height: auto;
    object-position: top center !important;
  }
}

@media (max-width: 640px) {
  .page-blog .section-shell--compact:first-child {
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .page-blog .blog-page-tools--hero {
    padding: 18px;
    border-radius: 24px;
  }

  .page-blog .blog-page-tools__headline,
  .page-blog .blog-page-tools__intro h2 {
    max-width: 100%;
    font-size: clamp(1.82rem, 8vw, 2.45rem);
    line-height: 1.07 !important;
  }

  .page-blog .blog-page-tools__support {
    display: none;
  }

  .page-blog .blog-search--page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .page-blog .blog-search--page input,
  .page-blog .blog-search--page button {
    width: auto;
    min-width: 0;
  }

  .page-blog-post .hero-shell--article-page,
  .hero-shell--article-page {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .page-blog-post .article-shell__intro,
  .hero-shell--article-page .article-shell__intro {
    padding: 20px;
    border-radius: 24px;
  }

  .page-blog-post .article-shell__masthead h1,
  .article-shell__masthead h1 {
    max-width: 100%;
    font-size: clamp(1.82rem, 8.2vw, 2.46rem);
    line-height: 1.07 !important;
  }

  .page-blog-post .article-shell__meta-item,
  .page-blog-post .article-shell__topic,
  .article-shell__meta-item,
  .article-shell__topic {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 0.72rem;
  }

  .page-blog-post .article-shell__media img,
  .hero-shell--article-page .article-shell__media img {
    max-height: none;
    object-position: top center !important;
  }

  .page-blog-post .article-content,
  .article-body-shell .article-content {
    padding: 20px;
    border-radius: 24px;
  }

  .page-blog-post .article-content h2,
  .article-body-shell .article-content h2 {
    max-width: 100%;
    font-size: clamp(1.12rem, 4.65vw, 1.36rem) !important;
    line-height: 1.24 !important;
  }
}

/* Keep the CMS-driven home hero slider pinned to its stage. */
body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  min-height: clamp(540px, calc(100svh - 150px), 700px);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport {
  position: relative;
  width: 100%;
  min-height: clamp(500px, calc(100svh - 230px), 630px);
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  isolation: isolate;
  background:
    linear-gradient(125deg, rgba(9, 18, 29, 0.78), rgba(16, 31, 45, 0.18) 46%, rgba(9, 18, 29, 0.62)),
    #dfeaf1;
  box-shadow:
    0 32px 72px rgba(13, 27, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5, 12, 20, 0.54) 0%, rgba(5, 12, 20, 0.2) 34%, rgba(5, 12, 20, 0.04) 64%, rgba(5, 12, 20, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 26%, rgba(4, 10, 16, 0.24) 100%);
  pointer-events: none;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 4;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.01);
  transition: transform 720ms ease, filter 320ms ease;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__slide.is-active .hero-slider__image {
  transform: scale(1);
}

/* Fix blog and article hero image cropping and remove blank top gaps. */
.page-blog-post .article-shell__media img,
.page-blog .blog-card__media img,
.blog-card--archive .blog-card__media img,
.page-blog-post .article-related .blog-card__media img,
.blog-lead__media img,
.blog-support__item-media img,
.article-shell__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: top center !important;
}

@media (min-width: 1200px) {
  .page-blog .blog-card__media img,
  .blog-support__item-media img,
  .blog-lead__media img,
  .page-blog-post .article-shell__media img,
  .hero-shell--article-page .article-shell__media img,
  .article-shell__media img {
    object-position: center 14% !important;
  }
}

.hero-shell--article-page .article-shell__media {
  min-height: clamp(320px, 26vw, 420px);
}

.hero-shell--article-page .article-shell__media img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center 18% !important;
  aspect-ratio: auto !important;
}

.page-home .hero-stage__fallback-toprail-visual {
  position: relative !important;
  overflow: hidden !important;
}

.page-home .hero-stage__fallback-toprail-visual img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center 18% !important;
  transform: none !important;
  z-index: 0 !important;
}

.page-blog-post .article-shell__media,
.blog-lead__media,
.blog-support__item-media,
.blog-card__media {
  overflow: hidden !important;
  display: block !important;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption {
  position: absolute;
  left: clamp(22px, 3.2vw, 44px);
  bottom: clamp(24px, 4vw, 48px);
  z-index: 6;
  width: min(700px, calc(100% - 172px));
  max-width: calc(100% - 36px);
  gap: 7px;
  padding: clamp(12px, 1.1vw, 16px) clamp(16px, 1.45vw, 22px);
  border-radius: 24px;
  border-color: rgba(255, 255, 255, var(--hero-slider-overlay-border, 0.055));
  background: var(--hero-slider-caption-bg,
    radial-gradient(circle at 100% 0%, rgba(111, 164, 210, var(--hero-slider-overlay-glow, 0.064)), transparent 30%),
    linear-gradient(180deg, rgba(13, 23, 35, var(--hero-slider-overlay-top, 0.19)), rgba(12, 22, 33, var(--hero-slider-overlay-bottom, 0.25))));
  box-shadow:
    0 20px 44px rgba(3, 9, 15, var(--hero-slider-overlay-shadow, 0.09)),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__eyebrow {
  min-height: 22px;
  margin-bottom: 2px;
  padding-inline: 10px;
  border-color: rgba(240, 181, 109, 0.18);
  background: rgba(240, 181, 109, 0.08);
  color: rgba(255, 209, 154, 0.92);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption strong {
  font-size: clamp(1.5rem, 2.1vw, 2.35rem);
  line-height: 0.94;
  letter-spacing: 0;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption p {
  max-width: none;
  font-size: clamp(0.8rem, 0.78vw, 0.9rem);
  line-height: 1.32;
  color: rgba(235, 243, 249, 0.86);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__footer {
  position: relative;
  z-index: 7;
  margin-top: -78px;
  padding-inline: clamp(18px, 2.7vw, 36px);
  pointer-events: none;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__footer-left:not(:has(*)) {
  display: none;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__footer:has(.hero-stage__footer-left:not(:has(*))) {
  justify-content: flex-end;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__footer-left {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(12, 23, 35, 0.78);
  box-shadow:
    0 18px 40px rgba(8, 17, 27, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__arrow,
body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__dot,
body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link {
  cursor: pointer;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__arrow {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(9, 18, 29, 0.74);
  box-shadow:
    0 16px 34px rgba(5, 12, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__dot {
  height: 10px;
  width: 10px;
  background: rgba(233, 241, 248, 0.42);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__dot.is-active {
  width: 42px;
  background: linear-gradient(90deg, #f8fbfd, #f0b56d);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link {
  min-height: 48px;
  margin-left: auto;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 24, 37, 0.98), rgba(18, 34, 50, 0.98));
  box-shadow: 0 18px 38px rgba(6, 14, 22, 0.24);
  pointer-events: auto;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__arrow:focus-visible,
body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__dot:focus-visible,
body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link:focus-visible {
  outline: 3px solid rgba(240, 181, 109, 0.44);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) {
    min-height: auto;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport {
    min-height: clamp(440px, 74svh, 560px);
    border-radius: 26px;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport::after {
    inset: 10px;
    border-radius: 20px;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
    gap: 7px;
    padding: 12px 13px 11px;
    border-radius: 20px;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption strong {
    font-size: clamp(1.22rem, 6vw, 1.55rem);
    line-height: 0.98;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption p {
    font-size: 0.76rem;
    line-height: 1.28;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__footer {
    gap: 10px;
    margin-top: 0;
    padding-inline: 0;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__slide,
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__image,
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__arrow,
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__dot,
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link {
    transition: none;
  }
}

/* June 2026: transparent home hero — background photo visible through the container. */
body.page-home .hero-stage--fallback .hero-stage__viewport {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 30px 90px rgba(17, 31, 45, 0.1);
}

body.page-home .hero-stage__fallback-glass,
body.page-home .hero-stage__fallback-beam,
body.page-home .hero-stage__fallback-line {
  display: none !important;
}

body.page-home .hero-stage__fallback-bg-media::after {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.14) 38%, transparent 62%);
  opacity: 1;
}

body.page-home .hero-stage__fallback-panel {
  background: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
}

body.page-home .hero-stage__fallback-panel::before,
body.page-home .hero-stage__fallback-panel::after {
  display: none !important;
}

/* June 2026: polished fallback hero — photo visible, copy + brief only. */
body.page-home .hero-stage--fallback .hero-stage__viewport {
  display: block;
  min-height: clamp(520px, calc(100svh - 138px), 700px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(14, 28, 44, 0.12);
}

body.page-home .hero-stage__fallback-proof {
  display: none !important;
}

body.page-home .hero-stage__fallback-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(20px, 2.8vw, 40px);
  width: 100%;
  min-height: clamp(520px, calc(100svh - 138px), 700px);
  padding: clamp(28px, 3.4vw, 48px);
  border: 0;
}

body.page-home .hero-stage__fallback-copymain {
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  max-width: 640px;
}

body.page-home .hero-stage__fallback-panel h1 {
  margin: 0;
  width: auto;
  max-width: 11.5ch;
  color: #0f1c2d;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
  text-wrap: pretty;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 28px rgba(255, 255, 255, 0.72);
}

body.page-home .hero-stage__fallback-panel .hero-shell__lede {
  margin: 0;
  max-width: 40ch;
  color: rgba(28, 44, 62, 0.94);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 550;
  line-height: 1.62;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.88);
}

body.page-home .hero-stage__fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(8px, 1vw, 14px);
}

body.page-home .hero-stage__fallback-actions .cta.primary,
body.page-home .hero-stage__fallback-actions .cta.ghost {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
}

body.page-home .hero-stage__fallback-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(18, 33, 49, 0.12);
  color: #142235;
  box-shadow: 0 10px 24px rgba(17, 31, 45, 0.08);
}

body.page-home .hero-stage__fallback-bg-media {
  opacity: 1;
  filter: saturate(0.94) contrast(1.02) brightness(0.9);
  transform: none;
}

body.page-home .hero-stage__fallback-bg-media::after {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.28) 40%, rgba(255, 255, 255, 0.08) 58%, transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 1;
}

body.page-home .hero-stage__project-brief {
  align-self: center;
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}

@media (max-width: 1080px) {
  body.page-home .hero-stage__fallback-panel {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: clamp(22px, 4vw, 32px);
  }

  body.page-home .hero-stage--fallback .hero-stage__viewport {
    min-height: 0;
  }

  body.page-home .hero-stage__fallback-panel h1 {
    max-width: none;
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  body.page-home .hero-stage__fallback-panel .hero-shell__lede {
    max-width: none;
  }

  body.page-home .hero-stage__project-brief {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    border-radius: 26px;
  }

  body.page-home .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage__fallback-actions .cta.ghost {
    width: 100%;
    justify-content: center;
  }
}

/* June 2026: route-style home hero brief, replacing the old KPI language. */
body.page-home .hero-stage__project-brief--route {
  max-width: 460px;
  padding: clamp(18px, 1.8vw, 26px);
  background:
    linear-gradient(140deg, rgba(10, 24, 38, 0.94), rgba(20, 48, 68, 0.92)),
    linear-gradient(90deg, rgba(122, 198, 219, 0.1), transparent);
  border-color: rgba(191, 220, 238, 0.22);
  box-shadow:
    0 32px 72px rgba(9, 24, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.page-home .hero-stage__project-brief--route::after {
  content: "";
  position: absolute;
  left: clamp(36px, 3vw, 46px);
  top: 72px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, rgba(240, 181, 109, 0.72), rgba(116, 198, 218, 0.16));
  pointer-events: none;
}

body.page-home .hero-stage__project-brief--route .hero-stage__project-brief-head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(218, 233, 244, 0.1);
}

body.page-home .hero-stage__project-brief--route .hero-stage__project-brief-head span {
  color: #f7bd78;
  font-size: 0.72rem;
}

body.page-home .hero-stage__project-brief--route .hero-stage__project-brief-head strong {
  color: rgba(227, 241, 250, 0.54);
}

body.page-home .hero-stage__project-brief--route .hero-stage__project-brief-item {
  min-height: 82px;
  padding-left: 62px;
  border-bottom-color: rgba(218, 233, 244, 0.08);
}

body.page-home .hero-stage__project-brief--route .hero-stage__project-brief-index {
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--hero-slider-eyebrow-color, #102033);
  background: linear-gradient(135deg, #f4c37f, #83d3e8);
  border: 0;
  box-shadow:
    0 14px 26px rgba(4, 12, 21, 0.22),
    0 0 0 7px rgba(126, 203, 225, 0.08);
}

body.page-home .hero-stage__project-brief--route .hero-stage__project-brief-label {
  color: rgba(131, 211, 232, 0.88);
}

body.page-home .hero-stage__project-brief--route .hero-stage__project-brief-item strong {
  max-width: 25ch;
  font-size: clamp(0.96rem, 1vw, 1.1rem);
  font-weight: 800;
}

@media (max-width: 720px) {
  body.page-home .hero-stage__project-brief--route::after {
    display: none;
  }

  body.page-home .hero-stage__project-brief--route .hero-stage__project-brief-item {
    padding-left: 10px;
  }
}

/* June 2026 final: richer active hero slider composition. */
@media (min-width: 1200px) {
  body.page-home .hero-shell--home > .container {
    width: min(calc(100% - 48px), 1680px);
  }
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) {
  min-height: auto;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport {
  min-height: clamp(560px, calc(100svh - 138px), 720px);
  border-radius: 34px;
  background: #dfe9ee;
  box-shadow:
    0 34px 80px rgba(13, 28, 42, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.42);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport::before {
  z-index: 3;
  background:
    radial-gradient(circle at 84% 78%, rgba(6, 16, 28, 0.13), transparent 0 24%, transparent 52%),
    linear-gradient(90deg, rgba(5, 12, 20, 0.06) 0%, rgba(5, 12, 20, 0.01) 42%, rgba(7, 17, 29, 0) 62%, rgba(7, 17, 29, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(3, 9, 16, 0.08));
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport::after {
  display: none;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__image {
  filter: saturate(1.04) contrast(1.03) brightness(0.96);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__slide::after {
  background:
    linear-gradient(180deg, rgba(7, 14, 24, 0.02) 0%, rgba(7, 14, 24, 0.04) 50%, rgba(7, 14, 24, 0.12) 100%),
    linear-gradient(90deg, rgba(7, 14, 24, 0.1) 0%, rgba(7, 14, 24, 0.02) 42%, rgba(7, 14, 24, 0.02) 70%, rgba(7, 14, 24, 0.06) 100%);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption {
  left: auto;
  right: clamp(32px, 4vw, 56px);
  top: auto;
  bottom: clamp(84px, 7.2vw, 108px);
  transform: none;
  width: min(520px, calc(44% - 20px));
  padding: clamp(8px, 0.85vw, 12px) clamp(13px, 1.2vw, 18px);
  border: 1px solid rgba(255, 255, 255, var(--hero-slider-overlay-border, 0.055));
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 164, 210, var(--hero-slider-overlay-glow, 0.064)), transparent 30%),
    linear-gradient(180deg, rgba(13, 23, 35, var(--hero-slider-overlay-top, 0.19)), rgba(12, 22, 33, var(--hero-slider-overlay-bottom, 0.25)));
  box-shadow:
    0 14px 34px rgba(3, 9, 16, var(--hero-slider-overlay-shadow, 0.09)),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  color: #f7fbfd;
  backdrop-filter: blur(9px) saturate(1.04);
  -webkit-backdrop-filter: blur(9px) saturate(1.04);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption::before,
body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption::after {
  display: none;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__eyebrow {
  width: fit-content;
  min-height: 20px;
  margin-bottom: clamp(4px, 0.45vw, 7px);
  padding-inline: 9px;
  color: #102033;
  font-size: 0.58rem;
  background: var(--hero-slider-eyebrow-bg, rgba(255, 255, 255, 0.8));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(3, 9, 16, 0.1);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption strong {
  display: block;
  max-width: none;
  color: var(--hero-slider-caption-color, #f8fbfd);
  font-size: clamp(1.42rem, 2vw, 2.3rem);
  font-weight: 850;
  line-height: 0.94;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption p {
  max-width: none;
  margin-top: clamp(4px, 0.5vw, 7px);
  color: var(--hero-slider-caption-color, rgba(231, 241, 248, 0.9));
  font-size: clamp(0.76rem, 0.72vw, 0.84rem);
  font-weight: 600;
  line-height: 1.24;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__footer {
  position: absolute;
  left: auto;
  right: clamp(32px, 4vw, 56px);
  top: auto;
  bottom: clamp(32px, 2.8vw, 42px);
  z-index: 8;
  display: flex;
  width: min(520px, calc(44% - 20px));
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  pointer-events: auto;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__footer-left {
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(17, 32, 49, 0.12);
  box-shadow: 0 12px 28px rgba(17, 31, 45, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__arrow {
  background: rgba(13, 27, 42, 0.9);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__dot {
  background: rgba(16, 32, 51, 0.24);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__dot.is-active {
  background: linear-gradient(90deg, #102033, #f0b56d);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link {
  margin-left: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 12px;
  color: #102033;
  min-height: 42px;
  padding: 0 9px 0 18px;
  border-color: rgba(255, 255, 255, 0.46);
  font-size: 0.9rem;
  font-weight: 850;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(231, 239, 246, 0.74));
  box-shadow:
    0 16px 32px rgba(3, 9, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.78), transparent 32%),
    linear-gradient(90deg, rgba(240, 181, 109, 0.16), transparent 46%);
  pointer-events: none;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link::after {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.96), rgba(20, 40, 58, 0.94));
  box-shadow:
    0 8px 18px rgba(3, 9, 16, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease, background-color 180ms ease;
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link:hover,
body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link:focus-visible {
  color: #0c1a2b;
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 249, 0.82));
  box-shadow:
    0 20px 38px rgba(3, 9, 16, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link:hover::after,
body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link:focus-visible::after {
  transform: translateX(2px);
}

@media (max-width: 1120px) {
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport {
    min-height: 0;
    padding: clamp(24px, 4vw, 34px);
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption,
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__footer {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 6;
    transform: none;
    width: 100%;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption {
    margin-top: clamp(170px, 24vw, 260px);
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__footer {
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport {
    padding: 18px;
    border-radius: 26px;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__viewport::after {
    inset: 10px;
    border-radius: 20px;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption {
    margin-top: clamp(150px, 36vw, 210px);
    padding: 12px 13px;
    border-radius: 18px;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption strong {
    max-width: none;
    font-size: clamp(1.34rem, 7vw, 1.9rem);
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__caption p {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-stage__footer-left {
    display: none;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link {
    width: fit-content;
    max-width: calc(100vw - 56px);
    min-width: 0;
    min-height: 38px;
    padding: 0 38px 0 16px;
    justify-content: center;
    text-align: center;
  }

  body.page-home .hero-slider.hero-stage:not(.hero-stage--fallback) .hero-slider__link::after {
    position: absolute;
    right: 7px;
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 0.82rem;
  }
}

/* June 2026 final: polished fallback home hero. */
body.page-home .hero-stage--fallback .hero-stage__viewport {
  min-height: clamp(455px, calc(100svh - 220px), 585px);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(239, 247, 251, 0.92), rgba(224, 238, 245, 0.72)),
    #eaf4f8;
  box-shadow:
    0 30px 82px rgba(13, 28, 42, 0.13),
    0 0 0 1px rgba(255, 255, 255, 0.38);
}

body.page-home .hero-stage--fallback .hero-stage__fallback-bg-media {
  inset: 14px 14px 14px auto;
  width: min(58%, 1040px);
  opacity: 0.96;
  border-radius: 30px;
  background-color: rgba(225, 236, 242, 0.72);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  filter: saturate(1.02) contrast(1.01) brightness(1);
  transform: none;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 7%, rgba(0, 0, 0, 0.72) 18%, #000 34%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 7%, rgba(0, 0, 0, 0.72) 18%, #000 34%, #000 100%);
  box-shadow:
    -24px 0 54px rgba(175, 203, 216, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

body.page-home .hero-stage--fallback .hero-stage__fallback-bg-media::after {
  background:
    linear-gradient(90deg, rgba(239, 247, 251, 0.7) 0%, rgba(239, 247, 251, 0.22) 22%, rgba(255, 255, 255, 0.05) 48%, rgba(8, 20, 34, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(2, 8, 14, 0.1));
}

body.page-home .hero-stage--fallback .hero-stage__fallback-panel {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: clamp(455px, calc(100svh - 220px), 585px);
  padding: clamp(26px, 3vw, 44px);
  gap: 0;
}

body.page-home .hero-stage--fallback .hero-stage__fallback-copymain {
  align-content: center;
  align-self: center;
  width: min(100%, 850px);
  max-width: min(850px, 60vw);
  gap: clamp(10px, 1.1vw, 15px);
}

body.page-home .hero-stage--fallback .hero-stage__fallback-panel h1 {
  max-width: 19ch;
  font-size: clamp(2.2rem, 3.15vw, 3.65rem);
  line-height: 0.98 !important;
  letter-spacing: -0.02em !important;
}

body.page-home .hero-stage--fallback .hero-stage__fallback-panel .hero-shell__lede {
  max-width: 55ch;
  font-size: clamp(1rem, 1vw, 1.1rem);
  line-height: 1.52;
}

body.page-home .hero-stage--fallback .hero-stage__fallback-actions {
  align-items: center;
  gap: 10px;
  margin-top: clamp(4px, 0.7vw, 10px);
}

body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.primary,
body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.ghost {
  min-height: 44px;
  padding-inline: 21px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(12, 29, 49, 0.13);
}

body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.primary {
  background:
    linear-gradient(135deg, rgba(14, 31, 53, 0.98), rgba(21, 53, 76, 0.96));
  color: #fff;
}

body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.ghost {
  background: rgba(255, 255, 255, 0.76);
  color: #142235;
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.page-home .hero-stage__system-rail {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: min(100%, 700px);
  gap: 6px;
  margin-top: clamp(8px, 1vw, 14px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  box-shadow:
    0 18px 44px rgba(18, 33, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.page-home .hero-stage__system-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 1 1 148px;
  gap: 9px;
  min-height: 42px;
  padding: 7px 10px 7px 8px;
  border-radius: 18px;
  color: rgba(15, 28, 45, 0.86);
  font-size: 0.8rem;
  font-weight: 780;
  line-height: 1.15;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.page-home .hero-stage__system-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 12px 26px rgba(18, 33, 48, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

body.page-home .hero-stage__system-pill:focus-visible {
  outline: 3px solid rgba(240, 181, 109, 0.48);
  outline-offset: 3px;
}

body.page-home .hero-stage__system-pill > span {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.86), transparent 0 28%, transparent 52%),
    linear-gradient(135deg, rgba(114, 157, 216, 0.76), rgba(255, 255, 255, 0.54));
  box-shadow:
    0 10px 22px rgba(26, 49, 72, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body.page-home .hero-stage__system-pill > span::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: rgba(15, 32, 51, 0.78);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

body.page-home .hero-stage__system-pill:nth-child(1) > span::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v16H4zM8 4v16M16 4v16M4 12h16' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v16H4zM8 4v16M16 4v16M4 12h16' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body.page-home .hero-stage__system-pill:nth-child(2) > span::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 8a5 5 0 0 1 10 0M5 10h14M7 14v3M12 14v4M17 14v3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 8a5 5 0 0 1 10 0M5 10h14M7 14v3M12 14v4M17 14v3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body.page-home .hero-stage__system-pill:nth-child(3) > span::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3h10v18H7zM14 12h1' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3h10v18H7zM14 12h1' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body.page-home .hero-stage__system-pill:nth-child(4) > span::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16M4 12h16M4 18h16M8 4v16M16 4v16' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16M4 12h16M4 18h16M8 4v16M16 4v16' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body.page-home .hero-stage__system-pill--sand > span {
  background: linear-gradient(135deg, rgba(240, 181, 109, 0.9), rgba(255, 255, 255, 0.58));
}

body.page-home .hero-stage__system-pill--rose > span {
  background: linear-gradient(135deg, rgba(217, 131, 128, 0.86), rgba(255, 255, 255, 0.54));
}

body.page-home .hero-stage__system-pill--sky > span {
  background: linear-gradient(135deg, rgba(126, 203, 225, 0.92), rgba(255, 255, 255, 0.58));
}

body.page-home .hero-stage--fallback .hero-stage__project-brief--route {
  display: none;
}

body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-item {
  min-height: 74px;
  padding-left: 74px;
}

body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-index {
  width: 42px;
  height: 42px;
  font-size: 0.84rem;
}

body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-item strong {
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.12;
}

@media (max-width: 1080px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    min-height: 0;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-bg-media {
    inset: 0;
    width: 100%;
    opacity: 0.78;
    border-radius: inherit;
    background-size: cover;
    background-position: center center;
    clip-path: none;
    mask-image: none;
    -webkit-mask-image: none;
    box-shadow: none;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-bg-media::after {
    background:
      linear-gradient(105deg, rgba(246, 250, 253, 0.82) 0%, rgba(246, 250, 253, 0.58) 48%, rgba(255, 255, 255, 0.18) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(4, 12, 22, 0.12));
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    min-height: 0;
    padding: clamp(22px, 3.4vw, 32px);
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-panel h1 {
    max-width: 18ch;
    font-size: clamp(2rem, 5.3vw, 3rem);
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-panel .hero-shell__lede {
    max-width: 54ch;
    line-height: 1.5;
  }

  body.page-home .hero-stage__system-rail {
    width: min(100%, 620px);
  }

  body.page-home .hero-stage__system-pill {
    flex-basis: calc(50% - 4px);
    min-height: 30px;
    font-size: 0.78rem;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route {
    max-width: 560px;
    margin-top: 4px;
    padding: 18px;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-item {
    min-height: 66px;
  }
}

@media (max-width: 720px) {
  body.page-home main .section-heading::after,
  body.page-home main .section-heading__aside::before {
    content: none !important;
    display: none !important;
  }

  body.page-home .hero-stage--fallback .hero-stage__viewport {
    border: 0;
    border-radius: 24px;
    box-shadow:
      0 18px 46px rgba(13, 28, 42, 0.12);
  }

  body.page-home .hero-stage--fallback .hero-stage__viewport::before,
  body.page-home .hero-stage--fallback .hero-stage__viewport::after,
  body.page-home .hero-stage--fallback .hero-stage__fallback-art::before,
  body.page-home .hero-stage--fallback .hero-stage__fallback-art::after {
    content: none !important;
    display: none !important;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-panel {
    padding: 28px 18px 22px;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-copymain {
    width: 100%;
    max-width: 100%;
    justify-items: start;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-bg-media::after {
    background:
      linear-gradient(90deg, transparent 0%, transparent 68%, rgba(8, 20, 34, 0.26) 100%),
      linear-gradient(180deg, rgba(246, 250, 253, 0.78), rgba(246, 250, 253, 0.44) 42%, rgba(6, 16, 28, 0.2) 100%);
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-bg-media {
    inset: 0;
    width: 100%;
    background-size: cover;
    background-position: 40% center;
    mask-image: none;
    -webkit-mask-image: none;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-panel h1 {
    max-width: 13ch;
    font-size: clamp(1.85rem, 8.7vw, 2.55rem);
    line-height: 0.98 !important;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.ghost {
    width: min(100%, 368px);
    min-height: 44px;
    margin-inline: auto;
    justify-content: center;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  body.page-home .hero-stage__system-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: min(100%, 368px);
    margin-inline: auto;
    justify-self: center;
    padding: 7px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    box-shadow: none;
  }

  body.page-home .hero-stage__system-pill {
    width: 100%;
    min-height: 56px;
    align-items: center;
    gap: 7px;
    padding: 8px;
    font-size: 0.72rem;
    line-height: 1.12;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  body.page-home .hero-stage__system-pill > span {
    width: 30px;
    height: 30px;
    border-radius: 12px;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route {
    border-radius: 22px;
    padding: 16px;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-head {
    padding-bottom: 10px;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-item {
    display: grid;
    min-height: 58px;
    padding-left: 54px;
    padding-block: 11px;
    border: 0;
    border-bottom: 1px solid rgba(218, 233, 244, 0.09);
    border-radius: 0;
    background: transparent;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-item:nth-child(3) {
    display: grid;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-item:last-child {
    border-bottom: 0;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-index {
    display: inline-grid;
    width: 36px;
    height: 36px;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-label {
    font-size: 0.68rem;
  }

  body.page-home .hero-stage--fallback .hero-stage__project-brief--route .hero-stage__project-brief-item strong {
    max-width: 22ch;
    font-size: 0.95rem;
    line-height: 1.12;
  }
}

/* June 2026: airy handoff from the home hero to the first content section. */
body.page-home .hero-shell--home {
  padding-bottom: clamp(18px, 2.4vw, 34px);
}

body.page-home .section-shell--solutions {
  padding-top: clamp(8px, 1vw, 16px);
  margin-top: clamp(16px, 2vw, 34px);
}

body.page-home .section-shell--solutions::before {
  content: none;
  display: none;
}

body.page-home .section-shell--solutions > .container::before {
  content: none;
  display: none;
}

body.page-home .section-heading--solutions {
  border-top: 0;
}

@media (min-width: 981px) {
  body.page-home .hero-shell--home {
    padding-bottom: clamp(16px, 1.8vw, 28px);
  }

  body.page-home .section-shell--solutions {
    margin-top: clamp(18px, 1.8vw, 32px);
  }
}

@media (max-width: 720px) {
  body.page-home .hero-shell--home {
    padding-bottom: 14px;
  }

  body.page-home .section-shell--solutions {
    padding-top: 8px;
    margin-top: 14px;
  }

  body.page-home .section-shell--solutions::before {
    content: none;
    display: none;
  }

  body.page-home .section-shell--solutions > .container::before {
    content: none;
    display: none;
  }

  body.page-home .section-heading--solutions {
    border-top: 0;
  }
}

/* June 2026: office partition options replace the office photo story. */
.service-page__system-options {
  padding-top: clamp(44px, 5vw, 76px);
}

.service-page__system-options .section-heading {
  margin-bottom: clamp(26px, 3.6vw, 44px);
}

.service-page__system-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-bottom: 18px;
}

.service-page__system-heading::before {
  content: "";
  flex: 0 0 34px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(240, 181, 109, 0.98);
}

.service-page__system-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 31, 44, 0.96);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.service-page__system-showcase,
.service-page__glass-showcase,
.service-page__panel-showcase {
  min-width: 0;
}

.service-page__system-showcase,
.service-page__glass-showcase {
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background: rgba(235, 247, 253, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.service-page__glass-showcase,
.service-page__panel-showcase {
  margin-top: clamp(30px, 4vw, 54px);
}

.service-page__system-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100% - 40px) / 3));
  gap: clamp(16px, 2vw, 20px);
  margin-inline: -2px;
  padding: 2px 2px 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.service-page__glass-scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
  min-width: 0;
}

.service-page__system-card,
.service-page__glass-option {
  display: grid;
  align-content: start;
  min-width: 0;
  border: 1px solid rgba(18, 30, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
  scroll-snap-align: start;
  box-shadow: 0 18px 42px rgba(81, 111, 136, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-page__system-card {
  grid-template-rows: clamp(230px, 18vw, 292px) auto 1fr;
  gap: 16px;
  min-height: 500px;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 22px;
}

.service-page__system-card:hover,
.service-page__glass-option:hover {
  border-color: rgba(45, 91, 112, 0.22);
  box-shadow: 0 22px 48px rgba(53, 91, 118, 0.14);
  transform: translateY(-2px);
}

.service-page__system-visual,
.service-page__glass-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
}

.service-page__system-visual {
  min-height: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94));
}

.service-page__system-visual img,
.service-page__glass-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.service-page__system-visual img {
  padding: clamp(12px, 1.6vw, 22px);
}

.service-page__system-card--1 .service-page__system-visual img {
  padding-block: clamp(14px, 1.8vw, 24px);
}

.service-page__system-card h3,
.service-page__glass-option h3 {
  margin: 0;
  color: rgba(10, 17, 25, 0.98);
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.service-page__system-card p {
  margin: 0;
  color: rgba(32, 43, 55, 0.92);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.55;
}

.service-page__system-visual span,
.service-page__system-visual span::before,
.service-page__system-visual span::after {
  display: block;
}

.service-page__system-visual span {
  position: relative;
  width: min(84%, 270px);
  aspect-ratio: 1.34;
}

.service-page__system-card--1 .service-page__system-visual span {
  border: 8px solid #171a1d;
  background:
    linear-gradient(#171a1d 0 0) 31% 0 / 8px 100% no-repeat,
    linear-gradient(#171a1d 0 0) 68% 0 / 8px 100% no-repeat,
    linear-gradient(#171a1d 0 0) 31% 54% / 69% 8px no-repeat,
    linear-gradient(#171a1d 0 0) 0 28% / 31% 8px no-repeat,
    rgba(255, 255, 255, 0.96);
}

.service-page__system-card--1 .service-page__system-visual span::before {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 0;
  width: 22%;
  height: 74%;
  border: 6px solid #171a1d;
  background: rgba(255, 255, 255, 0.98);
}

.service-page__system-card--2 .service-page__system-visual span,
.service-page__system-card--3 .service-page__system-visual span,
.service-page__system-card--4 .service-page__system-visual span {
  width: min(86%, 300px);
  aspect-ratio: 1.55;
  transform: perspective(700px) rotateY(-18deg) rotateX(4deg);
  background:
    linear-gradient(#171a1d 0 0) 0 0 / 100% 8px no-repeat,
    linear-gradient(#171a1d 0 0) 0 100% / 100% 8px no-repeat,
    linear-gradient(#171a1d 0 0) 0 0 / 8px 100% no-repeat,
    linear-gradient(#171a1d 0 0) 100% 0 / 8px 100% no-repeat,
    linear-gradient(#171a1d 0 0) 35% 0 / 7px 100% no-repeat,
    linear-gradient(#171a1d 0 0) 70% 0 / 7px 100% no-repeat,
    linear-gradient(#171a1d 0 0) 0 50% / 100% 7px no-repeat,
    rgba(232, 236, 240, 0.92);
  box-shadow: 18px 22px 0 rgba(20, 26, 31, 0.14);
}

.service-page__system-card--2 .service-page__system-visual span::before,
.service-page__system-card--3 .service-page__system-visual span::before,
.service-page__system-card--4 .service-page__system-visual span::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 0;
  width: 20%;
  height: 66%;
  border: 6px solid #171a1d;
  background: rgba(248, 249, 250, 0.96);
}

.service-page__system-card--3 .service-page__system-visual span::after,
.service-page__system-card--4 .service-page__system-visual span::after {
  content: "";
  position: absolute;
  inset: 18% -18% -14% 62%;
  border: 7px solid rgba(23, 26, 29, 0.78);
  background:
    linear-gradient(rgba(23, 26, 29, 0.55) 0 0) 50% 0 / 6px 100% no-repeat,
    linear-gradient(rgba(23, 26, 29, 0.55) 0 0) 0 50% / 100% 6px no-repeat,
    rgba(228, 233, 237, 0.62);
}

.service-page__system-card--4 .service-page__system-visual span {
  box-shadow:
    20px 18px 0 rgba(20, 26, 31, 0.13),
    -22px 20px 0 rgba(20, 26, 31, 0.08);
}

.service-page__glass-option {
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  min-width: 0;
  padding: 10px 10px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(61, 97, 123, 0.08);
  scroll-snap-align: unset;
}

.service-page__glass-visual {
  aspect-ratio: 1.08 / 1;
  min-height: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.96) 0 72%, rgba(205, 211, 213, 0.98) 72% 100%);
}

.service-page__glass-visual:has(img) {
  background: rgba(246, 246, 246, 0.98);
}

.service-page__glass-visual:has(img)::after {
  content: none;
  display: none;
}

.service-page__glass-visual img {
  object-fit: cover;
  object-position: center;
}

.service-page__glass-visual span {
  position: absolute;
  left: 13%;
  top: 15%;
  width: 57%;
  height: 63%;
  border: 1px solid rgba(130, 158, 160, 0.22);
  background:
    linear-gradient(100deg, rgba(202, 218, 217, 0.72), rgba(239, 244, 244, 0.62));
  box-shadow: 0 26px 34px rgba(42, 54, 56, 0.1);
  transform: skewY(-2deg);
}

.service-page__glass-option--2 .service-page__glass-visual span {
  background: linear-gradient(100deg, rgba(232, 236, 237, 0.78), rgba(250, 251, 252, 0.64));
}

.service-page__glass-option--3 .service-page__glass-visual span {
  background:
    radial-gradient(circle at 100% 55%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(100deg, rgba(212, 224, 224, 0.94), rgba(237, 242, 242, 0.86));
  filter: blur(0.2px);
}

.service-page__glass-option--4 .service-page__glass-visual span,
.service-page__glass-option--5 .service-page__glass-visual span {
  background:
    repeating-linear-gradient(90deg, rgba(138, 163, 164, 0.22) 0 5px, transparent 5px 15px),
    linear-gradient(100deg, rgba(217, 229, 229, 0.86), rgba(244, 247, 247, 0.66));
}

.service-page__glass-option--5 .service-page__glass-visual span,
.service-page__glass-option--6 .service-page__glass-visual span {
  background-color: rgba(118, 128, 132, 0.38);
}

.service-page__glass-option--6 .service-page__glass-visual span {
  background: linear-gradient(100deg, rgba(120, 100, 82, 0.42), rgba(120, 126, 132, 0.34));
}

.service-page__glass-visual::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 16%;
  width: 84px;
  height: 142px;
  border-radius: 46% 46% 38% 38%;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 243, 158, 0.8), transparent 18%),
    linear-gradient(135deg, #d9a913, #b37c02 62%, #f1ce42);
  box-shadow:
    0 28px 24px rgba(88, 66, 15, 0.23),
    inset -18px 0 22px rgba(91, 55, 0, 0.18);
}

.service-page__glass-option h3 {
  padding-inline: 2px;
}

.service-page__glass-option dl {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding-inline: 2px;
}

.service-page__glass-option dl div {
  position: relative;
  display: grid;
  grid-template-columns: auto max-content minmax(0, 1fr);
  align-items: baseline;
  column-gap: 7px;
  min-width: 0;
}

.service-page__glass-option dl div::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-page__glass-option dt {
  color: rgba(29, 43, 56, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.42;
  white-space: nowrap;
  text-transform: uppercase;
}

.service-page__glass-option dt::after {
  content: ":";
}

.service-page__glass-option dd {
  min-width: 0;
  margin: 0;
  color: rgba(29, 43, 56, 0.92);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.service-page__panel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-page__panel-list li {
  position: relative;
  min-width: 0;
  padding: 11px 16px 11px 38px;
  border-radius: 999px;
  background: rgba(19, 34, 49, 0.92);
  color: rgba(246, 250, 253, 0.96);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.service-page__panel-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(240, 181, 109, 0.98);
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .service-page__system-showcase,
  .service-page__glass-showcase {
    padding: 14px;
  }

  .service-page__system-scroll {
    grid-auto-columns: minmax(280px, 82%);
  }

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

  .service-page__system-card {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .service-page__system-options {
    padding-top: 38px;
  }

  .service-page__system-scroll {
    grid-auto-columns: minmax(260px, 92%);
    gap: 14px;
    margin-inline: -2px;
    padding-inline: 2px;
  }

  .service-page__glass-scroll {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-page__system-card {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .service-page__system-visual {
    min-height: 190px;
  }

  .service-page__glass-visual {
    aspect-ratio: 1.2 / 1;
    border-radius: 16px;
  }

  .service-page__glass-visual img {
    object-fit: contain;
    background: rgba(246, 246, 246, 0.98);
  }

  .service-page__glass-visual::after {
    right: 16%;
    width: 62px;
    height: 104px;
  }

  .service-page__system-card h3,
  .service-page__glass-option h3 {
    font-size: 1.18rem;
  }

  .service-page__panel-list {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.ai-assistant-widget {
  position: fixed;
  right: 22px;
  bottom: 102px;
  z-index: 108;
  display: grid;
  justify-items: end;
  gap: 12px;
  font-family: inherit;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.callback-widget-open .ai-assistant-widget,
body.nav-open .ai-assistant-widget,
body.cookie-consent-open .ai-assistant-widget {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

body.ai-assistant-open .callback-widget {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.ai-assistant-widget.is-open .ai-assistant-widget__fab {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.ai-assistant-widget__fab {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(113, 173, 194, 0.34), transparent 42%),
    linear-gradient(145deg, #142a3c, #20384a 72%, #1a4458);
  box-shadow: 0 18px 42px rgba(11, 28, 42, 0.2), 0 0 0 6px rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ai-assistant-widget__fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(11, 28, 42, 0.24), 0 0 0 6px rgba(255, 255, 255, 0.74);
}

.ai-assistant-widget__fab img {
  display: block;
  width: 46px;
  height: 46px;
  padding: 4px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.ai-assistant-widget__panel {
  display: flex;
  flex-direction: column;
  width: min(422px, calc(100vw - 28px));
  max-height: min(650px, calc(100svh - 130px));
  overflow: hidden;
  border: 1px solid rgba(167, 197, 209, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(105, 169, 190, 0.2), transparent 34%),
    radial-gradient(circle at 0 100%, rgba(224, 242, 247, 0.72), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 253, 0.99));
  box-shadow: 0 30px 76px rgba(8, 25, 38, 0.22);
  transform-origin: right bottom;
}

.ai-assistant-widget__panel[hidden] {
  display: none;
}

.ai-assistant-widget.is-open .ai-assistant-widget__panel {
  animation: ai-assistant-panel-in 220ms cubic-bezier(0.2, 0.78, 0.28, 1);
}

@keyframes ai-assistant-panel-in {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ai-assistant-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 12px;
  color: #102033;
  background:
    linear-gradient(180deg, rgba(245, 250, 252, 0.96), rgba(255, 255, 255, 0.92));
}

.ai-assistant-widget__identity {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
}

.ai-assistant-widget__avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 5px;
  object-fit: contain;
  border: 1px solid #d7e5eb;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f3f8fa);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.ai-assistant-widget__heading {
  min-width: 0;
}

.ai-assistant-widget__heading strong,
.ai-assistant-widget__status {
  display: block;
}

.ai-assistant-widget__heading strong {
  overflow: hidden;
  font-size: 1.02rem;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-assistant-widget__status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: #6b7e8e;
  font-size: 0.76rem;
}

.ai-assistant-widget__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35a977;
  box-shadow: 0 0 0 3px rgba(53, 169, 119, 0.12);
}

.ai-assistant-widget__close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(142, 174, 190, 0.32);
  border-radius: 999px;
  background: #fff;
  color: #102033;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.ai-assistant-widget__close:hover {
  background: #eef5f7;
  transform: rotate(4deg);
}

.ai-assistant-widget__intro {
  margin: 0;
  padding: 0 18px 15px 76px;
  color: #607285;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.5;
  border-bottom: 1px solid rgba(220, 232, 237, 0.82);
}

.ai-assistant-widget__messages {
  display: grid;
  flex: 1 1 auto;
  align-content: start;
  gap: 10px;
  min-height: 168px;
  overflow-y: auto;
  padding: 16px;
  overscroll-behavior: contain;
  background:
    linear-gradient(180deg, rgba(244, 248, 250, 0.95), rgba(238, 245, 248, 0.85));
  scrollbar-width: thin;
  scrollbar-color: #b8cbd4 transparent;
}

.ai-assistant-widget__message {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 10px 20px 20px 20px;
  color: #102033;
  font-size: 0.94rem;
  line-height: 1.52;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(17, 44, 60, 0.06);
  animation: ai-assistant-message-in 180ms ease-out;
}

.ai-assistant-widget__message--user {
  justify-self: end;
  color: #fff;
  border-radius: 18px 8px 18px 18px;
  background:
    linear-gradient(145deg, #163147, #23495f 82%);
  box-shadow: 0 12px 26px rgba(20, 42, 60, 0.16);
}

@keyframes ai-assistant-message-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-assistant-widget__message a {
  color: #176780;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ai-assistant-widget__typing {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 50px;
  gap: 5px;
  padding: 14px 15px;
}

.ai-assistant-widget__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79909e;
  animation: ai-assistant-typing 1s infinite ease-in-out;
}

.ai-assistant-widget__typing span:nth-child(2) { animation-delay: 120ms; }
.ai-assistant-widget__typing span:nth-child(3) { animation-delay: 240ms; }

@keyframes ai-assistant-typing {
  0%, 60%, 100% { opacity: 0.38; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.ai-assistant-widget__suggestions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 14px 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 254, 0.98));
}

.ai-assistant-widget__suggestions[hidden] {
  display: none;
}

.ai-assistant-widget__suggestions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(199, 217, 225, 0.96);
  border-radius: 14px;
  padding: 8px 12px;
  text-align: center;
  color: #23394a;
  font: inherit;
  font-size: 0.79rem;
  font-weight: 700;
  background: linear-gradient(180deg, #fbfdfe, #f2f8fa);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ai-assistant-widget__suggestions button.is-primary,
.ai-assistant-widget__suggestions button.is-service {
  border-color: rgba(126, 181, 199, 0.72);
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.92), transparent 58%),
    linear-gradient(180deg, #f9fdfe, #edf7fa);
  color: #173449;
  font-weight: 850;
}

.ai-assistant-widget__suggestions button.is-primary {
  grid-column: 1 / -1;
  min-height: 42px;
  color: #fff;
  border-color: rgba(19, 46, 65, 0.3);
  background:
    radial-gradient(circle at 12% 0, rgba(93, 162, 184, 0.32), transparent 62%),
    linear-gradient(145deg, #13283a, #21485b 78%);
  box-shadow: 0 14px 28px rgba(20, 42, 60, 0.14);
}

.ai-assistant-widget__suggestions button.is-wellness {
  border-color: rgba(92, 160, 181, 0.68);
}

.ai-assistant-widget__suggestions button:hover {
  border-color: #77adbe;
  background: #eef7f9;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(119, 173, 190, 0.12);
}

.ai-assistant-widget__suggestions button.is-primary:hover {
  border-color: rgba(19, 46, 65, 0.36);
  background:
    radial-gradient(circle at 12% 0, rgba(93, 162, 184, 0.36), transparent 62%),
    linear-gradient(145deg, #13283a, #2a5569 78%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(20, 42, 60, 0.18);
}

.ai-assistant-widget__suggestions button.is-service:hover {
  border-color: #77adbe;
  background: #eef7f9;
  color: #173449;
}

.ai-assistant-widget__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, auto);
  align-items: end;
  gap: 10px;
  padding: 13px 14px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 254, 0.99));
  border-top: 1px solid rgba(226, 236, 241, 0.92);
}

.ai-assistant-widget__form textarea {
  width: 100%;
  min-height: 52px;
  max-height: 104px;
  resize: none;
  border: 1px solid #c7d8df;
  border-radius: 17px;
  padding: 12px 14px;
  color: #102033;
  font: inherit;
  line-height: 1.35;
  background: linear-gradient(180deg, #ffffff, #fbfdfe);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.ai-assistant-widget__form textarea:focus {
  border-color: #63a5b9;
  box-shadow: 0 0 0 3px rgba(99, 165, 185, 0.14);
}

.ai-assistant-widget__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  min-width: 112px;
  min-height: 52px;
  border: 0;
  border-radius: 17px;
  padding: 0 18px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  background:
    radial-gradient(circle at top center, rgba(96, 168, 188, 0.24), transparent 68%),
    linear-gradient(145deg, #13283a, #21485b 78%);
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(20, 42, 60, 0.18);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ai-assistant-widget__form button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(20, 42, 60, 0.22);
}

.ai-assistant-widget__form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

@media (max-width: 560px) {
  .ai-assistant-widget {
    right: 10px;
    bottom: 82px;
  }

  .ai-assistant-widget__fab {
    width: 52px;
    height: 52px;
  }

  .ai-assistant-widget__fab img {
    width: 38px;
    height: 38px;
    padding: 4px;
  }

  .ai-assistant-widget__panel {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 92px);
    border-radius: 22px;
  }

  .ai-assistant-widget__header {
    padding: 14px 14px 10px;
  }

  .ai-assistant-widget__avatar {
    width: 42px;
    height: 42px;
  }

  .ai-assistant-widget__heading strong {
    font-size: 0.98rem;
  }

  .ai-assistant-widget__messages {
    min-height: 118px;
    padding: 14px 12px;
  }

  .ai-assistant-widget__message {
    max-width: 92%;
    font-size: 0.9rem;
  }

  .ai-assistant-widget__intro {
    padding: 0 14px 12px 68px;
    font-size: 0.8rem;
  }

  .ai-assistant-widget__suggestions {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 10px 12px 3px;
  }

  .ai-assistant-widget__suggestions button {
    min-height: 36px;
    border-radius: 13px;
    padding: 8px 11px;
    font-size: 0.77rem;
  }

  .ai-assistant-widget__form {
    padding: 10px 12px 12px;
    grid-template-columns: minmax(0, 1fr) 116px;
    gap: 8px;
  }

  .ai-assistant-widget__form textarea {
    min-height: 48px;
    max-height: 92px;
    border-radius: 16px;
    padding: 11px 12px;
  }

  .ai-assistant-widget__form button {
    min-width: 0;
    width: auto;
    min-height: 48px;
    border-radius: 16px;
    padding: 0 12px;
    font-size: 0.92rem;
  }
}

@media (max-width: 380px) {
  .ai-assistant-widget__form {
    grid-template-columns: minmax(0, 1fr);
  }

  .ai-assistant-widget__form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-assistant-widget.is-open .ai-assistant-widget__panel,
  .ai-assistant-widget__message,
  .ai-assistant-widget__typing span {
    animation: none;
  }
}

/* Hosting polish: final mobile/consent overrides. */
.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus-visible {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top center, rgba(116, 199, 215, 0.34), transparent 72%),
    linear-gradient(135deg, #102033, #224b62);
  box-shadow: 0 22px 44px rgba(17, 33, 47, 0.28);
}

body.page-home .hero-stage--fallback .hero-stage__fallback-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  align-items: stretch;
  justify-self: start;
  width: min(100%, 560px);
  max-width: 52vw;
}

body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.primary,
body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.ghost {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}

body.page-home .hero-stage--fallback .hero-stage__fallback-panel::before,
body.page-home .hero-stage--fallback .hero-stage__fallback-panel::after {
  pointer-events: none;
}

@media (max-width: 980px) {
  body.page-home .hero-stage--fallback .hero-stage__fallback-actions {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body.page-home .hero-stage--fallback .hero-stage__viewport {
    border: 0;
    box-shadow: none;
  }

  body.page-home .hero-stage--fallback .hero-stage__viewport::before,
  body.page-home .hero-stage--fallback .hero-stage__viewport::after,
  body.page-home .hero-stage--fallback .hero-stage__fallback-panel::before,
  body.page-home .hero-stage--fallback .hero-stage__fallback-panel::after {
    display: none;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-panel {
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 26px;
    overflow: hidden;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-actions {
    gap: 10px;
    margin-top: 16px;
    width: min(100%, 92vw);
    margin-inline: auto;
  }

  body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.primary,
  body.page-home .hero-stage--fallback .hero-stage__fallback-actions .cta.ghost {
    align-self: stretch;
    min-height: 48px;
    height: 48px;
    border-radius: 999px;
    padding-inline: 16px;
    font-size: clamp(0.94rem, 4.1vw, 1.04rem);
  }

  body.page-home .hero-stage__system-rail {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 10px;
    border-radius: 24px;
  }

  body.page-home .hero-stage__system-pill {
    width: 100%;
    min-height: 68px;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 11px;
    border-radius: 18px;
  }

  .callback-widget {
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
  }

  .callback-widget__fab {
    width: 58px;
    height: 58px;
  }

  .ai-assistant-widget {
    right: 18px;
    bottom: calc(max(18px, env(safe-area-inset-bottom)) + 74px);
  }

  .ai-assistant-widget__fab {
    width: 58px;
    height: 58px;
  }
}
