:root {
  --bg-deep: #0D0C0B;
  --bg-base: #131210;
  --bg-card: #1A1917;
  --bg-elevated: #212019;
  --bg-surface: #27261F;

  /* Brand greens */
  --brand-green: #1A6632;
  --brand-green-light: #3D9457;
  --brand-green-dark: #123F22;
  --bg-green-tint: rgba(26, 102, 50, 0.05);
  --bg-green-subtle: rgba(26, 102, 50, 0.09);
  --border-green: rgba(61, 148, 87, 0.12);
  --border-green-hover: rgba(61, 148, 87, 0.24);

  /* Amber/gold — champagne/pale gold */
  --border-subtle: rgba(196, 175, 138, 0.08);
  --border-default: rgba(196, 175, 138, 0.15);
  --border-hover: rgba(196, 175, 138, 0.32);
  --border-accent: rgba(196, 175, 138, 0.50);
  --amber: #7A6A4F;
  --amber-light: #9C8B6E;
  --gold: #C4AF8A;
  --gold-light: #DDD0B3;

  --text-primary: #F0EDE6;
  --text-secondary: #B5B0A8;
  --text-muted: #8A8680;
  --text-faint: #57534E;

  --glow-green: rgba(61, 148, 87, 0.07);
  --glow-amber: rgba(196, 175, 138, 0.10);
  --glow-gold: rgba(221, 208, 179, 0.07);

  --shadow-glow: 0 8px 40px rgba(196, 175, 138, 0.08);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.25);
  --shadow-elevated: 0 12px 48px rgba(0,0,0,0.45), 0 4px 12px rgba(0,0,0,0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.01em;
}

p.lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-green-light);
  margin-bottom: 1rem;
  display: block;
}

/* ===== BACKGROUND SYSTEM ===== */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-green) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-green) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.bg-spotlight {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(19, 18, 16, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-green);
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(19, 18, 16, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.logo .logo-app { color: var(--brand-green-light); }
.logo .logo-itude { color: var(--text-primary); }

nav .tabs {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav .tabs a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
  position: relative;
}

nav .tabs a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  border-radius: 1px;
  transition: width 0.3s ease;
}

nav .tabs a:hover,
nav .tabs a.active { color: var(--amber-light); }

nav .tabs a.active::after,
nav .tabs a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
  color: var(--bg-deep);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px var(--glow-amber), inset 0 1px 0 rgba(255,255,255,0.12);
  letter-spacing: -0.01em;
}

.nav-cta:hover {
  box-shadow: 0 6px 30px rgba(181, 102, 74, 0.35), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.page { display: none; }
.page.active { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--glow-amber), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(181, 102, 74, 0.38), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(181, 102, 74, 0.28), var(--glow-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  border: 1.5px solid var(--border-hover);
  color: var(--amber-light);
  background: rgba(181, 102, 74, 0.05);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(181, 102, 74, 0.12);
  border-color: var(--border-accent);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--glow-amber);
}

.btn-text {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-text:hover { gap: 0.75rem; color: var(--gold); }

.btn-text .arrow { transition: transform 0.3s ease; }
.btn-text:hover .arrow { transform: translateX(4px); }

/* ===== HERO ===== */
.hero {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(181, 102, 74, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 60%, rgba(26, 102, 50, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(212, 149, 110, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 40%, var(--bg-elevated) 100%);
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero .bg-grid { opacity: 0.7; }

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content { padding-right: 1rem; }
.hero-content .eyebrow { margin-bottom: 1.5rem; }
.hero-content h1 { margin-bottom: 1.75rem; }

.hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== HERO TIMELINE VISUAL ===== */
.hero-visual { position: relative; }

.timeline-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow:
    var(--shadow-elevated),
    0 0 0 1px rgba(181, 102, 74, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 102, 74, 0.3), transparent);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(181, 102, 74, 0.03);
}

.timeline-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--glow-amber);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(181, 102, 74, 0.3); }
  50% { box-shadow: 0 0 16px rgba(181, 102, 74, 0.6); }
}

.timeline-header-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.timeline-badge {
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
  color: var(--bg-deep);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.timeline-body { padding: 1.5rem 1.75rem 1.75rem; }

.timeline-days {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-day {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-12px);
  animation: slideInDay 0.6s ease forwards;
}

.timeline-day:nth-child(1) { animation-delay: 0.2s; }
.timeline-day:nth-child(2) { animation-delay: 0.4s; }
.timeline-day:nth-child(3) { animation-delay: 0.6s; }
.timeline-day:nth-child(4) { animation-delay: 0.8s; }
.timeline-day:nth-child(5) { animation-delay: 1.0s; }

@keyframes slideInDay {
  to { opacity: 1; transform: translateX(0); }
}

.timeline-day:hover {
  background: rgba(181, 102, 74, 0.06);
  border-color: var(--border-default);
}

.timeline-day.completed { border-color: rgba(181, 102, 74, 0.2); }

.day-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
}

.day-label span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}

.day-content {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.day-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-bar {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}

.status-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
}

.status-check.done {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: var(--bg-deep);
}

.status-check.in-progress {
  border: 1.5px solid var(--amber);
  color: var(--amber);
  background: transparent;
}

.status-check.pending {
  border: 1.5px solid var(--text-faint);
  color: transparent;
  background: transparent;
}

.timeline-progress {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-stat { text-align: center; }

.progress-stat .value {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
}

.progress-stat .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(181, 102, 74, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ===== TRUST MARQUEE ===== */
.trust-bar {
  background: linear-gradient(90deg, var(--bg-base), rgba(26, 102, 50, 0.03), var(--bg-base));
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
  overflow: hidden;
  position: relative;
}

.trust-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.trust-marquee {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.trust-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-logo {
  color: var(--text-faint);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: color 0.3s ease;
  opacity: 0.6;
  letter-spacing: -0.01em;
}

.trust-logo:hover { color: var(--amber); opacity: 1; }

/* ===== SECTION TRANSITIONS ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== PROBLEM SECTION ===== */
.problem {
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(181, 102, 74, 0.04) 0%, transparent 60%),
    var(--bg-deep);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.problem-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.problem-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(181, 102, 74, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.problem-card:hover::before,
.problem-card:hover::after { opacity: 1; }

.problem-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.problem-card p { font-size: 0.95rem; color: var(--text-muted); }

.problem-closing {
  text-align: center;
  font-size: 1.15rem;
  color: var(--amber-light);
  font-weight: 600;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(181, 102, 74, 0.06) 0%, rgba(212, 149, 110, 0.03) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  letter-spacing: -0.01em;
}

/* ===== SOLUTION ===== */
.solution {
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(26, 102, 50, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 60%, rgba(181, 102, 74, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-elevated) 100%);
  padding: 8rem 2rem;
}

.solution .container { max-width: 800px; text-align: center; }
.solution h2 { margin-bottom: 1.5rem; }
.solution p { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background:
    radial-gradient(ellipse 60% 40% at 70% 30%, rgba(181, 102, 74, 0.04) 0%, transparent 60%),
    var(--bg-deep);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  border-color: var(--border-default);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
  border-radius: 50%;
  color: var(--bg-deep);
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px var(--glow-amber);
}

.step-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }

.how-closing {
  text-align: center;
  padding: 2.5rem;
  background: rgba(181, 102, 74, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.how-closing p { margin: 0; font-size: 1rem; color: var(--text-muted); }

/* ===== OUTCOMES ===== */
.outcomes {
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(181, 102, 74, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-elevated) 100%);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.outcome-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.outcome-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.outcome-card:hover::after { opacity: 1; }

.outcome-icon { font-size: 2.25rem; margin-bottom: 1.25rem; }
.outcome-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.outcome-card p { font-size: 0.95rem; color: var(--text-muted); }

.scale-banner {
  background: linear-gradient(135deg, var(--bg-green-subtle) 0%, var(--bg-green-tint) 100%);
  border: 1px solid var(--border-green-hover);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
}

.scale-banner h3 { margin-bottom: 0.5rem; }
.scale-banner p { font-size: 1rem; color: var(--text-muted); }

/* ===== VENUE TYPES ===== */
.venue-types {
  background:
    radial-gradient(ellipse 60% 40% at 60% 40%, rgba(26, 102, 50, 0.04) 0%, transparent 60%),
    var(--bg-deep);
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.venue-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.venue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-light), var(--brand-green));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.venue-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-6px);
}

.venue-card:hover::before { opacity: 1; }
.venue-card h3 { margin-bottom: 1.25rem; }

.venue-card ul { list-style: none; margin-bottom: 1.5rem; }

.venue-card li {
  color: var(--text-secondary);
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  position: relative;
  font-size: 0.95rem;
}

.venue-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
}

.venue-tag { font-size: 0.8rem; color: var(--text-faint); font-style: italic; }
.venue-closing { text-align: center; color: var(--text-muted); font-size: 1rem; padding: 2rem; }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background:
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(181, 102, 74, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-elevated) 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(61, 148, 87, 0.15);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--border-default);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-text {
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.author-name { color: var(--text-primary); font-weight: 600; margin-bottom: 0.25rem; font-size: 0.95rem; }
.author-title { color: var(--text-muted); font-size: 0.85rem; }

/* ===== SERVICES LIGHT ===== */
.services-light { background: var(--bg-deep); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.service-card h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== OBJECTIONS ===== */
.objections {
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(181, 102, 74, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-elevated) 100%);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.objection-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all 0.4s ease;
}

.objection-item:hover {
  border-color: var(--border-default);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.objection-item h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--gold); }
.objection-item p { font-size: 0.95rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 60%, var(--amber-light) 100%);
  text-align: center;
  border-radius: var(--radius-xl);
  margin: 0 2rem;
  padding: 5.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 20%, rgba(255,255,255,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 { color: var(--bg-deep); margin-bottom: 1.25rem; position: relative; }

.cta-section p {
  color: rgba(13, 12, 11, 0.72);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .btn {
  background: var(--bg-deep);
  color: var(--gold);
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  position: relative;
}

.cta-section .btn:hover {
  background: rgba(13, 12, 11, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ===== FOOTER SPACER ===== */
.footer-space { height: 5rem; background: var(--bg-deep); }

/* ===== HOW IT WORKS PAGE ===== */
.hiw-hero h2 { text-align: center; margin-bottom: 1rem; }

.hiw-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.system-overview { text-align: center; margin-bottom: 4rem; }
.system-overview h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.system-overview p { font-size: 1rem; max-width: 600px; margin: 0 auto; color: var(--text-muted); }

.layers-container { max-width: 960px; margin: 4rem auto; }

.layer-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.layer-item.reversed { direction: rtl; }
.layer-item.reversed > * { direction: ltr; }

.layer-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.layer-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

.layer-visual {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.4s ease;
}

.layer-visual:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.layer-visual .layer-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.layer-visual p { font-size: 0.9rem; color: var(--text-muted); }

.scale-section {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-subtle);
}

.scale-section h3 { text-align: center; margin-bottom: 1.25rem; }

.scale-section > p,
.scale-section .container > p {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.scale-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.scale-card {
  background: rgba(181, 102, 74, 0.04);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.scale-card:hover {
  border-color: var(--border-hover);
  background: rgba(181, 102, 74, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.scale-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--gold); }
.scale-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== SERVICES PAGE ===== */
.services-hero h2 { text-align: center; margin-bottom: 1rem; }

.services-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin-bottom: 4rem;
}

.philosophy h3 { margin-bottom: 1.5rem; }
.philosophy p { margin-bottom: 1.5rem; color: var(--text-secondary); }

.philosophy-callout {
  background: var(--bg-green-tint);
  border-left: 3px solid var(--brand-green-light);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.phases-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.phase-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.75rem 2.25rem;
  transition: all 0.4s ease;
}

.phase-card:hover {
  border-color: var(--border-default);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.phase-card h3 { margin-bottom: 1.5rem; color: var(--gold); }
.phase-card ul { list-style: none; }

.phase-card li {
  color: var(--text-secondary);
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  position: relative;
  font-size: 0.95rem;
}

.phase-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
}

/* Comparison table */
.comparison-table {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 4rem;
}

.comparison-table table { width: 100%; border-collapse: collapse; }

.comparison-table th {
  background: rgba(181, 102, 74, 0.06);
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-default);
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--amber); font-weight: 600; }
.comparison-table .cross { color: var(--text-faint); }

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.expectation-card {
  background: rgba(181, 102, 74, 0.03);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.expectation-card:hover {
  border-color: var(--border-hover);
  background: rgba(181, 102, 74, 0.07);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.expectation-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.expectation-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--gold); }
.expectation-card p { font-size: 0.85rem; color: var(--text-muted); }

/* FAQ */
.faq-section { margin-bottom: 4rem; }
.faq-section h3 { text-align: center; margin-bottom: 2.5rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-default);
  background: var(--bg-elevated);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.faq-toggle {
  color: var(--amber);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { display: block; }

/* ===== USE CASES PAGE ===== */
.usecases-hero h2 { text-align: center; margin-bottom: 1rem; }

.usecases-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.usecase-container {
  margin-bottom: 4.5rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}

.usecase-container:hover { border-color: var(--border-default); }

.usecase-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.usecase-box {
  background: rgba(181, 102, 74, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
}

.usecase-box h4 {
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.usecase-box .main-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

.usecase-arrow { font-size: 1.75rem; color: var(--amber); text-align: center; }

.outcomes-summary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.outcome-icon-card {
  background: rgba(181, 102, 74, 0.04);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.outcome-icon-card:hover {
  border-color: var(--border-hover);
  background: rgba(181, 102, 74, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.outcome-icon-card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.outcome-icon-card p { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.outcome-icon-card strong { color: var(--gold); }

.venue-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.scenario-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.75rem 2.25rem;
  transition: all 0.4s ease;
}

.scenario-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.scenario-card h3 { margin-bottom: 1.25rem; font-size: 1.2rem; }
.scenario-card p { font-size: 0.9rem; margin-bottom: 1rem; color: var(--text-muted); }
.scenario-card strong { color: var(--text-secondary); }

/* ===== NUMBER COUNTER ===== */
.counter { display: inline-block; }

/* CONTACT */
.contact{background:var(--ch);border-top:2px solid var(--jade);scroll-margin-top:64px}
.contact-value{margin-bottom:44px}
.contact-value h3{font-family:var(--serif);font-size:28px;color:var(--li);margin-bottom:12px;line-height:1.2}
.contact-value p{font-size:16px;color:rgba(240,240,237,.5);line-height:1.7}
.contact-promise{display:flex;flex-direction:column;gap:12px;margin-top:32px}
.promise-item{display:flex;align-items:center;gap:12px;font-size:14px;color:rgba(240,240,237,.55)}
.promise-check{width:18px;height:18px;background:rgba(125,202,186,.2);border-radius:2px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--jade);font-size:11px;font-weight:bold}
.cd{border-top:1px solid rgba(240,240,237,.08);padding:18px 0}
.cd:last-of-type{border-bottom:1px solid rgba(240,240,237,.08)}
.cd-l{font-family:var(--mono);font-size:10px;letter-spacing:.13em;text-transform:uppercase;color:var(--jade);opacity:.7;margin-bottom:5px}
.cd-v{font-size:15px;color:var(--li)}
.cd-v a{color:var(--li);text-decoration:none}
.contact-logo{margin-top:44px}
.form-g{margin-bottom:18px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:18px}
.form-l{display:block;font-family:var(--mono);font-size:10px;letter-spacing:.11em;text-transform:uppercase;color:rgba(240,240,237,.3);margin-bottom:8px}
.form-i{width:100%;background:rgba(240,240,237,.04);border:1px solid rgba(240,240,237,.1);color:var(--li);font-family:var(--body);font-size:15px;padding:13px 16px;outline:none;transition:border-color .2s,background .2s;appearance:none;border-radius:0}
.form-i::placeholder{color:rgba(240,240,237,.17)}
.form-i:focus{border-color:rgba(240,240,237,.38);background:rgba(240,240,237,.06)}
textarea.form-i{min-height:100px;resize:vertical}
.form-sub{font-family:var(--mono);font-size:10.5px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;background:var(--jade);color:var(--ch);border:none;padding:15px 32px;cursor:pointer;transition:opacity .2s;width:100%;margin-top:4px}
.form-sub:hover{opacity:.88}

.nav-burger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none}
.nav-burger span{display:block;width:22px;height:2px;background:white;transition:all .3s;}
.nav-mobile{display:none;position:fixed;top:64px;left:0;right:0;background:var(--ch);border-bottom:1px solid rgba(240,240,237,.08);padding:16px 24px 24px;z-index:99;flex-direction:column;gap:4px;}
.nav-mobile.open{display:flex;}
.nav-mobile a{font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:rgba(240,240,237,.55);text-decoration:none;padding:14px 0;border-bottom:1px solid rgba(240,240,237,.06);transition:color .2s}
.nav-mobile a:last-child{border-bottom:none;color:var(--li)}
#nav-mobile{height: 220px !important;}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid,
  .scale-cards,
  .expectations-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-summary { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  nav .tabs { display: none; }
  .nav-cta { display:none; }
  .nav-burger{display:flex}

  .hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero .container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { padding-right: 0; }

  section { padding: 5rem 1.5rem; }
  .container { padding: 0 1.5rem; }

  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; justify-content: center; }

  .problem-grid,
  .objections-grid,
  .venue-grid,
  .outcomes-grid,
  .testimonial-grid,
  .services-grid,
  .phases-container,
  .steps-grid,
  .scale-cards,
  .expectations-grid,
  .venue-scenarios,
  .outcomes-summary { grid-template-columns: 1fr; }

  .layer-item { grid-template-columns: 1fr; gap: 2rem; }
  .layer-item.reversed { direction: ltr; }

  .usecase-header { grid-template-columns: 1fr; gap: 1rem; }

  .comparison-table { overflow-x: auto; }
  .comparison-table table { min-width: 550px; }

  .cta-section { margin: 0 1rem; padding: 4rem 2rem; border-radius: var(--radius-lg); }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .logo { font-size: 1.35rem; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 3.5rem 1rem; }
  .container { padding: 0 1rem; }

  .problem-card, .outcome-card, .venue-card, .testimonial-card,
  .service-card, .objection-item, .scale-card, .phase-card,
  .usecase-box, .expectation-card, .scenario-card { padding: 1.5rem; }

  .timeline-body { padding: 1.25rem; }
  .timeline-header { padding: 1rem 1.25rem; }
  .timeline-day { grid-template-columns: 48px 1fr auto; gap: 0.75rem; padding: 0.75rem; }

  .step-number { width: 48px; height: 48px; font-size: 1.15rem; }
}