/* ==========================================================================
   Ascend Ashlin — Homepage stylesheet
   Dark navy theme. Body background #0F1218, light text #E9EEF5.
   ========================================================================== */

:root {
  --bg: #0F1218;
  --bg-deep: #0A1633;
  --surface: #161C2A;
  --surface-2: #1A2233;
  --line: #232B3D;
  --line-soft: #1B2230;

  --navy: #1E3A8A;
  --navy-bright: #1E40AF;
  --navy-soft: #93C5FD;
  --navy-mid: #60A5FA;

  --text: #E9EEF5;
  --text-bright: #FFFFFF;
  --text-muted: #9AA6B8;

  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 6px 18px rgba(4, 8, 20, 0.55);
  --shadow-md: 0 18px 45px rgba(4, 8, 20, 0.6);
  --glow: 0 0 22px rgba(147, 197, 253, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy-soft);
  text-decoration: none;
}

a:hover {
  color: var(--text-bright);
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ==========================================================================
   ROCKET NAVIGATION
   ========================================================================== */

.rocket-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #0C1017;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.rocket-nav.scrolled {
  background-color: #0A0E15;
  box-shadow: 0 10px 30px rgba(4, 8, 20, 0.7);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* --- CSS-drawn rocket --- */
.rocket {
  position: relative;
  width: 34px;
  height: 52px;
  flex: 0 0 auto;
  animation: rocket-float 5s ease-in-out infinite;
}

.rocket-nose {
  position: absolute;
  top: 0;
  left: 7px;
  width: 20px;
  height: 20px;
  background: var(--navy-bright);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.rocket-body {
  position: absolute;
  top: 18px;
  left: 7px;
  width: 20px;
  height: 24px;
  background: var(--navy);
  border-radius: 2px 2px 5px 5px;
}

.rocket-window {
  position: absolute;
  top: 26px;
  left: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy-soft);
  box-shadow: inset 0 0 0 1px var(--bg-deep), 0 0 8px rgba(147, 197, 253, 0.7);
}

.rocket-fin {
  position: absolute;
  bottom: 2px;
  width: 7px;
  height: 9px;
  background: var(--navy-bright);
}

.fin-left {
  left: 2px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.fin-right {
  right: 2px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.rocket-flame {
  position: absolute;
  bottom: -11px;
  left: 14px;
  width: 6px;
  height: 13px;
  background: var(--navy-soft);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  animation: flame-flicker 0.55s ease-in-out infinite alternate;
}

@keyframes rocket-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes flame-flicker {
  from { transform: scaleY(1); }
  to { transform: scaleY(0.7); }
}

/* --- nav links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-bright);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--navy-soft);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--navy);
  color: var(--text-bright);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--navy-bright);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: var(--navy-bright);
  color: var(--text-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.5);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   STAIRWAY HERO
   ========================================================================== */

.stairs-hero {
  padding: 158px 0 96px;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(30, 64, 175, 0.35), transparent 60%),
    radial-gradient(600px 400px at 0% 110%, rgba(10, 22, 51, 0.7), transparent 60%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  background: var(--bg-deep);
  border: 1px solid var(--navy-bright);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  margin-bottom: 22px;
}

.hero-copy h1 .accent {
  color: var(--navy-soft);
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--navy-bright);
  color: var(--text-bright);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(30, 64, 175, 0.6);
  color: var(--text-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-soft);
  border-color: var(--navy-soft);
}

.btn-ghost:hover {
  background: var(--bg-deep);
  transform: translateY(-2px);
  color: var(--text-bright);
}

/* --- CSS-drawn ascending stairway --- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.stairway {
  position: relative;
  width: 360px;
  height: 320px;
}

.step {
  position: absolute;
  background: var(--navy-bright);
  border: 1px solid #2F4FBF;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(4, 8, 20, 0.55);
}

.step1 { left: 10px;  bottom: 20px;  width: 60px; height: 24px; }
.step2 { left: 80px;  bottom: 54px;  width: 66px; height: 28px; }
.step3 { left: 150px; bottom: 90px;  width: 72px; height: 32px; }
.step4 { left: 220px; bottom: 128px; width: 78px; height: 36px; }
.step5 { left: 290px; bottom: 168px; width: 60px; height: 40px; background: var(--navy); border-color: var(--navy-soft); }

.goal-star {
  position: absolute;
  left: 302px;
  bottom: 216px;
  font-size: 2.1rem;
  color: var(--navy-soft);
  text-shadow: 0 0 18px rgba(147, 197, 253, 0.9), 0 0 40px rgba(147, 197, 253, 0.55);
  animation: star-glow 2.4s ease-in-out infinite;
}

@keyframes star-glow {
  0%, 100% { text-shadow: 0 0 14px rgba(147, 197, 253, 0.7), 0 0 32px rgba(147, 197, 253, 0.4); }
  50% { text-shadow: 0 0 26px rgba(147, 197, 253, 1), 0 0 60px rgba(147, 197, 253, 0.7); }
}

.spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy-soft);
  box-shadow: 0 0 12px rgba(147, 197, 253, 0.9);
}

.spark.s1 { left: 40px;  bottom: 250px; }
.spark.s2 { left: 150px; bottom: 290px; width: 5px; height: 5px; }
.spark.s3 { left: 240px; bottom: 40px; }

/* ==========================================================================
   FULL-WIDTH STATEMENT ROW
   ========================================================================== */

.statement-row {
  padding: 90px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.statement-row .statement {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.statement h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}

.statement h2 .accent {
  color: var(--navy-soft);
}

.statement p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

/* ==========================================================================
   STAT COLUMNS
   ========================================================================== */

.stats-section {
  padding: 96px 0;
}

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

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy-bright);
}

.stat-number {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--navy-soft);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-card h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  color: var(--text);
}

.stat-card p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   ABOUT / METHOD SECTION
   ========================================================================== */

.method-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.method-copy .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 16px;
}

.method-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 20px;
}

.method-copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.method-points {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.method-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
}

.method-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--navy-soft);
  box-shadow: 0 0 10px rgba(147, 197, 253, 0.7);
}

.method-visual {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  gap: 16px;
}

.method-tile {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.method-tile h3 {
  font-size: 1.05rem;
  color: var(--navy-soft);
  margin-bottom: 6px;
}

.method-tile p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   NUMBERED COACHING PROCESS
   ========================================================================== */

.process-section {
  padding: 96px 0;
}

.process-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.process-header .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 14px;
}

.process-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 16px;
}

.process-header p {
  color: var(--text-muted);
}

.process-list {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 24px;
  width: 2px;
  background: var(--line);
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  align-items: flex-start;
}

.process-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--navy-bright);
  color: var(--text-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}

.process-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.process-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.process-body p {
  color: var(--text-muted);
}

/* ==========================================================================
   PROGRAMS — HORIZONTAL SCROLL ROW
   ========================================================================== */

.programs-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.programs-section .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 14px;
}

.programs-section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.programs-section .programs-intro {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.programs-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.programs-scroll::-webkit-scrollbar {
  height: 8px;
}

.programs-scroll::-webkit-scrollbar-track {
  background: var(--line-soft);
  border-radius: 8px;
}

.programs-scroll::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 8px;
}

.program-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy-bright);
}

.program-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-soft);
  background: var(--bg-deep);
  border: 1px solid var(--navy-bright);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.program-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.program-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 18px;
  flex: 1;
}

.program-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-soft);
  margin-bottom: 18px;
}

.program-card .btn {
  width: 100%;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.compare-section {
  padding: 96px 0;
}

.compare-section .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 14px;
}

.compare-section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.compare-section .compare-intro {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 44px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.compare-table th,
.compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table thead th {
  background: var(--bg-deep);
  color: var(--text-bright);
  font-size: 1.05rem;
}

.compare-table thead th:first-child {
  color: var(--navy-soft);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-table tbody th {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  width: 32%;
}

.compare-table tbody td {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.compare-table .yes {
  color: var(--navy-soft);
  font-weight: 700;
}

.compare-table .no {
  color: var(--text-muted);
}

.compare-footnote {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   SPLIT CTA BAND
   ========================================================================== */

.cta-section {
  padding: 96px 0;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(120deg, var(--navy) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--navy-bright);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: #C7D6EE;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.cta-actions .btn-primary {
  background: var(--text-bright);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(4, 8, 20, 0.5);
}

.cta-actions .btn-primary:hover {
  background: #FFFFFF;
  color: var(--navy);
}

.cta-actions .btn-ghost {
  color: #C7D6EE;
  border-color: #C7D6EE;
}

.cta-actions .btn-ghost:hover {
  background: var(--navy-bright);
  color: var(--text-bright);
}

.cta-contact {
  font-size: 0.95rem;
  color: #C7D6EE;
}

.cta-contact a {
  color: var(--text-bright);
  font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-section .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 14px;
}

.contact-section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 18px;
}

.contact-copy > p {
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 520px;
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
}

.contact-details .ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-deep);
  border: 1px solid var(--navy-bright);
  color: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.contact-details a {
  color: var(--navy-soft);
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.18);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
}

.form-status {
  font-size: 0.95rem;
  color: var(--navy-soft);
  min-height: 1.4em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #0C1017;
  border-top: 2px solid var(--navy);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-soft);
  margin-bottom: 18px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--navy-soft);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 22px;
}

.footer-bottom .legal-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-bottom .legal-links a:hover {
  color: var(--navy-soft);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    min-height: 340px;
  }

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

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

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

  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .nav-inner {
    height: 66px;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0C1017;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-visual {
    min-height: 300px;
  }

  .stairway {
    transform: scale(0.85);
    transform-origin: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stairway {
    transform: scale(0.7);
  }

  .hero-visual {
    min-height: 250px;
  }
}
