/* ═══════════════════════════════════════════════════════════
   StepForwardApps — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900: #0a1628;
  --navy-800: #0f1f3d;
  --navy-700: #1a2f5e;
  --navy-600: #1e3a6e;
  --teal:     #00c9a7;
  --teal-dk:  #00a88b;
  --blue:     #4f8ef7;
  --blue-dk:  #3b7be8;
  --text:     #1e293b;
  --text-mid: #475569;
  --text-lt:  #94a3b8;
  --border:   #e2e8f0;
  --bg-light: #f8fafc;
  --white:    #ffffff;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --section-py: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

.section { padding: var(--section-py) 0; }
.section--light  { background: var(--bg-light); }
.section--dark   { background: var(--navy-800); color: var(--white); }
.section--navy   { background: var(--navy-900); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.section--dark .section-sub,
.section--navy .section-sub { color: var(--text-lt); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--teal); }

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--teal); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .15s, box-shadow .15s, background .15s, opacity .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg  { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn--sm  { padding: 9px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--teal {
  background: var(--teal);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(0,201,167,.35);
}
.btn--teal:hover { background: var(--teal-dk); box-shadow: 0 6px 20px rgba(0,201,167,.45); }

.btn--ghost {
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .25s, box-shadow .25s;
}
.nav.scrolled {
  background: rgba(10, 22, 40, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  color: rgba(255,255,255,.78);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, #0d2d4f 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,201,167,.12) 0%, transparent 70%);
  top: 10%;
  right: -100px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 680px; }

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 12px 0 24px;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

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

/* ── Stat Cards ───────────────────────────────────────────── */
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.stat-card:hover { background: rgba(255,255,255,.11); transform: translateY(-3px); }
.stat-card__value {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card__label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: 0.75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .4; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ── Features Grid ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-card__icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3    { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p     { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ── Timeline (Process) ───────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.timeline__track {
  position: absolute;
  left: 36px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--blue));
  opacity: .35;
}
.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 4px;
}
.timeline__icon {
  width: 56px;
  height: 56px;
  background: rgba(0,201,167,.15);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.timeline__num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phase-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: background .2s;
}
.phase-card:hover { background: rgba(255,255,255,.08); }

.phase-card__header {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.phase-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(0,201,167,.2);
  color: var(--teal);
  border: 1px solid rgba(0,201,167,.3);
}
.phase-tag--hours {
  background: rgba(79,142,247,.15);
  color: #7eb5ff;
  border-color: rgba(79,142,247,.25);
}
.phase-card__title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.phase-card__what {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 24px;
}
.phase-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.phase-card__deliverables ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.phase-card__deliverables li {
  font-size: 0.875rem;
  color: rgba(255,255,255,.8);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.phase-card__deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.phase-card__role {
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.phase-card__role p { font-size: 0.875rem; color: rgba(255,255,255,.65); }

/* ── Deliverables Grid ────────────────────────────────────── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.deliverable-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.deliverable-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--teal);
}
.deliverable-card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.deliverable-card h3    { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.deliverable-card p     { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* ── Pricing ──────────────────────────────────────────────── */
.price-total {
  text-align: center;
  margin-bottom: 48px;
}
.price-total__amount {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.price-total__desc {
  font-size: 0.9rem;
  color: var(--text-lt);
  letter-spacing: .04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform .2s, border-color .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--teal);
  background: rgba(0,201,167,.06);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-badge--teal { background: var(--teal); color: var(--navy-900); }
.pricing-badge--blue { background: var(--blue); color: var(--white); }

.pricing-card__name  { font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.pricing-card__title { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.pricing-card__desc  { font-size: 0.9rem; color: rgba(255,255,255,.65); margin-bottom: 28px; line-height: 1.65; }

.pricing-card__payments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing-card__payments li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}
.payment-label { color: rgba(255,255,255,.7); }
.payment-amount { font-weight: 700; color: var(--teal); }

.pricing-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.pricing-includes h4,
.pricing-requires h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.pricing-includes li,
.pricing-requires li {
  font-size: 0.875rem;
  color: rgba(255,255,255,.72);
  padding: 6px 0;
  display: flex;
  gap: 10px;
}
.check { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.cross  { color: #ef4444; font-weight: 700; flex-shrink: 0; }
.bullet { color: var(--blue); flex-shrink: 0; }

/* ── Fit Grid (Who It's For) ──────────────────────────────── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.fit-card {
  border-radius: var(--radius-lg);
  padding: 40px;
}
.fit-card--yes {
  background: var(--white);
  border: 2px solid var(--teal);
  box-shadow: 0 0 0 4px rgba(0,201,167,.08);
}
.fit-card--no {
  background: var(--white);
  border: 2px solid var(--border);
}
.fit-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 20px; }
.fit-card--yes h3 { color: var(--navy-800); }
.fit-card--no  h3 { color: var(--text-mid); }
.fit-card li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.fit-card li:last-child { border-bottom: none; }

/* ── Differentiators ──────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.diff-card {
  border-radius: var(--radius-lg);
  padding: 36px;
}
.diff-card--them {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  opacity: .75;
}
.diff-card--us {
  background: rgba(0,201,167,.08);
  border: 1px solid rgba(0,201,167,.25);
}
.diff-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; }
.diff-card--them h3 { color: rgba(255,255,255,.5); }
.diff-card--us  h3 { color: var(--teal); }
.diff-card li {
  font-size: 0.9rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.diff-card--them li { color: rgba(255,255,255,.55); }
.diff-card--us  li  { color: rgba(255,255,255,.85); }
.diff-card li:last-child { border-bottom: none; }

.diff-divider { display: flex; justify-content: center; }
.diff-vs {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,.5);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  text-align: left;
  transition: background .15s;
  gap: 16px;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question[aria-expanded="true"] { background: var(--bg-light); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: var(--white);
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-email-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  gap: 20px;
}
.contact-email-card__icon { font-size: 2.8rem; }
.contact-email-card__label {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  max-width: 280px;
}
.contact-email-card__address {
  font-size: 0.85rem;
  color: rgba(255,255,255,.4);
  margin-top: -8px;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-steps h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-steps ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 24px;
  list-style: decimal;
}
.contact-steps li {
  font-size: 0.95rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  padding-left: 4px;
}
.contact-steps strong { color: var(--white); }

@media (max-width: 768px) {
  .contact-simple { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 56px 0 32px;
  color: rgba(255,255,255,.65);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer__brand p { margin-top: 10px; font-size: 0.875rem; color: rgba(255,255,255,.45); }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer__links a:hover { color: var(--white); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer__contact a { font-size: 0.875rem; color: rgba(255,255,255,.65); transition: color .15s; }
.footer__contact a:hover { color: var(--teal); }
.footer__contact span { font-size: 0.8rem; color: rgba(255,255,255,.35); }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.3); text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal--delay { transition-delay: .15s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid       { grid-template-columns: repeat(2, 1fr); }
  .hero__inner         { grid-template-columns: 1fr; gap: 48px; }
  .hero__stats         { grid-template-columns: repeat(4, 1fr); }
  .hero__content       { max-width: 100%; }
  .hero__sub           { max-width: 100%; }
  .diff-grid           { grid-template-columns: 1fr; }
  .diff-divider        { order: 1; }
  .diff-card--them     { order: 0; }
  .diff-card--us       { order: 2; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav__links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-900);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav__links.open { display: flex; }
  .nav__hamburger  { display: flex; }
  .nav__link       { padding: 12px 16px; font-size: 1rem; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__stats    { grid-template-columns: repeat(2, 1fr); }
  .hero__inner    { padding-bottom: 60px; }
  .hero__scroll-hint { display: none; }

  .features-grid    { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid     { grid-template-columns: 1fr; }
  .pricing-details  { grid-template-columns: 1fr; }
  .fit-grid         { grid-template-columns: 1fr; }
  .contact-wrapper  { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }

  .timeline__track      { display: none; }
  .timeline__item       { grid-template-columns: 56px 1fr; gap: 16px; }
  .phase-card           { padding: 24px; }
  .phase-card__deliverables ul { grid-template-columns: 1fr; }

  .footer__inner     { flex-direction: column; gap: 32px; }
  .footer__contact   { text-align: left; }
}

@media (max-width: 480px) {
  .deliverables-grid { grid-template-columns: 1fr; }
  .hero__stats       { grid-template-columns: 1fr 1fr; }
  .btn--lg           { padding: 14px 24px; font-size: 0.95rem; }
}
