:root {
  --color-blue-700: rgb(24 84 210);
  --color-blue-500: rgb(82 127 220);
  --color-blue-300: rgb(139 170 231);
  --color-ink: rgb(19 19 64);
  --color-orange: rgb(255 102 51);
  --color-surface: rgb(10 18 35);
  --color-surface-strong: rgb(8 13 24);
  --color-surface-soft: rgb(15 26 49);
  --color-text: rgb(254 255 251);
  --color-text-soft: rgb(197 212 241);
  --color-line: rgba(197 212 241 / 0.18);
  --shadow-xl: 0 32px 90px rgba(0 0 0 / 0.34);
  --shadow-lg: 0 24px 64px rgba(0 0 0 / 0.26);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --section-width: min(1180px, calc(100% - 40px));
  --font-display: "Baskerville", "Iowan Old Style", "Times New Roman", serif;
  --font-body: "Avenir Next", "Futura", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(82 127 220 / 0.2), transparent 32%),
    radial-gradient(circle at top right, rgba(255 102 51 / 0.16), transparent 26%),
    linear-gradient(180deg, rgb(19 19 64) 0%, rgb(7 17 33) 28%, rgb(9 13 22) 100%);
}

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

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

button,
input {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7 17 33 / 0.82), rgba(7 17 33 / 0.24));
  border-bottom: 1px solid rgba(197 212 241 / 0.08);
}

.nav-shell {
  width: var(--section-width);
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 168px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  color: rgba(254 255 251 / 0.9);
}

.desktop-nav a,
.mobile-nav a,
.footer-column a {
  position: relative;
}

.desktop-nav a::after,
.mobile-nav a::after,
.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.mobile-nav a:hover::after,
.footer-column a:hover::after,
.desktop-nav a:focus-visible::after,
.mobile-nav a:focus-visible::after,
.footer-column a:focus-visible::after,
.desktop-nav a.is-current::after,
.mobile-nav a.is-current::after {
  transform: scaleX(1);
}

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

.lang-switch {
  padding: 5px;
  display: inline-flex;
  gap: 4px;
  border-radius: 999px;
  background: rgba(254 255 251 / 0.08);
  border: 1px solid rgba(254 255 251 / 0.09);
}

.lang-switch a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(254 255 251 / 0.72);
  transition: background-color 180ms ease, color 180ms ease;
}

.lang-switch a.is-active {
  color: var(--color-ink);
  background: var(--color-text);
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  border-radius: 999px;
  background: rgba(254 255 251 / 0.08);
  color: var(--color-text);
  padding: 10px 16px;
  cursor: pointer;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  padding: 16px;
  background: rgba(6 11 20 / 0.82);
  backdrop-filter: blur(16px);
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel-inner {
  width: min(420px, 100%);
  height: 100%;
  margin-left: auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(255 102 51 / 0.22), transparent 32%),
    linear-gradient(180deg, rgba(19 19 64 / 0.96), rgba(7 17 33 / 0.96));
  border: 1px solid rgba(197 212 241 / 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.mobile-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(254 255 251 / 0.72);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  width: fit-content;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 0.95;
}

.mobile-socials {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-socials a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(254 255 251 / 0.78);
}

.mobile-socials img {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  z-index: 1;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(19 19 64 / 0.2) 0%, rgba(7 17 33 / 0.46) 40%, rgba(8 13 24 / 0.92) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(7 17 33 / 0.1) 58%, rgba(7 17 33 / 0.68) 100%);
}

.hero-content {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: 72px 0 72px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(254 255 251 / 0.84);
}

.section-kicker {
  color: rgba(19 19 64 / 0.72);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-orange), transparent);
}

.hero h1,
.section-heading h2,
.story-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 8.4vw, 7rem);
}

.hero-actions-row,
.section-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-orange), rgb(255 137 97));
  box-shadow: 0 18px 36px rgba(255 102 51 / 0.26);
}

.button-ghost {
  color: var(--color-text);
  background: rgba(254 255 251 / 0.08);
  border-color: rgba(254 255 251 / 0.18);
}

.button-secondary {
  color: var(--color-text);
  background: linear-gradient(135deg, rgba(24 84 210 / 0.88), rgba(82 127 220 / 0.92));
  box-shadow: 0 16px 36px rgba(24 84 210 / 0.22);
}

.card-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue-700);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-link::after {
  content: "->";
}

.section {
  padding: 88px 0;
}

.page-hero {
  padding-top: 104px;
  padding-bottom: 48px;
}

.page-hero-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: start;
}

.page-hero-copy h1,
.detail-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.page-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 11ch;
}

.page-lede,
.panel-note,
.bullet-list li {
  color: rgba(197 212 241 / 0.9);
  line-height: 1.72;
  font-size: 1rem;
}

.page-lede {
  max-width: 60ch;
}

.page-panel,
.detail-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(14 24 46 / 0.94), rgba(8 13 24 / 0.96));
  border: 1px solid rgba(197 212 241 / 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.detail-panel-soft {
  position: sticky;
  top: 112px;
}

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

.detail-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.bullet-list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.page-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-visual {
  margin: 0;
}

.page-visual img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

.section-heading {
  max-width: 780px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading.center .section-kicker {
  justify-content: center;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.section-intro,
.story-body,
.stat-card p,
.solution-card p,
.contact-copy p,
.field span,
.footer-column li,
.footer-brand p,
.footer-bottom p {
  color: rgba(197 212 241 / 0.9);
  line-height: 1.68;
  font-size: 1rem;
}

.section-intro {
  margin-top: 18px;
}

.section-intro.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.section-stats {
  position: relative;
}

.section-stats::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82 127 220 / 0.26) 0%, transparent 70%);
  filter: blur(10px);
}

.stats-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  min-height: 220px;
  padding: 28px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(15 26 49 / 0.92), rgba(9 15 29 / 0.96));
  border: 1px solid rgba(197 212 241 / 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -36% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255 102 51 / 0.22), transparent 70%);
}

.stat-card strong {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  color: var(--color-text);
}

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

.story-copy h2 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  max-width: 12ch;
}

.story-copy .accent {
  color: var(--color-orange);
}

.story-body {
  margin-top: 24px;
  max-width: 58ch;
}

.story-quote {
  margin-top: 32px;
  padding: 24px 26px;
  position: relative;
  background: rgba(255 255 255 / 0.04);
  border-left: 4px solid var(--color-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-quote p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
}

.story-quote p + p {
  margin-top: 10px;
  color: var(--color-text);
  font-weight: 700;
}

.story-visual {
  position: relative;
  margin: 0;
}

.story-visual::before,
.story-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.story-visual::before {
  inset: auto auto -26px -20px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255 102 51 / 0.92), rgba(24 84 210 / 0.92));
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.story-visual::after {
  inset: -16px -16px auto auto;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(197 212 241 / 0.16);
  border-radius: 50%;
}

.story-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

.solutions-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(254 255 251 / 0.98), rgba(231 240 253 / 0.96));
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.solution-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-blue-700);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.solution-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.94;
  color: var(--color-ink);
}

.solution-tagline {
  margin: 16px 0 12px;
  font-weight: 700;
  color: rgb(24 84 210 / 0.94);
}

.solution-card p:last-child {
  color: rgba(19 19 64 / 0.78);
}

.section-technologies {
  position: relative;
}

.section-technologies::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255 102 51 / 0.16), transparent 70%);
}

.technologies-frame {
  margin: 42px 0 0;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(14 24 46 / 0.96), rgba(8 13 24 / 0.96));
  border: 1px solid rgba(197 212 241 / 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

.technologies-frame img {
  width: 100%;
  border-radius: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(254 255 251 / 0.98), rgba(231 240 253 / 0.96));
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  gap: 16px;
}

.field-row.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-row.three-up {
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(19 19 64 / 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input {
  min-height: 52px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(19 19 64 / 0.12);
  border-radius: 16px;
  background: rgba(255 255 255 / 0.96);
  color: var(--color-ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus {
  outline: none;
  border-color: rgba(24 84 210 / 0.58);
  box-shadow: 0 0 0 4px rgba(82 127 220 / 0.18);
}

.field input::placeholder {
  color: rgba(19 19 64 / 0.44);
}

.field-error[hidden] {
  display: none !important;
}

.field-error {
  margin: -2px 0 0;
  color: rgb(176 62 30);
  font-size: 0.86rem;
  line-height: 1.4;
}

.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid,
.picker-trigger.is-invalid {
  background: rgba(255 247 245 / 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(176 62 30 / 0.68),
    0 0 0 4px rgba(176 62 30 / 0.12);
}

.field input.is-invalid:focus,
.field textarea.is-invalid:focus,
.field select.is-invalid:focus,
.picker-trigger.is-invalid:focus-visible,
.picker-trigger.is-invalid.is-open {
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(176 62 30 / 0.78),
    0 0 0 4px rgba(176 62 30 / 0.14);
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}

.contact-form-card .button {
  color: var(--color-text);
}

.form-message {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(19 19 64 / 0.78);
}

.form-message.is-error {
  color: rgb(158 59 27);
}

.site-footer {
  padding: 28px 0 40px;
  background: linear-gradient(180deg, rgba(6 10 18 / 0), rgba(6 10 18 / 0.88));
}

.footer-grid {
  padding-top: 36px;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(0, 1fr)) minmax(220px, 1fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid rgba(197 212 241 / 0.1);
}

.footer-brand img {
  width: 220px;
}

.footer-brand p {
  margin-top: 12px;
  font-style: italic;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  color: var(--color-text);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-column li {
  color: rgba(197 212 241 / 0.86);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(254 255 251 / 0.08);
  border: 1px solid rgba(197 212 241 / 0.12);
}

.footer-socials img {
  width: 20px;
  height: 20px;
}

.footer-certifications {
  margin-top: 22px;
  width: 200px;
}

.footer-bottom {
  margin-top: 24px;
  text-align: right;
}

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

  .hero-media video {
    display: none;
  }

  .hero-media img {
    display: block;
  }

  .button,
  .desktop-nav a::after,
  .mobile-nav a::after,
  .footer-column a::after {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .stats-grid,
  .solutions-grid,
  .contact-grid,
  .story-grid,
  .footer-grid,
  .page-hero-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
  }

  .hero-content {
    align-items: center;
  }

  .story-grid,
  .contact-grid,
  .stats-grid,
  .solutions-grid,
  .footer-grid,
  .page-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .field-row.two-up,
  .field-row.three-up {
    grid-template-columns: 1fr;
  }

  .story-visual {
    order: -1;
  }

  .detail-panel-soft {
    position: static;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 76px;
  }

  .brand img {
    width: 138px;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-switch a {
    padding-inline: 10px;
  }

  .hero-content {
    padding-block: 72px 56px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .story-copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .stat-card,
  .solution-card,
  .contact-form-card,
  .technologies-frame {
    padding: 22px;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: none;
  background: rgb(46 99 219);
  border-bottom: 0;
}

.nav-shell {
  width: min(1180px, calc(100% - 20px));
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 92px;
}

.desktop-nav {
  display: none;
}

.header-actions {
  gap: 0;
}

.menu-toggle,
.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  position: relative;
  background: transparent;
  border-radius: 0;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 9px;
  top: 17px;
  width: 18px;
  height: 2px;
  background: rgb(255 255 255);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(5px);
}

.menu-close {
  padding: 8px 14px;
  background: rgba(255 255 255 / 0.12);
}

.mobile-panel {
  padding: 10px;
  background: rgba(14 24 46 / 0.82);
}

.mobile-panel-inner {
  width: min(360px, 100%);
  padding: 18px;
  border-radius: 20px;
  background: rgb(23 32 70);
}

.mobile-panel-head {
  font-size: 0.78rem;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255);
}

.lang-switch {
  width: fit-content;
  padding: 3px;
  border-radius: 12px;
  background: rgba(255 255 255 / 0.08);
}

.lang-switch a {
  min-width: 42px;
  padding: 6px 10px;
  text-align: center;
  font-size: 0.74rem;
}

body.page-home {
  color: rgb(46 99 219);
  background: rgb(255 255 255);
}

.page-home .hero-media video {
  display: none;
}

.page-home .hero-media img {
  transform: scaleX(-1) scale(1.34);
  object-position: 72% 32%;
  filter: saturate(0.84) brightness(0.82);
}

.page-home .section-shell {
  width: min(1180px, calc(100% - 18px));
}

.page-home .hero {
  min-height: clamp(320px, 78vw, 760px);
}

.page-home .hero-overlay {
  background: linear-gradient(90deg, rgba(45 92 202 / 0.64) 0%, rgba(45 92 202 / 0.52) 34%, rgba(45 92 202 / 0.3) 68%, rgba(45 92 202 / 0.24) 100%);
}

.page-home .hero-content {
  min-height: clamp(320px, 78vw, 760px);
  padding: 22px 14px 34px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.page-home .hero-copy {
  max-width: 560px;
  align-self: center;
}

.page-home .hero-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgb(255 255 255);
}

.page-home .hero-title span {
  display: block;
}

.page-home .hero-title .is-accent {
  color: var(--color-orange);
}

.page-home .hero-graphic {
  width: clamp(120px, 26vw, 280px);
  height: clamp(170px, 34vw, 320px);
  position: relative;
}

.page-home .hero-triangle,
.page-home .contact-triangle,
.page-home .story-mini-triangle {
  width: 0;
  height: 0;
  position: absolute;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 34px solid transparent;
}

.page-home .hero-triangle-orange {
  top: 34px;
  left: 0;
  border-left-color: var(--color-orange);
}

.page-home .hero-triangle-white {
  top: 34px;
  left: 34px;
  border-left-color: rgb(255 255 255);
}

.page-home .hero-triangle-navy {
  top: 34px;
  left: 74px;
  border-left-color: rgb(31 31 90);
}

.page-home .hero-circle {
  position: absolute;
  right: 0;
  top: 60px;
  width: clamp(98px, 23vw, 190px);
  height: clamp(98px, 23vw, 190px);
  border-radius: 50%;
  background: rgb(105 126 237);
}

.page-home .hero-bars,
.page-home .contact-bars {
  position: absolute;
  display: grid;
  gap: 8px;
}

.page-home .hero-bars {
  right: 14px;
  top: 128px;
}

.page-home .hero-bars span,
.page-home .contact-bars span {
  width: clamp(52px, 12vw, 110px);
  height: 8px;
  background: rgb(31 31 90);
}

.page-home .hero-explore {
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  margin-inline: auto;
  bottom: 12px;
  transform: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: rgb(255 255 255);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-home .hero-explore-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid rgb(255 255 255);
  border-bottom: 2px solid rgb(255 255 255);
  transform: rotate(45deg);
}

.page-home .section {
  padding: 56px 0;
}

.page-home .section-stats,
.page-home .section-solutions,
.page-home .section-technologies,
.page-home .section-contact {
  background: rgb(255 255 255);
}

.page-home .section-stats::before,
.page-home .section-technologies::after {
  content: none;
}

.home-heading {
  text-align: center;
}

.home-heading p,
.home-heading h2 {
  margin: 0;
  text-transform: uppercase;
}

.home-heading p span {
  display: block;
}

.home-heading p {
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.03;
  color: rgb(46 99 219);
}

.home-heading h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 0.98;
  color: rgb(169 191 244);
}

.page-home .stats-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.page-home .stat-card {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.page-home .stat-card::after {
  content: none;
}

.page-home .stat-card strong {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: rgb(46 99 219);
}

.page-home .stat-card p {
  margin: 0;
  color: rgb(159 179 231);
  font-size: 0.82rem;
  line-height: 1.45;
}

.page-home .section-story {
  background: rgb(228 236 253);
}

.page-home .story-grid {
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
}

.page-home .story-title {
  margin: 0;
  display: grid;
  gap: 4px;
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  color: rgb(87 119 215);
}

.page-home .story-title .accent {
  color: var(--color-orange);
}

.page-home .story-body {
  margin-top: 18px;
  max-width: 40ch;
  color: rgb(113 136 204);
  font-size: 0.9rem;
  line-height: 1.45;
}

.page-home .story-quote {
  margin-top: 30px;
  padding: 0;
  background: transparent;
  border-left: 0;
  border-radius: 0;
}

.page-home .story-quote p {
  color: rgb(87 119 215);
  font-size: clamp(1rem, 2.4vw, 1.8rem);
  line-height: 1.18;
}

.page-home .story-quote p + p {
  margin-top: 4px;
  color: rgb(46 99 219);
}

.page-home .story-visual {
  min-height: 220px;
  order: 0;
}

.page-home .story-visual::before,
.page-home .story-visual::after {
  content: none;
}

.page-home .story-circle {
  position: absolute;
  right: 4px;
  top: 72px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgb(103 132 236);
}

.page-home .story-pill {
  position: absolute;
  right: 62px;
  width: 8px;
  height: 96px;
  background: rgb(31 31 90);
}

.page-home .story-pill-1 {
  top: 18px;
}

.page-home .story-pill-2 {
  top: 18px;
  right: 74px;
}

.page-home .story-pill-3 {
  top: 18px;
  right: 86px;
}

.page-home .story-mini-triangle {
  top: 152px;
  left: 8px;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 16px;
}

.page-home .story-mini-triangle-blue {
  border-left-color: rgb(104 127 235);
}

.page-home .story-mini-triangle-orange {
  left: 28px;
  border-left-color: var(--color-orange);
}

.page-home .story-mini-triangle-navy {
  left: 48px;
  border-left-color: rgb(31 31 90);
}

.page-home .story-square {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74px;
  height: 74px;
  background: var(--color-orange);
}

.page-home .story-ring {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255 255 255);
  box-shadow: inset 0 0 0 10px rgb(83 116 231);
}

.page-home .section-solutions .home-heading {
  text-align: left;
}

.page-home .section-solutions .home-heading h2 {
  color: rgb(46 99 219);
}

.page-home .section-solutions .section-intro {
  margin-top: 18px;
  max-width: 40ch;
  color: rgb(113 136 204);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
}

.page-home .solutions-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page-home .solution-card {
  min-height: 168px;
  padding: 18px 14px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgb(46 99 219), rgb(111 140 235));
  color: rgb(255 255 255);
  border-radius: 8px;
  box-shadow: none;
}

.page-home .solution-card-face {
  background: linear-gradient(180deg, rgb(46 99 219), rgb(111 140 235));
}

.page-home .solution-card-detail {
  background: linear-gradient(180deg, rgb(255 126 73), rgb(255 167 99));
}

.page-home .solution-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.page-home .solution-card-hitbox {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border-radius: inherit;
}

.page-home .solution-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.02;
  color: rgb(255 255 255);
  text-transform: uppercase;
}

.page-home .solution-tagline {
  margin: 0;
  color: rgba(255 255 255 / 0.95);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.3;
}

.page-home .solution-card p:last-child,
.page-home .solution-card p:empty,
.page-home .card-link,
.page-home .solution-index {
  display: none;
}

.page-home .solution-dots {
  width: 16px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255 255 255 / 0.8);
  box-shadow: 10px 0 0 rgba(255 255 255 / 0.34);
}

.page-home .section-actions {
  margin-top: 18px;
  justify-content: center;
}

.button-compact {
  min-height: 28px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .section-technologies {
  padding-top: 54px;
}

.page-home .technologies-heading {
  margin-left: auto;
  width: fit-content;
  text-align: right;
}

.page-home .technologies-heading h2 {
  margin: 0;
  display: grid;
  gap: 2px;
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.page-home .technologies-heading .is-accent {
  color: var(--color-orange);
}

.page-home .technologies-heading h2 span:last-child {
  color: rgb(169 191 244);
}

.page-home .technologies-frame.bare {
  margin-top: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-home .technologies-frame.bare img {
  width: 100%;
  border-radius: 0;
}

.page-home .section-contact {
  padding-top: 34px;
}

.page-home .home-contact-copy {
  margin-bottom: 16px;
}

.page-home .contact-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 10px;
  font-family: var(--font-body);
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 300;
  line-height: 1.02;
  color: rgb(46 99 219);
}

.page-home .contact-title strong {
  font-weight: 800;
}

.page-home .home-contact-grid {
  grid-template-columns: 0.95fr 1.15fr;
  gap: 14px;
}

.page-home .contact-showcase {
  min-height: 360px;
  position: relative;
}

.page-home .contact-triangles {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  gap: 6px;
}

.page-home .contact-triangle {
  position: static;
  border-top-width: 18px;
  border-bottom-width: 18px;
  border-left-width: 28px;
}

.page-home .contact-triangle-orange {
  border-left-color: var(--color-orange);
}

.page-home .contact-triangle-blue {
  border-left-color: rgb(105 126 237);
}

.page-home .contact-triangle-navy {
  border-left-color: rgb(31 31 90);
}

.page-home .contact-photo-frame {
  position: absolute;
  left: 0;
  top: 42px;
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  border: 14px solid rgb(46 99 219);
  border-radius: 50%;
  overflow: hidden;
}

.page-home .contact-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .contact-bars {
  left: 20px;
  bottom: 6px;
}

.page-home .contact-bars span {
  width: 112px;
  height: 12px;
  background: var(--color-orange);
}

.page-home .contact-form-card {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.page-home .contact-form {
  gap: 10px;
}

.page-home .field-row.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .field-row.three-up {
  grid-template-columns: 1fr 0.8fr 0.8fr;
}

.page-home .field-row,
.page-home .field {
  gap: 6px;
}

.page-home .field span {
  color: rgb(128 150 219);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
}

.page-home .field input {
  min-height: 31px;
  padding: 6px 12px;
  border: 0;
  border-radius: 10px;
  background: rgb(236 241 255);
  color: rgb(86 105 170);
  box-shadow: none;
}

.page-home .field input::placeholder {
  color: rgb(180 195 236);
  font-size: 0.75rem;
}

.page-home .field-error {
  font-size: 0.72rem;
  line-height: 1.3;
}

.page-home .field input.is-invalid,
.page-home .picker-trigger.is-invalid {
  background: rgb(255 240 238);
  box-shadow:
    inset 0 0 0 1px rgba(176 62 30 / 0.56),
    0 0 0 2px rgba(176 62 30 / 0.12);
}

.page-home .field input.is-invalid:focus,
.page-home .picker-trigger.is-invalid:focus-visible,
.page-home .picker-trigger.is-invalid.is-open {
  box-shadow:
    inset 0 0 0 1px rgba(176 62 30 / 0.68),
    0 0 0 2px rgba(176 62 30 / 0.16);
}

.page-home .form-actions {
  margin-top: 4px;
  align-items: center;
}

.page-home .contact-form-card .button {
  min-width: 88px;
  min-height: 32px;
  padding: 7px 16px;
  border-radius: 9px;
  font-size: 0.76rem;
  box-shadow: none;
  background: rgb(46 99 219);
}

.page-home .form-message {
  text-align: center;
  font-size: 0.76rem;
}

.page-home .site-footer {
  padding: 28px 0 20px;
  background: rgb(24 25 83);
}

.page-home .footer-grid {
  padding-top: 0;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1fr;
  gap: 16px;
  border-top: 0;
}

.page-home .footer-brand img {
  width: 128px;
}

.page-home .footer-brand p {
  margin-top: 6px;
  font-size: 0.64rem;
  color: rgb(163 174 222);
}

.page-home .footer-column h3 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--color-orange);
}

.page-home .footer-column li,
.page-home .footer-column a {
  color: rgb(255 255 255);
  font-size: 0.74rem;
  line-height: 1.4;
}

.page-home .footer-column ul {
  gap: 4px;
}

.page-home .footer-socials {
  gap: 8px;
  justify-content: flex-end;
}

.page-home .footer-socials a {
  width: 22px;
  height: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.page-home .footer-socials img {
  width: 16px;
  height: 16px;
}

.page-home .footer-certifications {
  margin-top: 14px;
  margin-left: auto;
  width: 122px;
}

.page-home .footer-bottom {
  margin-top: 10px;
  text-align: right;
}

.page-home .footer-bottom p {
  color: rgb(255 255 255);
  font-size: 0.66rem;
}

@media (max-width: 920px) {
  .page-home .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .story-grid,
  .page-home .home-contact-grid,
  .page-home .solutions-grid,
  .page-home .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-home .home-contact-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }
}

@media (max-width: 640px) {
  .page-home .hero-content {
    min-height: 262px;
    padding: 18px 12px 30px;
    gap: 2px;
  }

  .page-home .hero-title {
    font-size: 1.2rem;
  }

  .page-home .hero {
    min-height: 262px;
  }

  .page-home .hero-bars {
    top: 124px;
    right: 2px;
  }

  .page-home .hero-bars span {
    height: 6px;
  }

  .page-home .section {
    padding: 28px 0;
  }

  .page-home .home-heading p {
    font-size: 1rem;
  }

  .page-home .home-heading h2 {
    font-size: 1.55rem;
  }

  .page-home .stats-grid {
    margin-top: 24px;
    gap: 12px;
  }

  .page-home .stat-card strong {
    font-size: 0.95rem;
  }

  .page-home .stat-card p {
    font-size: 0.48rem;
  }

  .page-home .story-grid {
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 6px;
  }

  .page-home .story-title {
    font-size: 1.1rem;
  }

  .page-home .story-body {
    font-size: 0.55rem;
  }

  .page-home .story-quote p {
    font-size: 0.6rem;
  }

  .page-home .story-circle {
    width: 86px;
    height: 86px;
  }

  .page-home .story-pill {
    height: 72px;
  }

  .page-home .story-visual {
    min-height: 176px;
  }

  .page-home .section-solutions .section-intro {
    font-size: 0.56rem;
    line-height: 1.45;
  }

  .page-home .solution-card {
    min-height: 88px;
    padding: 14px 8px 10px;
  }

  .page-home .solution-card h3 {
    font-size: 0.7rem;
  }

  .page-home .solution-tagline {
    font-size: 0.42rem;
  }

  .button-compact {
    min-height: 20px;
    padding: 4px 16px;
    font-size: 0.5rem;
  }

  .page-home .section-technologies {
    padding-top: 24px;
  }

  .page-home .technologies-heading h2 {
    font-size: 1.5rem;
  }

  .page-home .technologies-frame.bare {
    margin-top: 12px;
  }

  .page-home .contact-title {
    font-size: 1.1rem;
  }

  .page-home .home-contact-grid {
    gap: 10px;
  }

  .page-home .contact-showcase {
    min-height: 210px;
  }

  .page-home .contact-photo-frame {
    width: 138px;
    border-width: 9px;
  }

  .page-home .contact-bars {
    left: 10px;
    bottom: 0;
  }

  .page-home .contact-bars span {
    width: 78px;
    height: 7px;
  }

  .page-home .contact-form {
    gap: 8px;
  }

  .page-home .field-row.three-up {
    grid-template-columns: 1fr 0.78fr 0.78fr;
  }

  .page-home .field span {
    font-size: 0.48rem;
  }

  .page-home .field input {
    min-height: 22px;
    padding: 4px 8px;
    border-radius: 8px;
  }

  .page-home .field input::placeholder {
    font-size: 0.5rem;
  }

  .page-home .contact-form-card .button {
    min-width: 60px;
    min-height: 22px;
    padding: 4px 12px;
    font-size: 0.55rem;
    border-radius: 7px;
  }

  .page-home .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
    gap: 8px;
  }

  .page-home .footer-brand img {
    width: 86px;
  }

  .page-home .footer-column h3 {
    font-size: 0.58rem;
  }

  .page-home .footer-column li,
  .page-home .footer-column a {
    font-size: 0.39rem;
  }

  .page-home .footer-certifications {
    width: 70px;
  }

  .page-home .footer-bottom p,
  .page-home .footer-brand p {
    font-size: 0.36rem;
  }
}

/* Homepage interactive overrides */
body.page-home {
  overflow-x: hidden;
}

.page-home .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  top: 0;
  margin: 0;
}

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

.page-home .hero {
  min-height: clamp(360px, 78vw, 760px);
}

.page-home .hero-media {
  overflow: hidden;
  background: rgb(46 99 219);
}

.page-home .hero-media video,
.page-home .hero-media img {
  transform: scaleX(-1) scale(1.36);
  object-position: 72% 34%;
}

.page-home .hero-media video {
  display: block;
  z-index: 1;
  filter: saturate(0.82) brightness(0.62) contrast(1.04);
}

.page-home .hero-poster {
  z-index: 2;
  opacity: 1;
  transition: opacity 280ms ease;
}

.page-home .hero.is-video-ready .hero-poster {
  opacity: 0;
  pointer-events: none;
}

.page-home .hero-overlay {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(45 92 202 / 0.84) 0%, rgba(45 92 202 / 0.74) 34%, rgba(45 92 202 / 0.54) 68%, rgba(45 92 202 / 0.38) 100%),
    linear-gradient(180deg, rgba(45 92 202 / 0.2) 0%, rgba(32 66 156 / 0.12) 54%, rgba(19 34 92 / 0.2) 100%);
}

.page-home .hero-content {
  z-index: 4;
  min-height: clamp(360px, 78vw, 760px);
  padding: 48px 14px 34px;
  align-items: center;
}

.page-home .hero-copy,
.page-home .hero-graphic,
.page-home .hero-explore {
  z-index: 1;
}

.page-home .hero-copy,
.page-home .hero-graphic {
  position: relative;
}

.page-home .hero-explore {
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  margin-inline: auto;
  bottom: 12px;
  transform: none;
  text-align: center;
}

.page-home .hero-title {
  max-width: 7.2ch;
}

.page-home .hero-graphic {
  width: clamp(164px, 31vw, 320px);
  height: clamp(180px, 36vw, 340px);
  justify-self: end;
  pointer-events: none;
}

.page-home .hero-triangle,
.page-home .contact-triangle,
.page-home .story-mini-triangle,
.page-home .runner-triangle {
  width: 0;
  height: 0;
  position: absolute;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 30px solid transparent;
}

.page-home .hero-triangle-orange {
  top: 28px;
  left: 2px;
  border-left-color: var(--color-orange);
}

.page-home .hero-triangle-white {
  top: 28px;
  left: 40px;
  border-left-color: rgb(255 255 255);
}

.page-home .hero-triangle-navy {
  top: 28px;
  left: 82px;
  border-left-color: rgb(31 31 90);
}

.page-home .hero-circle {
  right: -4px;
  top: 72px;
  width: clamp(126px, 25vw, 224px);
  height: clamp(126px, 25vw, 224px);
}

.page-home .hero-bars {
  top: 154px;
  right: 10px;
  gap: 10px;
}

.page-home .hero-bars span {
  width: clamp(62px, 14vw, 118px);
  height: 9px;
}

.page-home .stat-card strong {
  min-height: 1em;
}

.page-home .story-grid {
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
}

.page-home .story-title {
  max-width: 10ch;
}

.page-home .story-visual {
  min-height: 290px;
  pointer-events: none;
}

.page-home .story-circle {
  top: 96px;
  right: 8px;
  width: 164px;
  height: 164px;
}

.page-home .story-pill {
  top: 16px;
  width: 11px;
  height: 146px;
}

.page-home .story-pill-1 {
  right: 112px;
}

.page-home .story-pill-2 {
  right: 128px;
}

.page-home .story-pill-3 {
  right: 144px;
}

.page-home .story-mini-triangle {
  top: 208px;
  left: 14px;
  border-top-width: 14px;
  border-bottom-width: 14px;
  border-left-width: 22px;
}

.page-home .story-mini-triangle-orange {
  left: 44px;
}

.page-home .story-mini-triangle-navy {
  left: 74px;
}

.page-home .story-square {
  right: 2px;
  bottom: 8px;
  width: 94px;
  height: 94px;
}

.page-home .story-ring {
  right: 26px;
  bottom: 30px;
  width: 44px;
  height: 44px;
}

.page-home .solutions-carousel {
  position: relative;
  margin-top: 28px;
  padding: 0 46px 32px;
}

.page-home .solutions-viewport {
  overflow: hidden;
}

.page-home .solutions-track {
  display: flex;
  gap: 12px;
  align-items: stretch;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.page-home .solution-slide {
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
}

.page-home .solution-card {
  min-height: 100%;
  padding: 18px 16px 16px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.page-home .solution-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -22% auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255 255 255 / 0.22), transparent 70%);
}

.page-home .solution-card-copy {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  transform: translateY(10px);
  opacity: 0.7;
  transition: transform 420ms ease, opacity 420ms ease;
}

.page-home .solution-slide.is-active .solution-card-copy {
  transform: translateY(0);
  opacity: 1;
}

.page-home .solution-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255 255 255 / 0.12);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.page-home .solution-card h3 {
  max-width: 6.2ch;
}

.page-home .solution-card p:last-child {
  display: block;
  margin-top: auto;
  color: rgba(255 255 255 / 0.82);
  font-size: 0.72rem;
  line-height: 1.42;
}

.page-home .card-link {
  margin-top: 16px;
  color: rgba(255 255 255 / 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.page-home .carousel-arrow {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgb(235 241 255);
  color: rgb(46 99 219);
  box-shadow: 0 8px 20px rgba(46 99 219 / 0.14);
  cursor: pointer;
  transform: translateY(-60%);
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.page-home .carousel-arrow:hover,
.page-home .carousel-arrow:focus-visible {
  transform: translateY(-60%) scale(1.04);
}

.page-home .carousel-arrow:disabled {
  opacity: 0.5;
  cursor: default;
}

.page-home .carousel-arrow-prev {
  left: 0;
}

.page-home .carousel-arrow-next {
  right: 0;
}

.page-home .carousel-arrow span {
  font-size: 1.35rem;
  line-height: 1;
}

.page-home .carousel-pagination {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-home .carousel-dot {
  width: 22px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(46 99 219 / 0.22);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.page-home .carousel-dot.is-active {
  background: rgb(46 99 219);
  transform: scaleX(1.08);
}

.page-home .button-compact {
  min-height: 34px;
}

.page-home .solutions-runners {
  position: relative;
  height: 38px;
  margin-top: 18px;
  overflow: hidden;
}

.page-home .runner-triangle {
  top: 7px;
  left: -60px;
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 14px;
}

.page-home .runner-triangle-orange {
  border-left-color: var(--color-orange);
}

.page-home .runner-triangle-blue {
  border-left-color: rgb(105 126 237);
}

.page-home .runner-triangle-navy {
  border-left-color: rgb(31 31 90);
}

.page-home .contact-showcase {
  min-height: 420px;
  pointer-events: auto;
}

.page-home .contact-triangles {
  left: 6px;
  top: 12px;
  gap: 8px;
}

.page-home .contact-triangle {
  position: static;
  border-top-width: 16px;
  border-bottom-width: 16px;
  border-left-width: 28px;
}

.page-home .contact-back-circle {
  position: absolute;
  left: 44px;
  top: 84px;
  width: 252px;
  height: 252px;
  border-radius: 50%;
  background: rgb(46 99 219);
  opacity: 0.95;
}

.page-home .contact-photo-frame {
  left: 18px;
  top: 62px;
  width: min(100%, 282px);
  border-width: 16px;
}

.page-home .contact-bars {
  left: 18px;
  bottom: 2px;
  gap: 10px;
}

.page-home .contact-bars span {
  width: 142px;
  height: 10px;
}

.page-home .field-picker {
  position: relative;
}

.page-home .picker-trigger {
  min-height: 31px;
  width: 100%;
  padding: 6px 34px 6px 12px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  background: rgb(236 241 255);
  color: rgb(86 105 170);
  cursor: pointer;
  text-align: left;
}

.page-home .picker-trigger:focus-visible,
.page-home .picker-trigger.is-open {
  outline: none;
  box-shadow: 0 0 0 2px rgba(82 127 220 / 0.28);
}

.page-home .picker-trigger-text {
  overflow: hidden;
  color: rgb(180 195 236);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .picker-trigger-text.has-value {
  color: rgb(86 105 170);
}

.page-home .picker-trigger-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.page-home .picker-trigger-icon-calendar::before,
.page-home .picker-trigger-icon-clock::before,
.page-home .picker-trigger-icon-clock::after {
  content: "";
  position: absolute;
}

.page-home .picker-trigger-icon-calendar::before {
  inset: 1px;
  border: 2px solid rgb(138 159 223);
  border-top-width: 5px;
  border-radius: 4px;
}

.page-home .picker-trigger-icon-clock::before {
  inset: 0;
  border: 2px solid rgb(138 159 223);
  border-radius: 50%;
}

.page-home .picker-trigger-icon-clock::after {
  left: 6px;
  top: 2px;
  width: 2px;
  height: 5px;
  background: rgb(138 159 223);
  box-shadow: 2px 4px 0 -0.5px rgb(138 159 223);
  transform-origin: bottom center;
}

.page-home .picker-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 12;
  width: min(286px, calc(100vw - 36px));
}

.page-home .picker-popover-inner {
  padding: 12px;
  background: rgb(255 255 255);
  border: 1px solid rgba(146 170 236 / 0.42);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(46 99 219 / 0.18);
}

.page-home .picker-popover-head,
.page-home .picker-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .picker-popover-head {
  margin-bottom: 10px;
}

.page-home .picker-popover-head strong,
.page-home .picker-toolbar strong {
  color: rgb(46 99 219);
  font-size: 0.82rem;
  font-weight: 700;
}

.page-home .picker-close,
.page-home .picker-nav,
.page-home .picker-action {
  border: 0;
  background: rgba(236 241 255 / 0.96);
  color: rgb(86 105 170);
  cursor: pointer;
}

.page-home .picker-close,
.page-home .picker-nav {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.page-home .picker-weekdays {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.page-home .picker-weekdays span {
  text-align: center;
  color: rgb(153 171 228);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-home .picker-days {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.page-home .picker-day {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background: rgb(245 248 255);
  color: rgb(86 105 170);
  font-size: 0.74rem;
  cursor: pointer;
}

.page-home .picker-day:disabled,
.page-home .picker-day-empty {
  background: transparent;
  color: rgba(146 160 201 / 0.48);
  cursor: default;
}

.page-home .picker-day.is-selected,
.page-home .picker-time-slot.is-selected {
  background: rgb(46 99 219);
  color: rgb(255 255 255);
}

.page-home .picker-actions {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.page-home .picker-action {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.page-home .picker-panel-time {
  max-height: 248px;
  overflow: auto;
  padding-right: 2px;
}

.page-home .picker-time-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.page-home .picker-time-slot {
  min-height: 32px;
  border: 0;
  border-radius: 10px;
  background: rgb(245 248 255);
  color: rgb(86 105 170);
  font-size: 0.72rem;
  cursor: pointer;
}

.page-home .footer-grid {
  grid-template-columns: 1.55fr 0.9fr 0.9fr 0.95fr 1.1fr;
  align-items: start;
}

.page-home .footer-column-social {
  justify-self: start;
}

.page-home .footer-column-social h3 {
  margin-bottom: 10px;
}

.page-home .footer-socials {
  justify-content: flex-start;
}

.page-home .footer-certifications {
  margin-left: 0;
}

@media (max-width: 920px) {
  .page-home .hero-content {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .page-home .story-grid {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .page-home .home-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

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

@media (max-width: 640px) {
  .page-home .site-header {
    position: fixed;
  }

  .page-home .hero {
    min-height: 324px;
  }

  .page-home .hero-content {
    min-height: 324px;
    grid-template-columns: minmax(0, 1fr) 126px;
    padding: 54px 12px 30px;
    gap: 4px;
  }

  .page-home .hero-title {
    font-size: 1.42rem;
  }

  .page-home .hero-media video,
  .page-home .hero-media img {
    transform: scaleX(-1) scale(1.5);
    object-position: 66% 38%;
  }

  .page-home .hero-triangle {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .page-home .hero-triangle-white {
    left: 20px;
  }

  .page-home .hero-triangle-navy {
    left: 42px;
  }

  .page-home .hero-circle {
    top: 84px;
    width: 92px;
    height: 92px;
  }

  .page-home .hero-bars {
    top: 132px;
    right: 0;
    gap: 6px;
  }

  .page-home .hero-bars span {
    width: 54px;
    height: 6px;
  }

  .page-home .story-grid {
    grid-template-columns: minmax(0, 1fr) 144px;
    gap: 10px;
  }

  .page-home .story-visual {
    min-height: 188px;
  }

  .page-home .story-circle {
    width: 98px;
    height: 98px;
    top: 58px;
  }

  .page-home .story-pill {
    width: 8px;
    height: 94px;
  }

  .page-home .story-pill-1 {
    right: 70px;
  }

  .page-home .story-pill-2 {
    right: 82px;
  }

  .page-home .story-pill-3 {
    right: 94px;
  }

  .page-home .story-mini-triangle {
    top: 138px;
    left: 6px;
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 14px;
  }

  .page-home .story-mini-triangle-orange {
    left: 24px;
  }

  .page-home .story-mini-triangle-navy {
    left: 42px;
  }

  .page-home .story-square {
    width: 72px;
    height: 72px;
  }

  .page-home .story-ring {
    right: 18px;
    bottom: 20px;
    width: 32px;
    height: 32px;
    box-shadow: inset 0 0 0 8px rgb(83 116 231);
  }

  .page-home .solutions-carousel {
    padding: 0 28px 26px;
  }

  .page-home .solutions-track {
    gap: 8px;
  }

  .page-home .solution-card {
    padding: 14px 10px 12px;
  }

  .page-home .solution-card h3 {
    font-size: 0.84rem;
  }

  .page-home .solution-tagline,
  .page-home .solution-card p:last-child,
  .page-home .card-link {
    font-size: 0.5rem;
  }

  .page-home .solution-card p:last-child,
  .page-home .card-link {
    display: none;
  }

  .page-home .carousel-arrow {
    width: 24px;
    height: 24px;
  }

  .page-home .carousel-arrow span {
    font-size: 1rem;
  }

  .page-home .carousel-dot {
    width: 16px;
  }

  .page-home .solutions-runners {
    height: 26px;
    margin-top: 12px;
  }

  .page-home .runner-triangle {
    top: 4px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .page-home .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-home .contact-showcase {
    min-height: 238px;
  }

  .page-home .contact-back-circle {
    left: 18px;
    top: 52px;
    width: 150px;
    height: 150px;
  }

  .page-home .contact-photo-frame {
    left: 8px;
    top: 38px;
    width: 158px;
    border-width: 10px;
  }

  .page-home .contact-bars {
    left: 12px;
    bottom: 2px;
    gap: 8px;
  }

  .page-home .contact-bars span {
    width: 84px;
    height: 7px;
  }

  .page-home .picker-trigger {
    min-height: 22px;
    padding: 4px 24px 4px 8px;
    border-radius: 8px;
  }

  .page-home .picker-trigger-text,
  .page-home .picker-time-slot,
  .page-home .picker-day,
  .page-home .picker-weekdays span,
  .page-home .picker-action,
  .page-home .picker-popover-head strong,
  .page-home .picker-toolbar strong {
    font-size: 0.56rem;
  }

  .page-home .picker-trigger-icon {
    right: 7px;
    width: 12px;
    height: 12px;
  }

  .page-home .picker-popover {
    width: min(240px, calc(100vw - 28px));
  }

  .page-home .picker-popover-inner {
    padding: 10px;
    border-radius: 12px;
  }

  .page-home .picker-day {
    min-height: 24px;
    border-radius: 7px;
  }

  .page-home .picker-time-slot {
    min-height: 24px;
    border-radius: 8px;
  }

  .page-home .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 8px;
  }

  .page-home .footer-socials {
    gap: 4px;
  }

  .page-home .footer-socials a {
    width: 18px;
    height: 18px;
  }
}

/* Homepage column carousels and contact refinements */
.page-home .solutions-columns {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.page-home .solution-column {
  position: relative;
  padding: 0 14px;
}

.page-home .solution-stack-frame {
  position: relative;
  aspect-ratio: 1 / 1;
}

.page-home .solution-card-face {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.page-home .solution-card-face.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.page-home .solution-card-face .solution-card-copy {
  transform: none;
  opacity: 1;
}

.page-home .solution-card-face .solution-kicker {
  margin-bottom: 4px;
}

.page-home .solution-card-face h3 {
  max-width: none;
  font-size: clamp(1rem, 2vw, 1.85rem);
}

.page-home .solution-card-face .solution-tagline {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.34;
}

.page-home .solution-card-face p:last-child {
  display: block;
  margin: 0;
  color: rgba(255 255 255 / 0.84);
  font-size: 0.7rem;
  line-height: 1.36;
}

.page-home .solution-card-face .card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
}

.page-home .solution-column .carousel-arrow {
  top: 50%;
  width: 16px;
  height: 16px;
  padding: 0;
  transform: translateY(-68%);
  box-shadow: none;
}

.page-home .solution-column .carousel-arrow:hover,
.page-home .solution-column .carousel-arrow:focus-visible {
  transform: translateY(-68%) scale(1.06);
}

.page-home .solution-column .carousel-arrow-prev {
  left: 0;
}

.page-home .solution-column .carousel-arrow-next {
  right: 0;
}

.page-home .solution-column .carousel-arrow span {
  font-size: 0.9rem;
}

.page-home .solution-column .carousel-pagination {
  margin-top: 8px;
  gap: 5px;
}

.page-home .solution-column .carousel-dot {
  width: 10px;
  height: 3px;
}

.page-home .solutions-runners {
  height: 92px;
  margin-top: 10px;
}

.page-home .runner-triangle {
  top: 18px;
  left: 0;
  border-top-width: 27px;
  border-bottom-width: 27px;
  border-left-width: 42px;
}

.page-home .contact-showcase {
  min-height: 560px;
}

.page-home .contact-triangles {
  left: 152px;
  top: 20px;
  gap: 14px;
}

.page-home .contact-triangle {
  border-top-width: 30px;
  border-bottom-width: 30px;
  border-left-width: 50px;
}

.page-home .contact-back-circle {
  left: 54px;
  top: 108px;
  width: 420px;
  height: 420px;
}

.page-home .contact-photo-frame {
  left: 28px;
  top: 86px;
  width: min(100%, 430px);
  border-width: 16px;
}

.page-home .contact-bars {
  left: 190px;
  bottom: 12px;
  gap: 14px;
}

.page-home .contact-bars span {
  display: block;
  width: 404px;
  max-width: calc(100% - 20px);
  height: 14px;
}

@media (max-width: 920px) {
  .page-home .solutions-columns {
    gap: 8px;
  }

  .page-home .solution-column {
    padding: 0 10px;
  }

  .page-home .solution-card-face h3 {
    font-size: 0.94rem;
  }

  .page-home .solution-card-face .solution-tagline,
  .page-home .solution-card-face p:last-child,
  .page-home .solution-card-face .card-link {
    font-size: 0.58rem;
  }

  .page-home .solution-card-face .card-link {
    margin-top: 12px;
  }

  .page-home .solutions-runners {
    height: 76px;
  }

  .page-home .runner-triangle {
    top: 14px;
    border-top-width: 22px;
    border-bottom-width: 22px;
    border-left-width: 34px;
  }

  .page-home .contact-showcase {
    min-height: 420px;
  }

  .page-home .contact-triangles {
    left: 96px;
    top: 18px;
    gap: 10px;
  }

  .page-home .contact-triangle {
    border-top-width: 22px;
    border-bottom-width: 22px;
    border-left-width: 36px;
  }

  .page-home .contact-back-circle {
    left: 26px;
    top: 84px;
    width: 250px;
    height: 250px;
  }

  .page-home .contact-photo-frame {
    left: 10px;
    top: 62px;
    width: min(100%, 270px);
  }

  .page-home .contact-bars {
    left: 94px;
    bottom: 8px;
    gap: 10px;
  }

  .page-home .contact-bars span {
    width: 212px;
    height: 10px;
  }
}

@media (max-width: 640px) {
  .page-home .solutions-columns {
    gap: 6px;
  }

  .page-home .solution-column {
    padding: 0 8px;
  }

  .page-home .solution-card-face {
    border-radius: 8px;
  }

  .page-home .solution-card-face h3 {
    font-size: 0.72rem;
    line-height: 1.04;
  }

  .page-home .solution-card-face .solution-kicker {
    padding: 3px 6px;
    font-size: 0.48rem;
  }

  .page-home .solution-card-face .solution-tagline {
    font-size: 0.42rem;
  }

  .page-home .solution-card-face p:last-child,
  .page-home .solution-card-face .card-link {
    display: none;
  }

  .page-home .solution-column .carousel-arrow {
    width: 12px;
    height: 12px;
  }

  .page-home .solution-column .carousel-arrow span {
    font-size: 0.72rem;
  }

  .page-home .solution-column .carousel-pagination {
    margin-top: 6px;
    gap: 4px;
  }

  .page-home .solution-column .carousel-dot {
    width: 8px;
    height: 2px;
  }

  .page-home .solutions-runners {
    height: 44px;
  }

  .page-home .runner-triangle {
    top: 8px;
    left: 0;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 20px;
  }

  .page-home .contact-showcase {
    min-height: 254px;
  }

  .page-home .contact-triangles {
    left: 76px;
    top: 2px;
    gap: 8px;
  }

  .page-home .contact-triangle {
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 24px;
  }

  .page-home .contact-back-circle {
    left: 18px;
    top: 54px;
    width: 162px;
    height: 162px;
  }

  .page-home .contact-photo-frame {
    left: 8px;
    top: 40px;
    width: 168px;
    border-width: 10px;
  }

  .page-home .contact-bars {
    left: 90px;
    bottom: 2px;
    gap: 8px;
  }

  .page-home .contact-bars span {
    width: 102px;
    height: 7px;
  }
}

/* Internal pages, legal pages, and cookies manager */
.page-solutions main,
.page-prime main,
.page-local_office main,
.page-flex main,
.page-insights main,
.page-book_online main,
.page-opportunities main,
.page-privacy main,
.page-terms main,
.page-cookies main {
  background:
    radial-gradient(circle at top left, rgba(82 127 220 / 0.1), transparent 32%),
    linear-gradient(180deg, rgb(246 249 255) 0%, rgb(237 243 255) 28%, rgb(255 255 255) 100%);
  color: var(--color-ink);
}

.page-solutions .site-header,
.page-prime .site-header,
.page-local_office .site-header,
.page-flex .site-header,
.page-insights .site-header,
.page-book_online .site-header,
.page-opportunities .site-header,
.page-privacy .site-header,
.page-terms .site-header,
.page-cookies .site-header {
  background: linear-gradient(180deg, rgba(19 19 64 / 0.88), rgba(19 19 64 / 0.42));
}

.button-compact {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
}

.page-solutions .button-ghost,
.page-prime .button-ghost,
.page-local_office .button-ghost,
.page-flex .button-ghost,
.page-insights .button-ghost,
.page-book_online .button-ghost,
.page-opportunities .button-ghost,
.page-privacy .button-ghost,
.page-terms .button-ghost,
.page-cookies .button-ghost,
.cookie-modal .button-ghost {
  color: rgb(24 84 210);
  background: rgba(82 127 220 / 0.08);
  border-color: rgba(82 127 220 / 0.16);
}

.inner-hero {
  padding: 138px 0 70px;
  position: relative;
  overflow: clip;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 22px auto auto -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82 127 220 / 0.16), transparent 70%);
  filter: blur(8px);
}

.inner-hero-grid,
.inner-split,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

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

.inner-hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-body);
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  color: rgb(33 83 214);
  text-transform: uppercase;
}

.inner-hero-copy .page-lede,
.inner-hero-panel .panel-note,
.inner-hero-panel .bullet-list li,
.inner-feature-card p,
.inner-side-card p,
.legal-article p,
.legal-list li,
.legal-side-card p,
.footer-bottom-links a,
.footer-cookie-button {
  color: rgba(19 19 64 / 0.78);
}

.inner-hero-copy .page-lede {
  max-width: 58ch;
  margin-top: 20px;
  font-size: 1.04rem;
  line-height: 1.72;
}

.inner-hero-side {
  position: relative;
  min-height: 320px;
}

.inner-hero-panel,
.detail-panel-light,
.inner-feature-card,
.inner-side-card,
.legal-article,
.legal-side-card {
  background: rgba(255 255 255 / 0.9);
  border: 1px solid rgba(82 127 220 / 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(35 67 133 / 0.12);
}

.inner-hero-panel,
.detail-panel-light,
.inner-feature-card,
.inner-side-card,
.legal-side-card {
  padding: 26px;
}

.inner-hero-panel {
  position: relative;
  z-index: 1;
}

.inner-hero-panel-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24 84 210 / 0.1);
  color: rgb(24 84 210);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inner-hero-panel .bullet-list {
  margin-top: 20px;
}

.inner-hero-figure {
  position: absolute;
  right: 0;
  bottom: -24px;
  width: min(78%, 360px);
  z-index: 0;
}

.inner-hero-figure img {
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.inner-hero-figure-circle img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 18px solid rgb(33 83 214);
}

.inner-hero-figure-portrait img {
  aspect-ratio: 0.94 / 1;
  object-fit: cover;
  border-radius: 34px;
}

.inner-floating-chip {
  position: absolute;
  left: 0;
  bottom: 20px;
  min-width: 120px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  border-radius: 18px;
  background: rgba(19 19 64 / 0.92);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

.inner-floating-chip strong {
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.inner-floating-chip span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(254 255 251 / 0.78);
}

.inner-hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.inner-orbit-circle {
  position: absolute;
  right: 24px;
  top: 46px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(91 123 221 / 0.88);
}

.inner-orbit-triangle {
  position: absolute;
  top: 26px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 34px solid transparent;
}

.inner-orbit-triangle-orange {
  left: 30px;
  border-left-color: var(--color-orange);
}

.inner-orbit-triangle-blue {
  left: 82px;
  border-left-color: rgb(91 123 221);
}

.inner-orbit-bars {
  position: absolute;
  right: 10px;
  bottom: 38px;
  display: grid;
  gap: 10px;
}

.inner-orbit-bars span {
  display: block;
  width: 120px;
  height: 11px;
  border-radius: 999px;
  background: rgb(19 19 64);
}

.section-inner-cards {
  padding-top: 20px;
}

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

.inner-feature-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.solution-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(24 84 210 / 0.08);
  color: rgb(24 84 210);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inner-feature-card h3,
.legal-side-card h3 {
  margin: 0;
  color: rgb(24 84 210);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.02;
}

.inner-feature-card p {
  margin: 16px 0 0;
  line-height: 1.68;
}

.inner-feature-card-blue {
  background: linear-gradient(180deg, rgba(227 237 255 / 0.94), rgba(255 255 255 / 0.92));
}

.inner-feature-tagline {
  font-weight: 700;
}

.section-inner-split {
  padding-top: 26px;
}

.detail-panel-light h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: rgb(19 19 64);
  text-transform: uppercase;
}

.detail-panel-light .section-intro,
.inner-side-card p {
  color: rgba(19 19 64 / 0.8);
}

.detail-panel-light .bullet-list li,
.inner-side-card .bullet-list li {
  color: rgba(19 19 64 / 0.78);
}

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

.inner-side-card {
  min-height: 140px;
}

.inner-side-card-accent {
  background: linear-gradient(180deg, rgb(38 84 204), rgb(94 125 221));
}

.inner-side-card-accent p,
.inner-side-card-accent .section-kicker {
  color: var(--color-text);
}

.inner-visual-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

.inner-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-visual-frame-plain {
  background: rgba(255 255 255 / 0.94);
  padding: 16px;
}

.inner-visual-frame-circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 18px solid rgb(33 83 214);
}

.section-inner-stats {
  padding-top: 16px;
}

.stat-card-light {
  background: rgba(255 255 255 / 0.92);
  border: 1px solid rgba(82 127 220 / 0.14);
  box-shadow: 0 24px 54px rgba(35 67 133 / 0.1);
}

.stat-card-light strong {
  color: rgb(24 84 210);
}

.stat-card-light p {
  color: rgba(19 19 64 / 0.76);
}

.story-quote-light {
  background: rgba(82 127 220 / 0.08);
  border-left-color: rgb(24 84 210);
}

.section-contact-feature {
  padding-top: 34px;
}

.section-contact-feature .contact-feature-copy {
  margin-bottom: 28px;
}

.section-contact-feature .contact-title {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
  font-family: var(--font-body);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: rgb(33 83 214);
  text-transform: uppercase;
}

.section-contact-feature .contact-title strong {
  color: rgb(19 19 64);
  font-weight: 800;
}

.section-contact-feature .section-intro,
.section-contact-feature .contact-copy p {
  color: rgba(19 19 64 / 0.76);
}

.section-contact-feature .contact-feature-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1fr);
  align-items: center;
}

.section-contact-feature .contact-showcase {
  position: relative;
  min-height: 500px;
}

.section-contact-feature .contact-triangles {
  position: absolute;
  left: 132px;
  top: 18px;
  display: flex;
  gap: 10px;
}

.section-contact-feature .contact-triangle {
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 44px solid transparent;
}

.section-contact-feature .contact-triangle-orange {
  border-left-color: var(--color-orange);
}

.section-contact-feature .contact-triangle-blue {
  border-left-color: rgb(91 123 221);
}

.section-contact-feature .contact-triangle-navy {
  border-left-color: rgb(23 23 94);
}

.section-contact-feature .contact-back-circle {
  position: absolute;
  left: 50px;
  top: 94px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgb(33 83 214);
}

.section-contact-feature .contact-photo-frame {
  position: absolute;
  left: 26px;
  top: 72px;
  width: min(100%, 390px);
  overflow: hidden;
  border-radius: 50%;
  border: 16px solid rgba(255 255 255 / 0.94);
  box-shadow: var(--shadow-xl);
}

.section-contact-feature .contact-photo-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section-contact-feature .contact-bars {
  position: absolute;
  left: 170px;
  bottom: 8px;
  display: grid;
  gap: 14px;
}

.section-contact-feature .contact-bars span {
  display: block;
  width: 360px;
  max-width: calc(100vw - 90px);
  height: 14px;
  border-radius: 999px;
  background: var(--color-orange);
}

.section-contact-feature .contact-form-card {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.section-contact-feature .contact-form {
  gap: 10px;
}

.section-contact-feature .field-row.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-contact-feature .field-row.three-up {
  grid-template-columns: 1fr 0.8fr 0.8fr;
}

.section-contact-feature .field-row,
.section-contact-feature .field {
  gap: 6px;
}

.section-contact-feature .field span {
  color: rgb(128 150 219);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
}

.section-contact-feature .field input {
  min-height: 31px;
  padding: 6px 12px;
  border: 0;
  border-radius: 10px;
  background: rgb(236 241 255);
  color: rgb(86 105 170);
  box-shadow: none;
}

.section-contact-feature .field input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(82 127 220 / 0.28);
}

.section-contact-feature .field input::placeholder {
  color: rgb(180 195 236);
  font-size: 0.75rem;
}

.section-contact-feature .field-error {
  font-size: 0.72rem;
  line-height: 1.3;
}

.section-contact-feature .field input.is-invalid,
.section-contact-feature .picker-trigger.is-invalid {
  background: rgb(255 240 238);
  box-shadow:
    inset 0 0 0 1px rgba(176 62 30 / 0.56),
    0 0 0 2px rgba(176 62 30 / 0.12);
}

.section-contact-feature .field input.is-invalid:focus,
.section-contact-feature .picker-trigger.is-invalid:focus-visible,
.section-contact-feature .picker-trigger.is-invalid.is-open {
  box-shadow:
    inset 0 0 0 1px rgba(176 62 30 / 0.68),
    0 0 0 2px rgba(176 62 30 / 0.16);
}

.section-contact-feature .field-picker {
  position: relative;
}

.section-contact-feature .picker-trigger {
  min-height: 31px;
  width: 100%;
  padding: 6px 34px 6px 12px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  background: rgb(236 241 255);
  color: rgb(86 105 170);
  cursor: pointer;
  text-align: left;
}

.section-contact-feature .picker-trigger:focus-visible,
.section-contact-feature .picker-trigger.is-open {
  outline: none;
  box-shadow: 0 0 0 2px rgba(82 127 220 / 0.28);
}

.section-contact-feature .picker-trigger-text {
  overflow: hidden;
  color: rgb(180 195 236);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-contact-feature .picker-trigger-text.has-value {
  color: rgb(86 105 170);
}

.section-contact-feature .picker-trigger-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.section-contact-feature .picker-trigger-icon-calendar::before,
.section-contact-feature .picker-trigger-icon-clock::before,
.section-contact-feature .picker-trigger-icon-clock::after {
  content: "";
  position: absolute;
}

.section-contact-feature .picker-trigger-icon-calendar::before {
  inset: 1px;
  border: 2px solid rgb(138 159 223);
  border-top-width: 5px;
  border-radius: 4px;
}

.section-contact-feature .picker-trigger-icon-clock::before {
  inset: 0;
  border: 2px solid rgb(138 159 223);
  border-radius: 50%;
}

.section-contact-feature .picker-trigger-icon-clock::after {
  left: 6px;
  top: 2px;
  width: 2px;
  height: 5px;
  background: rgb(138 159 223);
  box-shadow: 2px 4px 0 -0.5px rgb(138 159 223);
  transform-origin: bottom center;
}

.section-contact-feature .picker-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 12;
  width: min(286px, calc(100vw - 36px));
}

.section-contact-feature .picker-popover-inner {
  padding: 12px;
  background: rgb(255 255 255);
  border: 1px solid rgba(146 170 236 / 0.42);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(46 99 219 / 0.18);
}

.section-contact-feature .picker-popover-head,
.section-contact-feature .picker-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.section-contact-feature .picker-popover-head {
  margin-bottom: 10px;
}

.section-contact-feature .picker-popover-head strong,
.section-contact-feature .picker-toolbar strong {
  color: rgb(46 99 219);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-contact-feature .picker-close,
.section-contact-feature .picker-nav,
.section-contact-feature .picker-action {
  border: 0;
  background: rgba(236 241 255 / 0.96);
  color: rgb(86 105 170);
  cursor: pointer;
}

.section-contact-feature .picker-close,
.section-contact-feature .picker-nav {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.section-contact-feature .picker-weekdays {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.section-contact-feature .picker-weekdays span {
  text-align: center;
  color: rgb(153 171 228);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-contact-feature .picker-days {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.section-contact-feature .picker-day {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background: rgb(245 248 255);
  color: rgb(86 105 170);
  font-size: 0.74rem;
  cursor: pointer;
}

.section-contact-feature .picker-day:disabled,
.section-contact-feature .picker-day-empty {
  background: transparent;
  color: rgba(146 160 201 / 0.48);
  cursor: default;
}

.section-contact-feature .picker-day.is-selected,
.section-contact-feature .picker-time-slot.is-selected {
  background: rgb(46 99 219);
  color: rgb(255 255 255);
}

.section-contact-feature .picker-actions {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.section-contact-feature .picker-action {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.section-contact-feature .picker-panel-time {
  max-height: 248px;
  overflow: auto;
  padding-right: 2px;
}

.section-contact-feature .picker-time-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.section-contact-feature .picker-time-slot {
  min-height: 32px;
  border: 0;
  border-radius: 10px;
  background: rgb(245 248 255);
  color: rgb(86 105 170);
  font-size: 0.72rem;
  cursor: pointer;
}

.section-contact-feature .form-actions {
  margin-top: 4px;
  align-items: center;
}

.section-contact-feature .contact-form-card .button {
  min-width: 88px;
  min-height: 32px;
  padding: 7px 16px;
  border-radius: 9px;
  font-size: 0.76rem;
  box-shadow: none;
  background: rgb(46 99 219);
}

.section-contact-feature .form-message {
  text-align: center;
  font-size: 0.76rem;
}

.section-legal-body {
  padding-top: 22px;
}

.legal-article,
.legal-side {
  display: grid;
  gap: 18px;
}

.legal-side {
  align-self: start;
  position: sticky;
  top: 108px;
}

.legal-article {
  padding: 30px;
}

.legal-section + .legal-section {
  margin-top: 24px;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: rgb(24 84 210);
  font-size: 1.6rem;
  line-height: 1.14;
}

.legal-article p {
  margin: 0;
  line-height: 1.8;
}

.legal-article p + p,
.legal-article ul + p {
  margin-top: 16px;
}

.legal-list {
  margin: 16px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.legal-side-card-soft {
  background: linear-gradient(180deg, rgba(227 237 255 / 0.94), rgba(255 255 255 / 0.92));
}

.legal-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.legal-links a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(82 127 220 / 0.08);
  color: rgb(24 84 210);
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible,
.legal-links a.is-current {
  background: rgba(82 127 220 / 0.18);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-bottom-links a,
.footer-cookie-button {
  font-size: 0.84rem;
  color: rgba(197 212 241 / 0.82);
}

.footer-cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible,
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--color-text);
}

.cookie-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(24 84 210), rgb(91 123 221));
  box-shadow: 0 18px 42px rgba(24 84 210 / 0.26);
  color: #fff;
  cursor: pointer;
}

.cookie-fab svg {
  width: 30px;
  height: 30px;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(7 17 33 / 0.52);
  backdrop-filter: blur(8px);
}

.cookie-modal-backdrop[hidden],
.cookie-modal[hidden],
.cookie-modal-view[hidden] {
  display: none !important;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.cookie-modal-card {
  width: min(680px, 100%);
  padding: 28px;
  border-radius: 30px;
  background: rgba(255 255 255 / 0.97);
  box-shadow: var(--shadow-xl);
  color: var(--color-ink);
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(82 127 220 / 0.1);
  color: rgb(24 84 210);
  font-size: 1.3rem;
  cursor: pointer;
}

.cookie-modal h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  color: rgb(24 84 210);
}

.cookie-modal p {
  margin: 16px 0 0;
  color: rgba(19 19 64 / 0.78);
  line-height: 1.7;
}

.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-option-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.cookie-option {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  border-radius: 18px;
  background: rgba(82 127 220 / 0.08);
}

.cookie-option strong {
  display: block;
  margin-bottom: 6px;
  color: rgb(19 19 64);
}

.cookie-option span {
  display: block;
  color: rgba(19 19 64 / 0.76);
  line-height: 1.58;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: rgb(24 84 210);
}

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

  .section-contact-feature .contact-feature-grid,
  .legal-layout,
  .inner-hero-grid,
  .inner-split {
    grid-template-columns: 1fr;
  }

  .legal-side {
    position: static;
  }
}

@media (max-width: 920px) {
  .inner-hero {
    padding: 118px 0 56px;
  }

  .inner-hero-copy h1 {
    font-size: clamp(2.6rem, 9vw, 4.4rem);
  }

  .inner-hero-side {
    min-height: 280px;
  }

  .inner-hero-figure {
    position: relative;
    width: min(100%, 320px);
    margin: 18px auto 0;
    right: auto;
    bottom: auto;
  }

  .inner-floating-chip {
    left: 12px;
  }

  .section-contact-feature .contact-feature-grid {
    gap: 18px;
  }

  .section-contact-feature .contact-showcase {
    min-height: 360px;
  }

  .section-contact-feature .contact-triangles {
    left: 100px;
    top: 12px;
  }

  .section-contact-feature .contact-triangle {
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 32px;
  }

  .section-contact-feature .contact-back-circle {
    left: 28px;
    top: 74px;
    width: 250px;
    height: 250px;
  }

  .section-contact-feature .contact-photo-frame {
    left: 12px;
    top: 58px;
    width: min(100%, 270px);
    border-width: 12px;
  }

  .section-contact-feature .contact-bars {
    left: 108px;
    gap: 10px;
  }

  .section-contact-feature .contact-bars span {
    width: 220px;
    height: 10px;
  }

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

@media (max-width: 640px) {
  .inner-hero {
    padding: 104px 0 46px;
  }

  .inner-hero-copy h1 {
    font-size: 2.08rem;
  }

  .inner-feature-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-panel,
  .detail-panel-light,
  .inner-feature-card,
  .inner-side-card,
  .legal-article,
  .legal-side-card,
  .cookie-modal-card {
    padding: 20px;
    border-radius: 22px;
  }

  .inner-orbit-circle {
    width: 120px;
    height: 120px;
    right: 18px;
    top: 54px;
  }

  .inner-orbit-triangle {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 20px;
  }

  .inner-orbit-bars {
    right: 0;
    bottom: 14px;
    gap: 7px;
  }

  .inner-orbit-bars span {
    width: 76px;
    height: 7px;
  }

  .section-contact-feature .contact-title {
    font-size: 2.02rem;
  }

  .section-contact-feature .contact-showcase {
    min-height: 246px;
  }

  .section-contact-feature .contact-triangles {
    left: 72px;
    top: 2px;
    gap: 8px;
  }

  .section-contact-feature .contact-triangle {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 22px;
  }

  .section-contact-feature .contact-back-circle {
    left: 16px;
    top: 48px;
    width: 164px;
    height: 164px;
  }

  .section-contact-feature .contact-photo-frame {
    left: 6px;
    top: 34px;
    width: 172px;
    border-width: 10px;
  }

  .section-contact-feature .contact-bars {
    left: 88px;
    bottom: 0;
    gap: 8px;
  }

  .section-contact-feature .contact-bars span {
    width: 156px;
    height: 8px;
  }

  .footer-bottom-links {
    gap: 10px;
  }

  .cookie-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .cookie-modal {
    padding: 14px;
  }

  .cookie-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-contact-feature .contact-form {
    gap: 8px;
  }

  .section-contact-feature .field-row.three-up {
    grid-template-columns: 1fr 0.78fr 0.78fr;
  }

  .section-contact-feature .field span {
    font-size: 0.48rem;
  }

  .section-contact-feature .field input {
    min-height: 22px;
    padding: 4px 8px;
    border-radius: 8px;
  }

  .section-contact-feature .field input::placeholder {
    font-size: 0.5rem;
  }

  .section-contact-feature .contact-form-card .button {
    min-width: 60px;
    min-height: 22px;
    padding: 4px 12px;
    font-size: 0.55rem;
    border-radius: 7px;
  }

  .section-contact-feature .picker-trigger {
    min-height: 22px;
    padding: 4px 24px 4px 8px;
    border-radius: 8px;
  }

  .section-contact-feature .picker-trigger-text,
  .section-contact-feature .picker-time-slot,
  .section-contact-feature .picker-day,
  .section-contact-feature .picker-weekdays span,
  .section-contact-feature .picker-action,
  .section-contact-feature .picker-popover-head strong,
  .section-contact-feature .picker-toolbar strong {
    font-size: 0.56rem;
  }

  .section-contact-feature .picker-trigger-icon {
    right: 7px;
    width: 12px;
    height: 12px;
  }

  .section-contact-feature .picker-popover {
    width: min(240px, calc(100vw - 28px));
  }

  .section-contact-feature .picker-popover-inner {
    padding: 10px;
    border-radius: 12px;
  }

  .section-contact-feature .picker-day {
    min-height: 24px;
    border-radius: 7px;
  }

  .section-contact-feature .picker-time-slot {
    min-height: 24px;
    border-radius: 8px;
  }
}

/* Internal pages share the same header/footer chrome as the homepage */
:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: none;
  background: rgb(46 99 219);
  border-bottom: 0;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .nav-shell {
  width: min(1180px, calc(100% - 20px));
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .brand img {
  width: 92px;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .site-footer {
  padding: 28px 0 20px;
  background: rgb(24 25 83);
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-grid {
  padding-top: 0;
  grid-template-columns: 1.55fr 0.9fr 0.9fr 0.95fr 1.1fr;
  gap: 16px;
  border-top: 0;
  align-items: start;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-brand img {
  width: 128px;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-brand p {
  margin-top: 6px;
  font-size: 0.64rem;
  color: rgb(163 174 222);
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column h3 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--color-orange);
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column li,
:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column a {
  color: rgb(255 255 255);
  font-size: 0.74rem;
  line-height: 1.4;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column ul {
  gap: 4px;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column-social {
  justify-self: start;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column-social h3 {
  margin-bottom: 10px;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-socials {
  gap: 8px;
  justify-content: flex-start;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-socials a {
  width: 22px;
  height: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-socials img {
  width: 16px;
  height: 16px;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-certifications {
  margin-top: 14px;
  margin-left: 0;
  width: 122px;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-bottom {
  margin-top: 10px;
  text-align: right;
}

:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-bottom p,
:is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-bottom-links a {
  color: rgb(255 255 255);
  font-size: 0.66rem;
}

@media (max-width: 920px) {
  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .site-header {
    position: fixed;
  }

  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 8px;
  }

  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-brand img {
    width: 86px;
  }

  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column h3 {
    font-size: 0.58rem;
  }

  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column li,
  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-column a {
    font-size: 0.39rem;
  }

  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-certifications {
    width: 70px;
  }

  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-bottom p,
  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-brand p {
    font-size: 0.36rem;
  }

  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-socials {
    gap: 4px;
  }

  :is(.page-solutions, .page-prime, .page-local_office, .page-flex, .page-insights, .page-book_online, .page-opportunities, .page-privacy, .page-terms, .page-cookies) .footer-socials a {
    width: 18px;
    height: 18px;
  }
}

.investment-calculator-root {
  position: relative;
  z-index: 74;
}

.investment-calculator-fab {
  --investment-fab-peek: 72px;
  position: fixed;
  top: 40vh;
  right: 0;
  z-index: 74;
  min-height: 54px;
  padding: 0 20px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(135deg, rgb(255 102 51), rgb(255 77 58));
  box-shadow: 0 20px 40px rgba(255 102 51 / 0.28);
  color: #fff;
  cursor: pointer;
  transform: translate3d(calc(100% - var(--investment-fab-peek)), -50%, 0);
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 180ms ease;
  will-change: transform;
}

.investment-calculator-fab:is(:hover, :focus-visible) {
  transform: translate3d(0, -50%, 0);
  box-shadow: 0 24px 44px rgba(255 102 51 / 0.34);
}

.investment-calculator-fab:focus-visible {
  outline: 3px solid rgba(255 255 255 / 0.92);
  outline-offset: -3px;
}

.investment-calculator-fab svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.investment-calculator-fab span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.investment-calculator-root.is-open .investment-calculator-fab {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(100% + 20px), -50%, 0);
}

.investment-calculator-backdrop {
  position: fixed;
  inset: 0;
  z-index: 74;
  background: rgba(7 17 33 / 0.62);
  backdrop-filter: blur(8px);
}

.investment-calculator-drawer[hidden],
.investment-calculator-backdrop[hidden] {
  display: none !important;
}

.investment-calculator-drawer {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: flex;
  justify-content: flex-end;
  padding-left: 56px;
}

.investment-calculator-shell {
  width: min(1040px, calc(100vw - 56px));
  height: 100%;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  pointer-events: auto;
}

.investment-calculator-rail {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, rgba(9 21 43 / 0.98), rgba(8 13 24 / 0.98));
}

.investment-calculator-close {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 18px 0 0 18px;
  background: rgba(255 214 219 / 0.94);
  color: rgb(9 21 43);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.investment-calculator-panel {
  min-height: 0;
  display: flex;
  overflow: hidden;
  background: rgba(255 255 255 / 0.98);
  color: var(--color-ink);
  box-shadow: -28px 0 70px rgba(7 17 33 / 0.24);
}

.investment-calculator-scroll {
  min-height: 0;
  flex: 1 1 auto;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.investment-calculator-header {
  padding: 30px 42px 10px;
}

.investment-calculator-title-bar {
  width: min(100%, 660px);
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(255 102 51), rgb(255 70 50));
  color: #fff;
}

.investment-calculator-title-bar h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
}

.investment-calculator-header p {
  max-width: 48rem;
  margin: 18px 0 0;
  color: rgba(19 19 64 / 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

.investment-calculator-intro {
  display: grid;
}

.investment-calculator-intro[hidden] {
  display: none !important;
}

.investment-calculator-meta {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.investment-calculator-step-count {
  color: rgb(24 84 210);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.investment-calculator-progress {
  width: min(100%, 420px);
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(82 127 220 / 0.16);
}

.investment-calculator-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-orange), rgb(255 140 77));
  transition: width 220ms ease;
}

.investment-calculator-form,
.investment-calculator-success {
  min-height: 0;
}

.investment-calculator-form {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.investment-calculator-body {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 8px 42px 32px;
}

.investment-calculator-form[hidden],
.investment-calculator-success[hidden],
.investment-calculator-step[hidden] {
  display: none !important;
}

.investment-calculator-step {
  display: none;
}

.investment-calculator-step.is-active {
  min-height: 100%;
  display: grid;
  gap: 28px;
  align-content: start;
}

.investment-field-group,
.investment-field {
  display: grid;
  gap: 14px;
}

.investment-field-group h3,
.investment-field span {
  margin: 0;
  color: rgba(19 19 64 / 0.9);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.investment-field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.investment-field-note {
  margin: -2px 0 0;
  color: rgba(19 19 64 / 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.investment-field-note a {
  color: rgb(255 102 51);
  font-weight: 700;
}

.investment-field-group input:not([type="radio"]):not([type="checkbox"]):not([type="range"]),
.investment-field-group textarea,
.investment-field-group select,
.investment-field input,
.investment-field select {
  min-height: 56px;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(19 19 64 / 0.18);
  border-radius: 16px;
  background: rgba(255 255 255 / 0.98);
  color: var(--color-ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.investment-field-group textarea {
  min-height: 240px;
  resize: vertical;
}

.investment-field-group input:focus,
.investment-field-group textarea:focus,
.investment-field-group select:focus,
.investment-field input:focus,
.investment-field select:focus {
  outline: none;
  border-color: rgba(255 102 51 / 0.72);
  box-shadow: 0 0 0 4px rgba(255 102 51 / 0.12);
}

.investment-field-group input::placeholder,
.investment-field-group textarea::placeholder,
.investment-field input::placeholder {
  color: rgba(19 19 64 / 0.42);
}

.investment-field-group input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.investment-field-group input[type="number"]::-webkit-outer-spin-button,
.investment-field-group input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.investment-range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(19 19 64 / 0.72);
  font-size: 0.92rem;
}

.investment-range-head output {
  min-width: 52px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(24 84 210 / 0.08);
  color: rgb(24 84 210);
  font-weight: 700;
}

.investment-range-input {
  width: 100%;
  accent-color: var(--color-orange);
}

.investment-range-scale {
  display: flex;
  justify-content: space-between;
  color: rgba(19 19 64 / 0.7);
  font-size: 0.9rem;
  font-style: italic;
}

.investment-seniority-grid {
  display: grid;
  gap: 16px;
}

.investment-seniority-grid-head,
.investment-seniority-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 240px);
  gap: 20px;
  align-items: center;
}

.investment-seniority-grid-head span:last-child {
  color: rgba(19 19 64 / 0.68);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.investment-seniority-row span {
  font-size: 1rem;
}

.investment-total-row {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(19 19 64 / 0.12);
  border-radius: 18px;
  background: rgba(24 84 210 / 0.05);
  color: rgba(19 19 64 / 0.84);
}

.investment-total-row span {
  font-size: 1rem;
  font-weight: 700;
}

.investment-total-row output {
  min-width: 52px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255 255 255 / 0.94);
  color: rgb(24 84 210);
  font-size: 1rem;
  font-weight: 800;
}

.investment-choice-grid,
.investment-choice-stack,
.investment-checkbox-grid,
.investment-name-grid,
.investment-phone-grid {
  display: grid;
  gap: 16px;
}

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

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

.investment-choice-stack {
  grid-template-columns: 1fr;
}

.investment-choice-stack .investment-choice-card {
  align-items: flex-start;
}

.investment-choice-stack .investment-choice-card input {
  margin-top: 2px;
}

.investment-checkbox-grid,
.investment-name-grid,
.investment-phone-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.investment-choice-card,
.investment-checkbox-card {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(19 19 64 / 0.16);
  border-radius: 18px;
  background: rgba(247 249 253 / 0.96);
  color: rgba(19 19 64 / 0.86);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.investment-choice-card input,
.investment-checkbox-card input,
.investment-matrix-choice input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-orange);
}

.investment-choice-card span,
.investment-checkbox-card span {
  font-size: 1rem;
  line-height: 1.45;
}

.investment-choice-card:has(input:checked),
.investment-checkbox-card:has(input:checked) {
  border-color: rgba(255 102 51 / 0.74);
  background: rgba(255 102 51 / 0.08);
  box-shadow: 0 18px 34px rgba(255 102 51 / 0.12);
  transform: translateY(-1px);
}

.investment-conditional {
  margin-top: 22px;
}

.investment-conditional[hidden] {
  display: none !important;
}

.investment-contact-stack {
  display: grid;
  gap: 28px;
}

.investment-matrix-scroll {
  max-height: min(58vh, 760px);
  overflow: auto;
  border: 1px solid rgba(19 19 64 / 0.12);
  border-radius: 22px;
  background: rgba(248 251 255 / 0.96);
}

.investment-matrix {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.investment-matrix th,
.investment-matrix td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(19 19 64 / 0.08);
  text-align: center;
}

.investment-matrix thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgb(248 251 255);
  color: rgba(19 19 64 / 0.68);
  font-size: 0.92rem;
  font-weight: 800;
}

.investment-matrix tbody th {
  width: 38%;
  color: rgba(19 19 64 / 0.88);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.investment-matrix tbody tr:last-child th,
.investment-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.investment-matrix-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.investment-calculator-footer {
  position: sticky;
  bottom: 0;
  padding: 20px 42px 30px;
  background: linear-gradient(180deg, rgba(255 255 255 / 0), rgba(255 255 255 / 0.94) 22%, rgba(255 255 255 / 1) 46%);
}

.investment-calculator-feedback {
  margin: 0 0 14px;
  color: rgb(176 62 30);
  font-size: 0.95rem;
}

.investment-calculator-feedback.is-error {
  color: rgb(176 62 30);
}

.investment-calculator-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.investment-calculator-actions [data-investment-prev][hidden],
.investment-calculator-actions [data-investment-next][hidden],
.investment-calculator-actions [data-investment-submit][hidden] {
  display: none !important;
}

.investment-nav-button {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255 102 51 / 0.86);
  border-radius: 12px;
  background: rgba(255 255 255 / 0.98);
  color: rgb(255 102 51);
  font-size: 1.25rem;
  cursor: pointer;
}

.investment-nav-button:hover,
.investment-nav-button:focus-visible,
.investment-submit-button:hover,
.investment-submit-button:focus-visible {
  transform: translateY(-1px);
}

.investment-submit-button {
  min-width: 148px;
  margin-left: auto;
}

.investment-nav-button-edge {
  margin-left: auto;
}

.investment-field-group.has-error input:not([type="radio"]):not([type="checkbox"]):not([type="range"]),
.investment-field-group.has-error textarea,
.investment-field-group.has-error select,
.investment-field.has-error input,
.investment-field.has-error select,
.investment-seniority-row.has-error input {
  border-color: rgba(176 62 30 / 0.9);
  box-shadow: 0 0 0 4px rgba(176 62 30 / 0.12);
  background: rgba(255 246 243 / 0.98);
}

.investment-field-group.has-error .investment-choice-card,
.investment-field-group.has-error .investment-checkbox-card,
.investment-field-group.has-error .investment-matrix-scroll {
  border-color: rgba(176 62 30 / 0.56);
}

.investment-field-error {
  margin: -4px 0 0;
  color: rgb(176 62 30);
  font-size: 0.9rem;
  line-height: 1.45;
}

.investment-calculator-success {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 8px 42px 42px;
}

.investment-success-card {
  padding: 30px;
  border: 1px solid rgba(82 127 220 / 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255 255 255 / 0.98), rgba(231 240 253 / 0.98));
  box-shadow: 0 24px 54px rgba(35 67 133 / 0.12);
}

.investment-success-card h3 {
  margin: 0;
  color: rgb(24 84 210);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.investment-success-card p {
  margin: 16px 0 0;
  color: rgba(19 19 64 / 0.8);
  line-height: 1.7;
}

.investment-success-summary {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.investment-success-summary-compact {
  margin-top: 14px;
}

.investment-success-metric {
  padding: 18px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(82 127 220 / 0.14);
  border-radius: 18px;
  background: rgba(255 255 255 / 0.84);
}

.investment-success-metric span {
  color: rgba(19 19 64 / 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.investment-success-metric strong {
  color: rgb(24 84 210);
  font-size: 1.08rem;
  line-height: 1.35;
}

.investment-success-breakdown {
  margin-top: 24px;
}

.investment-success-breakdown h4 {
  margin: 0;
  color: rgba(19 19 64 / 0.82);
  font-size: 1rem;
  line-height: 1.3;
}

.investment-success-note[hidden] {
  display: none !important;
}

.investment-success-note {
  margin: 18px 0 0;
  color: rgba(19 19 64 / 0.64);
  font-size: 0.9rem;
  line-height: 1.55;
}

.investment-success-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.investment-success-actions [data-investment-restart] {
  color: rgb(255 255 255);
  background: linear-gradient(135deg, rgb(46 99 219), rgb(82 127 220));
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(46 99 219 / 0.24);
}

@media (max-width: 920px) {
  .investment-calculator-drawer {
    padding-left: 18px;
  }

  .investment-calculator-shell {
    width: calc(100vw - 18px);
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .investment-calculator-close {
    width: 44px;
    height: 44px;
    border-radius: 14px 0 0 14px;
    font-size: 1.7rem;
  }

  .investment-calculator-header,
  .investment-calculator-body,
  .investment-calculator-footer,
  .investment-calculator-success {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .investment-seniority-grid-head,
  .investment-seniority-row {
    grid-template-columns: 1fr;
  }

  .investment-success-summary {
    grid-template-columns: 1fr;
  }

  .investment-seniority-grid-head span:first-child {
    display: none;
  }

  .investment-seniority-grid-head span:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .investment-calculator-panel {
    max-height: 100dvh;
  }

  .investment-calculator-scroll {
    max-height: 100dvh;
  }

  .investment-calculator-fab {
    --investment-fab-peek: 62px;
    top: 44vh;
    min-height: 46px;
    padding: 0 14px 0 12px;
    border-radius: 14px 0 0 14px;
  }

  .investment-calculator-fab span {
    font-size: 0.9rem;
  }

  .investment-calculator-fab svg {
    width: 18px;
    height: 18px;
  }

  .investment-calculator-drawer {
    padding-left: 10px;
  }

  .investment-calculator-shell {
    width: calc(100vw - 10px);
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .investment-calculator-rail {
    padding-top: 12px;
  }

  .investment-calculator-close {
    width: 36px;
    height: 36px;
    border-radius: 12px 0 0 12px;
    font-size: 1.4rem;
  }

  .investment-calculator-header,
  .investment-calculator-body,
  .investment-calculator-footer,
  .investment-calculator-success {
    padding-left: 20px;
    padding-right: 20px;
  }

  .investment-calculator-header {
    padding-top: 20px;
  }

  .investment-calculator-body {
    padding-bottom: 118px;
  }

  .investment-calculator-title-bar {
    padding: 14px 16px;
  }

  .investment-calculator-title-bar h2 {
    font-size: 1.7rem;
  }

  .investment-calculator-header p {
    font-size: 0.95rem;
  }

  .investment-field-group h3,
  .investment-field span {
    font-size: 1.08rem;
  }

  .investment-choice-grid,
  .investment-choice-grid-compact,
  .investment-checkbox-grid,
  .investment-name-grid,
  .investment-phone-grid {
    grid-template-columns: 1fr;
  }

  .investment-choice-card,
  .investment-checkbox-card {
    min-height: 62px;
    padding: 15px 16px;
  }

  .investment-field-group input:not([type="radio"]):not([type="checkbox"]):not([type="range"]),
  .investment-field-group textarea,
  .investment-field-group select,
  .investment-field input,
  .investment-field select {
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .investment-field-group textarea {
    min-height: 180px;
  }

  .investment-matrix-scroll {
    max-height: min(50vh, 520px);
  }

  .investment-calculator-footer {
    padding-bottom: 22px;
  }

  .investment-calculator-actions {
    gap: 12px;
  }

  .investment-nav-button {
    min-width: 42px;
    min-height: 42px;
    border-radius: 10px;
  }

  .investment-submit-button {
    min-width: 118px;
  }

  .investment-success-card {
    padding: 22px;
    border-radius: 22px;
  }
}

.header-cta {
  margin-left: 8px;
  white-space: nowrap;
}

.footer-descriptor {
  margin-top: 10px;
  max-width: 26ch;
  color: rgba(197 212 241 / 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-title-plain {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
}

.home-section-head {
  max-width: 760px;
  display: grid;
  gap: 10px;
}

.home-section-head.center {
  margin-inline: auto;
  text-align: center;
}

.home-section-head h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 0.98;
  color: rgb(46 99 219);
  text-transform: none;
}

.home-section-head .section-intro {
  margin: 0;
  max-width: 62ch;
  color: rgb(113 136 204);
  font-size: 1rem;
  line-height: 1.6;
}

.home-trust-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-trust-card,
.home-capability-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(46 99 219 / 0.08), rgba(82 127 220 / 0.16));
  border: 1px solid rgba(82 127 220 / 0.14);
}

.home-trust-card p,
.home-capability-card p {
  margin: 0;
  color: rgb(31 31 90);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.home-split-accent {
  background:
    radial-gradient(circle at top right, rgba(255 102 51 / 0.12), transparent 30%),
    linear-gradient(180deg, rgba(82 127 220 / 0.08), rgba(82 127 220 / 0.16));
}

.home-capability-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 921px) {
  .site-header .desktop-nav {
    display: flex;
  }

  .site-header .menu-toggle,
  .site-header .mobile-panel {
    display: none;
  }
}

@media (max-width: 920px) {
  .header-lang-switch,
  .header-cta {
    display: none;
  }

  .home-trust-grid,
  .home-capability-grid,
  .home-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-trust-grid,
  .home-capability-grid,
  .home-split-grid {
    grid-template-columns: 1fr;
  }
}

body.page-home {
  color: rgb(46 99 219);
  background: rgb(255 255 255);
}

.page-home .hero-content {
  gap: 28px;
}

.page-home .hero-copy {
  max-width: 700px;
  display: grid;
  gap: 16px;
}

.page-home .hero-eyebrow {
  margin: 0;
  max-width: 34ch;
  color: rgba(255 255 255 / 0.86);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .hero-title {
  max-width: none;
  font-size: clamp(2.2rem, 6vw, 5rem);
  text-transform: none;
}

.page-home .hero-body {
  margin: 0;
  max-width: 44ch;
  color: rgba(255 255 255 / 0.92);
  font-size: 1rem;
  line-height: 1.6;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .section-home-trust {
  padding-top: 30px;
  padding-bottom: 24px;
}

.page-home .section-home-story {
  padding-top: 26px;
}

.page-home .section-contact .contact-title-plain {
  color: rgb(46 99 219);
}

@media (max-width: 920px) {
  .page-home .hero-content {
    gap: 12px;
  }

  .page-home .hero-actions {
    width: min(100%, 420px);
  }

  .page-home .hero-actions .button {
    flex: 1 1 180px;
  }
}

@media (max-width: 640px) {
  .page-home .hero-copy {
    gap: 12px;
  }

  .page-home .hero-eyebrow {
    font-size: 0.72rem;
  }

  .page-home .hero-body {
    font-size: 0.88rem;
  }

  .page-home .hero-actions {
    gap: 8px;
  }
}
