/* switch.css — C4 ManyChat Replacement Landing Page
   ConversionIQ brand system (extracted from conversioniq.ai)
   Fonts: Sora (display), Inter (body)
*/

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

:root {
  /* Brand colors */
  --ciq-purple:  #6363F1;
  --ciq-indigo:  #4338CA;
  --ciq-cyan:    #06B6D4;
  --ciq-accent:  #C91E40;
  --ciq-cta:     #F0264F;
  --ciq-cta-hover: #E01640;

  /* Neutrals */
  --white:    #FFFFFF;
  --off-white:#FAFAFA;
  --gray-50:  #F4F4F5;
  --gray-100: #E4E4E7;
  --gray-200: #D4D4D8;
  --gray-300: #A1A1AA;
  --gray-400: #71717A;
  --gray-500: #52525B;
  --gray-600: #3F3F46;
  --gray-700: #27272A;
  --gray-800: #18181B;
  --black:    #0C0C0C;

  /* Semantic */
  --success:  #22C55E;
  --error:    #EF4444;

  /* Typography */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --grid-margin: clamp(1.5rem, 5vw, 6rem);
  --section-py:  clamp(4rem, 6vw, 6rem);

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Radii */
  --radius-sm:  0.25rem;
  --radius-md:  0.375rem;
  --radius-lg:  0.5rem;
  --radius-xl:  0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography helpers ── */
.font-display { font-family: var(--font-display); }
.text-muted   { color: var(--gray-400); }
.text-purple   { color: var(--ciq-purple); }
.serif-em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ciq-purple);
}

/* ── Reveal animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.125rem var(--grid-margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--gray-100);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
nav.scrolled .nav-logo { color: var(--black); }
nav.scrolled .nav-logo img { content: url('/assets/brand/ciq-logo-light-sm.png'); }
.nav-logo img { height: 28px; width: auto; }

.nav-center { display: none; align-items: center; gap: 2rem; }
.nav-center a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.nav-center a:hover { color: #fff; }
nav.scrolled .nav-center a { color: var(--gray-500); }
nav.scrolled .nav-center a:hover { color: var(--black); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: #000;
  background: var(--white);
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s var(--ease-out-expo);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
nav.scrolled .nav-cta { background: var(--ciq-cta); color: var(--white); }
nav.scrolled .nav-cta:hover { background: var(--ciq-cta-hover); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px; height: 36px;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}
nav.scrolled .nav-hamburger span { background: var(--black); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile-overlay.open { opacity: 1; pointer-events: auto; }

.nav-mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 101;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
  overflow-y: auto;
}
.nav-mobile-drawer.open { transform: translateX(0); }
.nav-mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.nav-mobile-drawer a:hover { color: var(--ciq-purple); }
.nav-mobile-drawer .nav-mobile-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--ciq-purple);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-mobile-drawer .nav-mobile-cta:hover { background: var(--ciq-indigo); }

@media (min-width: 768px) {
  .nav-center { display: flex; }
  .nav-hamburger { display: none !important; }
}
@media (max-width: 767px) {
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-overlay { display: block; }
  .nav-mobile-drawer { display: flex; }
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--grid-margin) 5rem;
  position: relative;
  overflow: hidden;
}
.hero-gradient-tl {
  position: absolute;
  top: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,99,241,0.28) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-gradient-br {
  position: absolute;
  bottom: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ciq-cyan);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.1s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: scaleUp 0.7s var(--ease-out-expo) 0.2s forwards;
}
.hero-title .serif-em {
  color: var(--ciq-cyan);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.35s forwards;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out-expo) 0.5s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: var(--ciq-cta);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}
.btn-primary:hover {
  background: var(--ciq-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,38,79,0.35);
}
.btn-primary .arrow-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.btn-primary:hover .arrow-circle { background: rgba(255,255,255,0.35); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
  padding: 0.5rem 0;
}
.btn-secondary:hover { color: var(--white); }
.btn-secondary svg { transition: transform 0.3s; }
.btn-secondary:hover svg { transform: translateY(3px); }

/* Hero visual: split comparison */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-visual {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.hero-panel {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-panel { padding: 1.25rem; }
  .flow-node { font-size: 0.8125rem; padding: 0.625rem 0.875rem; }
  .convo-bubble { font-size: 0.875rem; max-width: 92%; }
}
.hero-panel-mc {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-panel-ciq {
  background: rgba(99,99,241,0.12);
  border: 1px solid rgba(99,99,241,0.3);
}
.hero-panel-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.hero-panel-mc .hero-panel-label { color: var(--gray-300); }
.hero-panel-ciq .hero-panel-label { color: var(--ciq-cyan); }

/* ManyChat flow mock — node/branch diagram */
.flow-nodes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.flow-node {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gray-600);
  opacity: 0;
  animation: snapIn 0.2s steps(2, end) forwards;
}
.flow-node:nth-child(1) { animation-delay: 0.05s; }
.flow-node:nth-child(2) { animation-delay: 0.3s; }
.flow-node:nth-child(3) { animation-delay: 0.5s; }
.flow-node:nth-child(4) { animation-delay: 0.7s; }
.flow-node:nth-child(5) { animation-delay: 0.9s; }
.flow-node:nth-child(6) { animation-delay: 1.1s; }
.flow-node:nth-child(7) { animation-delay: 1.3s; }
.flow-node:nth-child(8) { animation-delay: 1.5s; }
.flow-node-branch {
  margin-left: 1rem;
  border-left: 1px dashed rgba(255,255,255,0.2);
  padding-left: 0.75rem;
}
.flow-node .pulse { color: var(--error); }
.flow-node .ok { color: var(--success); }

/* CIQ conversation mock */
.convo-mock {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.convo-bubble {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  max-width: 85%;
  opacity: 0;
  animation: slideIn 0.4s var(--ease-out-expo) forwards;
}
.convo-mock .convo-bubble:nth-child(1) { animation-delay: 0.3s; }
.convo-mock .convo-bubble:nth-child(2) { animation-delay: 0.85s; }
.convo-mock .convo-bubble:nth-child(3) { animation-delay: 1.4s; }
.convo-mock .convo-bubble:nth-child(4) { animation-delay: 1.95s; }
.convo-mock .convo-bubble:nth-child(5) { animation-delay: 2.5s; }
.convo-bubble.bot {
  background: rgba(99,99,241,0.25);
  border: 1px solid rgba(99,99,241,0.3);
  color: rgba(255,255,255,0.9);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-sm);
}
.convo-bubble.user {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-sm);
}
.convo-bubble .channel-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ciq-cyan);
  display: block;
  margin-bottom: 0.25rem;
}

.hero-trust-row {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.8s forwards;
}
.trust-chip {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ciq-cyan);
  flex-shrink: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes snapIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section base ── */
section.block { padding: var(--section-py) var(--grid-margin); }
section.block-alt { background: var(--gray-50); }
section.block-dark { background: var(--gray-800); color: var(--white); }
section.block-dark .section-h { color: var(--white); }
section.block-dark .section-sub { color: rgba(255,255,255,0.6); }
section.block-dark .text-muted { color: rgba(255,255,255,0.55); }

.section-top {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ciq-purple);
  margin-bottom: 1rem;
}
.section-h {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
}
.section-h .serif-em { color: var(--ciq-purple); font-style: italic; }
.section-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-top: 1.25rem;
  max-width: 50ch;
}

/* ── Pain grid ── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.pain-card {
  padding: 2rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pain-card:hover {
  border-color: var(--ciq-purple);
  box-shadow: 0 12px 32px rgba(99,99,241,0.1);
  transform: translateY(-3px);
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(99,99,241,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}
.pain-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-400);
}

/* ── Comparison chart ── */
.chart-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-100);
  vertical-align: bottom;
}
.comparison-table th:first-child { color: var(--gray-400); }
.comparison-table th:nth-child(2) { color: var(--gray-400); text-align: center; }
.comparison-table th:nth-child(3) {
  background: rgba(99,99,241,0.06);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: var(--ciq-purple);
  text-align: center;
}
.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
  line-height: 1.6;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:last-child td:first-child { border-radius: 0 0 0 var(--radius-lg); }
.comparison-table tr:last-child td:nth-child(2) { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.comparison-table tr:last-child td:nth-child(3) { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.comparison-table td:first-child { color: var(--gray-600); }
.comparison-table td:nth-child(2) {
  text-align: center;
  color: var(--gray-400);
  background: rgba(0,0,0,0.015);
}
.comparison-table td:nth-child(3) {
  background: rgba(99,99,241,0.04);
  color: var(--gray-700);
}
.comparison-table tr.feature-row td { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.comparison-table tr.total-row td {
  font-weight: 600;
  border-top: 2px solid var(--gray-200);
  background: var(--gray-50) !important;
  color: var(--black) !important;
  font-family: var(--font-display);
}
.comparison-table .check {
  color: var(--success);
  font-weight: 600;
}
.comparison-table .cross {
  color: var(--error);
}
.chart-sub {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ── Journey timeline ── */
.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.journey-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.journey-item:last-child { border-bottom: none; }
.journey-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(99,99,241,0.1);
  border: 2px solid var(--ciq-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ciq-purple);
  flex-shrink: 0;
}
.journey-body {}
.journey-channel {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ciq-cyan);
  margin-bottom: 0.35rem;
}
.journey-body h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.journey-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-400);
}
.journey-bubbles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.85rem 0 0.85rem;
  max-width: 32rem;
}
.journey-bubble {
  font-size: 0.9375rem;
  line-height: 1.55;
  padding: 0.625rem 0.9rem;
  border-radius: var(--radius-lg);
  max-width: 88%;
}
.journey-bubble.user {
  background: var(--gray-100);
  color: var(--gray-600);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-sm);
}
.journey-bubble.bot {
  background: rgba(99,99,241,0.1);
  border: 1px solid rgba(99,99,241,0.2);
  color: var(--black);
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-sm);
}

.section-cta-row {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.journey-quote {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: rgba(99,99,241,0.05);
  border-left: 3px solid var(--ciq-purple);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}
.journey-quote p {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
}
.journey-quote p + p { margin-top: 0.5rem; }

/* ── How it works ── */
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.how-step {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
@media (min-width: 768px) {
  .how-step { border-bottom: none; padding: 0; }
}
.how-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(99,99,241,0.15);
  margin-bottom: 1rem;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.how-step p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-400);
}

/* ── Social proof ── */
.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.proof-logo-placeholder {
  height: 36px;
  padding: 0.75rem 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.proof-logo-placeholder svg { opacity: 0.4; }
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
@media (max-width: 640px) {
  .proof-stats { grid-template-columns: 1fr; gap: 1.5rem; }
}
.proof-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.proof-stat-num .ciq { color: var(--ciq-purple); }
.proof-stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ── Pricing ── */
#pricing .section-top {
  text-align: center;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}
#pricing .section-label {
  justify-content: center;
}
.pricing-disclaimer {
  padding: 1.25rem 1.5rem;
  background: rgba(99,99,241,0.05);
  border: 1px solid rgba(99,99,241,0.15);
  border-radius: var(--radius-xl);
  margin: 0 auto 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 640px;
}
.pricing-disclaimer strong { color: var(--black); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.pricing-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
.pricing-card.featured {
  border-color: var(--ciq-purple);
  box-shadow: 0 8px 32px rgba(99,99,241,0.15);
}
.pricing-badge {
  position: absolute;
  top: -0.75rem; left: 50%;
  transform: translateX(-50%);
  background: var(--ciq-purple);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price .per {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pricing-divider { height: 1px; background: var(--gray-100); margin: 1.5rem 0; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-features li.neg { color: var(--gray-300); text-decoration: line-through; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
  margin-top: auto;
}
.pricing-cta.primary {
  background: var(--ciq-purple);
  color: var(--white);
}
.pricing-cta.primary:hover { background: var(--ciq-indigo); }
.pricing-cta.secondary {
  background: transparent;
  color: var(--ciq-purple);
  border: 1.5px solid var(--ciq-purple);
}
.pricing-cta.secondary:hover { background: rgba(99,99,241,0.05); }
.pricing-note {
  margin: 1.5rem auto 0;
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 640px;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--ciq-purple);
  transition: transform 0.4s var(--ease-out-expo);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
/* JS-driven open/close: details stays open during the close animation,
   .faq-a uses grid-rows trick so we can transition from 0fr → 1fr smoothly. */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.32s var(--ease-out-expo), opacity 0.24s ease, margin-top 0.32s var(--ease-out-expo);
  margin-top: 0;
}
.faq-a > .faq-a-inner {
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-400);
  max-width: 60ch;
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0.875rem;
}
@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none; }
}

/* ── Final CTA ── */
.final-cta {
  background: var(--black);
  color: var(--white);
  padding: var(--section-py) var(--grid-margin);
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .final-cta-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}
.final-cal {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}
.final-cal-header {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.final-cal-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.cal-embed-placeholder {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.15);
}
.cal-embed-placeholder p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
}
.cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--ciq-cta);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 1.25rem;
}
.cal-btn:hover { background: var(--ciq-cta-hover); }

.final-form-header {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.final-form-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.fallback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.field input::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus {
  outline: none;
  border-color: var(--ciq-purple);
  background: rgba(255,255,255,0.1);
}
.form-submit {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: var(--ciq-purple);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--ciq-indigo); }
.form-note-soft {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── Footer ── */
footer {
  background: var(--black);
  padding: 3rem var(--grid-margin) 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-logo img { height: 24px; width: auto; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 30ch;
}
.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-col {}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.875rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── Statement block ── */
.statement-block {
  padding: var(--section-py) var(--grid-margin);
  background: var(--white);
}
.statement-big {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 22ch;
  margin-bottom: 1.5rem;
}
.statement-big .serif-em { color: var(--ciq-purple); font-style: italic; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
