:root {
  --bg: #05070c;
  --bg-2: #080d15;
  --surface: #0c131f;
  --surface-2: #101b2b;
  --surface-3: #162438;
  --line: rgba(229, 238, 255, 0.13);
  --line-strong: rgba(138, 184, 255, 0.42);
  --text: #f8efe2;
  --text-soft: #c9d3e0;
  --muted: #8d9aad;
  --blue-deep: #071b61;
  --blue: #4a8bed;
  --blue-soft: #8ab8ff;
  --cream: #f6ead6;
  --mint: #67d8bd;
  --warning: #efb76f;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  --radius-pill: 999px;
  --header-height: 78px;
  --container: 1180px;
  --font-body: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Arial Black", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --font-accent: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #0a111d 0%, var(--bg) 38%, #05070c 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 3px;
}

::selection {
  background: var(--blue-soft);
  color: #07101d;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--cream);
  color: #07101d;
  padding: 0.75rem 1rem;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding: 4.5rem 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 128px, 128px 100%;
  opacity: 0.3;
}

.section > .container,
.section > .hero-shell {
  position: relative;
  z-index: 1;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0)),
    var(--bg-2);
  border-block: 1px solid rgba(229, 238, 255, 0.08);
}

.section-heading {
  position: relative;
  max-width: 720px;
}

.section-heading::before {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--blue-soft), transparent);
}

.section-heading h2,
.inquiry-panel h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p,
.inquiry-panel p {
  margin: 1rem 0 0;
  max-width: 68ch;
  color: var(--text-soft);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--blue-soft);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
}

.accent-note {
  border-left: 3px solid var(--mint);
  padding-left: 1rem;
  color: var(--cream) !important;
  font-weight: 780;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(229, 238, 255, 0.1);
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 12, 0.95);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 64px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: visible;
  border: 1px solid rgba(138, 184, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(138, 184, 255, 0.1), rgba(255, 255, 255, 0.015)),
    rgba(6, 25, 106, 0.76);
  box-shadow: 0 10px 24px rgba(7, 27, 97, 0.24);
}

.brand-mark img {
  width: 60px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.04;
}

.brand-copy strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 950;
}

.brand-copy span {
  margin-top: 0.24rem;
  color: var(--blue-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(229, 238, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(229, 238, 255, 0.12);
  background: rgba(5, 7, 12, 0.98);
  box-shadow: var(--shadow);
  transform: translateY(-115%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
  visibility: visible;
}

.site-nav a,
.legal-top-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  color: var(--text-soft);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.legal-top-nav a:hover,
.legal-top-nav a:focus-visible {
  background: rgba(74, 139, 237, 0.12);
  color: var(--text);
}

.site-nav .nav-cta {
  justify-content: center;
  margin-top: 0.4rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #91caff, #4a8bed);
  color: #06101d;
  box-shadow: 0 16px 36px rgba(74, 139, 237, 0.24);
}

.legal-top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.legal-top-nav a {
  border: 1px solid rgba(229, 238, 255, 0.16);
}

.hero {
  min-height: 735px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5.4rem 0 4.8rem;
  background: var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 184, 255, 0.5), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% 35%;
  filter: contrast(1.08) saturate(0.9);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.96) 0%, rgba(5, 7, 12, 0.76) 43%, rgba(5, 7, 12, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.16) 0%, rgba(5, 7, 12, 0.92) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(10, 19, 32, 0), rgba(5, 7, 12, 0.88));
  background-size: 92px 92px, auto;
  opacity: 0.52;
}

.hero-shell {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

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

.hero h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2.85rem;
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 780px;
}

.hero-accent {
  display: block;
  margin-top: 0.2rem;
  color: var(--blue-soft);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  margin: 1.35rem 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-inclusive {
  max-width: 650px;
  margin: 1rem 0 0;
  border-left: 3px solid var(--mint);
  padding-left: 1rem;
  color: var(--cream);
  font-weight: 760;
}

.hero-actions,
.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.86rem 1.18rem;
  font-weight: 900;
  line-height: 1.18;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #9cd2ff, var(--blue));
  color: #06101d;
  box-shadow: 0 18px 46px rgba(74, 139, 237, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 58px rgba(74, 139, 237, 0.34);
}

.button-secondary {
  border-color: rgba(229, 238, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(138, 184, 255, 0.6);
  background: rgba(74, 139, 237, 0.14);
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.45rem;
}

.hero-facts span {
  border: 1px solid rgba(229, 238, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-soft);
  padding: 0.46rem 0.78rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.offer-layout,
.process-layout,
.insights-layout {
  display: grid;
  gap: 2rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-card,
.fit-card,
.insight-card,
.timeline-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 1.15rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-soft), transparent);
  opacity: 0.58;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(74, 139, 237, 0.1), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.benefit-card span,
.insight-copy span {
  display: inline-flex;
  color: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 950;
}

.benefit-card span {
  min-width: 2.15rem;
  min-height: 2.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(138, 184, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(74, 139, 237, 0.1);
}

.benefit-card h3,
.fit-card h3,
.timeline-step h3,
.insight-copy h3 {
  margin: 0.72rem 0 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.25;
}

.benefit-card p,
.fit-card li,
.timeline-step p,
.insight-copy p {
  color: var(--text-soft);
}

.benefit-card p,
.timeline-step p,
.insight-copy p {
  margin: 0.65rem 0 0;
}

.benefit-card-large {
  border-color: rgba(100, 216, 189, 0.26);
  background:
    linear-gradient(180deg, rgba(100, 216, 189, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.benefit-card-wide {
  border-color: rgba(246, 234, 214, 0.22);
  background:
    linear-gradient(180deg, rgba(246, 234, 214, 0.075), rgba(255, 255, 255, 0.02)),
    var(--surface-2);
}

.fit-section {
  background:
    linear-gradient(135deg, rgba(13, 43, 130, 0.14), transparent 42%),
    var(--bg);
}

.fit-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.fit-card {
  padding: 1.2rem;
}

.fit-card-positive {
  border-color: rgba(100, 216, 189, 0.28);
}

.fit-card-negative {
  border-color: rgba(239, 183, 111, 0.28);
}

.fit-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 1.55rem;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(100, 216, 189, 0.1);
}

.fit-card-negative li::before {
  height: 2px;
  top: 0.76em;
  border-radius: 999px;
  background: var(--warning);
  box-shadow: none;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(138, 184, 255, 0), rgba(138, 184, 255, 0.58), rgba(138, 184, 255, 0));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
}

.timeline-step > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-deep), #173fa7);
  color: var(--cream);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(7, 27, 97, 0.34);
}

.price-section {
  background:
    linear-gradient(180deg, rgba(13, 43, 130, 0.18), rgba(5, 7, 12, 0)),
    var(--bg);
}

.price-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.price-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 234, 214, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 234, 214, 0.1), rgba(74, 139, 237, 0.08)),
    var(--surface-2);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.price-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%);
  background-size: 74px 74px;
  opacity: 0.18;
}

.price-panel > * {
  position: relative;
}

.price-panel .button {
  width: 100%;
  margin-top: 1.2rem;
}

.price-kicker {
  display: block;
  color: var(--blue-soft);
  font-weight: 950;
}

.price-value {
  display: block;
  margin-top: 0.55rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.price-value span {
  color: var(--text-soft);
  font-size: 1rem;
}

.price-panel p {
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.price-note {
  border: 1px solid rgba(100, 216, 189, 0.22);
  border-radius: var(--radius);
  background: rgba(100, 216, 189, 0.07);
  padding: 0.85rem 0.95rem;
  color: var(--cream) !important;
  font-weight: 850;
}

.price-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  color: var(--cream);
  padding-left: 1.35rem;
  font-weight: 780;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--mint);
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(229, 238, 255, 0.14);
  border-radius: var(--radius);
  background: #0a0f17;
  box-shadow: var(--shadow);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(246, 234, 214, 0.14);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 7, 12, 0.72)),
    linear-gradient(90deg, rgba(13, 43, 130, 0.22), transparent 58%);
}

.about-image picture,
.about-image img {
  width: 100%;
  height: 100%;
}

.about-image img {
  min-height: 430px;
  object-fit: cover;
  object-position: 56% 38%;
  filter: contrast(1.04) saturate(0.92);
}

.insights-section {
  background:
    linear-gradient(135deg, rgba(74, 139, 237, 0.11), transparent 44%),
    var(--bg);
}

.insight-showcase {
  display: grid;
  gap: 1rem;
}

.insight-card {
  position: relative;
  overflow: hidden;
}

.insight-card picture {
  display: block;
  aspect-ratio: 16 / 10;
  background: #05070c;
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.insight-copy {
  padding: 1rem;
}

.transformation-section {
  background:
    linear-gradient(135deg, rgba(7, 27, 97, 0.24), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(5, 7, 12, 0)),
    var(--bg);
}

.transformation-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.transformation-board {
  display: grid;
  gap: 1.1rem;
}

.transformation-story {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    var(--surface);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.transformation-story-bennet {
  border-color: rgba(138, 184, 255, 0.24);
}

.transformation-story-friend {
  border-color: rgba(100, 216, 189, 0.22);
}

.transformation-story-copy {
  padding: 1.1rem;
  border-bottom: 1px solid rgba(229, 238, 255, 0.1);
}

.transformation-story-copy span,
.transformation-disclaimer {
  display: inline-flex;
  color: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 950;
}

.transformation-story-copy h3 {
  margin: 0.65rem 0 0;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.22;
}

.transformation-story-copy p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
}

.compare-grid,
.friend-gallery {
  display: grid;
  gap: 0.65rem;
  padding: 0.65rem;
}

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

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

.friend-gallery .transformation-photo:last-child {
  grid-column: 1 / -1;
}

.transformation-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 238, 255, 0.1);
  border-radius: var(--radius);
  background: #05070c;
}

.transformation-photo picture {
  display: block;
  height: 100%;
  aspect-ratio: 3 / 4;
}

.friend-gallery .transformation-photo:nth-child(3) picture {
  aspect-ratio: 1 / 1;
}

.transformation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.94);
  transition: transform 240ms ease, filter 240ms ease;
}

.transformation-photo:hover img {
  transform: scale(1.025);
  filter: contrast(1.08) saturate(1);
}

.transformation-photo figcaption {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  border: 1px solid rgba(229, 238, 255, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(5, 7, 12, 0.72);
  color: var(--cream);
  padding: 0.32rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.transformation-disclaimer {
  border: 1px solid rgba(246, 234, 214, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 234, 214, 0.08), rgba(74, 139, 237, 0.05)),
    var(--surface-2);
  margin: 0;
  padding: 0.95rem 1rem;
  color: var(--cream);
  line-height: 1.45;
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 60px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 1rem 3.25rem 1rem 1rem;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button::before,
.faq-item button::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--blue-soft);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item button::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  border-top: 1px solid rgba(229, 238, 255, 0.1);
  padding: 0 1rem 1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
}

.inquiry-section {
  padding-bottom: 5.5rem;
}

.inquiry-panel {
  border: 1px solid rgba(138, 184, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 43, 130, 0.46), rgba(17, 29, 46, 0.9)),
    var(--surface-2);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.microcopy {
  color: var(--cream);
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid rgba(229, 238, 255, 0.11);
  background: #04060a;
  padding: 2rem 0 6rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

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

.footer-brand .brand-mark img {
  width: 58px;
  height: 40px;
  object-fit: contain;
}

.footer-inner p {
  max-width: 420px;
  margin: 0;
  color: var(--text-soft);
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 560px !important;
  color: var(--muted) !important;
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-inner nav a {
  color: var(--text-soft);
  font-weight: 800;
}

.footer-inner nav a:hover {
  color: var(--cream);
}

.mobile-sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 234, 214, 0.32);
  border-radius: var(--radius);
  background: var(--cream);
  color: #07101d;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

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

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

.legal-page {
  min-height: 100vh;
  background: var(--bg);
}

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

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1.1;
}

.legal-content h2 {
  margin: 2rem 0 0.5rem;
  color: var(--cream);
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-notice {
  margin-top: 2rem;
  border: 1px solid rgba(246, 234, 214, 0.22);
  border-radius: var(--radius);
  background: rgba(246, 234, 214, 0.07);
  padding: 1rem;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 560px) {
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .benefit-card-wide {
    grid-column: span 2;
  }

  .inquiry-panel,
  .price-panel {
    padding: 2rem;
  }
}

@media (min-width: 820px) {
  :root {
    --header-height: 86px;
  }

  .section {
    padding: 6rem 0;
  }

  .section-heading h2,
  .inquiry-panel h2 {
    font-size: 2.75rem;
  }

  .menu-toggle {
    display: none;
  }

  .brand-mark {
    width: 68px;
    height: 48px;
  }

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

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  .site-nav a {
    padding: 0.55rem 0.64rem;
    font-size: 0.92rem;
  }

  .site-nav .nav-cta {
    margin: 0 0 0 0.35rem;
    padding-inline: 0.95rem;
  }

  .hero {
    min-height: 760px;
    padding: 7rem 0 5.4rem;
  }

  .hero-media {
    left: 40%;
    opacity: 0.86;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 12, 0.98) 0%, rgba(5, 7, 12, 0.74) 18%, rgba(5, 7, 12, 0.18) 58%, rgba(5, 7, 12, 0.64) 100%),
      linear-gradient(180deg, rgba(5, 7, 12, 0.02) 0%, rgba(5, 7, 12, 0.88) 100%);
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .hero-lead {
    font-size: 1.18rem;
  }

  .offer-layout,
  .process-layout,
  .insights-layout,
  .transformation-layout,
  .price-layout,
  .about-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .about-layout {
    grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.15fr);
  }

  .offer-layout > .section-heading,
  .process-layout > .section-heading,
  .insights-layout > .section-heading,
  .transformation-layout > .section-heading,
  .faq-layout > .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 1.2rem);
    align-self: start;
  }

  .price-value {
    font-size: 4rem;
  }

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

  .timeline::before {
    left: 0;
    right: 0;
    top: 22px;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(138, 184, 255, 0), rgba(138, 184, 255, 0.58), rgba(138, 184, 255, 0));
  }

  .timeline-step {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 238px;
  }

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

  .inquiry-panel {
    padding: 2.6rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (min-width: 1040px) {
  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-card {
    grid-column: span 2;
  }

  .benefit-card-large {
    grid-column: span 3;
    min-height: 215px;
  }

  .benefit-card-wide {
    grid-column: span 4;
  }

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

@media (max-width: 700px) {
  .brand-copy span {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 680px;
  }

  .hero-media {
    opacity: 0.36;
  }
}

@media (max-width: 420px) {
  .container,
  .hero-shell {
    width: min(100% - 1.25rem, var(--container));
  }

  .brand-mark {
    width: 58px;
    height: 42px;
  }

  .brand-mark img {
    width: 54px;
    height: 38px;
  }

  .hero h1 {
    font-size: 2.26rem;
  }

  .section-heading h2,
  .inquiry-panel h2 {
    font-size: 1.75rem;
  }

  .button,
  .inquiry-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .price-value {
    font-size: 2.55rem;
  }
}
