/* ─────────────────────────────────────────────────────────────────────
   DART — WHITE LABEL PARTNERSHIP PRICING
   Stylesheet
   ──────────────────────────────────────────────────────────────────── */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --dart-black:        #08080a;
  --dart-black-soft:   #0e0e12;
  --dart-black-card:   #111114;
  --dart-orange:       #ED671C;
  --dart-orange-dim:   #c5511a;
  --dart-purple:       #B71CED;
  --dart-purple-dim:   #8e16b8;
  --dart-purple-deep:  #5a0b78;
  --dart-gradient:     linear-gradient(135deg, #ED671C 0%, #B71CED 100%);
  --dart-gradient-alt: linear-gradient(135deg, #ED671C 0%, #ED671C 30%, #B71CED 100%);

  /* Text */
  --text-primary:      rgba(255, 255, 255, 0.96);
  --text-secondary:    rgba(255, 255, 255, 0.68);
  --text-muted:        rgba(255, 255, 255, 0.46);
  --text-faint:        rgba(255, 255, 255, 0.22);

  /* Lines */
  --line-faint:        rgba(255, 255, 255, 0.06);
  --line-medium:       rgba(255, 255, 255, 0.10);
  --line-bright:       rgba(255, 255, 255, 0.16);
  --line-purple:       rgba(183, 28, 237, 0.18);
  --line-purple-strong:rgba(183, 28, 237, 0.32);

  /* Glass surfaces */
  --glass-base:        linear-gradient(135deg, rgba(28, 16, 42, 0.55) 0%, rgba(12, 10, 18, 0.55) 100%);
  --glass-base-hover:  linear-gradient(135deg, rgba(38, 22, 56, 0.65) 0%, rgba(16, 12, 22, 0.65) 100%);
  --glass-tint:        radial-gradient(ellipse 70% 50% at 20% 0%, rgba(183, 28, 237, 0.32) 0%, transparent 70%);
  --glass-tint-alt:    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(183, 28, 237, 0.28) 0%, transparent 70%);
  --glass-tint-soft:   radial-gradient(ellipse 80% 60% at 50% 0%, rgba(183, 28, 237, 0.18) 0%, transparent 70%);

  /* Typography — Satoshi everywhere */
  --font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Satoshi', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing & sizing */
  --container-max: 1280px;
  --section-py:    clamp(80px, 12vw, 160px);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

/* ── RESET / BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--dart-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01' on, 'ss02' on;
}

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

/* Ambient purple wash on the page itself */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(183, 28, 237, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(183, 28, 237, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT PRIMITIVES ─────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.section {
  padding-block: var(--section-py);
  position: relative;
}

.section-divider {
  height: 1px;
  background: var(--line-faint);
  margin: 0;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
.h-section {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 22px;
}

.h-card {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.section-lead {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.55;
  font-weight: 400;
}

.gradient-text {
  background: var(--dart-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dart-orange);
  color: #ffffff;
}
.btn-primary:hover {
  background: #ff7626;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(237, 103, 28, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--line-bright);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.30);
}

.btn-gradient {
  background: var(--dart-gradient);
  color: #ffffff;
  position: relative;
  isolation: isolate;
}
.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--dart-gradient);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.btn-gradient:hover::before { opacity: 0.7; }

.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
}
.btn-dark-pill:hover {
  background: rgba(20, 12, 28, 0.85);
  border-color: rgba(255, 255, 255, 0.30);
}

.btn .arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(8, 8, 10, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--line-faint);
  background: rgba(8, 8, 10, 0.80);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { height: 32px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta { padding: 10px 20px; font-size: 13px; }

.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-mobile-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--dart-black);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line-faint);
  }
  .nav.menu-open .nav-cta {
    display: inline-flex;
    margin-top: 8px;
  }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(140px, 16vh, 200px);
  padding-bottom: clamp(80px, 12vh, 140px);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 760px;
  height: 760px;
  top: -220px;
  right: -240px;
  background: radial-gradient(circle, rgba(183, 28, 237, 0.32) 0%, rgba(237, 103, 28, 0.10) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orb-float 18s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute;
  width: 540px;
  height: 540px;
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle, rgba(183, 28, 237, 0.22) 0%, transparent 65%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: orb-float 22s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

.hero-content { position: relative; z-index: 1; max-width: 920px; }

/* Decorative dartboard — subtle corner ornament */
.hero-decoration {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: clamp(360px, 38vw, 560px);
  height: clamp(360px, 38vw, 560px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  filter: drop-shadow(0 30px 60px rgba(183, 28, 237, 0.35));
  animation: hero-decoration-float 8s ease-in-out infinite;
}
.hero-decoration img { width: 100%; height: 100%; object-fit: contain; }

@keyframes hero-decoration-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(-2deg); }
}

@media (max-width: 1080px) {
  .hero-decoration { opacity: 0.30; bottom: -160px; right: -160px; }
}
@media (max-width: 720px) {
  .hero-decoration { display: none; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.0;
  margin-bottom: 28px;
}

.hero h1 .accent {
  background: var(--dart-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-faint);
  padding-top: 36px;
}
.hero-stat { padding-right: 24px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
}

/* ════════════════════════════════════════════════════════════════
   GLASS CARDS — the core aesthetic
   ════════════════════════════════════════════════════════════════ */

.glass {
  position: relative;
  background: var(--glass-base);
  border: 1px solid var(--line-purple);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-tint);
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.glass:hover {
  border-color: var(--line-purple-strong);
  transform: translateY(-2px);
  background: var(--glass-base-hover);
}
.glass:hover::before { opacity: 1; }

/* Variants — different glow positions for visual rhythm */
.glass-tl::before { background: var(--glass-tint); }
.glass-br::before { background: var(--glass-tint-alt); }
.glass-top::before { background: var(--glass-tint-soft); }

/* ── HOW IT WORKS — 3 column ──────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.how-card { padding: 32px; }

.how-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.how-card-icon img { width: 100%; height: 100%; object-fit: contain; }

.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.how-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── TIER FRAMEWORK BAR ────────────────────────────────────────── */
.tier-framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.tier-framework-card { padding: 26px; }

.tier-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tier-card-icon img { width: 100%; height: 100%; object-fit: contain; }

.tier-framework-card .tier-pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.tier-framework-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.tier-framework-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .tier-framework { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .tier-framework { grid-template-columns: 1fr; }
}

/* ── SERVICES GRID ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card { padding: 32px; }

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.service-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.05) rotate(-3deg);
}
.service-icon img { width: 100%; height: 100%; object-fit: contain; }

.service-title-block { flex: 1; min-width: 0; }
.service-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.service-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Tier table inside service card */
.tier-rows {
  border-top: 1px solid var(--line-faint);
}
.tier-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-faint);
}
.tier-row:last-child { border-bottom: none; }

.tier-row-label {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
}
.tier-row.is-enterprise .tier-row-label { color: var(--dart-orange); }

.tier-row-scope {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.tier-row-price {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .service-card { padding: 26px; }
  .tier-row { grid-template-columns: 72px 1fr; }
  .tier-row-price { grid-column: 2 / 3; text-align: left; font-size: 17px; }
}

/* ── RETAINER BUNDLES — pricing-card aesthetic ─────────────────── */
.retainers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.retainer-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.retainer-tier-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.retainer-card.featured .retainer-tier-pill {
  background: rgba(237, 103, 28, 0.18);
  border-color: rgba(237, 103, 28, 0.40);
}

.retainer-startfrom {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 8px;
}

.retainer-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}
.retainer-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.retainer-price-unit {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.retainer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  flex: 1;
}

.retainer-commitment {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 18px;
  border-top: 1px solid var(--line-faint);
}

@media (max-width: 1080px) {
  .retainers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .retainers { grid-template-columns: 1fr; }
}

/* Rebate callout */
.rebate {
  margin-top: 36px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(237, 103, 28, 0.08) 0%, rgba(183, 28, 237, 0.08) 100%);
  border: 1px solid rgba(237, 103, 28, 0.16);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.rebate strong { color: var(--text-primary); font-weight: 600; }
.rebate svg { flex-shrink: 0; color: var(--dart-orange); width: 24px; height: 24px; }

@media (max-width: 560px) {
  .rebate { flex-direction: column; align-items: flex-start; }
}

/* ── HOURLY TABLE ──────────────────────────────────────────────── */
.hourly-table {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hourly-row {
  display: grid;
  grid-template-columns: 1.5fr 110px 2fr;
  gap: 24px;
  padding: 18px 28px;
  align-items: center;
  border-bottom: 1px solid var(--line-faint);
  transition: background 0.2s;
}
.hourly-row:last-child { border-bottom: none; }
.hourly-row:hover { background: rgba(255, 255, 255, 0.025); }

.hourly-row.is-header {
  background: rgba(8, 8, 10, 0.45);
  padding-block: 16px;
}
.hourly-row.is-header > * {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hourly-role {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
}
.hourly-rate {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  background: var(--dart-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.hourly-row.is-header .hourly-rate {
  background: none;
  -webkit-text-fill-color: var(--text-muted);
  text-align: center;
}
.hourly-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}

@media (max-width: 720px) {
  .hourly-row { grid-template-columns: 1fr 90px; padding: 16px 20px; gap: 12px; }
  .hourly-desc { grid-column: 1 / 3; font-size: 13px; color: var(--text-muted); padding-top: 4px; }
  .hourly-row.is-header .hourly-desc { display: none; }
}

.hourly-benchmark {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  padding-left: 18px;
  border-left: 2px solid var(--dart-purple);
}

/* ── TERMS GRID ────────────────────────────────────────────────── */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.term-item {
  padding: 24px 26px;
}
.term-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.term-item h4::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dart-purple);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(183, 28, 237, 0.7);
}
.term-item p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .terms-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── WORKFLOW STEPS ────────────────────────────────────────────── */
.workflow {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workflow-step {
  display: grid;
  grid-template-columns: 64px 220px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-faint);
  align-items: baseline;
}
.workflow-step:first-child { border-top: 1px solid var(--line-faint); }

.workflow-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--dart-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.workflow-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.3;
}
.workflow-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .workflow-step {
    grid-template-columns: 56px 1fr;
    gap: 16px 20px;
    padding: 24px 0;
  }
  .workflow-desc {
    grid-column: 2 / 3;
    padding-top: 8px;
  }
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq {
  margin-top: 56px;
  max-width: 880px;
}
.faq-item {
  border-top: 1px solid var(--line-faint);
}
.faq-item:last-child { border-bottom: 1px solid var(--line-faint); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--dart-purple); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-faint);
  transition: all 0.3s ease;
}
.faq-icon svg { width: 12px; height: 12px; transition: transform 0.3s; }
.faq-item.open .faq-icon {
  background: var(--dart-purple);
  border-color: var(--dart-purple);
  color: #fff;
  box-shadow: 0 0 20px rgba(183, 28, 237, 0.5);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 720px;
}

/* ── CTA / CLOSING ─────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 14vw, 160px);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(183, 28, 237, 0.20), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(237, 103, 28, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-content { text-align: center; position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-headline .accent {
  background: var(--dart-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-lead {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-contact {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.cta-contact a {
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--text-faint);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-contact a:hover {
  color: var(--dart-purple);
  border-bottom-color: var(--dart-purple);
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line-faint);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { height: 32px; width: auto; margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 340px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--dart-purple); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-faint);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── PRINT STYLES ──────────────────────────────────────────────── */
@media print {
  body { background: #fff; color: #000; }
  body::before, .hero-orb, .hero-orb-2, .cta-section::before, .glass::before { display: none; }
  .nav, .nav-cta, .cta-buttons, .faq-icon { display: none; }
  .glass, .hourly-table {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #000 !important;
    break-inside: avoid;
  }
  .gradient-text, .hero h1 .accent, .cta-headline .accent, .hourly-rate, .workflow-num, .retainer-price {
    -webkit-text-fill-color: #ED671C !important;
    background: none !important;
  }
  .section { padding-block: 40px; }
}
