:root {
  --page: #eef4f8;
  --page-2: #f8fbfd;
  --paper: #ffffff;
  --ink: #0d1826;
  --ink-2: #152940;
  --muted: #667487;
  --soft: #e7eef5;
  --line: rgba(15, 42, 74, 0.1);
  --line-strong: rgba(15, 42, 74, 0.16);
  --navy: #0f2a4a;
  --navy-2: #071a30;
  --blue: #1884d3;
  --sky: #e8f5ff;
  --gold: #d6a84f;
  --green: #16a34a;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 60px rgba(15, 42, 74, 0.1);
  --shadow-card: 0 22px 70px rgba(15, 42, 74, 0.12);
  --shadow-dark: 0 30px 90px rgba(4, 14, 26, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(24, 132, 211, 0.14), transparent 28rem),
    radial-gradient(circle at 96% 10%, rgba(214, 168, 79, 0.12), transparent 26rem),
    linear-gradient(180deg, #fbfdff 0%, var(--page) 48%, #f7fafc 100%);
  font-family: Inter, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", Arial, sans-serif;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(15, 42, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 42, 74, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
  content: "";
  pointer-events: none;
}

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

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

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

.icon-svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

::selection {
  color: #fff;
  background: var(--navy);
}

section {
  scroll-margin-top: 112px;
}

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

.fixed,
.site-header {
  position: fixed;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(24, 132, 211, 0.24);
  outline-offset: 4px;
}

.site-header {
  inset-inline: 0;
  top: 0;
  border-bottom: 1px solid rgba(15, 42, 74, 0.08);
  background: rgba(248, 251, 253, 0.76);
  box-shadow: 0 10px 34px rgba(15, 42, 74, 0.05);
  backdrop-filter: saturate(170%) blur(24px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header--solid {
  border-color: rgba(15, 42, 74, 0.12);
  background: rgba(248, 251, 253, 0.9);
  box-shadow: 0 18px 54px rgba(15, 42, 74, 0.1);
}

.nav-shell {
  display: grid;
  height: 76px;
  align-items: center;
  gap: 18px;
  grid-template-columns: 252px 1fr auto;
}

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

.brand-mark {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(15, 42, 74, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.brand-lockup strong {
  display: block;
  overflow: hidden;
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-lockup small {
  display: block;
  margin-top: 3px;
  color: #667487;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: inline-flex;
  justify-self: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(15, 42, 74, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(15, 42, 74, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.desktop-nav a,
.mobile-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #495b70;
  font-size: 13px;
  font-weight: 900;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.desktop-nav a {
  padding: 0 15px;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--navy);
  background: rgba(15, 42, 74, 0.06);
}

.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(15, 42, 74, 0.2);
}

.nav-consult {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid rgba(15, 42, 74, 0.14);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #163a61, var(--navy));
  box-shadow: 0 16px 36px rgba(15, 42, 74, 0.2);
  font-size: 14px;
  font-weight: 950;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(15, 42, 74, 0.08);
  background: rgba(248, 251, 253, 0.92);
  backdrop-filter: blur(20px);
}

.mobile-nav .container {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-block: 9px;
  scrollbar-width: none;
}

.mobile-nav .container::-webkit-scrollbar {
  display: none;
}

.mobile-nav a {
  min-width: max-content;
  padding: 0 14px;
  border: 1px solid rgba(15, 42, 74, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.primary-button {
  color: #fff;
  background: linear-gradient(180deg, #173c64, var(--navy));
  box-shadow: 0 18px 48px rgba(15, 42, 74, 0.22);
}

.ghost-button {
  color: var(--navy);
  border: 1px solid rgba(15, 42, 74, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(15, 42, 74, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.hero-luxe {
  position: relative;
  overflow: hidden;
  padding: 128px 0 44px;
}

.hero-luxe::before {
  position: absolute;
  inset: 86px auto auto 50%;
  width: min(86vw, 980px);
  height: min(70vw, 720px);
  transform: translateX(-12%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(24, 132, 211, 0.18), transparent 40%),
    radial-gradient(circle at 72% 54%, rgba(214, 168, 79, 0.13), transparent 34%);
  filter: blur(8px);
  content: "";
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  top: 104px;
  left: 50%;
  width: min(1200px, 100%);
  transform: translateX(-50%);
  color: rgba(15, 42, 74, 0.04);
  font-size: clamp(70px, 12vw, 168px);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
  text-align: center;
}

.hero-luxe-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.82fr);
  min-height: 668px;
  padding: clamp(34px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46) 52%, rgba(236, 246, 255, 0.58)),
    radial-gradient(circle at 80% 18%, rgba(24, 132, 211, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.2));
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(150%);
}

.hero-luxe-grid::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 42, 74, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 42, 74, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, transparent, #000 26%, #000 76%, transparent);
  content: "";
  pointer-events: none;
}

.hero-luxe-grid::after {
  position: absolute;
  right: -10%;
  bottom: -26%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(15, 42, 74, 0.13), transparent 62%),
    radial-gradient(circle at 38% 40%, rgba(24, 132, 211, 0.2), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero-luxe-copy,
.advisor-board {
  position: relative;
  z-index: 1;
}

.hero-luxe-copy {
  display: grid;
  justify-items: start;
}

.eyebrow,
.section-intro > p,
.advisor-focus > p,
.service-title-row p,
.contact-form > p,
.contact-head p,
.contact-direct p,
.footer-hero > div > p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-luxe-copy h1 {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero-luxe-copy h1 span {
  display: block;
}

.hero-luxe-copy h1 .hero-title-line {
  color: #253b52;
  white-space: nowrap;
}

.hero-lead {
  max-width: 760px;
  margin: 25px 0 0;
  color: #536376;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.82;
}

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

.advisor-board {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 70px rgba(15, 42, 74, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(150%);
}

.advisor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 8px 16px;
}

.advisor-head span {
  color: #7b8ca0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.advisor-head strong {
  color: var(--navy);
  font-weight: 950;
}

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

.advisor-choice button,
.solution-cards button {
  border: 1px solid rgba(15, 42, 74, 0.08);
  border-radius: 16px;
  color: #536376;
  background: rgba(246, 250, 253, 0.82);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.advisor-choice button {
  min-height: 50px;
  font-weight: 950;
}

.advisor-choice button:hover,
.advisor-choice button.is-active {
  color: #fff;
  border-color: rgba(15, 42, 74, 0.1);
  background: linear-gradient(180deg, #173c64, var(--navy));
  box-shadow: 0 12px 30px rgba(15, 42, 74, 0.16);
}

.advisor-focus {
  margin-top: 12px;
  padding: 26px;
  border: 1px solid rgba(15, 42, 74, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.86)),
    radial-gradient(circle at 100% 0%, rgba(24, 132, 211, 0.12), transparent 32%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.advisor-focus h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 950;
}

.advisor-focus > span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.advisor-focus div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.advisor-focus em {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(24, 132, 211, 0.1);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(232, 245, 255, 0.86);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.hero-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-trust span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #42566c;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(15, 42, 74, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.hero-trust svg {
  color: var(--green);
}

.proof-strip {
  padding: 26px 0 86px;
}

.proof-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article {
  padding: 28px;
  border-right: 1px solid rgba(15, 42, 74, 0.08);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid strong {
  display: block;
  color: var(--navy);
  font-size: 36px;
  font-weight: 950;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.decision-path {
  padding: 0 0 94px;
}

.decision-shell {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  grid-template-columns: 0.9fr 1.1fr;
}

.decision-copy {
  display: grid;
  align-content: center;
  min-height: 386px;
  padding: clamp(28px, 5vw, 54px);
}

.decision-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.decision-copy h2 {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.06;
}

.decision-copy span {
  display: block;
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.decision-steps {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: rgba(15, 42, 74, 0.08);
}

.decision-steps article {
  display: grid;
  align-content: center;
  min-height: 128px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(16px);
}

.decision-steps strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.decision-steps h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
}

.decision-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.section {
  padding: 104px 0;
}

.service-studio {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(246, 250, 253, 0.72));
}

.section-intro {
  max-width: 900px;
  margin-bottom: 44px;
}

.section-intro h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 950;
  line-height: 1.05;
}

.section-intro > span {
  display: block;
  max-width: 790px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.section-intro-dark h2 {
  color: #fff;
}

.section-intro-dark > span {
  color: rgba(255, 255, 255, 0.66);
}

.service-studio-grid {
  display: grid;
  gap: 22px;
  align-items: start;
  grid-template-columns: 300px minmax(0, 1fr);
}

.service-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}

.service-index button {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: #40556b;
  background: transparent;
  font-weight: 950;
  text-align: left;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.service-index button:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.68);
}

.service-index button.is-active {
  color: #fff;
  background: linear-gradient(180deg, #173c64, var(--navy));
  box-shadow: 0 14px 34px rgba(15, 42, 74, 0.16);
}

.service-detail,
.contact-form,
.contact-aside {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
}

.service-detail {
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 100% 0%, rgba(24, 132, 211, 0.11), transparent 30%);
  animation: panel-in 320ms ease both;
}

.service-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.service-title-row h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 950;
}

.service-title-row a {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #173c64, var(--navy));
  font-size: 14px;
  font-weight: 950;
}

.service-summary {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.service-two-col {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  grid-template-columns: 0.85fr 1.15fr;
}

.white-panel,
.dark-panel {
  min-height: 194px;
  padding: 22px;
  border-radius: 22px;
}

.white-panel {
  border: 1px solid rgba(15, 42, 74, 0.08);
  background: rgba(255, 255, 255, 0.64);
}

.white-panel strong,
.dark-panel strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.white-panel p {
  margin: 16px 0 0;
  color: #4e6074;
  line-height: 1.78;
}

.dark-panel {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.dark-panel div {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dark-panel em {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  font-style: normal;
  font-weight: 850;
}

.service-checks {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-checks p {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 17px;
  border: 1px solid rgba(15, 42, 74, 0.08);
  border-radius: 18px;
  color: #4e6074;
  background: rgba(255, 255, 255, 0.54);
  line-height: 1.6;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.service-checks p:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 44px rgba(15, 42, 74, 0.08);
}

.service-checks svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--green);
}

.solution-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(24, 132, 211, 0.26), transparent 30rem),
    radial-gradient(circle at 92% 20%, rgba(214, 168, 79, 0.16), transparent 26rem),
    linear-gradient(145deg, #07111f 0%, #0f2a4a 100%);
}

.solution-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-cards button {
  min-height: 218px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  text-align: left;
}

.solution-cards button:hover,
.solution-cards button.is-active {
  transform: translateY(-4px);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.solution-cards span {
  color: #77d0ff;
  font-size: 13px;
  font-weight: 950;
}

.solution-cards button.is-active span,
.solution-cards button:hover span {
  color: var(--blue);
}

.solution-cards h3 {
  margin: 34px 0 0;
  font-size: 24px;
  font-weight: 950;
}

.solution-cards p {
  margin: 14px 0 0;
  line-height: 1.65;
}

.solution-detail-card {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr 1fr 1.05fr;
}

.solution-detail-card > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.solution-detail-card p {
  margin: 0 0 6px;
  color: #9bd7ff;
  font-size: 14px;
  font-weight: 950;
}

.solution-detail-card span {
  display: flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.solution-detail-card svg {
  flex: 0 0 auto;
  margin-top: 3px;
}

.solution-detail-card strong {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.6;
}

.capability-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.9fr 1.25fr;
}

.capability-lead {
  min-height: 500px;
  padding: 32px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 86% 10%, rgba(24, 132, 211, 0.22), transparent 34%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.capability-lead p {
  color: #9bd7ff;
  font-size: 14px;
  font-weight: 950;
}

.capability-lead h3 {
  margin: 34px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.08;
}

.capability-lead span {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.82;
}

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

.capability-grid article,
.industry-grid article,
.risk-grid article {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 46px rgba(15, 42, 74, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.capability-grid svg,
.risk-grid svg {
  color: var(--blue);
}

.capability-grid h4,
.risk-grid h3,
.industry-grid h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 950;
}

.capability-grid p,
.risk-grid p,
.industry-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.industry-grid article {
  min-height: 238px;
}

.industry-grid article.featured {
  grid-column: span 2;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 132, 211, 0.2), transparent 38%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-dark);
}

.industry-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.industry-grid article.featured h3,
.industry-grid article.featured p {
  color: #fff;
}

.industry-grid article.featured p {
  color: rgba(255, 255, 255, 0.68);
}

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

.risk-grid article {
  min-height: 230px;
}

.faq-layout {
  display: grid;
  gap: 26px;
}

.faq-heading {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
}

.faq-topic-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.faq-topic-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(15, 42, 74, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
}

.faq-body {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
}

.faq-guide-card {
  position: sticky;
  top: 112px;
  padding: 26px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(24, 132, 211, 0.24), transparent 38%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.faq-guide-card > p {
  margin: 0;
  color: #9bd7ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-guide-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.16;
}

.faq-guide-card div {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-guide-card span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

.faq-guide-card svg {
  flex: 0 0 auto;
  color: #9bd7ff;
}

.faq-guide-card .button {
  width: 100%;
  margin-top: 26px;
}

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

.faq-list article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 48px rgba(15, 42, 74, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-list article:hover,
.faq-list article.is-open {
  transform: translateY(-2px);
  border-color: rgba(24, 132, 211, 0.2);
  box-shadow: 0 22px 64px rgba(15, 42, 74, 0.11);
}

.faq-list button {
  display: flex;
  width: 100%;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 21px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 950;
}

.faq-list svg,
.faq-chevron {
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 180ms ease;
}

.faq-list article.is-open svg,
.faq-list article.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-list article > p {
  margin: 0;
  padding: 0 21px 21px;
  color: var(--muted);
  line-height: 1.76;
}

.contact-section {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(24, 132, 211, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(246, 250, 253, 0.5), rgba(255, 255, 255, 0.92) 44%);
}

.contact-shell {
  display: grid;
  gap: 28px;
}

.contact-head {
  display: grid;
  align-items: end;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
}

.contact-head h2 {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4.35vw, 64px);
  font-weight: 950;
  line-height: 1.06;
}

.contact-head span {
  display: block;
  max-width: 790px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.contact-head-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-head-tags span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(15, 42, 74, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

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

.contact-aside {
  display: grid;
  align-content: start;
  gap: 20px;
  min-width: 0;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(24, 132, 211, 0.24), transparent 38%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.contact-qr-row {
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: 208px minmax(0, 1fr);
}

.contact-direct h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 950;
  line-height: 1.16;
}

.contact-direct span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.qr-card {
  display: grid;
  width: 100%;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(2, 8, 23, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  text-align: center;
}

.qr-card img {
  width: 100%;
  border-radius: 15px;
}

.qr-card strong {
  font-size: 15px;
}

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

.info-line {
  display: flex;
  gap: 12px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.info-line svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #9bd7ff;
}

.info-line strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.info-line span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  align-content: start;
  min-width: 0;
  padding: clamp(26px, 4vw, 40px);
}

.contact-form h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 950;
  line-height: 1.08;
}

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

.field-label {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: #4f6174;
  font-size: 14px;
  font-weight: 850;
}

.field-control {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(15, 42, 74, 0.11);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.field-control:focus {
  border-color: rgba(24, 132, 211, 0.52);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(24, 132, 211, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.textarea {
  min-height: 146px;
  padding-block: 14px;
  resize: none;
}

.contact-form > .field-label {
  margin-top: 14px;
}

.form-button {
  width: 100%;
  margin-top: 22px;
}

.success-message {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 163, 74, 0.24);
  border-radius: 16px;
  color: var(--green);
  background: rgba(22, 163, 74, 0.1);
  font-weight: 850;
}

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

.contact-assurance span {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(15, 42, 74, 0.08);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 900;
}

.contact-assurance svg {
  flex: 0 0 auto;
  color: var(--green);
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.consult-modal:target,
.consult-modal.is-open {
  display: grid;
}

.consult-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 13, 24, 0.5);
  backdrop-filter: blur(20px) saturate(130%);
}

.consult-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 448px);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.78)),
    radial-gradient(circle at 16% 0%, rgba(24, 132, 211, 0.14), transparent 34%);
  box-shadow: 0 40px 120px rgba(5, 13, 24, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  text-align: center;
}

.consult-modal-card > p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consult-modal-card h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.12;
  font-weight: 950;
}

.consult-modal-card > span {
  display: block;
  margin: 14px auto 0;
  max-width: 340px;
  color: #667487;
  line-height: 1.72;
}

.consult-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(15, 42, 74, 0.1);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(15, 42, 74, 0.08);
}

.consult-modal-qr {
  width: min(100%, 260px);
  margin: 22px auto 16px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(15, 42, 74, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.consult-modal-qr img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.consult-modal-card strong,
.consult-modal-card em {
  display: block;
  font-style: normal;
}

.consult-modal-card strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
}

.consult-modal-card em {
  margin-top: 8px;
  color: #667487;
  font-size: 14px;
  font-weight: 750;
}

.footer {
  margin-top: 104px;
  overflow: hidden;
  padding: 62px 0 30px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(24, 132, 211, 0.24), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(214, 168, 79, 0.16), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #0f2a4a 100%);
}

.footer-shell {
  display: grid;
  gap: 24px;
}

.footer-hero {
  display: grid;
  align-items: end;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-hero h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 950;
  line-height: 1.05;
}

.footer-hero span {
  display: block;
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.78;
}

.footer-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.16fr 0.62fr 0.88fr 0.82fr;
}

.footer-brand,
.footer-column,
.footer-contact {
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.footer .brand-lockup strong {
  color: #fff;
  white-space: normal;
}

.footer .brand-lockup small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand p,
.footer-contact p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-column h3,
.footer-contact h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.footer-column a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 750;
}

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

.footer-contact img {
  width: 116px;
  margin-inline: auto;
  border: 8px solid #fff;
  border-radius: 20px;
  background: #fff;
}

.footer-contact p {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: grid;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.6;
}

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

.footer-bottom a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 42, 74, 0.08);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(15, 42, 74, 0.16);
  backdrop-filter: blur(14px);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 620ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.995);
  }

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

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 220px 1fr auto;
  }

  .desktop-nav a {
    padding: 0 10px;
    font-size: 12px;
  }

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

  .footer-contact {
    grid-column: span 3;
  }
}

@media (max-width: 1023px) {
  section {
    scroll-margin-top: 132px;
  }

  .nav-shell {
    display: flex;
    height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-luxe {
    padding-top: 132px;
  }

  .hero-luxe-grid,
  .decision-shell,
  .service-studio-grid,
  .capability-layout,
  .faq-heading,
  .faq-body,
  .contact-head,
  .contact-grid,
  .footer-hero {
    grid-template-columns: 1fr;
  }

  .service-index {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: none;
  }

  .service-index::-webkit-scrollbar {
    display: none;
  }

  .service-index button {
    min-width: max-content;
    min-height: 54px;
    padding-inline: 16px;
  }

  .proof-grid,
  .solution-cards,
  .faq-list,
  .industry-grid,
  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-guide-card {
    position: static;
  }

  .faq-topic-strip,
  .contact-head-tags {
    justify-content: flex-start;
  }

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

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

  .footer-contact {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-lockup strong {
    font-size: 16px;
  }

  .nav-consult {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 13px;
  }

  .hero-luxe {
    padding-bottom: 42px;
  }

  .hero-luxe-grid {
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .hero-luxe-copy h1 {
    font-size: 36px;
  }

  .hero-luxe-copy h1 .hero-title-line {
    white-space: normal;
  }

  .hero-lead,
  .section-intro > span,
  .contact-head span {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .advisor-board {
    padding: 12px;
    border-radius: 24px;
  }

  .advisor-choice,
  .proof-grid,
  .solution-cards,
  .service-two-col,
  .dark-panel div,
  .service-checks,
  .capability-grid,
  .industry-grid,
  .risk-grid,
  .faq-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 42, 74, 0.08);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .decision-path {
    padding-bottom: 70px;
  }

  .decision-copy {
    min-height: auto;
    padding: 24px;
  }

  .decision-copy h2,
  .section-intro h2,
  .service-title-row h3,
  .faq-guide-card h3,
  .contact-head h2,
  .contact-form h3,
  .capability-lead h3 {
    font-size: 34px;
  }

  .service-detail,
  .faq-guide-card,
  .contact-form,
  .contact-aside,
  .capability-lead {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-qr-row,
  .contact-lines,
  .contact-assurance {
    grid-template-columns: 1fr;
  }

  .qr-card {
    width: min(100%, 250px);
  }

  .service-title-row {
    display: grid;
  }

  .faq-list button {
    min-height: auto;
    padding: 18px;
  }

  .faq-list article > p {
    padding: 0 18px 18px;
  }

  .industry-grid article.featured {
    grid-column: span 1;
  }

  .consult-modal {
    padding: 16px;
  }

  .consult-modal-card {
    padding: 28px 18px 22px;
    border-radius: 26px;
  }

  .consult-modal-card h2 {
    font-size: 28px;
  }

  .consult-modal-card > span {
    font-size: 15px;
  }

  .consult-modal-qr {
    width: min(100%, 238px);
  }

  .footer {
    margin-top: 78px;
    padding-top: 56px;
  }

  .footer-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
