/* ═══════════════════════════════════════════
   AFTERSHAKE — Landing Page Styles
   Warm, premium, editorial aesthetic
   ═══════════════════════════════════════════ */

:root {
  /* Warm, premium palette */
  --primary: #1a1a1a;
  --primary-dark: #000000;
  --accent: #c8a97e;
  --accent-dark: #b08d5f;
  --accent-light: #f5efe6;
  --dark: #1a1a1a;
  --warm-900: #2d2926;
  --warm-800: #3e3832;
  --warm-700: #5c554e;
  --warm-600: #7a736b;
  --warm-500: #968e85;
  --warm-400: #b3aca4;
  --warm-300: #d4cec8;
  --warm-200: #e8e4df;
  --warm-100: #f3f0ec;
  --warm-50: #faf8f5;
  --cream: #f7f4ef;
  --white: #ffffff;
  --green: #4a7c59;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(26,26,26,0.06), 0 1px 2px rgba(26,26,26,0.04);
  --shadow-md: 0 4px 12px -2px rgba(26,26,26,0.08), 0 2px 6px -1px rgba(26,26,26,0.04);
  --shadow-lg: 0 12px 32px -6px rgba(26,26,26,0.1), 0 4px 12px -2px rgba(26,26,26,0.05);
  --shadow-xl: 0 24px 48px -12px rgba(26,26,26,0.12), 0 8px 24px -4px rgba(26,26,26,0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--warm-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247,244,239,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--warm-200);
}

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

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.03em;
}

.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--dark);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--warm-900);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--dark);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--warm-700);
  border: 1.5px solid var(--warm-300);
}

.btn-ghost:hover {
  border-color: var(--warm-500);
  color: var(--dark);
  background: rgba(255,255,255,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--cream);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 18px 40px;
}

/* ─── HERO ─── */
.hero {
  padding: 140px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--warm-600);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--warm-400);
  letter-spacing: 0.01em;
}

/* ─── iPHONE MOCKUP ─── */
.hero-visual {
  display: flex;
  justify-content: center;
}

.iphone-frame {
  width: 272px;
  height: 556px;
  background: #1c1c1e;
  border-radius: 48px;
  padding: 4px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 40px 80px -20px rgba(26,26,26,0.25),
    0 20px 40px -10px rgba(26,26,26,0.12);
}

.iphone-dynamic-island {
  width: 72px;
  height: 20px;
  background: #000;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.iphone-screen {
  background: #f2f2f7;
  border-radius: 44px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.iphone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  height: 44px;
}

.wifi-icon {
  flex-shrink: 0;
}

.status-left { width: 54px; }

.status-right {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 64px;
  justify-content: flex-end;
  font-size: 0.55rem;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  height: 8px;
}

.signal-bars span {
  display: block;
  width: 2.5px;
  background: #000;
  border-radius: 0.5px;
}

.signal-bars span:nth-child(1) { height: 3px; }
.signal-bars span:nth-child(2) { height: 4.5px; }
.signal-bars span:nth-child(3) { height: 6px; }
.signal-bars span:nth-child(4) { height: 8px; }

.battery-icon {
  width: 20px;
  height: 9px;
  border: 1.5px solid #000;
  border-radius: 2.5px;
  position: relative;
  display: inline-block;
}

.battery-icon::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  right: 1px;
  background: #000;
  border-radius: 1px;
}

.battery-icon::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 4px;
  background: #000;
  border-radius: 0 1px 1px 0;
}

.chat-header {
  background: rgba(242,242,247,0.92);
  backdrop-filter: blur(8px);
  color: var(--dark);
  padding: 6px 12px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border-bottom: 1px solid #d1d1d6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-back {
  width: 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.chat-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.chat-header-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c7c7cc;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-name {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--dark);
}

.chat-header-spacer {
  width: 24px;
  flex-shrink: 0;
}

.chat-body {
  padding: 10px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  overflow: hidden;
}

.chat-bubble-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-group-right {
  align-items: flex-end;
}

.chat-group-left {
  align-items: flex-start;
}

.chat-timestamp {
  font-size: 0.5rem;
  color: #8e8e93;
  margin-top: 2px;
  padding: 0 4px;
}

.chat-bubble {
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 0.7rem;
  line-height: 1.4;
  max-width: 85%;
}

.chat-user {
  background: #34c759;
  color: #fff;
  align-self: flex-end;
}

.chat-group-right .chat-bubble:last-of-type {
  border-bottom-right-radius: 4px;
}

.chat-bot {
  background: #e9e9eb;
  color: var(--dark);
  align-self: flex-start;
}

.chat-group-left .chat-bubble:last-of-type {
  border-bottom-left-radius: 4px;
}

.chat-card-img { padding: 0; }

.biz-card {
  background: #fffef8;
  border-radius: 6px;
  padding: 12px 14px;
  border: none;
  font-family: 'Georgia', serif;
  transform: rotate(-1.5deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.biz-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.03) 100%);
  pointer-events: none;
}

.biz-card-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1px;
}

.biz-card-title {
  font-size: 0.6rem;
  color: #64748b;
  margin-bottom: 1px;
}

.biz-card-company {
  font-size: 0.65rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 4px;
}

.biz-card-details {
  font-size: 0.55rem;
  color: #64748b;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

.chat-voice {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
}

.voice-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.85);
}

.voice-icon svg {
  width: 14px;
  height: 14px;
}

.voice-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-grow: 1;
}

.voice-wave span {
  display: block;
  width: 2.5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.7);
}

.voice-wave span:nth-child(1) { height: 6px; }
.voice-wave span:nth-child(2) { height: 12px; }
.voice-wave span:nth-child(3) { height: 8px; }
.voice-wave span:nth-child(4) { height: 16px; }
.voice-wave span:nth-child(5) { height: 10px; }
.voice-wave span:nth-child(6) { height: 18px; }
.voice-wave span:nth-child(7) { height: 14px; }
.voice-wave span:nth-child(8) { height: 18px; }
.voice-wave span:nth-child(9) { height: 12px; }
.voice-wave span:nth-child(10) { height: 8px; }
.voice-wave span:nth-child(11) { height: 14px; }
.voice-wave span:nth-child(12) { height: 6px; }

.voice-time {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.chat-bot-line {
  margin-bottom: 2px;
  font-size: 0.65rem;
  color: #334155;
}

.chat-bot-line:last-child { margin-bottom: 0; }
.chat-bot-line strong { color: var(--dark); }

.chat-input-bar {
  padding: 6px 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.chat-input-plus {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-input-plus svg {
  width: 20px;
  height: 20px;
}

.chat-input-field {
  flex-grow: 1;
  height: 28px;
  border-radius: 16px;
  border: 1px solid #c7c7cc;
  background: var(--white);
  padding: 0 10px;
  font-size: 0.6rem;
  color: #8e8e93;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-input-placeholder {
  color: #8e8e93;
  font-size: 0.6rem;
}

.chat-input-mic {
  flex-shrink: 0;
}

.iphone-home-bar {
  width: 100px;
  height: 4px;
  background: #000;
  border-radius: 2px;
  margin: 0 auto 6px;
  opacity: 0.2;
  flex-shrink: 0;
}

/* ─── SHARED SECTION HEADINGS ─── */
.pricing h2,
.faq h2,
.final-cta h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.section-sub {
  text-align: center;
  color: var(--warm-500);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ─── STEP SCROLL CONTAINER ─── */
.steps-scroll {
  position: relative;
}

/* ─── STEP INDICATOR ─── */
.steps-indicator {
  position: sticky;
  top: 64px;
  z-index: 50;
  padding: 16px 0;
  background: rgba(247,244,239,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--warm-200);
}

.steps-indicator-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-indicator-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--warm-100);
  color: var(--warm-400);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid var(--warm-200);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  outline: none;
}

.steps-indicator-dot:focus-visible {
  box-shadow: 0 0 0 3px rgba(200,169,126,0.4);
}

.steps-indicator-dot.active {
  background: var(--dark);
  color: var(--cream);
  transform: scale(1.1);
  border-color: var(--dark);
}

.steps-indicator-dot.completed {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.steps-indicator-line {
  width: 48px;
  height: 2px;
  background: var(--warm-200);
  transition: background 0.4s ease;
}

.steps-indicator-line.active {
  background: var(--dark);
}

/* ─── STEP SECTIONS ─── */
.step-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.step-1 { background: var(--cream); }
.step-2 { background: var(--white); }
.step-3 { background: var(--cream); }

.step-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.step-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.step-subtitle {
  color: var(--warm-500);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* Reveal animation for titles */
.step-section .step-label,
.step-section .step-title,
.step-section .step-subtitle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-section.in-view .step-label { opacity: 1; transform: translateY(0); }
.step-section.in-view .step-title { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.step-section.in-view .step-subtitle { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

/* ─── STEP 1: INPUT OPTIONS ─── */
.step-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.step-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: var(--radius);
  text-align: left;
  transition: all 0.25s ease;
}

.step-1 .step-option { background: var(--white); }

.step-option:hover {
  border-color: var(--warm-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-option-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--warm-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-600);
}

.step-option-icon svg {
  flex-shrink: 0;
}

.step-option-text {
  display: flex;
  flex-direction: column;
}

.step-option-text strong {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

.step-option-text span {
  font-size: 0.825rem;
  color: var(--warm-500);
  margin-top: 2px;
}

/* ─── STEP 2: CONTEXT CARDS ─── */
.step-context-demo {
  max-width: 440px;
  margin: 0 auto;
}

.context-card {
  background: var(--warm-50);
  border: 1px solid var(--warm-200);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}

.step-2 .context-card { background: var(--warm-50); }

.context-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.context-card-icon {
  display: flex;
  align-items: center;
  color: var(--warm-600);
}

.context-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.context-card-time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--warm-400);
  font-weight: 500;
}

/* Waveform animation */
.context-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  margin-bottom: 16px;
}

.context-waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.6;
  animation: waveform 1.2s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.step-section.in-view .context-waveform span {
  animation-play-state: running;
}

.context-waveform span:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.context-waveform span:nth-child(2)  { height: 60%; animation-delay: 0.05s; }
.context-waveform span:nth-child(3)  { height: 40%; animation-delay: 0.1s; }
.context-waveform span:nth-child(4)  { height: 80%; animation-delay: 0.15s; }
.context-waveform span:nth-child(5)  { height: 50%; animation-delay: 0.2s; }
.context-waveform span:nth-child(6)  { height: 90%; animation-delay: 0.25s; }
.context-waveform span:nth-child(7)  { height: 70%; animation-delay: 0.3s; }
.context-waveform span:nth-child(8)  { height: 95%; animation-delay: 0.35s; }
.context-waveform span:nth-child(9)  { height: 60%; animation-delay: 0.4s; }
.context-waveform span:nth-child(10) { height: 40%; animation-delay: 0.45s; }
.context-waveform span:nth-child(11) { height: 75%; animation-delay: 0.5s; }
.context-waveform span:nth-child(12) { height: 50%; animation-delay: 0.55s; }
.context-waveform span:nth-child(13) { height: 30%; animation-delay: 0.6s; }
.context-waveform span:nth-child(14) { height: 65%; animation-delay: 0.65s; }
.context-waveform span:nth-child(15) { height: 85%; animation-delay: 0.7s; }
.context-waveform span:nth-child(16) { height: 45%; animation-delay: 0.75s; }
.context-waveform span:nth-child(17) { height: 70%; animation-delay: 0.8s; }
.context-waveform span:nth-child(18) { height: 55%; animation-delay: 0.85s; }
.context-waveform span:nth-child(19) { height: 35%; animation-delay: 0.9s; }
.context-waveform span:nth-child(20) { height: 20%; animation-delay: 0.95s; }

@keyframes waveform {
  from { transform: scaleY(0.5); }
  to   { transform: scaleY(1); }
}

.context-transcript {
  font-size: 0.875rem;
  color: var(--warm-500);
  font-style: italic;
  line-height: 1.5;
}

.context-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.context-divider::before,
.context-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--warm-200);
}

.context-divider span {
  font-size: 0.8rem;
  color: var(--warm-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.context-message-bubble {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--warm-700);
  line-height: 1.5;
}

/* ─── STEP 3: RESULTS ─── */
.result-sheet {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  text-align: left;
}

.result-sheet-header {
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--warm-50);
  border-bottom: 1px solid var(--warm-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-sheet-header svg,
.result-contact-header svg {
  color: var(--warm-500);
  flex-shrink: 0;
}

.result-sheet-row {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.result-sheet-row::-webkit-scrollbar { display: none; }

.result-cell {
  flex-shrink: 0;
  padding: 12px 14px;
  font-size: 0.75rem;
  color: var(--warm-700);
  border-right: 1px solid var(--warm-100);
  min-width: 120px;
  white-space: nowrap;
}

.result-cell:last-child { border-right: none; }
.result-cell-name { font-weight: 600; color: var(--dark); }
.result-cell-link { color: var(--accent-dark); }
.result-cell-notes,
.result-cell-followup { min-width: 180px; white-space: normal; font-style: italic; }

.result-contact {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  text-align: left;
}

.result-contact-header {
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--warm-50);
  border-bottom: 1px solid var(--warm-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-contact-body { padding: 16px; }

.result-contact-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.result-contact-detail {
  font-size: 0.85rem;
  color: var(--warm-500);
  margin-bottom: 2px;
}

.result-contact-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.result-contact-btn:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.step-ownership {
  color: var(--warm-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 8px;
}

.step-ownership strong {
  color: var(--dark);
  font-size: 1.05rem;
}

/* ─── REVEAL ANIMATION ─── */
.step-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-reveal:nth-child(2) { transition-delay: 0.08s; }
.step-reveal:nth-child(3) { transition-delay: 0.16s; }
.step-reveal:nth-child(4) { transition-delay: 0.24s; }
.step-reveal:nth-child(5) { transition-delay: 0.32s; }

/* ─── PRICING ─── */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--warm-50);
  border: 1.5px solid var(--warm-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--warm-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pricing-card-pro {
  border-color: var(--dark);
  border-width: 2px;
  background: var(--warm-50);
}

.pricing-card-pro:hover {
  border-color: var(--dark);
  box-shadow: var(--shadow-lg);
}

.pricing-card-annual {
  border-color: var(--accent);
  background: var(--accent-light);
}

.pricing-card-annual:hover {
  border-color: var(--accent-dark);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-badge-save {
  background: var(--accent-dark);
  color: var(--white);
}

.pricing-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.pricing-amount {
  margin-bottom: 12px;
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
}

.period {
  font-size: 0.9rem;
  color: var(--warm-400);
}

.pricing-desc {
  color: var(--warm-500);
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 4px 0;
  font-size: 0.825rem;
  color: var(--warm-700);
}

.pricing-feature-bonus {
  color: var(--accent-dark) !important;
  font-weight: 600;
  margin-top: 4px;
}

/* ─── PRICING COMPARISON TABLE ─── */
.pricing-comparison {
  max-width: 960px;
  margin: 48px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.pricing-comparison thead th {
  text-align: center;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 2px solid var(--warm-200);
  font-size: 0.9rem;
}

.pricing-comparison thead th:first-child {
  text-align: left;
}

.pricing-comparison .th-price {
  display: block;
  font-size: 0.75rem;
  color: var(--warm-400);
  font-weight: 600;
}

.pricing-comparison tbody td {
  padding: 10px 16px;
  text-align: center;
  color: var(--warm-600);
  border-bottom: 1px solid var(--warm-100);
}

.pricing-comparison tbody td:first-child {
  text-align: left;
  color: var(--warm-700);
  font-weight: 500;
}

/* ─── CHANNEL BANNER ─── */
.channel-banner {
  padding: 80px 0;
  background: var(--cream);
}

.channel-banner-cards {
  display: flex;
  gap: 20px;
  max-width: 460px;
  margin: 32px auto 0;
  justify-content: center;
}

.channel-banner-card {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--warm-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.channel-banner-card:hover {
  border-color: var(--warm-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.channel-banner-card-wa:hover {
  border-color: #25D366;
}

.channel-banner-icon {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-600);
}

.channel-banner-icon svg {
  flex-shrink: 0;
}

.channel-banner-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.channel-banner-card p {
  font-size: 0.825rem;
  color: var(--warm-500);
  margin: 0;
  line-height: 1.4;
}

/* ─── CHANNEL SELECTION MODAL ─── */
.channel-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.channel-modal-overlay.open {
  display: flex;
}

.channel-modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.channel-modal h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 800;
}

.channel-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--warm-400);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.channel-modal-close:hover {
  color: var(--dark);
}

.channel-modal-options {
  display: flex;
  gap: 12px;
}

.channel-modal-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border: 1.5px solid var(--warm-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
}

.channel-modal-option:hover {
  border-color: var(--warm-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.channel-modal-option-wa:hover {
  border-color: #25D366;
}

.channel-modal-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-600);
}

.channel-modal-option-icon svg {
  flex-shrink: 0;
}

.channel-modal-option-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.channel-modal-option-desc {
  font-size: 0.8rem;
  color: var(--warm-500);
}

.modal-consent {
  font-size: 0.8rem;
  color: var(--warm-500);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.modal-consent a {
  color: var(--warm-500);
  text-decoration: underline;
}

/* ─── SMS Opt-In Disclosure ─── */
.sms-disclosure {
  font-size: 0.78rem;
  color: var(--warm-500);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.sms-disclosure a {
  color: var(--warm-500);
  text-decoration: underline;
}

/* ─── FAQ ─── */
.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  margin-top: 48px;
}

.faq-item h3 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.faq-item p {
  color: var(--warm-500);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 120px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,126,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--cream);
  font-size: 2.75rem;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  position: relative;
}

.final-cta p {
  color: var(--warm-500);
  font-size: 1.0625rem;
  margin-bottom: 36px;
  position: relative;
}

.final-cta .btn-primary {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  position: relative;
}

.final-cta .btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(200,169,126,0.25);
}

/* ─── FOOTER ─── */
.footer {
  padding: 40px 0;
  background: var(--dark);
  border-top: 1px solid rgba(200,169,126,0.15);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--warm-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-copy {
  color: var(--warm-600);
  font-size: 0.8rem;
}

/* ─── DESKTOP: STEP OVERRIDES ─── */
@media (min-width: 769px) {
  .step-section {
    min-height: auto;
    padding: 100px 0;
  }

  .step-title {
    font-size: 2.75rem;
  }

  .step-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 520px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-sub {
    margin: 0 auto 24px;
  }

  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-tagline {
    text-align: center;
  }

  .iphone-frame {
    width: 240px;
    height: 490px;
    border-radius: 42px;
  }

  .iphone-dynamic-island {
    width: 62px;
    height: 18px;
    top: 10px;
  }

  .iphone-screen {
    border-radius: 38px;
  }

  .chat-header-avatar {
    width: 22px;
    height: 22px;
    font-size: 0.5rem;
  }

  .step-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 60px 0;
  }

  .step-title {
    font-size: 1.85rem;
  }

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

  .pricing-comparison {
    margin-top: 32px;
  }

  .pricing-comparison table {
    font-size: 0.78rem;
  }

  .pricing-comparison thead th,
  .pricing-comparison tbody td {
    padding: 8px 10px;
  }

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

  .hero-note {
    text-align: center;
  }

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

  .pricing h2,
  .faq h2,
  .final-cta h2,
  .channel-banner h2 {
    font-size: 1.85rem;
  }

  .channel-banner {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 110px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .iphone-frame {
    width: 200px;
    height: 410px;
    border-radius: 36px;
    padding: 3px;
  }

  .iphone-dynamic-island {
    width: 48px;
    height: 14px;
    top: 7px;
  }

  .iphone-screen {
    border-radius: 33px;
  }

  .iphone-status-bar {
    padding: 10px 20px 0;
    height: 36px;
    font-size: 0.5rem;
  }

  .chat-header {
    padding: 4px 8px 6px;
  }

  .chat-header-avatar {
    width: 20px;
    height: 20px;
    font-size: 0.45rem;
  }

  .chat-header-name {
    font-size: 0.5rem;
  }

  .chat-header-back svg {
    width: 6px;
    height: 10px;
  }

  .chat-bubble {
    font-size: 0.6rem;
    padding: 6px 10px;
    border-radius: 14px;
  }

  .chat-timestamp {
    font-size: 0.4rem;
  }

  .biz-card {
    padding: 8px 10px;
    transform: rotate(-1deg);
  }

  .biz-card-name { font-size: 0.7rem; }
  .biz-card-title { font-size: 0.5rem; }
  .biz-card-company { font-size: 0.55rem; }
  .biz-card-details { font-size: 0.45rem; }
  .chat-bot-line { font-size: 0.5rem; }

  .chat-input-bar { padding: 4px 6px 12px; }
  .chat-input-field { height: 22px; font-size: 0.5rem; }
  .chat-input-plus svg { width: 16px; height: 16px; }
  .chat-input-mic { width: 10px; height: 10px; }
  .chat-input-placeholder { font-size: 0.5rem; }
  .iphone-home-bar { width: 80px; height: 3px; margin-bottom: 4px; }

  .pricing-card {
    padding: 28px 20px;
  }

  .price {
    font-size: 2.25rem;
  }

  .step-section {
    padding: 48px 0;
  }

  .step-title {
    font-size: 1.6rem;
  }

  .step-option {
    padding: 14px 16px;
  }

  .step-option-icon {
    width: 38px;
    height: 38px;
  }

  .step-option-icon svg {
    width: 20px;
    height: 20px;
  }

  .pricing,
  .faq,
  .final-cta {
    padding: 72px 0;
  }

  .final-cta h2 {
    font-size: 1.75rem;
  }
}
