:root {
  --blue:      #102f93;
  --blue-dark: #0c2578;
  --blue-tint: #eef0fa;
  --dark:      #111111;
  --gray:      #555555;
  --gray-lt:   #888888;
  --gray-bg:   #F5F5F3;
  --gray-soft: #FAFAF8;
  --white:     #FFFFFF;
  --border:    #E5E5E5;
  --border-soft: #EFEFEC;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ══ TOP BAR ══ */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.topbar-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s;
}
.topbar-back:hover { color: var(--blue); }
.topbar-back .arr { transition: transform 0.2s; display: inline-block; }
.topbar-back:hover .arr { transform: translateX(-3px); }
.topbar-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

/* ══ HERO ══ */
#hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: calc(100vh - 64px);
  max-height: 860px;
  border-bottom: 1px solid var(--border);
}
.hero-left {
  padding: 5rem 4rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border-right: 1px solid var(--border);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--blue);
}
.hero-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--dark);
  letter-spacing: -0.015em;
}
.hero-heading em {
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 460px;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.hero-meta-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-lt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.hero-cta-note {
  font-size: 12px;
  color: var(--gray-lt);
}

.hero-right {
  position: relative;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3rem;
}
.hero-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem;
  position: relative;
  border-radius: 3px;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 44px; height: 44px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
}
.hero-card::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 44px; height: 44px;
  border-bottom: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
}
.hero-card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-card-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
  padding: 0.5rem 0;
}
.hero-card-row strong {
  color: var(--dark);
  font-weight: 500;
}
.hero-card-bar {
  height: 6px;
  background: var(--gray-bg);
  border-radius: 3px;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}
.hero-card-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--blue);
  border-radius: 3px;
  animation: fillBar 2.4s ease-out 0.4s forwards;
}
@keyframes fillBar { to { width: 68%; } }
.hero-card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-lt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══ WHY SECTION ══ */
#why {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}
.why-left {
  position: sticky;
  top: 90px;
  align-self: start;
}
.why-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.why-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.why-heading em { font-style: italic; color: var(--blue); }
.why-intro {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  max-width: 380px;
}
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  line-height: 1;
}
.pillar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.pillar-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}
.pillar-desc strong { color: var(--dark); font-weight: 500; }

/* ══ DIAGNOSTIC ══ */
#diagnostic {
  background: var(--gray-bg);
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}
.diag-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.diag-header {
  text-align: center;
  margin-bottom: 3rem;
}
.diag-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.diag-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
}
.diag-heading em { font-style: italic; color: var(--blue); }
.diag-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.diag-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

/* progress */
.diag-progress {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--gray-soft);
}
.progress-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 0.4s ease;
}
.progress-count {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  white-space: nowrap;
}

/* axis pill */
.axis-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.axis-pill::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--blue);
}

/* question */
.diag-body {
  padding: 3rem 2.5rem;
}
.q-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gray-lt);
  margin-bottom: 0.75rem;
}
.q-text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.q-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.q-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.q-option:hover {
  border-color: var(--blue);
  background: var(--blue-tint);
}
.q-option.selected {
  border-color: var(--blue);
  background: var(--blue-tint);
}
.q-option-letter {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-lt);
  flex-shrink: 0;
  transition: all 0.2s;
}
.q-option:hover .q-option-letter,
.q-option.selected .q-option-letter {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.q-option-text {
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.5;
}

/* footer of diag card */
.diag-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--gray-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.btn-ghost {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  padding: 8px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--dark); }
.btn-ghost:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.btn-next {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-next:hover:not(:disabled) { background: var(--blue-dark); }
.btn-next:disabled {
  background: var(--border);
  color: var(--gray-lt);
  cursor: not-allowed;
}

/* axes navigator */
.axes-nav {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.axes-nav-item {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-lt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: color 0.2s;
}
.axes-nav-item:last-child { border-right: none; }
.axes-nav-item.active {
  color: var(--blue);
  background: var(--blue-tint);
}
.axes-nav-item.done {
  color: var(--dark);
}
.axes-nav-item.done::after {
  content: "✓";
  margin-left: 6px;
  color: var(--blue);
  font-weight: 700;
}

/* ══ RESULT ══ */
#result-section {
  display: none;
}
#result-section.active { display: block; }
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.result-hero {
  padding: 3.5rem 2.5rem;
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.result-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.result-hero::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}
.result-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  position: relative;
}
.result-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  position: relative;
}
.result-score {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  position: relative;
}
.result-score-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
.result-score-total {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
.result-score-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-left: 1rem;
  max-width: 280px;
}
.result-score-fill {
  height: 100%;
  background: var(--white);
  transition: width 1s ease;
}

.result-body {
  padding: 3rem 2.5rem;
}
.result-summary {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.result-summary strong { color: var(--dark); font-weight: 500; }

.axes-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.axis-result {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.5rem;
}
.axis-result-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.axis-result-score {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.axis-result-score span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-lt);
}
.axis-result-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.75rem;
}
.axis-result-fill {
  height: 100%;
  background: var(--blue);
  transition: width 0.8s ease;
}
.axis-result-note {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* email capture inside result */
.email-capture {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  margin-top: 1rem;
}
.email-capture-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.email-capture-sub {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 500px;
}
.email-capture-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.email-capture-list li {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}
.email-capture-list li::before {
  content: "→";
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
}
.email-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
  max-width: 620px;
}
.email-form input {
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 13px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--dark);
  border-right: 1px solid var(--border);
}
.email-form input:last-of-type { border-right: 1px solid var(--border); }
.email-form input::placeholder { color: var(--gray-lt); }
.email-form button {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.email-form button:hover { background: var(--blue-dark); }
.email-note {
  margin-top: 0.75rem;
  font-size: 11px;
  color: var(--gray-lt);
}
.email-success {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 3px;
  font-size: 13px;
  color: var(--dark);
  line-height: 1.7;
}
.email-success strong { color: var(--blue); font-weight: 600; }

.result-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.btn-link {
  background: transparent;
  border: 1px solid var(--border);
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-link:hover { border-color: var(--dark); }

/* ══ SERVICES ══ */
#services {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}
.services-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
}
.svc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.svc-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.svc-heading em { font-style: italic; color: var(--blue); }
.svc-intro {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 1.75rem;
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 3px;
  transition: gap 0.2s;
}
.svc-cta:hover { gap: 12px; }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.svc-cell {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}
.svc-cell:hover { background: var(--gray-soft); }
.svc-cell-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--blue);
}
.svc-cell-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.svc-cell-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
}

/* ══ FINAL CTA ══ */
#final-cta {
  background: var(--blue);
  color: var(--white);
  padding: 6rem 3rem;
  text-align: center;
}
.fc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.fc-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.01em;
}
.fc-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2rem;
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  border: none;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-1px); }

/* ══ FOOTER ══ */
footer {
  background: var(--dark);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.foot-copy a {
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.foot-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.foot-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.foot-nav a:hover { color: white; }
.foot-back {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.foot-back:hover { color: white; border-color: white; }

/* ══ Reveal ══ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .axes-results { grid-template-columns: 1fr; }
  .email-form { grid-template-columns: 1fr; }
  .email-form input { border-right: none; border-bottom: 1px solid var(--border); }
  .email-form button { width: 100%; }
}
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; max-height: none; }
  .hero-left { padding: 4rem 1.5rem; border-right: none; }
  .hero-right { padding: 3rem 1.5rem; }
  #why { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .why-left { position: static; }
  #diagnostic { padding: 4rem 1.5rem; }
  .diag-body { padding: 2rem 1.5rem; }
  .services-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  #services, #final-cta { padding: 4rem 1.5rem; }
  .topbar { padding: 12px 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .axes-nav { flex-wrap: wrap; }
  .axes-nav-item { min-width: 50%; border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .topbar { font-size: 11px; padding: 10px 1.25rem; }
  .pillar { grid-template-columns: 50px 1fr; gap: 1rem; }
  .pillar-num { font-size: 28px; }
  .result-hero { padding: 2.5rem 1.5rem; }
  .result-body { padding: 2rem 1.5rem; }
  .result-score { flex-wrap: wrap; }
  .result-score-bar { margin-left: 0; max-width: 100%; }
  .diag-progress { padding: 1rem 1.25rem; gap: 0.75rem; }
}