:root {
  --ink: #06172b;
  --ink-soft: #314761;
  --ink-muted: #62758b;
  --paper: #f7fbff;
  --white: #ffffff;
  --mist: #edf5fc;
  --sky: #dcecff;
  --blue: #245da8;
  --blue-deep: #113c75;
  --blue-soft: #7aa7e8;
  --cyan: #1eb6ff;
  --mint: #46d8b3;
  --blue-wash: #e7f3ff;
  --navy: #071426;
  --navy-2: #0d2138;
  --line: #cfe0ef;
  --line-strong: #abc4dd;
  --shadow: 0 24px 70px rgba(6, 23, 43, 0.12);
  --shadow-soft: 0 18px 45px rgba(8, 33, 59, 0.08);
  --radius: 8px;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
p,
li,
a,
span,
strong,
em,
label {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -64px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 14px;
  outline: 3px solid rgba(122, 167, 232, 0.6);
  outline-offset: 3px;
}

p,
ul,
ol,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 251, 255, 0.94);
  border-bottom: 1px solid rgba(171, 196, 221, 0.7);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1220px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  color: var(--ink);
  line-height: 0.98;
}

.brand-tagline {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a,
.lang-switch a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.lang-switch a:hover {
  color: var(--blue-deep);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--line-strong);
}

.lang-switch strong {
  font-size: 13px;
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(36, 93, 168, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(36, 93, 168, 0.3);
}

.btn:disabled,
button.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-deep);
  border-color: var(--line-strong);
}

.btn-light {
  background: var(--sky);
  color: var(--ink);
  border-color: rgba(122, 167, 232, 0.48);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  background: var(--navy);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 39, 0.96) 0%, rgba(6, 20, 39, 0.9) 36%, rgba(6, 20, 39, 0.55) 66%, rgba(6, 20, 39, 0.18) 100%),
    url("financial-advisor-miami-brickell-skyline-hero.webp") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 62px;
  align-items: end;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 72px;
  line-height: 0.96;
  margin: 0 0 26px;
  color: var(--white);
  max-width: 840px;
}

.hero h1 em,
.page-hero h1 em,
.section-title em {
  color: var(--blue-soft);
  font-style: italic;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 34px;
}

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

.hero-panel {
  background: rgba(238, 245, 252, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.26);
}

.app-panel {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.app-panel-top {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f8fbff, #e8f3ff);
}

.app-panel-title {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
}

.app-panel-badge {
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.path-finder {
  padding: 20px;
}

.quiz-progress {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.quiz-question {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-option {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-soft);
  padding: 14px 15px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.quiz-option:hover,
.quiz-option:focus {
  outline: none;
  border-color: var(--blue-soft);
  background: var(--blue-wash);
  transform: translateX(2px);
}

.quiz-result {
  display: grid;
  gap: 12px;
}

.quiz-result h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 0;
}

.quiz-result p {
  color: var(--ink-soft);
  margin-bottom: 0;
  font-size: 14px;
}

.quiz-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.quiz-reset {
  background: transparent;
  border: 0;
  color: var(--blue-deep);
  font-weight: 900;
  padding: 0;
  cursor: pointer;
}

.microcopy {
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.7;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.pain-card .label {
  display: inline-flex;
  color: var(--blue-deep);
  background: var(--blue-wash);
  border: 1px solid rgba(122, 167, 232, 0.32);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 16px;
}

.pain-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.pain-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.platform-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.platform-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.platform-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
  font-size: 14px;
}

.confidence-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
}

.section-white .confidence-note,
.section-mist .confidence-note,
.interactive-band .confidence-note {
  background: var(--blue-wash);
  border-color: var(--line);
  color: var(--blue-deep);
}

.interactive-band {
  background: linear-gradient(135deg, #eef7ff, #ffffff 58%, #e8f6f3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.scenario-list {
  display: grid;
  gap: 12px;
}

.scenario {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.scenario span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-deep);
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 12px;
}

.scenario strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}

.scenario p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-card {
  display: grid;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  color: var(--white);
  display: grid;
  place-items: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 20, 38, 0.12), rgba(6, 20, 38, 0.78));
}

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

.video-thumb::after {
  content: "Play";
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
}

.video-thumb strong {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 12px rgba(6, 20, 38, 0.58);
}

.video-body {
  padding: 18px;
}

.video-tag {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
}

.video-title {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
}

.video-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.video-empty[data-status="error"] {
  background: #fff4f1;
  border-color: #f1beb2;
  color: #7f2618;
}

.topic-form {
  display: grid;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.topic-form h3 {
  font-size: 24px;
  margin-bottom: 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.hero-panel h2 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--ink);
}

.proof-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 14px;
}

.proof-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 12px;
  border: 1px solid var(--line);
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 76px 0;
}

.section-white {
  background: var(--white);
}

.section-mist {
  background: var(--mist);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

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

.intro-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 42px;
}

.section-eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 0;
}

.section-dark .section-title,
.section-dark .section-eyebrow,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-copy {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 0;
}

.section-dark .section-copy,
.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.8);
}

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

.feature-card,
.audience-card,
.service-card,
.plain-card,
.question-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 30px;
  min-height: 250px;
}

.feature-card .num,
.service-card .num,
.question-card .num {
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 22px;
}

.feature-card h3,
.service-card h3,
.audience-card h3,
.question-card h3,
.plain-card h3,
.contact-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--ink);
}

.feature-card p,
.service-card p,
.audience-card p,
.question-card p,
.plain-card p,
.contact-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.audience-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.audience-card figure {
  margin: 0;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
}

.audience-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.audience-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.audience-card h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.audience-card p {
  font-size: 14px;
}

.audience-card a {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  margin-top: auto;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  border: 0;
  border-radius: 0;
  padding: 34px;
  box-shadow: none;
  min-height: 252px;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
}

.media-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(135deg, var(--mist), var(--white));
  border-radius: 6px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--blue);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step {
  counter-increment: step;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  content: "0" counter(step);
  display: block;
  color: var(--blue-soft);
  font-weight: 900;
  margin-bottom: 28px;
  font-size: 13px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: var(--navy);
  color: var(--white);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.96), rgba(7, 20, 38, 0.72)),
    url("office-interior.webp") center / cover no-repeat;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin-bottom: 0;
}

.mid-cta-section {
  background:
    linear-gradient(135deg, rgba(237, 245, 252, 0.88), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 88% 20%, rgba(122, 167, 232, 0.18), transparent 30%);
}

.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.inline-cta h2 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 10px;
}

.inline-cta p:not(.section-eyebrow) {
  color: var(--ink-soft);
  margin: 0;
  max-width: 720px;
}

.footer {
  background: #06111f;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(130px, 0.36fr));
  gap: 36px;
  align-items: start;
}

.footer .brand-name {
  color: var(--white);
}

.footer .brand-tagline {
  color: var(--blue-soft);
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer h3 {
  color: var(--white);
  font-size: 13px;
  margin: 0 0 14px;
}

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

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

.footer-disclosure {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.75;
}

.page-hero {
  position: relative;
  padding: 108px 0 82px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.96), rgba(7, 20, 38, 0.72)),
    var(--page-image, url("hero-bg.webp")) var(--page-position, center) / var(--page-size, cover) no-repeat;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 780px;
  font-size: 18px;
  margin-bottom: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.plain-card {
  padding: 30px;
}

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

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.question-card {
  padding: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  gap: 48px;
  align-items: start;
}

.contact-card {
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

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

.field label {
  font-size: 12px;
  font-weight: 900;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  min-height: 0;
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.form-status[data-status="success"] {
  background: rgba(70, 216, 179, 0.12);
  border-color: rgba(70, 216, 179, 0.42);
  color: #0e5a4c;
}

.form-status[data-status="error"] {
  background: #fff4f1;
  border-color: #f1beb2;
  color: #7f2618;
}

.notice {
  padding: 16px 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 13px;
}

.mini-link {
  color: var(--blue-deep);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid,
  .service-strip,
  .process,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 960px) {
  .nav-inner {
    width: min(100% - 32px, 1220px);
    min-height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-actions {
    margin-left: 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .intro-row,
  .split,
  .split.reverse,
  .contact-grid,
  .cta-inner,
  .inline-cta {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 84px 0 64px;
    gap: 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 56px;
  }

  .section-title {
    font-size: 42px;
  }

  .feature-grid,
  .service-strip,
  .question-grid,
  .pain-grid,
  .platform-grid,
  .tool-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .process-step,
  .process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-step:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .container,
  .hero-grid,
  .nav-inner {
    width: min(100% - 28px, 1220px);
  }

  .nav-inner {
    gap: 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 8px;
  }

  .lang-switch {
    gap: 6px;
  }

  .lang-switch a,
  .lang-switch strong {
    font-size: 12px;
  }

  .hero-grid,
  .page-hero {
    padding-top: 70px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 43px;
    line-height: 1;
  }

  .hero-lede,
  .page-hero p,
  .section-copy {
    font-size: 16px;
  }

  .hero-panel {
    padding: 22px;
  }

  .hero-panel h2 {
    font-size: 30px;
  }

  .section,
  .section-tight {
    padding: 68px 0;
  }

  .section-title,
  .cta-band h2 {
    font-size: 36px;
    line-height: 1.06;
  }

  .audience-grid,
  .two-col,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .quiz-question,
  .quiz-result h3 {
    font-size: 21px;
  }

  .sticky-mobile-cta {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 90;
  }

  .sticky-mobile-cta .btn {
    width: 100%;
    box-shadow: 0 18px 40px rgba(6, 23, 43, 0.28);
  }

  .cta-band {
    padding: 64px 0;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 20px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
