/* ==========================================================================
   AI ESSENTIALS DESIGN SYSTEM — STYLESHEET
   Design System: AIEssentialsDesignSystem_bfa348
   Spec: 1-1 Consultation Landing Page Design Spec
   Theme: Airy Editorial Magazine Rhythm (Zero Cramped Boxes, Open Hairlines)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  /* ---- Colors (80 / 15 / 5 System) ---- */
  --white: #F9FAFC;          /* Signal White ground */
  --paper: #FFFFFF;
  --ink-900: #060814;        /* Near-black ink */
  --ink-700: #1B1E33;
  --ink-500: #4A4F6A;        /* Body copy */
  --ink-300: #8C90A8;        /* Muted */
  --line: #E4E6F0;           /* 1px hairline rule */
  --line-strong: #C9CCDC;

  /* Primary (15%) */
  --blue-electric: #1A22FF;  /* Electric Operator Blue */
  --blue-700: #141AC7;
  --blue-tint: rgba(26, 34, 255, 0.08);

  /* Navy Band */
  --navy-900: #050B36;       /* Editorial Dark Band */
  --navy-800: #09114D;
  --navy-line: rgba(249, 250, 252, 0.14);

  /* Accents (5%) */
  --lime-signal: #D8FF32;    /* Signal Lime */
  --orange-deploy: #FF6A1A;  /* Deployment Orange */
  --red-editorial: #FF3B30;

  /* ---- Typography ---- */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  --tracking-display: -0.035em;
  --tracking-label: 0.32em;

  /* ---- Geometry & Shadows ---- */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 3px rgba(6, 8, 20, 0.05);
  --shadow-md: 0 12px 36px -12px rgba(6, 8, 20, 0.10);
  --shadow-brand: 0 18px 44px -14px rgba(26, 34, 255, 0.45);

  /* ---- Generous Layout & Tall Editorial Rhythm ---- */
  --container-max: 1200px;
  --gutter: clamp(24px, 5.5vw, 88px);
  --section-y: clamp(96px, 11vw, 150px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--white);
  color: var(--ink-900);
}

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ==========================================================================
   Typography & Micro-Labels
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: var(--tracking-display);
  font-weight: 700;
  line-height: 1.08;
}

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--blue-electric);
}

.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 20px;
}

.micro-label.on-dark {
  color: var(--lime-signal);
}

.micro-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--lime-signal);
  display: inline-block;
  box-shadow: 0 0 10px var(--lime-signal);
}

.section-head {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-title {
  font-size: clamp(2.15rem, 4.5vw, 3.35rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-sub {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  color: var(--ink-500);
  max-width: 58ch;
  line-height: 1.75;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--blue-electric);
  color: #ffffff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background-color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 22px 52px -12px rgba(26, 34, 255, 0.58);
}

.btn-primary:active {
  transform: scale(0.985);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: var(--ink-900);
  color: var(--ink-900);
  transform: translateY(-2px);
}

.btn-lime {
  background-color: var(--lime-signal);
  color: var(--ink-900);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(216, 255, 50, 0.32);
}

.btn-lime:hover {
  background-color: #e5ff54;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(216, 255, 50, 0.45);
}

/* ==========================================================================
   Header Bar (Clean, Minimalist Brand Mark)
   ========================================================================== */
.site-brand-bar {
  padding: 36px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.site-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.header-status-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(26, 34, 255, 0.05);
  border: 1px solid rgba(26, 34, 255, 0.16);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--blue-electric);
}

.header-status-badge .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* ==========================================================================
   Section 1: Hero Section (Airy, Editorial Focus)
   ========================================================================== */
.hero {
  padding-top: clamp(48px, 6.5vw, 84px);
  padding-bottom: clamp(80px, 10vw, 130px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(48px, 6.5vw, 96px);
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.85rem, 6.2vw, 4.65rem);
  line-height: 1.06;
  letter-spacing: var(--tracking-display);
  margin-bottom: 28px;
  color: var(--ink-900);
}

.hero-subhead {
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.micro-trust {
  font-size: 0.88rem;
  color: var(--ink-300);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.5vw, 44px);
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.stat-item b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.3rem);
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.5;
}

.hero-portrait-card {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 24px 64px -20px rgba(6, 8, 20, 0.18);
  border: 1px solid rgba(6, 8, 20, 0.08);
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.02);
}

.hero-portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(5, 11, 54, 0.95) 0%, rgba(5, 11, 54, 0.7) 65%, transparent 100%);
  color: #ffffff;
}

.hero-portrait-caption .eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-signal);
  margin-bottom: 6px;
}

.hero-portrait-caption h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-portrait-caption p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Section 2: Bonus Stack (Open Editorial Top-Rules, Never Boxes)
   ========================================================================== */
.bonus-section {
  padding: var(--section-y) 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  background: transparent;
  border: none;
}

.bonus-table th {
  background: transparent;
  border-bottom: 1px solid var(--ink-900);
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  text-align: left;
}

.bonus-table td {
  padding: 36px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.bonus-row {
  transition: background 0.2s ease;
}

.bonus-row:hover {
  background: rgba(249, 250, 252, 0.6);
}

.bonus-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
  line-height: 1.25;
}

.bonus-desc {
  font-size: 0.98rem;
  color: var(--ink-500);
  line-height: 1.75;
  max-width: 58ch;
}

.bonus-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--blue-electric);
  white-space: nowrap;
}

.bonus-table-footer td {
  padding: 40px 0 0;
  border-bottom: none;
}

.bonus-total-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--navy-900);
  color: #ffffff;
  padding: 28px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px -12px rgba(5, 11, 54, 0.28);
}

.bonus-total-wrapper b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #ffffff;
}

.bonus-free-pill {
  background: var(--lime-signal);
  color: var(--ink-900);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Section 3: Persona Section (Open Tabs, Unboxed Layout)
   ========================================================================== */
.persona-section {
  padding: var(--section-y) 0;
}

.persona-tabs-nav {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  overflow-x: auto;
}

.persona-tab-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-500);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.persona-tab-btn:hover {
  color: var(--ink-900);
  background: rgba(26, 34, 255, 0.04);
}

.persona-tab-btn.active {
  background: var(--blue-electric);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(26, 34, 255, 0.3);
}

.persona-tab-panel {
  display: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 40px 0 0;
  box-shadow: none;
  animation: fadeIn 0.3s ease;
}

.persona-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.persona-panel-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: clamp(48px, 6vw, 84px);
  align-items: start;
}

.persona-panel-content h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--ink-900);
}

.persona-panel-content p {
  font-size: 1.05rem;
  color: var(--ink-500);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 52ch;
}

.persona-deliverables {
  list-style: none;
  margin-bottom: 36px;
}

.persona-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 18px;
}

.persona-deliverables li svg {
  color: var(--blue-electric);
  flex-shrink: 0;
  margin-top: 4px;
}

.persona-panel-card {
  background: var(--navy-900);
  color: #ffffff;
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-line);
  box-shadow: 0 20px 48px -14px rgba(5, 11, 54, 0.28);
}

.persona-panel-card b {
  color: var(--lime-signal);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 16px;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.persona-panel-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.45;
  margin-bottom: 24px;
  color: #ffffff;
}

.persona-panel-card span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  display: block;
}

/* ==========================================================================
   Section 4: Why A Call (Generous Whitespace Focus)
   ========================================================================== */
.why-call-section {
  padding: var(--section-y) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.why-call-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.why-call-card h2 {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  line-height: 1.18;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.why-call-card p {
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  color: var(--ink-500);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ==========================================================================
   Section 5: What Happens On The Call (3-Step Process)
   ========================================================================== */
.process-section {
  padding: var(--section-y) 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4.5vw, 68px);
  margin-top: 64px;
}

.process-col {
  border-top: 2px solid var(--ink-900);
  padding-top: 32px;
}

.process-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-electric);
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0.08em;
}

.process-col h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  margin-bottom: 16px;
  line-height: 1.25;
}

.process-col p {
  font-size: 1rem;
  color: var(--ink-500);
  line-height: 1.75;
}

/* ==========================================================================
   Section 6: FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: var(--section-y) 0;
}

.faq-list {
  max-width: 860px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--blue-electric);
}

.faq-icon {
  width: 26px;
  height: 26px;
  transition: transform 0.25s ease;
  color: var(--blue-electric);
  flex-shrink: 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding-bottom: 30px;
}

.faq-answer p {
  font-size: 1.05rem;
  color: var(--ink-500);
  line-height: 1.8;
}

/* ==========================================================================
   Section 7: Social Proof (Testimonial Cards)
   ========================================================================== */
.social-proof-section {
  padding: var(--section-y) 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 44px);
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.testimonial-stars {
  color: var(--orange-deploy);
  margin-bottom: 20px;
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testimonial-quote {
  font-size: 1.02rem;
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-electric);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--ink-300);
}

/* ==========================================================================
   Section 8: Urgency Progress Bar
   ========================================================================== */
.urgency-section {
  padding: clamp(80px, 9vw, 120px) 0;
  background: #09114D;
  color: #ffffff;
}

.urgency-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.urgency-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.urgency-progress-track {
  width: 100%;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 18px;
}

.urgency-progress-fill {
  height: 100%;
  background: var(--lime-signal);
  border-radius: var(--radius-pill);
  transition: width 1s ease-in-out;
}

.urgency-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* ==========================================================================
   Section 9: Bonus Stack Repeated (Condensed)
   ========================================================================== */
.bonus-repeat-section {
  padding: clamp(72px, 8vw, 110px) 0 40px;
  background: var(--navy-900);
  color: #ffffff;
}

.bonus-repeat-box {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}

.bonus-repeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 28px;
  margin-bottom: 24px;
}

.bonus-repeat-item {
  border-left: 3px solid var(--lime-signal);
  padding-left: 20px;
}

.bonus-repeat-item b {
  display: block;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.bonus-repeat-item span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ==========================================================================
   Section 10: Final CTA (Navy Band)
   ========================================================================== */
.final-cta-section {
  padding: clamp(96px, 12vw, 160px) 0 clamp(80px, 10vw, 140px);
  background: var(--navy-900);
  color: #ffffff;
  text-align: center;
}

.final-cta-box {
  max-width: 820px;
  margin: 0 auto;
}

.final-cta-box h2 {
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 3.85rem);
  line-height: 1.08;
  margin-bottom: 28px;
}

.final-cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-box .micro-copy {
  margin-top: 24px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  padding: 56px 0 40px;
  background: #020517;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-disclaimer {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 24px;
  line-height: 1.6;
}

/* ==========================================================================
   Section 10: Multi-Step Progressive Booking Form (Embedded On-Page)
   ========================================================================== */
.booking-flow-section {
  scroll-margin-top: 40px;
}

.multi-step-form-card {
  background: #060B2E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  margin: 36px auto 0;
  max-width: 880px;
  box-shadow: 0 28px 72px -16px rgba(5, 11, 54, 0.5);
  color: #ffffff;
  text-align: left;
  position: relative;
}

/* Progress Header */
.form-progress-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.form-progress-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.step-indicator {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lime-signal);
  letter-spacing: 0.1em;
}

.step-reassurance {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.form-progress-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.form-progress-bar-fill {
  height: 100%;
  background: var(--lime-signal);
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Step Headlines & Subheads */
.step-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.18;
}

.step-subhead {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.65;
}

.step-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.btn-step-back {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.btn-step-back:hover {
  color: #ffffff;
}

.selected-audience-badge {
  background: rgba(26, 34, 255, 0.25);
  border: 1px solid rgba(26, 34, 255, 0.45);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Step 1: Audience Cards Grid */
.audience-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.audience-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 34px 24px;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  user-select: none;
}
.audience-card:hover {
  background: rgba(26, 34, 255, 0.12);
  border-color: var(--blue-electric);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.audience-card.selected {
  border-color: var(--lime-signal);
  background: rgba(216, 255, 50, 0.08);
  box-shadow: 0 0 0 2px var(--lime-signal);
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26, 34, 255, 0.2);
  color: var(--lime-signal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-content h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.card-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.card-arrow {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--lime-signal);
  font-weight: 700;
}

/* Step 2: Goal Cards Grid */
.goals-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.goal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
  user-select: none;
}
.goal-card:hover {
  border-color: rgba(26, 34, 255, 0.6);
  background: rgba(26, 34, 255, 0.08);
}
.goal-card.selected {
  border-color: var(--lime-signal);
  background: rgba(216, 255, 50, 0.08);
  box-shadow: 0 0 0 2px var(--lime-signal);
}

.goal-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  color: transparent;
}
.goal-card.selected .goal-checkbox {
  background: var(--lime-signal);
  border-color: var(--lime-signal);
  color: var(--ink-900);
}

.goal-text {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.45;
}

.step-action-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.goals-limit-hint {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Step 3: Inputs & Form Layout */
.form-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.multi-step-form-card .modal-form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.multi-step-form-card .modal-form-group input,
.multi-step-form-card .modal-form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  width: 100%;
  outline: none;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}
.multi-step-form-card .modal-form-group input::placeholder,
.multi-step-form-card .modal-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.multi-step-form-card .modal-form-group input:focus,
.multi-step-form-card .modal-form-group textarea:focus {
  border-color: var(--lime-signal);
  box-shadow: 0 0 0 3px rgba(216, 255, 50, 0.15);
  background: rgba(255, 255, 255, 0.09);
}

/* Value Reassurance Panel */
.value-reassurance-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0 20px;
}

.reassurance-label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-signal);
  margin-bottom: 14px;
}

.reassurance-items-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

.prompt-library-card {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.prompt-lib-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.prompt-lib-tags {
  display: flex;
  gap: 8px;
}

.lib-tag {
  background: rgba(26, 34, 255, 0.25);
  border: 1px solid rgba(26, 34, 255, 0.45);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* 99-Slot Scarcity Strip */
.scarcity-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 28px;
}

.scarcity-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.scarcity-top-row b {
  font-family: var(--font-display);
  color: #ffffff;
  letter-spacing: 0.05em;
}
.scarcity-top-row span {
  color: rgba(255, 255, 255, 0.7);
}

.scarcity-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.scarcity-fill {
  height: 100%;
  background: var(--lime-signal);
  border-radius: 999px;
}

.scarcity-bottom-row {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.submit-reservation-btn {
  width: 100%;
  padding: 20px 36px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.reservation-subtext {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
}

/* Success Timeline */
.success-flow-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0;
  text-align: left;
}

.timeline-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}
.timeline-step.completed {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.06);
}
.timeline-step.active {
  border-color: var(--blue-electric);
  background: rgba(26, 34, 255, 0.12);
}
.timeline-step .step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--lime-signal);
  margin-bottom: 6px;
}
.timeline-step b {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 2px;
}
.timeline-step p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Responsive Adaptations (Fluid Down to 360px)
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 48px;
  }

  .process-grid,
  .testimonials-grid,
  .bonus-repeat-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .persona-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .hero-stats-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-table th, .bonus-table td {
    padding: 20px 0;
  }

  .bonus-total-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .site-brand-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}
