/* ═══════════════════════════════════════════════
   Agendame Landing Page — Calendly-inspired
   ═══════════════════════════════════════════════ */

:root {
  /* ─── Matched to Agendame app globals.css (oklch → hex) ─── */
  --primary: #4C3BF7;           /* oklch(0.511 0.262 276) — violet/purple */
  --primary-dark: #3A1D8E;      /* deep purple — no blue tint */
  --primary-light: #7C6BFF;     /* lighter violet — more purple, less blue */
  --primary-bg: #EDEBFE;        /* violet-50 */
  --indigo-50: #EDEBFE;
  --indigo-100: #DDD8FE;
  --emerald: #10B981;           /* chart-2 equivalent */
  --amber: #F59E0B;             /* chart-4 equivalent */
  --rose: #F43F5E;              /* destructive */
  --cyan: #06B6D4;
  --violet: #8B5CF6;
  --orange: #FF6B35;
  --orange-dark: #E8590C;
  --orange-light: #FF8C42;
  --text: #0F0E1A;              /* oklch(0.145 0.015 265) — foreground */
  --text-secondary: #313044;    /* oklch(0.345 0.025 265) — secondary-foreground */
  --text-muted: #6E6D80;        /* oklch(0.556 0.02 265) — muted-foreground */
  --border: #E4E4EB;            /* oklch(0.922 0.006 265) — border */
  --bg: #FFFFFF;                /* oklch(1 0 0) — card */
  --bg-subtle: #FAFAFE;         /* oklch(0.985 0.002 265) — background */
  --bg-muted: #F3F3F8;          /* oklch(0.967 0.008 265) — muted */
  --ring: #4C3BF7;              /* oklch(0.511 0.262 276) — ring */
  --radius: 0.625rem;           /* 10px — matches app --radius */
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(15,14,26,0.04);
  --shadow: 0 4px 6px -1px rgba(15,14,26,0.06), 0 2px 4px -2px rgba(15,14,26,0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15,14,26,0.07), 0 4px 6px -4px rgba(15,14,26,0.03);
  --shadow-xl: 0 20px 50px -12px rgba(15,14,26,0.10);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-primary[style*="F97316"]:hover { background: #EA580C !important; }
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--indigo-50); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--primary); background: var(--indigo-50); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-white svg { transition: transform var(--transition); }
.btn-white:hover svg { transform: translateX(3px); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.cursor-pointer { cursor: pointer; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  z-index: 100;
  transition: all var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.logo svg {
  filter: drop-shadow(0 4px 12px rgba(67,56,202,0.35));
  transition: transform 0.3s ease;
}
.logo:hover svg { transform: scale(1.08) rotate(-3deg); }
.logo .brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1E1B4B;
}
.logo .brand-accent { color: #F97316; }
.footer-brand .logo .brand-name { color: #E0E7FF; }
.footer-brand .logo .brand-accent { color: #FDBA74; }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--indigo-50); }

.mobile-nav-actions { display: none; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* ═══ HERO ═══ */
.hero {
  padding-top: calc(var(--navbar-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--indigo-50);
  border: 1px solid var(--indigo-100);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-proof p { font-size: 14px; color: var(--text-muted); font-weight: 500; }

.avatar-stack { display: flex; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  margin-right: -8px;
}

/* Hero mockup */
.hero-visual { position: relative; }
.hero-mockup { position: relative; }

.mockup-browser {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
}
.browser-dots {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.browser-dots span:first-child { background: #FCA5A5; }
.browser-dots span:nth-child(2) { background: #FDE68A; }
.browser-dots span:nth-child(3) { background: #6EE7B7; }

.mockup-screen { padding: 16px; }

.mock-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mock-nav { display: flex; align-items: center; gap: 8px; }
.mock-btn-sm { width: 24px; height: 24px; border-radius: 6px; background: var(--bg-muted); }
.mock-date { font-size: 14px; font-weight: 700; color: var(--text); }
.mock-views { display: flex; gap: 2px; background: var(--bg-muted); border-radius: 8px; padding: 3px; }
.mock-views span { padding: 4px 10px; font-size: 11px; border-radius: 6px; color: var(--text-muted); font-weight: 500; }
.mock-views .active { background: #fff; color: var(--text); box-shadow: var(--shadow-sm); }

.mock-header-row {
  display: grid;
  grid-template-columns: 48px repeat(5, 1fr);
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  margin-bottom: 6px;
}
.mock-time-col { }

.mock-grid {
  display: grid;
  grid-template-columns: 48px repeat(5, 1fr);
  grid-template-rows: repeat(3, 56px);
  gap: 4px;
}
.mock-time { font-size: 10px; color: var(--text-muted); padding-top: 4px; text-align: right; padding-right: 8px; }

.mock-apt {
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.mock-apt-title { font-size: 10px; font-weight: 700; color: #fff; }
.mock-apt-sub { font-size: 9px; color: rgba(255,255,255,0.8); }

.apt-indigo { background: var(--primary); }
.apt-emerald { background: var(--emerald); }
.apt-amber { background: var(--amber); }
.apt-rose { background: var(--rose); }
.apt-violet { background: var(--violet); }
.apt-cyan { background: var(--cyan); }

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(0,0,0,0.04);
}
.float-card strong { font-size: 13px; display: block; }
.float-card p { font-size: 11px; color: var(--text-muted); margin: 0; }

.float-notification { bottom: 60px; left: -40px; animation-delay: 0s; }
.float-stats { top: 40px; right: -20px; animation-delay: 2s; }

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-icon { background: var(--primary); }
.stats-icon { background: var(--emerald); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══ INDUSTRIES SECTION ═══ */
.industries-section {
  padding: 64px 0;
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}
.industries-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(76,59,247,0.04) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(249,115,22,0.03) 1px, transparent 1px);
  background-size: 40px 40px, 24px 24px;
  background-position: 0 0, 12px 12px;
  pointer-events: none;
}
.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.industries-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--chip-bg);
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--chip-color);
  white-space: nowrap;
  transition: all var(--transition);
}
.industry-chip svg { color: var(--chip-color); flex-shrink: 0; }
.industry-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  filter: brightness(0.95);
}

/* ═══ SECTIONS COMMON ═══ */
.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc {
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ═══ FEATURES ═══ */
.features-section {
  padding: 100px 0 80px;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card-main {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
  cursor: default;
}
.feature-card-main:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-indigo { background: var(--indigo-50); color: var(--primary); }
.icon-emerald { background: #ECFDF5; color: var(--emerald); }
.icon-amber { background: #FFFBEB; color: var(--amber); }
.icon-rose { background: #FFF1F2; color: var(--rose); }
.icon-cyan { background: #ECFEFF; color: var(--cyan); }
.icon-violet { background: #F5F3FF; color: var(--violet); }

.feature-card-main h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card-main p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.feature-tags span {
  padding: 4px 10px;
  background: var(--indigo-50);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}

.features-extra {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.extra-item svg { color: var(--primary); }

/* ═══ HOW IT WORKS ═══ */
.how-section {
  padding: 100px 0;
  background: var(--bg-subtle);
}

/* Legacy grid kept for fallback */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Steps V2 — Timeline */
.steps-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
/* Vertical connector line */
.steps-v2::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(180deg, #10B981 0%, #F97316 33%, #4C3BF7 66%, #7C3AED 100%);
  border-radius: 2px;
}
.step-v2 {
  display: grid;
  grid-template-columns: 56px 1fr 280px;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  position: relative;
  transition: all var(--transition);
}
.step-v2-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--step-color);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 8px var(--step-color);
}
.step-v2-text h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.step-v2-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0; }
.step-v2-mockup {
  background: var(--step-bg);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  min-height: 120px;
  display: flex;
  align-items: center;
  transition: all var(--transition);
}
.step-v2:hover .step-v2-mockup {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  justify-content: center;
}

.mock-form { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.mock-input {
  padding: 10px 12px;
  background: var(--bg-muted);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.mock-btn-cta {
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
}

.mock-services { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.mock-service {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 12px;
  transition: all var(--transition);
}
.mock-service.active { border-color: var(--primary); background: var(--indigo-50); }
.mock-svc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-price { margin-left: auto; font-weight: 600; color: var(--text-muted); font-size: 11px; }

.mock-booking-flow { width: 100%; }
.mock-slots { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.mock-slot {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.mock-slot.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.mock-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: #ECFDF5;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #065F46;
}

/* ═══ BOOKING SHOWCASE ═══ */
.booking-section {
  padding: 100px 0;
  background: var(--bg);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.check-list svg { flex-shrink: 0; }

/* Phone mockup */
.booking-visual { display: flex; justify-content: center; }

.phone-mockup {
  width: 280px;
  background: #fff;
  border-radius: 36px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 6px solid var(--text);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: var(--text);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen { padding-top: 28px; }
.phone-header-bar {
  padding: 12px 16px;
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-muted);
  text-align: center;
}
.phone-hero-img {
  height: 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}
.phone-content { padding: 16px; }
.phone-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.phone-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  background: var(--bg-muted);
  border-radius: 8px;
  padding: 3px;
}
.phone-tabs span {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 6px;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}
.phone-tabs .active { background: #fff; color: var(--text); box-shadow: var(--shadow-sm); }
.phone-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  transition: all var(--transition);
}
.phone-service.selected { border-color: var(--primary); background: var(--indigo-50); }
.phone-svc-info strong { font-size: 13px; display: block; }
.phone-svc-info span { font-size: 11px; color: var(--text-muted); }
.phone-svc-price { font-size: 13px; font-weight: 700; color: var(--primary); }
.phone-cta {
  margin-top: 14px;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

/* ═══ PHONE MOCKUP V2 ═══ */
.phone-mockup-v2 {
  width: 300px;
  background: #fff;
  border-radius: 40px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04), 0 30px 60px -12px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 6px solid #1a1a2e;
  margin: 0 auto;
}
.phone-v2-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
}
.phone-v2-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #1a1a2e;
  border-radius: 0 0 10px 10px;
}
.phone-v2-icons { display: flex; gap: 4px; color: #fff; }
.phone-v2-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  padding: 20px 20px 18px;
  text-align: center;
  color: #fff;
}
.phone-v2-logo { margin-bottom: 6px; }
.phone-v2-biz { font-size: 16px; font-weight: 700; }
.phone-v2-url { font-size: 10px; opacity: 0.6; margin-top: 2px; }
.phone-v2-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.phone-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.phone-step span { font-size: 9px; color: var(--text-muted); font-weight: 500; }
.phone-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-step.active .phone-step-dot { background: var(--primary); color: #fff; }
.phone-step.active span { color: var(--primary); font-weight: 600; }
.phone-step.done .phone-step-dot { background: #10B981; color: #fff; }
.phone-step.done span { color: #10B981; }
.phone-step-line {
  width: 32px;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
  margin-bottom: 16px;
}
.phone-step-line.done { background: #10B981; }
.phone-v2-content { padding: 14px 18px 20px; }
.phone-v2-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #F5F3FF;
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-secondary);
}
.phone-v2-dates {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.phone-date {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-muted);
  line-height: 1.4;
}
.phone-date strong { font-size: 14px; color: var(--text); display: block; }
.phone-date.active {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
}
.phone-date.active strong { color: #fff; }
.phone-v2-slots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.phone-v2-slots span {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}
.phone-v2-slots .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.phone-v2-prof {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-muted);
  border-radius: 10px;
  margin-bottom: 14px;
}
.phone-v2-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}

/* ═══ STATS ═══ */
.stats-section {
  padding: 64px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.stat { text-align: center; }
.stat-value { font-size: 42px; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
.stat-label { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* Stats dark variant (when on purple bg) */
.stats-section[style*="gradient"] .stat-value { color: #fff; }
.stats-section[style*="gradient"] .stat-label { color: rgba(255,255,255,0.7); }
.stats-section[style*="gradient"] .stat-divider { background: rgba(255,255,255,0.2); }

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card.featured { border-color: var(--primary-light); background: var(--indigo-50); }

.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.testimonial-author strong { font-size: 14px; display: block; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ═══ PRICING ═══ */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-subtle);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: #F97316;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(249,115,22,0.15);
  transform: scale(1.04);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #F97316;
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.pricing-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.pricing-header p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price { margin-bottom: 24px; }
.price-amount { font-size: 36px; font-weight: 800; letter-spacing: -1px; }
.price-period { font-size: 14px; color: var(--text-muted); }
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  padding: 100px 0;
  background: var(--bg);
}
.cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  color: #fff;
}
.cta-card h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-card p { font-size: 17px; opacity: 0.85; margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; }

/* ═══ FOOTER ═══ */
.footer {
  padding: 64px 0 32px;
  background: var(--text);
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 13px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 32px; }
  .stat-value { font-size: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }

  /* Mobile menu panel */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 99;
    gap: 4px;
  }
  .nav-links.mobile-open a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
  }
  .nav-links.mobile-open a:hover {
    background: var(--indigo-50);
    color: var(--primary);
  }
  .mobile-nav-actions {
    display: none;
  }
  .nav-links.mobile-open .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .nav-links.mobile-open .mobile-nav-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
  }
  .nav-links.mobile-open .mobile-nav-actions .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 15px;
  }

  .hero { padding-top: calc(var(--navbar-h) + 32px); padding-bottom: 48px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 34px; }
  .hero-subtitle { max-width: none; font-size: 16px; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }

  /* Show calendar mockup on mobile, scaled down */
  .hero-visual {
    display: block;
    margin-top: 24px;
    min-height: auto;
  }
  .hero-visual .float-card {
    display: none;
  }
  .hero-visual .mockup-browser {
    max-width: 100%;
  }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  .booking-grid { grid-template-columns: 1fr; }
  .booking-content { text-align: center; }
  .booking-content .section-title { text-align: center; }
  .booking-content .section-desc { text-align: center; }

  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { width: 48px; height: 1px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.popular { transform: none; }

  .cta-card { padding: 40px 24px; }
  .cta-card h2 { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }

  .features-extra { gap: 16px; }

  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .logos-grid { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  /* Compact calendar on small screens */
  .mock-header-row { font-size: 9px; }
  .mock-header-row div:nth-child(n+5) { display: none; }
  .mock-grid { grid-template-columns: 36px repeat(3, 1fr); }
  .mock-header-row { grid-template-columns: 36px repeat(3, 1fr); }
  .mock-time { font-size: 8px; }
  .mock-apt-title { font-size: 8px; }
  .mock-apt-sub { font-size: 7px; }
  .mock-toolbar { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ═══ ANNOUNCEMENT BAR (Carousel) ═══ */
.announcement-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
  overflow: hidden;
}
.announcement-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.announcement-slides {
  position: relative;
  height: 20px;
  flex: 1;
  max-width: 680px;
  overflow: hidden;
}
.announcement-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}
.announcement-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.announcement-slide span { font-size: 13px; }
.announcement-bar a {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
  flex-shrink: 0;
}
.announcement-bar a:hover { border-color: #fff; }
.announcement-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.ann-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.ann-dot.active {
  background: #fff;
  width: 16px;
  border-radius: 3px;
}
.ann-dot:hover { background: rgba(255,255,255,0.6); }

.navbar { top: 33px; }

/* ═══ HERO CAROUSEL ═══ */
.hero-slides-text {
  position: relative;
  min-height: 160px;
  margin-bottom: 8px;
}
.hero-slide-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.hero-slide-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.hero-slide-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.hero-slide-visual.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
}

.hero-visual { position: relative; min-height: 380px; }

.hero-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}
.hero-dot:hover { background: var(--primary-light); }

/* ═══ HERO RATING ═══ */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #92400E;
  margin-bottom: 24px;
}
.stars-row { display: flex; gap: 1px; }

.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(76, 59, 247, 0.12) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.7;
  pointer-events: none;
}
.hero { position: relative; }

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76, 59, 247, 0.12) 0%, rgba(124, 107, 255, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, rgba(192, 132, 252, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.float-payment { bottom: 10px; right: -10px; animation-delay: 3.5s; }
.payment-icon { background: var(--amber); }

/* ═══ WHY AGENDAME — dark section ═══ */
.why-section-dark {
  padding: 120px 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-card-dark {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: none;
  background: var(--chip-bg, var(--bg-muted));
}
.why-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-card-dark-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card-dark h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-card-dark p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.why-dark-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  align-self: flex-start;
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ═══ WHY / COMPARISON ═══ */
.why-section {
  padding: 100px 0;
  background: var(--bg-subtle);
}
.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}
.comp-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--text);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.comp-header > div {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--bg-muted);
  font-size: 13px;
  transition: background var(--transition);
}
.comp-row:hover { background: var(--bg-subtle); }
.comp-row.highlight { background: var(--indigo-50); }
.comp-row > div { padding: 12px 20px; }
.comp-feature { color: var(--text); font-weight: 500; }
.comp-yes { color: var(--primary); font-weight: 600; }
.comp-partial { color: var(--text-muted); }
.comp-no { color: #DC2626; }
.comp-yes::before { content: '● '; font-size: 8px; vertical-align: middle; }
.comp-partial::before { content: '◐ '; font-size: 10px; vertical-align: middle; color: var(--amber); }
.comp-no::before { content: '○ '; font-size: 8px; vertical-align: middle; }

/* ═══ PRICING GUARANTEE ═══ */
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 32px auto 0;
  padding: 16px 20px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
}
.pricing-guarantee strong { font-size: 14px; display: block; color: #166534; }
.pricing-guarantee p { font-size: 13px; color: #15803D; margin: 2px 0 0; }

/* ═══ FAQ ═══ */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}
.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--primary-light); box-shadow: var(--shadow); }
.faq-item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; color: var(--primary); }
.faq-item p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ CTA EXTRAS ═══ */
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cta-trust span {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 500;
}

/* ═══ FOOTER SOCIAL ═══ */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ═══ BENTO GRID ═══ */
.bento-section {
  padding: 80px 0;
  background: var(--bg-subtle);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.bento-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--primary-light); }
.bento-wide { grid-column: span 2; }
.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.bento-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.bento-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.bento-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  margin-top: 14px;
}
.mini-bar {
  flex: 1;
  background: var(--indigo-50);
  border-radius: 4px 4px 0 0;
  transition: all var(--transition);
}
.mini-bar.active { background: var(--primary); }
.bento-card:hover .mini-bar { background: var(--indigo-100); }
.bento-card:hover .mini-bar.active { background: var(--primary); }

.bento-roles { display: flex; gap: 6px; margin-top: 12px; }
.bento-role {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.bento-role.admin { background: var(--indigo-50); color: var(--primary); }
.bento-role.recep { background: #ECFDF5; color: #065F46; }
.bento-role.staff { background: #FFFBEB; color: #92400E; }

.bento-locations { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.bento-loc {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--text-secondary);
  padding: 6px 10px; background: var(--bg-muted); border-radius: 6px;
}
.loc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.bento-email-preview { margin-top: 14px; }
.email-mini {
  background: var(--bg-muted);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
}
.email-subject {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.email-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }
.email-metrics { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); }
.email-metrics strong { color: var(--text); }

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
}

/* ═══ SHOWCASE SECTIONS ═══ */
.showcase-section {
  padding: 60px 0 100px;
  background: var(--bg-subtle);
}
.showcase-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.showcase-block:last-child { margin-bottom: 0; }
.showcase-block.reverse { direction: rtl; }
.showcase-block.reverse > * { direction: ltr; }

.showcase-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.tag-rose { background: #FFF1F2; color: #9F1239; }
.tag-emerald { background: #ECFDF5; color: #065F46; }
.tag-indigo { background: var(--indigo-50); color: var(--primary-dark); }

.showcase-content h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.showcase-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}
.check-list.compact { gap: 10px; margin-top: 16px; }
.check-list.compact li { font-size: 14px; }

.showcase-mockup {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Clinical mockup */
.clinical-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clinical-title-row { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }
.clinical-toolbar { display: flex; align-items: center; gap: 4px; }
.tool-btn {
  width: 28px; height: 28px; border-radius: 6px; display: flex;
  align-items: center; justify-content: center; background: var(--bg-muted); color: var(--text-muted);
}
.tool-btn.active { background: var(--primary); color: #fff; }
.tool-colors { display: flex; gap: 3px; margin-left: 8px; }
.tool-colors span { width: 14px; height: 14px; border-radius: 50%; border: 2px solid transparent; }
.tool-colors span.active { border-color: var(--text); transform: scale(1.2); }
.clinical-body { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px; }
.clinical-side { text-align: center; }
.clinical-badge {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.clinical-badge.before { background: #FFFBEB; color: #92400E; }
.clinical-badge.after { background: #ECFDF5; color: #065F46; }
.clinical-photo {
  background: var(--bg-muted); border-radius: 10px;
  height: 140px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.annotation-circle {
  position: absolute; top: 20%; left: 30%; width: 50px; height: 50px;
  border: 2.5px solid #10B981; border-radius: 50%;
}
.annotation-arrow {
  position: absolute; bottom: 25%; right: 20%; width: 40px; height: 2.5px;
  background: #10B981; transform: rotate(-30deg);
}
.annotation-arrow::after {
  content: ''; position: absolute; right: -2px; top: -4px;
  width: 0; height: 0; border-left: 8px solid #10B981; border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.clinical-date { font-size: 11px; color: var(--text-muted); margin-top: 6px; display: block; }
.clinical-footer {
  padding: 10px 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--text-muted);
}
.export-btn {
  padding: 5px 12px; background: var(--primary); color: #fff;
  border-radius: 6px; font-size: 11px; font-weight: 600;
}

/* Events mockup */
.events-header { padding: 18px; }
.events-header h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.events-meta { display: flex; gap: 8px; }
.event-tag { background: var(--indigo-50); color: var(--primary); padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.event-cap { color: var(--text-muted); font-size: 12px; }
.events-progress { padding: 0 18px 12px; }
.events-bar { height: 6px; background: var(--bg-muted); border-radius: 3px; overflow: hidden; }
.events-fill { height: 100%; background: var(--primary); border-radius: 3px; }
.events-list { border-top: 1px solid var(--border); }
.event-person { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-bottom: 1px solid var(--bg-muted); }
.ep-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0; }
.ep-info { flex: 1; }
.ep-info strong { font-size: 13px; display: block; }
.ep-info span { font-size: 11px; color: var(--text-muted); }
.ep-status { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.ep-status.present { background: #ECFDF5; color: #065F46; }
.ep-status.waiting { background: #FFFBEB; color: #92400E; }

/* Landing mockup */
.landing-mock { position: relative; }
.landing-browser-bar {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--border);
}
.landing-dots { display: flex; gap: 5px; }
.landing-dots span { width: 8px; height: 8px; border-radius: 50%; }
.landing-dots span:nth-child(1) { background: #FCA5A5; }
.landing-dots span:nth-child(2) { background: #FDE68A; }
.landing-dots span:nth-child(3) { background: #6EE7B7; }
.landing-url { font-size: 11px; color: var(--text-muted); background: var(--bg-muted); padding: 4px 10px; border-radius: 4px; flex: 1; }
.landing-url strong { color: var(--primary); }
.landing-preview { padding: 0; }
.lp-hero { height: 80px; background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); }
.lp-content { padding: 16px; }
.lp-logo-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); margin: -28px auto 10px; border: 3px solid #fff; }
.lp-title-bar { height: 12px; width: 60%; background: var(--bg-muted); border-radius: 4px; margin: 0 auto 6px; }
.lp-subtitle-bar { height: 8px; width: 80%; background: var(--bg-muted); border-radius: 3px; margin: 0 auto 16px; }
.lp-locations { display: flex; gap: 8px; margin-bottom: 12px; }
.lp-loc-card { flex: 1; border: 1px solid var(--border); border-radius: 8px; padding: 8px; }
.lp-loc-card.active { border-color: var(--primary); background: var(--indigo-50); }
.lp-loc-img { height: 32px; background: var(--bg-muted); border-radius: 4px; margin-bottom: 6px; }
.lp-loc-name { height: 8px; width: 70%; background: var(--bg-muted); border-radius: 3px; }
.lp-services-row { display: flex; gap: 6px; }
.lp-svc-item { flex: 1; height: 28px; background: var(--bg-muted); border-radius: 6px; border: 1px solid var(--border); }
.lp-svc-item.active { border-color: var(--primary); background: var(--indigo-50); }
.embed-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--text); color: #fff; padding: 6px 12px;
  border-radius: 6px; font-size: 11px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

/* ═══ RESPONSIVE ADDITIONS ═══ */
@media (max-width: 768px) {
  .announcement-bar { font-size: 11px; }
  .announcement-slide span { font-size: 11px; }
  .announcement-bar a { display: none; }
  .announcement-slides { max-width: 100%; }
  .navbar { top: 29px; }
  .hero { padding-top: calc(var(--navbar-h) + 60px); }
  .pain-grid { grid-template-columns: 1fr; }
  .comp-header, .comp-row { grid-template-columns: 1.2fr 0.9fr 0.9fr; font-size: 11px; }
  .comp-row > div, .comp-header > div { padding: 10px 12px; }
  .hero-slides-text { min-height: 140px; }
  .hero-visual { display: block; margin-top: 24px; min-height: auto; }
  .hero-visual .float-card { display: none; }
  .hero-dots { justify-content: center; }
  .showcase-block { grid-template-columns: 1fr; gap: 32px; }
  .showcase-block.reverse { direction: ltr; }
  .showcase-content h3 { font-size: 22px; }
  .hero-trust-row { justify-content: center; }
  .steps-v2::before { left: 24px; }
  .step-v2 { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; }
  .step-v2-number { width: 48px; height: 48px; font-size: 18px; }
  .step-v2-mockup { grid-column: 2; }
  .cta-trust { gap: 12px; }
  .cta-trust span { font-size: 11px; }
}

/* ═══ ACTIVE NAV LINK ═══ */
.nav-links a.active { color: var(--primary); background: var(--indigo-50); }

/* ═══ FEATURES BAND ═══ */
.features-band {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
}
.features-band h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.features-band p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 24px;
}
.features-band .btn-white { display: inline-flex; }

/* ═══ CONTACT PAGE ═══ */
.contact-hero {
  padding-top: calc(var(--navbar-h) + 80px);
  padding-bottom: 40px;
  text-align: center;
  background: var(--bg-subtle);
}
.contact-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.contact-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.contact-section { padding: 80px 0; }

.contact-form-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 59, 247, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .optional { font-weight: 400; color: var(--text-muted); font-size: 12px; margin-left: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 48px auto 0;
}
.contact-info-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: all var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--indigo-50);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-muted); }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 32px; }
  [style*="grid-template-columns:1.1fr"] { grid-template-columns: 1fr !important; }
}

/* ═══ PAGE HERO (subpages) ═══ */
.page-hero {
  padding-top: calc(var(--navbar-h) + 80px);
  padding-bottom: 48px;
  text-align: center;
  background: var(--bg-subtle);
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══ ANIMATIONS ═══ */
@media (prefers-reduced-motion: no-preference) {
  .feature-card-main,
  .testimonial-card,
  .step-v2,
  .pricing-card,
  .showcase-block,
  .why-card-dark,
  .faq-item,
  .bento-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
  }
  .feature-card-main.visible,
  .testimonial-card.visible,
  .step-v2.visible,
  .pricing-card.visible,
  .showcase-block.visible,
  .why-card-dark.visible,
  .faq-item.visible,
  .bento-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   VIBRANT 2026 — fresh banner system (violet → orange)
   Appended: overrides earlier rules via cascade order
   ═══════════════════════════════════════════════ */

:root {
  --grad-brand: linear-gradient(120deg, #2E1875 0%, #4C3BF7 42%, #6C5CE7 66%, #F97316 132%);
  --grad-brand-bright: linear-gradient(115deg, #4C3BF7 0%, #6C5CE7 45%, #FF8C42 130%);
}

@keyframes annShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(24px, -28px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

/* ─── Announcement bar: animated violet→orange gradient ─── */
.announcement-bar {
  background: linear-gradient(100deg, #2E1875 0%, #4C3BF7 35%, #6C5CE7 58%, #F97316 125%);
  background-size: 220% 100%;
  animation: annShift 14s ease-in-out infinite;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ─── Hero: layered mesh + drifting color blobs ─── */
.hero-bg-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(76,59,247,0.10) 1px, transparent 0);
  background-size: 34px 34px;
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -140px; right: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(124,107,255,0.38) 0%, rgba(76,59,247,0.14) 42%, transparent 72%);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  animation: blobDrift 16s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(249,115,22,0.22) 0%, rgba(255,140,66,0.10) 45%, transparent 72%);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  animation: blobDrift 20s ease-in-out infinite reverse;
}

/* ─── Hero eyebrow pill (glass, honest "new" badge) ─── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 13px;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76,59,247,0.18);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
  box-shadow: 0 6px 20px -8px rgba(76,59,247,0.35);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #F97316;
  flex-shrink: 0;
  animation: pulseDot 2.6s ease-out infinite;
}

/* ─── Features band: mesh + drifting blobs ─── */
.features-band {
  position: relative;
  padding: 88px 0;
  text-align: center;
  background: var(--grad-brand);
  overflow: hidden;
}
.band-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}
.features-band .band-blob-1 {
  top: -90px; right: -70px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,140,66,0.45) 0%, transparent 70%);
  animation: blobDrift 18s ease-in-out infinite;
}
.features-band .band-blob-2 {
  bottom: -110px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,107,255,0.5) 0%, transparent 70%);
  animation: blobDrift 22s ease-in-out infinite reverse;
}

/* ─── Industry-data stats band (glass cards on deep dark) ─── */
.stats-band {
  position: relative;
  padding: 104px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(124,107,255,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 110%, rgba(249,115,22,0.22) 0%, transparent 60%),
    linear-gradient(180deg, #160C36 0%, #0E0826 100%);
  color: #fff;
  overflow: hidden;
}
.stats-band-glow {
  position: absolute;
  top: -160px; left: 50%;
  width: 680px; height: 680px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124,107,255,0.30) 0%, transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}
.stats-band-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px;
}
.stats-band-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.stats-band-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stats-band-head p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}
.stats-band .stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stats-band .stat {
  padding: 32px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform var(--transition), background var(--transition);
}
.stats-band .stat:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.13);
}
.stats-band .stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFD9C2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-band .stat-label {
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.stats-band-source {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ─── Trust / transparency section (honest, pre-launch) ─── */
.trust-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F1FF 100%);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.trust-card {
  position: relative;
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(76,59,247,0.28);
}
.trust-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  margin-bottom: 20px;
  background: var(--icbg);
  color: var(--ic);
}
.trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}
.trust-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ─── Final CTA card: mesh + glow blobs ─── */
.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand);
  box-shadow: 0 30px 70px -28px rgba(76,59,247,0.55);
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -90px; right: -70px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,140,66,0.45) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  animation: blobDrift 18s ease-in-out infinite;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -110px; left: -70px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(124,107,255,0.5) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  animation: blobDrift 24s ease-in-out infinite reverse;
}
.cta-card > * { position: relative; z-index: 1; }

/* ─── Primary button: subtle brand glow ─── */
.btn-primary[style*="F97316"] {
  box-shadow: 0 10px 26px -10px rgba(249,115,22,0.6);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .stats-band .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .stats-band .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-band .stat { padding: 24px 14px; }
  .features-band, .stats-band { padding: 64px 0; }
}

/* ─── Hero: bigger, bolder, bicolor gradient + mockup glow ─── */
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.hero .text-gradient {
  background: linear-gradient(115deg, #4C3BF7 0%, #7C6BFF 38%, #F97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-eyebrow strong { font-weight: 800; color: var(--primary); }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(circle at 62% 42%, rgba(124,107,255,0.30) 0%, rgba(249,115,22,0.12) 45%, transparent 68%);
  filter: blur(34px);
  z-index: -1;
  pointer-events: none;
}

/* ─── Stats band: stronger headline ─── */
.stats-band-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
}

/* ═══════════════════════════════════════════════
   MOTION & DEPTH — bring the banners to life
   ═══════════════════════════════════════════════ */

@keyframes meshDrift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
@keyframes heroShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(0.5); opacity: 0; }
  12%  { opacity: 0.8; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-360px) scale(1); opacity: 0; }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* ─── Animated, layered gradients (depth, not flat) ─── */
.features-band, .cta-card {
  background-size: 180% 180%;
  animation: meshDrift 20s ease-in-out infinite;
}
.features-band, .stats-band {
  box-shadow:
    inset 0 70px 90px -70px rgba(255,255,255,0.12),
    inset 0 -90px 100px -70px rgba(0,0,0,0.30);
}

/* ─── Grain texture overlay (tactile depth) ─── */
.features-band::after, .stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Hero headline: living bicolor shimmer ─── */
.hero .text-gradient {
  background: linear-gradient(110deg, #4C3BF7 0%, #7C6BFF 28%, #F97316 55%, #7C6BFF 82%, #4C3BF7 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShimmer 7s ease-in-out infinite;
}

/* ─── Floating particles in the dark stats band ─── */
.stb-particle {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(124,107,255,0.45) 70%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  animation: floatUp linear infinite;
}

/* ─── Hover shine sweep on cards ─── */
.trust-card, .stats-band .stat { overflow: hidden; }
.trust-card::before, .stats-band .stat::before {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 70%; height: 100%;
  transform: skewX(-18deg);
  transition: left 0.65s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 2;
}
.trust-card::before { background: linear-gradient(105deg, transparent, rgba(124,107,255,0.14), transparent); }
.stats-band .stat::before { background: linear-gradient(105deg, transparent, rgba(255,255,255,0.16), transparent); }
.trust-card:hover::before, .stats-band .stat:hover::before { left: 150%; }

/* ─── Scroll reveal pop-in (cards) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; }
  .reveal.visible { opacity: 1; animation: revealUp 0.6s cubic-bezier(0.2,0.7,0.2,1); }
}

/* ─── Respect reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .announcement-bar,
  .hero::before, .hero::after,
  .features-band, .cta-card,
  .features-band .band-blob,
  .cta-card::before, .cta-card::after,
  .hero .text-gradient,
  .hero-eyebrow-dot { animation: none !important; }
  .hero .text-gradient { background-position: 0 0; }
}

/* ═══════════════════════════════════════════════
   DESIGN POLISH — richer sections & components
   ═══════════════════════════════════════════════ */

/* ─── Section eyebrow as a gradient-dot pill ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 15px 6px 12px;
  background: rgba(76,59,247,0.06);
  border: 1px solid rgba(76,59,247,0.16);
  border-radius: 100px;
  letter-spacing: 0.09em;
  font-size: 12px;
}
.section-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #F97316);
  box-shadow: 0 0 0 3px rgba(124,107,255,0.12);
  flex-shrink: 0;
}
.section-label[style*="left"] { margin-left: 0; margin-right: auto; }
/* Dark-section eyebrow keeps light treatment */
.why-section-dark .section-label { background: rgba(76,59,247,0.07); }

/* ─── Soft color washes so light sections aren't flat ─── */
.pricing-section, .faq-section { position: relative; }
.pricing-section > .container, .faq-section > .container { position: relative; z-index: 1; }
.pricing-section::before, .faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 55% at 8% 12%, rgba(124,107,255,0.12) 0%, transparent 70%),
    radial-gradient(44% 56% at 94% 90%, rgba(249,115,22,0.09) 0%, transparent 70%);
}

/* ─── Pricing: make the popular plan truly pop ─── */
.pricing-card.popular {
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #FCF8FF 100%) padding-box,
    linear-gradient(135deg, #F97316 0%, #7C6BFF 100%) border-box;
  box-shadow: 0 34px 64px -26px rgba(124,107,255,0.45);
  transform: scale(1.06);
}
.pricing-card.popular:hover { transform: scale(1.06) translateY(-4px); }
.popular-badge {
  background: linear-gradient(135deg, #F97316 0%, #7C6BFF 100%);
  box-shadow: 0 8px 20px -6px rgba(124,107,255,0.55);
  letter-spacing: 0.04em;
  padding: 5px 18px;
}
.pricing-card.popular .price-amount {
  background: linear-gradient(120deg, #F97316 0%, #7C6BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card .pricing-features li::before {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* ─── Feature cards: lift + gradient icon on hover ─── */
.feature-card-main { position: relative; }
.feature-card-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(76,59,247,0.35);
}
.feature-icon { transition: transform var(--transition); }
.feature-card-main:hover .feature-icon { transform: scale(1.08) rotate(-3deg); }

/* ─── FAQ: softer cards with hover lift ─── */
.faq-item {
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 14px;
}
.faq-item:hover { border-color: rgba(124,107,255,0.4); box-shadow: var(--shadow); }
.faq-item summary::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(76,59,247,0.08);
}
.faq-item[open] summary::after { background: rgba(76,59,247,0.14); }

/* ─── Industry chips: subtle lift on hover ─── */
.industry-chip { transition: transform var(--transition), box-shadow var(--transition); }
.industry-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ═══════════════════════════════════════════════
   BANNER ELEMENTS — floating chips & feature icons
   ═══════════════════════════════════════════════ */

/* ─── Hero: floating glass feature chips ─── */
.hero-chip {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px 9px 9px;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 14px 34px -12px rgba(76,59,247,0.32);
  animation: float 5s ease-in-out infinite;
}
.hero-chip-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--cbg);
  color: var(--cfg);
  flex-shrink: 0;
}
.hero-chip-1 { top: 2px;  left: -26px;  animation-delay: 0s; }
.hero-chip-2 { top: 45%;  right: -30px; animation-delay: 1.3s; }
.hero-chip-3 { bottom: 24px; left: -16px; animation-delay: 2.2s; }
@media (max-width: 980px) { .hero-chip { display: none; } }

/* ─── Color bands: floating feature icons ─── */
.band-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.band-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.26);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform var(--transition), background var(--transition);
  animation: float 4.6s ease-in-out infinite;
}
.band-icon:hover { background: rgba(255,255,255,0.26); transform: translateY(-4px); }
.band-icon:nth-child(2) { animation-delay: 0.25s; }
.band-icon:nth-child(3) { animation-delay: 0.5s; }
.band-icon:nth-child(4) { animation-delay: 0.75s; }
.band-icon:nth-child(5) { animation-delay: 1s; }
.band-icon:nth-child(6) { animation-delay: 1.25s; }
.band-icon:nth-child(7) { animation-delay: 1.5s; }

/* ─── Final CTA: floating decorative icons ─── */
.cta-float-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  color: #fff;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.24);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  animation: float 5.2s ease-in-out infinite;
}
.cta-fi-1 { top: 32px; left: 7%;  animation-delay: 0s; }
.cta-fi-2 { bottom: 38px; right: 9%; animation-delay: 1s; }
.cta-fi-3 { top: 40px; right: 15%; animation-delay: 2s; }
@media (max-width: 760px) { .cta-float-icon { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .hero-chip, .band-icon, .cta-float-icon { animation: none !important; }
}

/* ─── Industry chips: refined / professional (no rainbow) ─── */
.logos-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.industry-chip {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  padding: 9px 16px;
}
.industry-chip svg { color: var(--chip-color); opacity: 0.9; }
.industry-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -10px rgba(76,59,247,0.22);
  border-color: rgba(76,59,247,0.35);
  filter: none;
}

/* ─── "Lo que otros no te dan" — minimalist white cards w/ relief ─── */
.why-section-dark {
  background: linear-gradient(180deg, #F5F5FA 0%, #FBFBFE 100%);
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.why-card-dark {
  flex: 1 1 300px;
  max-width: 344px;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid #ECECF3;
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(15,14,26,0.04),
    0 12px 30px -16px rgba(15,14,26,0.14);
}
.why-card-dark:hover {
  transform: translateY(-6px);
  border-color: rgba(76,59,247,0.22);
  box-shadow:
    0 1px 2px rgba(15,14,26,0.04),
    0 24px 48px -22px rgba(15,14,26,0.20);
}
.why-card-dark-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  margin-bottom: 20px;
  color: #5B4AEE;
  background: linear-gradient(150deg, #F3F0FF 0%, #E9E3FE 100%);
  border: 1px solid rgba(76,59,247,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 6px 14px -8px rgba(76,59,247,0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card-dark:hover .why-card-dark-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 12px 22px -8px rgba(76,59,247,0.35);
}
.why-card-dark h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.why-card-dark p {
  font-size: 14px;
  margin-bottom: 20px;
}
.why-dark-tag {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid #E0E0EA;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
@media (max-width: 720px) {
  .why-card-dark { flex-basis: 100%; max-width: 420px; }
}

/* ─── Unified icon language: light violet chip + relief (site-wide) ─── */
.feature-icon,
.feature-icon.icon-indigo,
.feature-icon.icon-emerald,
.feature-icon.icon-amber,
.feature-icon.icon-rose,
.feature-icon.icon-cyan,
.feature-icon.icon-violet {
  background: linear-gradient(150deg, #F3F0FF 0%, #E9E3FE 100%);
  color: #5B4AEE;
  border: 1px solid rgba(76,59,247,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 6px 14px -8px rgba(76,59,247,0.28);
}
.feature-card-main:hover .feature-icon {
  transform: scale(1.06) translateY(-2px);
}

/* Hero floating chips: unify icon circles to soft violet */
.hero-chip-ic {
  background: #ECE9FD;
  color: #5B4AEE;
}

/* Industry chips: neutral, logo-strip style icons */
.industry-chip svg { color: var(--text-muted); opacity: 1; }

/* ─── Funcionalidades: category quick-nav ─── */
.feature-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.feature-nav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(76,59,247,0.16);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all var(--transition);
}
.feature-nav a:hover {
  border-color: var(--primary);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -8px rgba(76,59,247,0.3);
}

/* ─── Scroll-driven calendar demo (funcionalidades) ─── */
.scroll-demo-track { position: relative; }
.scroll-demo-stage { padding: 40px 0 80px; position: relative; }
.scroll-demo-stage::before {
  content: '';
  position: absolute;
  top: 50%; right: 4%;
  width: 560px; height: 560px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(124,107,255,0.22) 0%, rgba(249,115,22,0.09) 45%, transparent 70%);
  filter: blur(26px);
  pointer-events: none;
  z-index: 0;
}
.scroll-demo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.scroll-steps { display: flex; flex-direction: column; gap: 14px; }
.scroll-step {
  display: flex;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  opacity: 0.5;
  transform: translateX(-6px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}
.scroll-step.active {
  opacity: 1;
  transform: none;
  border-color: rgba(76,59,247,0.28);
  box-shadow: 0 18px 36px -20px rgba(76,59,247,0.4);
}
.scroll-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  background: #F3F0FF; color: var(--primary);
  transition: all 0.45s ease;
}
.scroll-step.active .scroll-step-num {
  background: linear-gradient(145deg, #7C6BFF, #4C3BF7);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(76,59,247,0.6);
}
.scroll-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.scroll-step p { font-size: 13.5px; line-height: 1.55; color: var(--text-secondary); }

.scroll-cal {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(76,59,247,0.04);
  overflow: hidden;
}
.scroll-cal-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FBFAFF, #fff);
}
.scroll-cal-top strong { font-size: 15px; display: block; }
.scroll-cal-top span { font-size: 12px; color: var(--text-muted); }
.scroll-cal-count {
  display: inline-flex; align-items: center; gap: 6px;
  background: #F3F0FF; color: var(--primary);
  font-weight: 700; font-size: 13px;
  padding: 6px 14px; border-radius: 100px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981; flex-shrink: 0;
  animation: livePulse 1.9s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.scroll-cal-body { padding: 16px 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.cal-line { display: grid; grid-template-columns: 50px 1fr; gap: 12px; align-items: center; min-height: 54px; }
.cal-time { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.cal-apt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  border-left: 3px solid var(--c);
  background: color-mix(in srgb, var(--c) 9%, #fff);
  border-radius: 10px;
  padding: 10px 13px;
  opacity: 0;
  transform-origin: 70% 0;
  will-change: transform, opacity;
}
.cal-apt.shown { animation: aptFly 0.66s cubic-bezier(0.18,0.74,0.2,1) both; }
@keyframes aptFly {
  0%   { opacity: 0; transform: translate(70px, -52px) rotate(8deg) scale(1.08); box-shadow: 0 28px 46px -16px rgba(76,59,247,0.45); }
  55%  { opacity: 1; transform: translate(-5px, 5px) rotate(-1.4deg) scale(1); box-shadow: 0 14px 26px -12px rgba(76,59,247,0.32); }
  75%  { transform: translate(2px, -2px) rotate(0.6deg) scale(1); }
  100% { opacity: 1; transform: none; box-shadow: 0 2px 6px -4px rgba(15,14,26,0.12); }
}
/* landing ring pulse */
.cal-apt.shown::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 11px;
  border: 2px solid var(--c);
  opacity: 0;
  pointer-events: none;
  animation: aptPing 0.55s ease-out 0.42s;
}
@keyframes aptPing {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}
.cal-apt-av {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  background: var(--c);
  box-shadow: 0 4px 10px -4px var(--c);
}
.cal-apt-info { flex: 1; min-width: 0; }
.cal-apt-info strong { font-size: 13.5px; display: block; color: var(--text); }
.cal-apt-info span { font-size: 12px; color: var(--text-secondary); }
.cal-apt-dur {
  flex-shrink: 0;
  font-size: 11px; font-weight: 700;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 14%, #fff);
  padding: 4px 10px; border-radius: 100px;
}

/* floating glass chips that fly in around the calendar */
.scroll-cal-wrap { position: relative; }
.cal-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px 9px 9px;
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 100px;
  box-shadow: 0 18px 38px -14px rgba(76,59,247,0.4);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.cal-float strong { font-size: 12.5px; display: block; color: var(--text); line-height: 1.25; }
.cal-float p { font-size: 11px; color: var(--text-muted); margin: 0; line-height: 1.25; }
.cal-float-ic {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--fc) 14%, #fff);
  color: var(--fc);
}
.cal-float-1 { top: -22px; right: -26px; }
.cal-float-2 { top: 44%; left: -64px; }
.cal-float-3 { bottom: -20px; right: 28px; }
.cal-float.shown {
  animation: floatLand 0.7s cubic-bezier(0.18,0.74,0.2,1) forwards,
             float 5s ease-in-out 0.7s infinite;
}
@keyframes floatLand {
  0%   { opacity: 0; transform: translate(46px, -64px) rotate(11deg) scale(1.14); }
  55%  { opacity: 1; transform: translate(-4px, 5px) rotate(-2deg) scale(1); }
  78%  { transform: translate(2px, -2px) rotate(0.8deg); }
  100% { opacity: 1; transform: none; }
}
@media (max-width: 980px) { .cal-float { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .cal-float.shown { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ─── Weekly calendar view (demo) ─── */
.week-cal { padding: 16px 18px 20px; }
.week-head {
  display: grid;
  grid-template-columns: 44px repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px; font-weight: 600; color: var(--text-muted); text-align: center;
}
.week-grid {
  display: grid;
  grid-template-columns: 44px repeat(5, 1fr);
  grid-template-rows: repeat(5, 46px);
  gap: 6px;
}
.week-time { font-size: 10px; color: var(--text-muted); text-align: right; padding-right: 4px; padding-top: 3px; }
.week-apt {
  position: relative;
  border-radius: 9px;
  padding: 7px 9px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
  color: #fff;
  opacity: 0;
  transform-origin: 70% 0;
  will-change: transform, opacity;
}
.week-apt-t { font-size: 11px; font-weight: 700; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.week-apt-s { font-size: 9.5px; opacity: 0.85; line-height: 1.2; }
.apt-cyan { background: var(--cyan); }
.week-apt.shown { animation: aptFly 0.64s cubic-bezier(0.18,0.74,0.2,1) both; }
.week-apt.shown::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.85);
  opacity: 0; pointer-events: none;
  animation: aptPing 0.55s ease-out 0.42s;
}
@media (max-width: 860px) {
  .week-apt { opacity: 1; }
  .week-apt.shown { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .week-apt { opacity: 1 !important; }
  .week-apt.shown { animation: none !important; }
}

@media (min-width: 861px) {
  .scroll-demo-track { min-height: 200vh; }
  .scroll-demo-stage {
    position: sticky;
    top: 76px;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
  }
}
@media (max-width: 860px) {
  .scroll-demo-grid { grid-template-columns: 1fr; gap: 28px; }
  .scroll-demo-stage { padding: 20px 0 60px; }
  .scroll-step, .cal-apt { opacity: 1; transform: none; }
  .cal-apt.shown { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-step, .cal-apt { opacity: 1 !important; transform: none !important; }
  .cal-apt.shown { animation: none !important; }
}

/* ─── Bento: clean uniform grid (ordered) ─── */
.bento-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bento-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 18px;
}
.bento-card h4 { font-size: 16.5px; }
.bento-card p { font-size: 13.5px; }
.bento-card .feature-tags { margin-top: auto; padding-top: 16px; }
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76,59,247,0.25);
  box-shadow: 0 22px 44px -22px rgba(76,59,247,0.3);
}
@media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento-grid { grid-template-columns: 1fr; } }

/* ─── Bento icons: same unified violet-relief language ─── */
.bento-icon,
.bento-icon.icon-indigo,
.bento-icon.icon-emerald,
.bento-icon.icon-amber,
.bento-icon.icon-rose,
.bento-icon.icon-cyan,
.bento-icon.icon-violet {
  background: linear-gradient(150deg, #F3F0FF 0%, #E9E3FE 100%);
  color: #5B4AEE;
  border: 1px solid rgba(76,59,247,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 6px 14px -8px rgba(76,59,247,0.28);
}

/* ═══════════════════════════════════════════════
   PREMIUM LIGHT — soft floating surfaces (Refero-inspired)
   ═══════════════════════════════════════════════ */
:root {
  --shadow-soft: 0 16px 34px -14px rgba(76,59,247,0.16), 0 4px 12px -8px rgba(76,59,247,0.10);
  --shadow-soft-hover: 0 30px 56px -18px rgba(76,59,247,0.28), 0 10px 20px -10px rgba(76,59,247,0.12);
}

/* Rounder, faintly-tinted, softly-floating cards */
.feature-card-main,
.bento-card,
.trust-card,
.why-card-dark,
.pricing-card:not(.popular) {
  border-radius: 26px;
  background: #FCFBFF;
  box-shadow: var(--shadow-soft);
}
/* Gentle elevation + violet glow on hover */
.feature-card-main:hover,
.bento-card:hover,
.trust-card:hover,
.why-card-dark:hover,
.pricing-card:not(.popular):hover {
  transform: translateY(-7px);
  border-color: rgba(76,59,247,0.22);
  box-shadow: var(--shadow-soft-hover);
}

/* Soft organic blobs behind the light sections */
.features-section,
.bento-section,
.trust-section,
.why-section-dark {
  position: relative;
  overflow: hidden;
}
.features-section > .container,
.bento-section > .container,
.trust-section > .container,
.why-section-dark > .container {
  position: relative;
  z-index: 1;
}
.features-section::before,
.bento-section::before,
.trust-section::before,
.why-section-dark::before {
  content: '';
  position: absolute;
  top: -130px; left: -110px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,107,255,0.16) 0%, transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}
.features-section::after,
.bento-section::after,
.trust-section::after,
.why-section-dark::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -120px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}
