/* ============================================
   css/sections.css — Hero, Modules, CTA, etc.
   ============================================ */

/* ─── HERO ─── */
/* CORRIGÉ : overflow visible pour que les waves puissent déborder en bas */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding-top: var(--nav-height);
  padding-bottom: 140px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 25, 80, 0.08) 0%, rgba(5, 15, 55, 0.35) 100%);
}

/* CORRIGÉ : supprimer la courbe du bandeau */
.hero-waves {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  min-height: 100px;
  max-height: 160px;
  z-index: 5;
  pointer-events: none;
}

.waves {
  position: relative;
  width: 100%;
  height: 140px;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 160px;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.35), transparent 42%);
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 25, 85, 0.20) 0%,
    rgba(8, 20, 70, 0.55) 55%,
    rgba(5, 12, 55, 0.75) 100%
  );
}

.hero-shape {
  position: absolute;
  left: 50%;
  bottom: -140px;
  transform: translateX(-50%);
  width: min(1000px, 110%);
  height: 420px;
  background: radial-gradient(circle at 50% 50%, rgba(45, 117, 232, 0.16), transparent 48%);
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
  width: min(1000px, 110%);
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.15) 55%, transparent 78%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb,
.hero-grid,
.hero-oval {
  display: none;
}

.hero-wave-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  line-height: 0;
}

.hero-wave-shape svg {
  display: block;
  width: 100%;
  height: clamp(100px, 13vw, 160px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 1fr);
  gap: var(--space-12);
  max-width: 1100px;
  margin-inline: auto;
  align-items: center;
  padding: var(--space-24) 0 var(--space-16);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-900);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 560px;
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 50, 130, 0.08);
  box-shadow: 0 30px 80px rgba(15, 50, 130, 0.12);
  backdrop-filter: blur(18px);
}

.hero-card-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-6);
}

.hero-title {
  font-size: clamp(2.75rem, 4vw, 4.2rem);
  max-width: 720px;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 660px;
  line-height: 1.8;
  margin-bottom: var(--space-8);
  font-weight: var(--fw-regular);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: 900px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-3) var(--space-4);
  background: rgba(26, 75, 171, 0.30);
  border: 1px solid rgba(91, 155, 248, 0.35);
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-2xl);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-highlights span i {
  color: #ffffff;
  font-size: 0.95em;
}

.hero-trust {
  margin-top: var(--space-6);
}

.hero-trust .trust-avatars {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.hero-trust .trust-text {
  color: var(--gray-600);
}

/* ─── WHY TALKS ─── */
.why-talks {
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.85), rgba(255, 255, 255, 0.98));
  padding-block: var(--space-24);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.why-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(45, 117, 232, 0.12);
  color: var(--blue-700);
  margin-bottom: var(--space-4);
  font-size: 1.2rem;
}

.why-card h3 {
  font-size: var(--text-xl);
  color: var(--blue-950);
  margin-bottom: var(--space-3);
}

.why-card p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* ─── SHOWCASE ─── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.showcase-card {
  position: relative;
  padding: 0 var(--space-6) var(--space-6);
  min-height: 380px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-2xl);
  box-shadow: 0 34px 80px rgba(15, 50, 130, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(45, 117, 232, 0.08), transparent 38%);
  pointer-events: none;
}

.showcase-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  border-radius: 1.5rem 1.5rem 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  position: relative;
}

.showcase-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 35%);
  pointer-events: none;
}

.showcase-card__image--1 { background-image: url('../showcase-images/showcase-1.png'); }
.showcase-card__image--2 { background-image: url('../showcase-images/showcase-2.png'); }
.showcase-card__image--3 { background-image: url('../showcase-images/showcase-3.png'); }
.showcase-card__image--4 { background-image: url('../showcase-images/showcase-4.png'); }
.showcase-card__image--5 { background-image: url('../showcase-images/showcase-5.png'); }
.showcase-card__image--6 { background-image: url('../showcase-images/showcase-6.png'); }

.showcase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-5);
}

.showcase-card h3 {
  margin-bottom: var(--space-4);
  font-size: 1.35rem;
  color: var(--blue-900);
}

.showcase-card p {
  color: var(--gray-600);
  line-height: 1.75;
}

.showcase-card--brand {
  background: linear-gradient(180deg, rgba(11, 32, 80, 0.98), rgba(24, 54, 117, 0.94));
  border-color: transparent;
}

.showcase-card--brand h3,
.showcase-card--brand p {
  color: var(--white);
}

.showcase-card--brand .showcase-number {
  background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.28));
  color: var(--blue-900);
}

.showcase-card--brand .btn-primary-sm {
  margin-top: var(--space-6);
}

/* ─── VIDEO CARD ─── */
.video-label {
  display: inline-flex;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(45, 117, 232, 0.1);
  color: var(--blue-800);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.video-card-meta {
  padding: var(--space-8);
}

.hero-preview-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* ─── APP MOCKUP ─── */
.hero-preview-wrapper,
.hero-video-card,
.video-card,
.video-card::before,
.video-badge,
.hero-video,
.video-play,
.video-play span,
.hero-preview {
  display: none;
}

.app-mockup {
  display: grid;
  grid-template-columns: 64px 200px 1fr;
  height: 420px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-border);
  overflow: hidden;
}

.app-sidebar {
  background: var(--blue-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4) 0;
  gap: var(--space-4);
}

.sidebar-logo {
  margin-bottom: var(--space-4);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.snav-item {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.snav-item:hover,
.snav-item.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.snav-item.orange {
  color: var(--orange-400);
}

.app-channels {
  background: var(--gray-50);
  border-right: 1px solid var(--color-border);
  padding: var(--space-4);
  overflow-y: auto;
}

.ch-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.ch-item {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: space-between;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.ch-item:hover,
.ch-item.active {
  background: var(--blue-50);
  color: var(--blue-700);
}

.ch-badge {
  background: var(--orange-500);
  color: var(--white);
  font-size: 10px;
  font-weight: var(--fw-bold);
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.presence {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  flex-shrink: 0;
}

.presence.online {
  background: #22C55E;
}

.app-chat {
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  color: var(--blue-900);
}

.chip-orange {
  background: rgba(255, 107, 43, 0.1);
  color: var(--orange-600);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.msg {
  display: flex;
  gap: var(--space-3);
}

.msg.self {
  justify-content: flex-end;
}

.msg.self .msg-body {
  background: var(--blue-700);
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-lg);
}

.msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--white);
  flex-shrink: 0;
}

.msg-body {
  background: var(--gray-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  max-width: 70%;
}

.msg-name {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--blue-700);
  margin-bottom: var(--space-1);
}

.msg.self .msg-name {
  color: rgba(255, 255, 255, 0.7);
}

.msg-time {
  font-weight: var(--fw-regular);
  color: var(--gray-400);
  margin-left: var(--space-2);
}

.msg.self .msg-time {
  color: rgba(255, 255, 255, 0.5);
}

.msg-body p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: var(--lh-snug);
}

.msg.self .msg-body p {
  color: var(--white);
}

.msg-tag {
  display: inline-block;
  font-size: 11px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: var(--radius-sm);
  padding: 1px 6px;
  margin-top: var(--space-1);
  font-weight: var(--fw-semibold);
}

.msg.typing .msg-body {
  background: var(--gray-50);
  padding: var(--space-3);
}

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 20px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--gray-400);
  animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

.chat-input {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border);
}

.input-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}

.input-placeholder {
  font-size: var(--text-sm);
  color: var(--gray-400);
}

.input-icons {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-base);
}

/* ─── STATS BAR ─── */
.stats-bar {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  padding-block: var(--space-8);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--white);
  letter-spacing: -0.03em;
}

.stat-item>span:nth-child(2) {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--orange-400);
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  font-weight: var(--fw-medium);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

/* ─── FEATURES SECTION ─── */
.features-overview {
  background: var(--gray-50);
}

/* ─── MODULES SECTION ─── */
.modules {
  background: var(--white);
}

.module-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.module-card-preview {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* ─── CHAT PREVIEW ─── */
.card-chat {
  background: var(--white);
}

.mcp-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  background: var(--gray-50);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--blue-900);
}

.mcp-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
}

.mcp-dot.blue {
  background: var(--blue-500);
}

.mcp-members {
  margin-left: auto;
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.mcp-msg {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid var(--gray-50);
}

.mcp-avatar {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--white);
  flex-shrink: 0;
}

.mcp-text {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: var(--lh-snug);
}

.mcp-tag {
  display: inline-block;
  font-size: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 3px;
  padding: 1px 5px;
  font-weight: var(--fw-semibold);
  margin-left: 4px;
}

.mcp-input {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--gray-400);
  background: var(--gray-50);
  border-top: 1px solid var(--color-border);
}

/* ─── BOT PREVIEW ─── */
.card-bot {
  background: var(--gray-100);
  padding: var(--space-4);
}

.bot-site-preview {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
  border: 1px solid var(--color-border);
}

.bsp-nav {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  margin-bottom: var(--space-3);
}

.bsp-line {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  margin-bottom: var(--space-2);
}

.bsp-line.short {
  width: 60%;
}

.bot-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.bw-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-3);
}

.bw-avatar {
  font-size: 1.5rem;
}

.bw-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--blue-900);
}

.bw-status {
  font-size: 11px;
  color: #22C55E;
}

.bw-msg {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  max-width: 85%;
  margin-bottom: var(--space-2);
  line-height: var(--lh-snug);
}

.bw-msg.bot {
  background: var(--blue-50);
  color: var(--blue-800);
}

.bw-msg.user {
  background: var(--blue-700);
  color: var(--white);
  margin-left: auto;
}

.bw-handoff {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--orange-600);
  background: var(--orange-50);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-weight: var(--fw-medium);
  margin-top: var(--space-2);
}

.handoff-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--orange-500);
  animation: pulse-dot 1.5s infinite;
}

/* ─── CALL PREVIEW ─── */
.card-call {
  background: linear-gradient(135deg, var(--blue-900), var(--gray-950));
  padding: var(--space-5);
  color: var(--white);
}

.call-header {
  margin-bottom: var(--space-5);
}

.call-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.call-live-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #22C55E;
  animation: pulse-dot 1.5s infinite;
}

.call-participants {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.call-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
}

.cp-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--text-lg);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cp-wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.cp-wave span {
  width: 3px;
  border-radius: 2px;
  background: var(--orange-400);
  animation: wave-bar 1s ease-in-out infinite alternate;
}

.cp-wave span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.cp-wave span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.cp-wave span:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.cp-wave span:nth-child(4) { height: 6px;  animation-delay: 0.45s; }

.cp-wave.muted span {
  background: var(--gray-600);
  animation: none;
  height: 4px;
}

.call-transcript {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ct-label {
  font-size: 10px;
  color: var(--orange-400);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.ct-line {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-1);
}

.ct-line.opacity {
  opacity: 0.5;
  font-style: italic;
}

/* ─── REMINDER PREVIEW ─── */
.card-reminder {
  background: var(--white);
  padding: var(--space-5);
}

.rem-header {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--blue-900);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-4);
}

.rem-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gray-50);
}

.rem-channel {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-extrabold);
  flex-shrink: 0;
}

.rem-channel.whatsapp {
  background: #D9FDD3;
  color: #075E54;
}

.rem-channel.sms {
  background: var(--blue-50);
  color: var(--blue-700);
}

.rem-channel.email {
  background: var(--orange-50);
  font-size: var(--text-base);
}

.rem-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--blue-900);
}

.rem-time {
  font-size: var(--text-xs);
  color: var(--gray-400);
  margin-top: 2px;
}

.rem-status {
  margin-left: auto;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  flex-shrink: 0;
}

.rem-status.sent    { color: #22C55E; }
.rem-status.pending { color: var(--orange-500); }

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: var(--blue-50);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--gray-50);
}

.cta-card {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 60%, var(--gray-950) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-20) var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(60px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 43, 0.2);
  top: -80px;
  right: -60px;
}

.cta-orb-2 {
  width: 250px;
  height: 250px;
  background: rgba(26, 75, 171, 0.3);
  bottom: -60px;
  left: -40px;
}

.cta-card h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  position: relative;
}

.cta-card p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: var(--lh-relaxed);
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  position: relative;
}

.cta-note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  position: relative;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--white);
}