/* ═══════════════════════ RESET & BASE ═══════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:      #07070f;
  --bg-nav:       #0b0b16;
  --accent-blue:  #3b82f6;
  --accent-purple:#7c3aed;
  --accent-grad:  linear-gradient(135deg, #7c3aed, #3b82f6);
  --text-white:   #ffffff;
  --text-muted:   #94a3b8;
  --card-bg:      #ffffff;
  --card-radius:  16px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: clip;
  padding-top: 80px;
}

/* ═══════════════════════ TICKER BAR ═══════════════════════ */
.ticker-bar {
  width: 100%;
  background: linear-gradient(90deg, #1d3a6e 0%, #2d4de0 50%, #1d3a6e 100%);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
}

.ticker-bar:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  flex-shrink: 0;
}
.ticker-item strong { color: #ffffff; font-weight: 700; }

.ticker-sep {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.ticker-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7, 7, 15, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-text-kordic {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}
.logo-text-crm {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: #5b9bd5;
  letter-spacing: 3px;
}
.crm-line {
  flex: 1;
  height: 1px;
  background: #5b9bd5;
  min-width: 14px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--text-white); }
.nav-link.active {
  color: var(--text-white);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 2px;
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-login {
  padding: 8px 22px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.btn-login:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.btn-demo {
  padding: 9px 22px;
  background: var(--accent-blue);
  border-radius: 8px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-demo:hover { background: #2563eb; transform: translateY(-1px); }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative;
  padding-top: 70px;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Diagonal gradient accent */
.hero-gradient-accent {
  position: absolute;
  bottom: 0; right: -60px;
  width: 520px;
  height: 180px;
  background: linear-gradient(120deg, #3b82f6 0%, #7c3aed 60%, transparent 100%);
  border-radius: 8px;
  opacity: 0.75;
  transform: rotate(-8deg) translateY(30px);
  pointer-events: none;
  z-index: 0;
}

/* Radial glow behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: 60px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ─── LEFT ─── */
.hero-left {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 6px var(--accent-blue);
}

.hero-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text-white);
}
.heading-accent {
  color: #4f9cf9;
  position: relative;
  display: inline-block;
}
.heading-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #7c3aed, #3b82f6);
  border-radius: 4px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6d28d9, #3b82f6);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(99,102,241,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(99,102,241,0.5); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.play-icon { display: flex; align-items: center; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.check-icon { flex-shrink: 0; }

/* ─── RIGHT ─── */
.hero-right {
  flex: 0 0 52%;
  position: relative;
  height: 560px;
}

.hero-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 105%;
  max-height: 590px;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

/* ─── CARDS ─── */
.card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  position: absolute;
  z-index: 3;
}

/* Dashboard card */
.dashboard-card {
  top: 12px;
  right: -10px;
  width: 320px;
  padding: 16px 18px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.card-title { font-size: 0.85rem; font-weight: 700; color: #111827; }
.card-header-right { display: flex; align-items: center; gap: 6px; }
.avatar-sm {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ec4899);
}
.card-user-name { font-size: 0.72rem; color: #6b7280; font-weight: 500; }

.dashboard-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.stat-item { flex: 1; }
.stat-label { font-size: 0.65rem; color: #9ca3af; margin-bottom: 2px; }
.stat-value { font-size: 0.92rem; font-weight: 700; color: #111827; line-height: 1.2; }
.stat-change { font-size: 0.62rem; margin-top: 2px; }
.stat-change.positive { color: #22c55e; }

.dashboard-charts {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.chart-area { flex: 1; }
.chart-title { font-size: 0.65rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.line-chart { width: 100%; height: 50px; }

.chart-donut-wrap { width: 90px; text-align: center; }
.donut-container { position: relative; width: 64px; height: 64px; margin: 0 auto 4px; }
.donut-chart { width: 100%; height: 100%; }
.donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut-value { font-size: 0.7rem; font-weight: 700; color: #111827; line-height: 1.1; }
.donut-sub { font-size: 0.55rem; color: #9ca3af; }
.chart-sub-label { font-size: 0.6rem; color: #9ca3af; }

/* Users card */
.users-card {
  bottom: 110px;
  left: 50px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 17, 30, 0.85);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.user-avatars { display: flex; }
.user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #1e1e30;
  margin-left: -8px;
  object-fit: cover;
}
.user-avatars .user-avatar:first-child { margin-left: 0; }
.user-avatar-more {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-purple);
  border: 2px solid #1e1e30;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
  font-weight: 700;
}
.users-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.users-label { font-weight: 400; color: #94a3b8; font-size: 0.7rem; }

/* Deal Closed card */
.deal-card {
  top: 180px;
  left: -10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  background: #ffffff;
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.deal-icon { flex-shrink: 0; }
.deal-title { font-size: 0.82rem; font-weight: 700; color: #111827; margin-bottom: 2px; }
.deal-sub { font-size: 0.72rem; color: #6b7280; }

/* ═══════════════════════ TRUSTED BAR ═══════════════════════ */
.trusted-bar {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 40px 16px;
}
.trusted-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ═══════════════════════ TRUSTED BY ═══════════════════════ */
.trusted-section {
  background: #f8fafc;
  padding: 40px 40px 44px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.trusted-label {
  font-size: 0.8rem;
  color: #94a3b8;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
  text-transform: uppercase;
  font-weight: 500;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.trusted-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.trusted-logo-item:hover { opacity: 1; }

/* ═══════════════════════ INTEGRATIONS ═══════════════════════ */
.integrations-section {
  background: #ffffff;
  padding: 90px 40px 100px;
}
.integrations-container {
  max-width: 1160px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.integration-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 22px 22px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: pointer;
}
.integration-card:hover {
  box-shadow: 0 12px 40px rgba(59,130,246,0.10);
  transform: translateY(-3px);
  border-color: #bfdbfe;
}

.int-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.int-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.int-icon-img {
  background: transparent !important;
  padding: 0;
}
.int-icon-img img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}
.int-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.int-badge.verified  { background: #dcfce7; color: #16a34a; }
.int-badge.partner   { background: #ede9fe; color: #7c3aed; }
.int-badge.business  { background: #dbeafe; color: #1d4ed8; }
.int-badge.live      { background: #fff7ed; color: #ea580c; }
.int-badge.coming    { background: rgba(100,116,139,0.15); color: #94a3b8; border: 1px solid rgba(100,116,139,0.25); }

.int-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}
.int-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1100px) {
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ═══════════════════════ HAMBURGER BUTTON ═══════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hero-container { flex-direction: column; padding: 40px 24px 20px; gap: 40px; }
  .hero-left { flex: none; width: 100%; text-align: center; align-items: center; }
  .hero-right { flex: none; width: 100%; height: 420px; }
  .nav-links { display: none; }
  .nav-container { gap: 12px; padding: 0 20px; }
  .nav-actions { gap: 8px; }
  .btn-login { font-size: 0.82rem; padding: 7px 14px; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .trusted-logos { gap: 28px; }
  .integrations-section { padding: 60px 24px 70px; }
  .btn-demo { display: none; }
  .nav-hamburger { display: flex; flex-shrink: 0; }
}

/* ═══════════════════════ MOBILE OVERLAY ═══════════════════════ */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.mobile-overlay.active { display: block; opacity: 1; }

/* ═══════════════════════ MOBILE DRAWER ═══════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100dvh;
  background: #0d0d1e;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 1200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

/* Drawer header */
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.drawer-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer; color: #94a3b8;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.drawer-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Drawer nav links */
.drawer-nav {
  display: flex; flex-direction: column;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.drawer-link {
  display: flex; align-items: center;
  padding: 12px 12px;
  border-radius: 10px;
  font-size: 0.97rem; font-weight: 500;
  color: #94a3b8; text-decoration: none;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.drawer-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
.drawer-link.active {
  background: rgba(124,58,237,0.12);
  color: #a78bfa; font-weight: 700;
  border-left: 2px solid #7c3aed;
  padding-left: 10px;
}

/* Drawer action buttons */
.drawer-actions {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.drawer-btn-login {
  display: block; text-align: center;
  padding: 11px 0;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff; text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.drawer-btn-login:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }
.drawer-btn-demo {
  display: block; text-align: center;
  padding: 11px 0;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border-radius: 10px;
  color: #fff; text-decoration: none;
  font-size: 0.9rem; font-weight: 700;
  transition: opacity 0.2s;
}
.drawer-btn-demo:hover { opacity: 0.88; }

/* Drawer contact info */
.drawer-contact {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.drawer-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: #475569;
}
.drawer-contact-item svg { flex-shrink: 0; color: #7c3aed; }
.drawer-contact-item a {
  font-size: 0.82rem; color: #64748b; text-decoration: none;
  transition: color 0.15s;
}
.drawer-contact-item a:hover { color: #a78bfa; }
@media (max-width: 520px) {
  .integrations-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════ FEATURES SECTION ═══════════════════════ */
.features-section {
  background: linear-gradient(160deg, #07070f 0%, #4B8DE1 100%);
  padding-bottom: 120px;
}

.features-intro {
  text-align: center;
  padding: 100px 40px 70px;
}
.features-main-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.features-main-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Sticky track ── */
.features-sticky-track {
  position: relative;
  padding: 0 40px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Each card ── */
.feature-card {
  position: sticky;
  top: 80px;
  z-index: var(--ci);
  background: #10101e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  margin-bottom: 20px;
  overflow: hidden;
  transform-origin: top center;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, filter;
}
/* Even cards = white */
.feature-card:nth-child(even) {
  background: #ffffff;
  border-color: #e2e8f0;
}
.feature-card:nth-child(even) .feat-title  { color: #0f172a; }
.feature-card:nth-child(even) .feat-desc   { color: #64748b; }
.feature-card:nth-child(even) .feat-mockup {
  background: #f1f5f9;
  border-color: #e2e8f0;
}
.feature-card:nth-child(even) .mock-bar    { border-bottom-color: #e2e8f0; }
.feature-card:nth-child(even) .mock-label  { color: #1e293b; }
.feature-card:nth-child(even) .k-card      { background: #ffffff; border-color: #e2e8f0; color: #334155; }
.feature-card:nth-child(even) .mock-table th { color: #94a3b8; border-bottom-color: #e2e8f0; }
.feature-card:nth-child(even) .mock-table td { color: #334155; border-bottom-color: #f1f5f9; }
.feature-card:nth-child(even) .alert-row   { background: #ffffff; border-color: #e2e8f0; }
.feature-card:nth-child(even) .alert-info strong { color: #1e293b; }
.feature-card:nth-child(even) .alert-info span   { color: #94a3b8; }
.feature-card:nth-child(even) .ai-section  { background: #ffffff; border-color: #e2e8f0; }
.feature-card:nth-child(even) .ai-section p,
.feature-card:nth-child(even) .ai-list li  { color: #64748b; }
.feature-card:nth-child(even) .email-row   { background: #ffffff; border-color: #e2e8f0; }
.feature-card:nth-child(even) .email-row p { color: #64748b; }
.feature-card:nth-child(even) .em-time     { color: #94a3b8; }
.feature-card:nth-child(even) .email-compose input { background: #ffffff; border-color: #e2e8f0; color: #64748b; }
.feature-card:nth-child(even) .an-stat     { background: #ffffff; border-color: #e2e8f0; }
.feature-card:nth-child(even) .an-val      { color: #0f172a; }
.feature-card:nth-child(even) .team-row    { background: #ffffff; border-color: #e2e8f0; }
.feature-card:nth-child(even) .team-info strong { color: #1e293b; }
.feature-card:nth-child(even) .team-info span   { color: #94a3b8; }
.feature-card:nth-child(even) .doc-row     { background: #ffffff; border-color: #e2e8f0; }
.feature-card:nth-child(even) .doc-info strong  { color: #1e293b; }
.feature-card:nth-child(even) .doc-info span    { color: #94a3b8; }
.feature-card:nth-child(even) .doc-dl      { background: #f1f5f9; color: #475569; }
.feature-card:nth-child(even) .contact-row { background: #ffffff; border-color: #e2e8f0; }
.feature-card:nth-child(even) .c-info strong { color: #1e293b; }
.feature-card:nth-child(even) .c-info span   { color: #94a3b8; }
.feature-card:nth-child(even) .acc-header   { border-bottom-color: #e2e8f0; }
.feature-card:nth-child(even) .acc-header strong { color: #1e293b; }
.feature-card:nth-child(even) .acc-header span   { color: #94a3b8; }
.feature-card:nth-child(even) .wa-msg.recv  { background: #e2e8f0; color: #1e293b; }
.feature-card:nth-child(even) .camp-stat    { background: #ffffff; border-color: #e2e8f0; }
.feature-card:nth-child(even) .cv           { color: #0f172a; }
.feature-card:nth-child(even) .cl           { color: #94a3b8; }
.feature-card:nth-child(even) .camp-title   { color: #1e293b; }
.feature-card:nth-child(even) .seq-row      { color: #64748b; }
.feature-card:nth-child(even) .zm-info strong { color: #1e293b; }
.feature-card:nth-child(even) .zm-info span   { color: #94a3b8; }
.feature-card:nth-child(even) .zlog         { border-bottom-color: #f1f5f9; }
.feature-card:nth-child(even) .zlog-name    { color: #334155; }
.feature-card:nth-child(even) .zlog-date,
.feature-card:nth-child(even) .zlog-dur     { color: #94a3b8; }
.feature-card:nth-child(even) .logs-title   { color: #94a3b8; }
.feature-card:nth-child(even) .call-info strong { color: #1e293b; }
.feature-card:nth-child(even) .call-info span   { color: #94a3b8; }
.feature-card:nth-child(even) .call-btn.mute { background: #f1f5f9; color: #64748b; border-color: #e2e8f0; }
.feature-card:nth-child(even) .ch-row       { border-bottom-color: #f1f5f9; }
.feature-card:nth-child(even) .ch-name      { color: #334155; }
.feature-card:nth-child(even) .ch-dur       { color: #94a3b8; }
.feature-card:nth-child(even) .bar-group span { color: #94a3b8; }

.feature-card.buried {
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}

.feat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 56px 56px;
  align-items: center;
  min-height: 480px;
}

/* ── Left content ── */
.feat-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  width: fit-content;
}
.feat-badge.unique {
  background: rgba(124,58,237,0.15);
  color: #a78bfa;
  border: 1px solid rgba(124,58,237,0.3);
}
.feat-badge.coming {
  background: rgba(249,115,22,0.12);
  color: #fb923c;
  border: 1px solid rgba(249,115,22,0.25);
}
.feat-badge.plan {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.25);
}
.feat-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.feat-desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.75;
  max-width: 400px;
}

/* ── Right mockup ── */
.feat-right { display: flex; align-items: center; justify-content: center; }

.feat-mockup {
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 420px;
  min-height: 280px;
}

/* ── Shared mockup elements ── */
.mock-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-icon { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; }
.mock-label { font-size: 0.8rem; font-weight: 600; color: #e2e8f0; flex: 1; }
.mock-pill {
  font-size: 0.65rem; font-weight: 600; padding: 3px 10px;
  border-radius: 999px;
}
.mock-pill.blue   { background: rgba(59,130,246,0.15); color: #60a5fa; }
.mock-pill.green  { background: rgba(34,197,94,0.15);  color: #4ade80; }
.mock-pill.orange { background: rgba(249,115,22,0.15); color: #fb923c; }
.mock-pill.purple { background: rgba(139,92,246,0.15); color: #a78bfa; }

/* ── Kanban ── */
.kanban { display: flex; gap: 10px; }
.k-col  { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.k-hdr  {
  padding: 5px 8px; border-radius: 8px;
  font-size: 0.68rem; font-weight: 700; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
.k-hdr em { background: rgba(255,255,255,0.25); border-radius: 999px; padding: 1px 6px; font-style: normal; font-size: 0.62rem; }
.k-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 7px 9px;
  font-size: 0.68rem; color: #cbd5e1;
  display: flex; flex-direction: column; gap: 2px;
}
.k-card span { font-size: 0.72rem; font-weight: 700; color: #22c55e; }
.k-card.won span { color: #4ade80; }

/* ── Payment table ── */
.mock-table { width: 100%; border-collapse: collapse; font-size: 0.72rem; }
.mock-table th { color: #64748b; font-weight: 600; padding: 5px 6px; text-align: left; font-size: 0.65rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mock-table td { padding: 8px 6px; color: #cbd5e1; border-bottom: 1px solid rgba(255,255,255,0.04); }
.badge-paid    { background: rgba(34,197,94,0.15);  color: #4ade80; padding: 2px 8px; border-radius: 999px; font-size: 0.63rem; font-weight: 600; }
.badge-pending { background: rgba(249,115,22,0.15); color: #fb923c; padding: 2px 8px; border-radius: 999px; font-size: 0.63rem; font-weight: 600; }
.badge-confirm { background: rgba(59,130,246,0.15); color: #60a5fa; padding: 2px 8px; border-radius: 999px; font-size: 0.63rem; font-weight: 600; }

/* ── Alert list ── */
.alert-list { display: flex; flex-direction: column; gap: 10px; }
.alert-row { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; }
.alert-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.alert-dot.red    { background: #ef4444; box-shadow: 0 0 6px #ef4444; }
.alert-dot.orange { background: #f97316; box-shadow: 0 0 6px #f97316; }
.alert-dot.yellow { background: #eab308; box-shadow: 0 0 6px #eab308; }
.alert-info { flex: 1; }
.alert-info strong { display: block; font-size: 0.75rem; color: #e2e8f0; }
.alert-info span   { font-size: 0.65rem; color: #64748b; }
.stale-days { font-size: 0.72rem; font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.stale-days.red    { background: rgba(239,68,68,0.15);  color: #f87171; }
.stale-days.orange { background: rgba(249,115,22,0.15); color: #fb923c; }
.stale-days.yellow { background: rgba(234,179,8,0.15);  color: #fbbf24; }

/* ── AI briefing ── */
.ai-briefing { display: flex; flex-direction: column; gap: 10px; }
.ai-section  { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 10px 12px; }
.ai-tag { display: inline-block; font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-bottom: 6px; letter-spacing: 0.4px; text-transform: uppercase; }
.ai-tag.summary  { background: rgba(59,130,246,0.2);  color: #60a5fa; }
.ai-tag.talking  { background: rgba(139,92,246,0.2);  color: #a78bfa; }
.ai-tag.risk     { background: rgba(239,68,68,0.2);   color: #f87171; }
.ai-section p  { font-size: 0.72rem; color: #94a3b8; line-height: 1.5; margin: 0; }
.ai-list { margin: 0; padding-left: 14px; }
.ai-list li { font-size: 0.72rem; color: #94a3b8; margin-bottom: 3px; line-height: 1.5; }

/* ── Email thread ── */
.email-thread { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.email-row { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 9px 12px; }
.em-meta   { display: flex; justify-content: space-between; margin-bottom: 4px; }
.em-from   { font-size: 0.68rem; font-weight: 600; color: #60a5fa; }
.em-time   { font-size: 0.63rem; color: #475569; }
.email-row p { font-size: 0.7rem; color: #94a3b8; margin: 0; line-height: 1.5; }
.email-row.sent { border-color: rgba(59,130,246,0.15); }
.email-compose { display: flex; gap: 8px; align-items: center; }
.email-compose input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 7px 12px; color: #94a3b8; font-size: 0.72rem; outline: none; }
.send-btn { background: #3b82f6; color: #fff; font-size: 0.7rem; font-weight: 600; padding: 7px 14px; border-radius: 8px; cursor: pointer; white-space: nowrap; }

/* ── Analytics ── */
.analytics-stats { display: flex; gap: 10px; margin-bottom: 16px; }
.an-stat { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 10px; text-align: center; }
.an-val  { display: block; font-size: 1rem; font-weight: 800; color: #fff; }
.an-lbl  { display: block; font-size: 0.6rem; color: #64748b; margin: 2px 0; }
.an-chg  { display: block; font-size: 0.65rem; font-weight: 600; }
.an-chg.pos { color: #22c55e; }
.an-chg.neg { color: #ef4444; }
.bar-chart-wrap { padding-top: 4px; }
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 80px; padding: 0 4px; }
.bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; border-radius: 5px 5px 0 0; transition: height 0.6s ease; }
.bar-group span { font-size: 0.58rem; color: #475569; }

/* ── Team ── */
.team-list { display: flex; flex-direction: column; gap: 8px; }
.team-row  { display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; }
.team-av   { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.team-info { flex: 1; }
.team-info strong { display: block; font-size: 0.75rem; color: #e2e8f0; }
.team-info span   { font-size: 0.65rem; color: #64748b; }
.role-badge { font-size: 0.62rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.role-badge.admin     { background: rgba(239,68,68,0.15);  color: #f87171; }
.role-badge.manager   { background: rgba(139,92,246,0.15); color: #a78bfa; }
.role-badge.user      { background: rgba(59,130,246,0.15); color: #60a5fa; }
.role-badge.accountant{ background: rgba(245,158,11,0.15); color: #fbbf24; }

/* ── Documents ── */
.doc-list { display: flex; flex-direction: column; gap: 8px; }
.doc-row  { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; }
.doc-icon { font-size: 0.55rem; font-weight: 800; padding: 4px 6px; border-radius: 5px; white-space: nowrap; letter-spacing: 0.3px; }
.doc-icon.pdf   { background: rgba(239,68,68,0.2);  color: #f87171; }
.doc-icon.docx  { background: rgba(59,130,246,0.2); color: #60a5fa; }
.doc-icon.drive { background: rgba(34,197,94,0.2);  color: #4ade80; }
.doc-info { flex: 1; }
.doc-info strong { display: block; font-size: 0.72rem; color: #e2e8f0; }
.doc-info span   { font-size: 0.63rem; color: #64748b; }
.doc-dl { font-size: 0.9rem; color: #64748b; cursor: pointer; padding: 4px 8px; border-radius: 6px; background: rgba(255,255,255,0.05); }

/* ── Accounts & Contacts ── */
.account-card { }
.acc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.acc-logo { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg,#3b82f6,#8b5cf6); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.acc-header strong { display: block; font-size: 0.85rem; color: #e2e8f0; font-weight: 700; }
.acc-header span   { font-size: 0.65rem; color: #64748b; }
.contacts-list { display: flex; flex-direction: column; gap: 7px; }
.contact-row { display: flex; align-items: center; gap: 8px; padding: 7px 10px; background: rgba(255,255,255,0.03); border-radius: 9px; border: 1px solid rgba(255,255,255,0.05); }
.c-av { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.c-info { flex: 1; }
.c-info strong { display: block; font-size: 0.72rem; color: #e2e8f0; }
.c-info span   { font-size: 0.62rem; color: #64748b; }
.c-tag { font-size: 0.6rem; font-weight: 600; padding: 2px 7px; border-radius: 999px; background: rgba(59,130,246,0.15); color: #60a5fa; }

/* ── WhatsApp chat ── */
.wa-chat { display: flex; flex-direction: column; gap: 8px; }
.wa-msg  { max-width: 80%; padding: 8px 12px; border-radius: 12px; font-size: 0.72rem; line-height: 1.5; }
.wa-msg.recv { background: rgba(255,255,255,0.07); color: #cbd5e1; align-self: flex-start; border-bottom-left-radius: 4px; }
.wa-msg.sent { background: rgba(37,211,102,0.15); color: #86efac; align-self: flex-end; border-bottom-right-radius: 4px; }

/* ── Mailchimp campaign ── */
.campaign-card { }
.camp-title { font-size: 0.82rem; font-weight: 700; color: #e2e8f0; margin-bottom: 12px; }
.camp-stats { display: flex; gap: 8px; margin-bottom: 14px; }
.camp-stat { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 8px; text-align: center; }
.cv { display: block; font-size: 0.9rem; font-weight: 800; color: #fff; }
.cl { display: block; font-size: 0.58rem; color: #64748b; margin-top: 2px; }
.camp-seqs { display: flex; flex-direction: column; gap: 7px; }
.seq-row   { display: flex; align-items: center; gap: 8px; font-size: 0.7rem; color: #94a3b8; }
.seq-dot   { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.seq-dot.active { background: #22c55e; box-shadow: 0 0 5px #22c55e; }

/* ── Zoom ── */
.zoom-meeting { display: flex; align-items: center; gap: 10px; background: rgba(45,140,255,0.08); border: 1px solid rgba(45,140,255,0.2); border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; }
.zm-icon { font-size: 1.4rem; }
.zm-info { flex: 1; }
.zm-info strong { display: block; font-size: 0.78rem; color: #e2e8f0; font-weight: 700; }
.zm-info span   { font-size: 0.65rem; color: #64748b; }
.join-btn { background: #2D8CFF; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 7px 14px; border-radius: 8px; cursor: pointer; white-space: nowrap; }
.zoom-logs { }
.logs-title { font-size: 0.65rem; color: #475569; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.zlog { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.7rem; }
.zlog-date { color: #475569; width: 40px; flex-shrink: 0; }
.zlog-name { flex: 1; color: #cbd5e1; }
.zlog-dur  { color: #64748b; }

/* ── Twilio calling ── */
.active-call { display: flex; align-items: center; gap: 10px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; }
.call-pulse { width: 12px; height: 12px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); animation: pulse 1.5s infinite; flex-shrink: 0; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.call-info { flex: 1; }
.call-info strong { display: block; font-size: 0.78rem; color: #e2e8f0; font-weight: 700; }
.call-info span   { font-size: 0.65rem; color: #64748b; }
.call-timer { font-size: 0.85rem; font-weight: 700; color: #4ade80; font-variant-numeric: tabular-nums; }
.call-actions { display: flex; gap: 8px; margin-bottom: 14px; }
.call-btn { flex: 1; text-align: center; padding: 8px; border-radius: 9px; font-size: 0.7rem; font-weight: 600; cursor: pointer; }
.call-btn.mute { background: rgba(255,255,255,0.06); color: #94a3b8; border: 1px solid rgba(255,255,255,0.08); }
.call-btn.hang { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.call-history { display: flex; flex-direction: column; gap: 6px; }
.ch-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.7rem; }
.ch-type { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.ch-type.in  { background: rgba(34,197,94,0.15);  color: #4ade80; }
.ch-type.out { background: rgba(59,130,246,0.15); color: #60a5fa; }
.ch-name { flex: 1; color: #cbd5e1; }
.ch-dur  { color: #64748b; font-size: 0.65rem; }

/* ═══════════════════════ BUILT DIFFERENT – 3D CARDS ═══════════════════════ */
.built-section {
  position: relative;
  background: #ffffff;
  padding: 120px 40px 130px;
  overflow: hidden;
}

/* Ambient glow blobs — lighter tints for white bg */
.built-glow-1 {
  position: absolute;
  top: -120px; left: -100px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.built-glow-2 {
  position: absolute;
  bottom: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.built-container {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.built-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 40px;
  padding: 0 20px;
}

/* Header */
.built-header {
  text-align: center;
  margin-bottom: 72px;
}
.built-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.built-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}
.built-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: #7c3aed;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.built-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.built-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* 2×2 grid */
.cards-3d-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── 3D scene wrapper ── */
.card-3d-scene {
  perspective: 900px;
  perspective-origin: 50% 40%;
}

/* ── 3D card ── */
.card-3d {
  position: relative;
  transform: rotateX(0deg) rotateY(0deg) scale(1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s ease;
  border-radius: 22px;
  cursor: pointer;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}

/* On hover: lift + purple glow border */
.card-3d:hover {
  border-color: rgba(124,58,237,0.45);
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.3),
    0 20px 50px rgba(0,0,0,0.12),
    0 0 30px rgba(124,58,237,0.12),
    0 0 60px rgba(59,130,246,0.07);
}

/* Glare overlay */
.card-glare {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(
    circle at calc(var(--gx, 50) * 1%) calc(var(--gy, 50) * 1%),
    rgba(124,58,237,0.06) 0%,
    rgba(59,130,246,0.03) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-3d:hover .card-glare { opacity: 1; }

/* ── Card content – preserve-3d children ── */
.card-3d-content {
  position: relative;
  z-index: 3;
  padding: 36px 36px 32px;
  transform: translateZ(0px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c3d-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
  transform: translateZ(30px);
}

.c3d-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.c3d-unique-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  color: #7c3aed;
  white-space: nowrap;
}

.c3d-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.c3d-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 28px;
  flex: 1;
}

.c3d-footer {
  border-top: 1px solid #e2e8f0;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.competitor-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  color: #64748b;
}
.comp-x {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; color: #f87171; font-weight: 700;
  flex-shrink: 0;
}
.comp-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; color: #4ade80; font-weight: 700;
  flex-shrink: 0;
}
.comp-us { color: #86efac; font-weight: 600; }

/* Hover lift */
.card-3d:hover {
  box-shadow:
    0 24px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(124,58,237,0.15),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .cards-3d-grid { grid-template-columns: 1fr; }
  .built-section  { padding: 80px 24px 90px; }
}

/* ═══════════════════════ PIPELINE SECTION ═══════════════════════ */
.pl-section {
  position: relative;
  background: #080c18;
  overflow: hidden;
  padding: 80px 40px 0;
}
.pl-blob-1 {
  position: absolute; top: -100px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.pl-blob-2 {
  position: absolute; bottom: -80px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none;
}

.pl-container {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-end;
  gap: 0;
  min-height: 580px;
}

/* ── LEFT ── */
.pl-left {
  flex: 0 0 42%;
  display: flex; flex-direction: column; gap: 22px;
  padding-right: 40px;
  padding-bottom: 80px;
  align-self: center;
}
.pl-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  color: #3b82f6; letter-spacing: 3px;
}
.pl-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800; color: #ffffff;
  line-height: 1.15; letter-spacing: -0.5px;
}
.pl-sub {
  font-size: 0.95rem; color: #64748b; line-height: 1.7;
}
.pl-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.pl-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: #cbd5e1;
}
.pl-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: #3b82f6; font-weight: 700;
  flex-shrink: 0;
}

/* ── RIGHT ── */
.pl-right {
  flex: 0 0 58%;
  position: relative;
  height: 580px;
  align-self: flex-end;
}

/* Person — full body visible, anchored to bottom-left */
.pl-person {
  position: absolute;
  bottom: 0;
  left: -20px;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.55));
  z-index: 2;
  pointer-events: none;
}

/* Pipeline stage pills — pushed to RIGHT half only, never over face */
.pl-stages {
  position: absolute;
  top: 0;
  right: 0;
  left: 52%;              /* starts in right half — clears the person's face */
  display: flex;
  gap: 8px;
  z-index: 4;
}
.pl-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}
.pl-stage-name {
  font-size: 0.68rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1;
}
.pl-stage-count {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}
.pl-stage-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}

/* Deal cards — right side */
.pl-deals {
  position: absolute;
  top: 160px;
  right: 0;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  z-index: 4;
}
.pl-deal-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.pl-deal-card:hover { transform: translateX(-5px); }
.pl-deal-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.pl-deal-info { flex: 1; min-width: 0; }
.pl-deal-info strong {
  display: block; font-size: 0.75rem; font-weight: 700;
  color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pl-deal-info span {
  font-size: 0.63rem; color: #64748b;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
  margin-top: 2px;
}
.pl-deal-avs { display: flex; flex-shrink: 0; }
.pl-deal-avs img {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -6px; object-fit: cover;
}
.pl-deal-avs img:first-child { margin-left: 0; }

/* Revenue card — bottom right */
.pl-revenue-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 235px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.28);
  z-index: 4;
}
.pl-rev-label {
  font-size: 0.7rem; color: #94a3b8; font-weight: 500; margin-bottom: 6px;
}
.pl-rev-value {
  font-size: 1.9rem; font-weight: 800; color: #0f172a;
  line-height: 1.05; margin-bottom: 5px; letter-spacing: -1px;
}
.pl-rev-change {
  font-size: 0.72rem; color: #22c55e; font-weight: 700; margin-bottom: 12px;
}
.pl-rev-chart { width: 100%; height: 44px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pl-stages { width: 300px; }
  .pl-deals  { width: 215px; }
}
@media (max-width: 900px) {
  .pl-section { padding: 60px 24px; }
  .pl-container { flex-direction: column; min-height: auto; gap: 40px; }
  .pl-left  { flex: none; width: 100%; padding-right: 0; }
  .pl-right { flex: none; width: 100%; height: 500px; }
  .pl-stages { width: 100%; top: 0; }
  .pl-stage  { padding: 10px 12px; }
  .pl-stage-count { font-size: 1.2rem; }
  .pl-deals  { width: 200px; top: 140px; }
  .pl-person { height: 90%; }
}

/* ── Responsive features ── */
@media (max-width: 900px) {
  .feat-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; min-height: auto; }
  .feat-right { width: 100%; }
  .features-sticky-track { padding: 0 16px; }
  .features-intro { padding: 60px 24px 48px; }
}

/* ════════════════════════════════════════════
   PRICING SECTION
════════════════════════════════════════════ */
.pricing-section {
  background: #ffffff;
  padding: 120px 40px 100px;
}
.pricing-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pricing-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Scene wrapper — same as built-diff cards */
.pricing-scene {
  perspective: 1000px;
}
.pricing-scene--popular {
  transform: translateY(-16px);
}

/* Pricing card overrides on top of .card-3d */
.pricing-card {
  background: #ffffff;
  border: 1.5px solid rgba(15,23,42,0.09);
  border-radius: 24px;
  padding: 0;
  width: 100%;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  overflow: hidden;
}
.pricing-card:hover {
  border-color: rgba(59,130,246,0.4);
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.2),
    0 24px 60px rgba(59,130,246,0.12),
    0 8px 24px rgba(0,0,0,0.08);
}
.pricing-card--popular {
  background: #0f172a;
  border-color: rgba(59,130,246,0.45);
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.3),
    0 28px 70px rgba(59,130,246,0.18),
    0 10px 30px rgba(0,0,0,0.18);
}
.pricing-card--popular:hover {
  border-color: rgba(124,58,237,0.6);
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.4),
    0 28px 70px rgba(124,58,237,0.2),
    0 10px 30px rgba(0,0,0,0.2);
}

/* Popular badge */
.pc-popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 3;
}

/* Inner content */
.pricing-card-inner {
  padding: 32px 28px 28px;
  position: relative;
  z-index: 2;
}

/* Lock badge */
.pc-lock-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  background: rgba(100,116,139,0.1);
  border: 1px solid rgba(100,116,139,0.2);
  border-radius: 8px;
  padding: 4px 10px;
  margin-bottom: 18px;
}
.pricing-card--popular .pc-lock-badge {
  color: #94a3b8;
  background: rgba(148,163,184,0.1);
  border-color: rgba(148,163,184,0.2);
}

/* Plan name */
.pc-plan {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.pricing-card--popular .pc-plan { color: #ffffff; }

/* Price */
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pc-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -1px;
}
.pricing-card--popular .pc-amount { color: #ffffff; }
.pc-per {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}
.pricing-card--popular .pc-per { color: #94a3b8; }

/* Tagline */
.pc-tagline {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.pricing-card--popular .pc-tagline {
  color: #94a3b8;
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Feature list */
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: #334155;
}
.pricing-card--popular .pc-features { color: #cbd5e1; }
.pc-features li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.4;
}
.pc-check {
  color: #3b82f6;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.pricing-card--popular .pc-check { color: #60a5fa; }
.pc-soon {
  font-size: 0.62rem;
  font-weight: 600;
  background: rgba(124,58,237,0.12);
  color: #7c3aed;
  padding: 2px 7px;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 4px;
}
.pricing-card--popular .pc-soon {
  background: rgba(124,58,237,0.25);
  color: #c4b5fd;
}

/* CTA button */
.pc-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  background: transparent;
  border: 1.5px solid rgba(15,23,42,0.2);
  color: #0f172a;
}
.pc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: rgba(59,130,246,0.5);
  color: #3b82f6;
}
.pc-cta--primary {
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  border-color: transparent;
  color: #ffffff;
}
.pc-cta--primary:hover {
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(59,130,246,0.4);
  border-color: transparent;
}

/* Footer note */
.pricing-footer-note {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pf-meta {
  font-size: 0.82rem;
  color: #94a3b8;
}
.pf-lock {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-scene--popular { transform: none; }
}

/* ════════════════════════════════════════════
   WHATSAPP INTEGRATION SECTION
════════════════════════════════════════════ */
.wa-section {
  position: relative;
  background: #07070f;
  overflow: hidden;
  padding: 120px 40px 100px;
}
.wa-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.wa-blob-1 {
  width: 500px; height: 500px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(37,211,102,0.10) 0%, transparent 70%);
}
.wa-blob-2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -60px;
  background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 70%);
}
.wa-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.wa-header { text-align: center; margin-bottom: 64px; }
.wa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #25d366;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.wa-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.wa-sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Requirements ── */
.wa-requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.wa-req-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color 0.3s, background 0.3s;
}
.wa-req-card:hover {
  background: rgba(37,211,102,0.06);
  border-color: rgba(37,211,102,0.25);
}
.wa-req-icon { font-size: 1.6rem; margin-bottom: 10px; }
.wa-req-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 7px;
}
.wa-req-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.6;
}

/* ── Timeline ── */
.wa-timeline {
  position: relative;
}

/* Vertical track line — runs through center of step circles (circle width 38px / 2 = 19px) */
.wa-line-track {
  position: absolute;
  left: 18px;
  top: 19px;
  bottom: 19px;
  width: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.wa-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  border-radius: 2px;
  transition: height 1s ease;
}

/* Step */
.wa-step {
  display: flex;
  gap: 28px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.wa-step.wa-visible {
  opacity: 1;
  transform: translateX(0);
}
.wa-step--last { margin-bottom: 0; }

/* Step number circle */
.wa-step-left {
  flex-shrink: 0;
  width: 38px;
  display: flex;
  justify-content: center;
  padding-top: 2px;
}
.wa-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0f172a;
  border: 2px solid rgba(37,211,102,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #25d366;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.08);
  z-index: 2;
  position: relative;
}
.wa-step-num--done {
  background: #25d366;
  border-color: #25d366;
  color: #07070f;
  font-size: 1rem;
  box-shadow: 0 0 0 6px rgba(37,211,102,0.15), 0 0 24px rgba(37,211,102,0.4);
}

/* Step content */
.wa-step-content {
  flex: 1;
  padding-bottom: 8px;
}
.wa-step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  line-height: 1.3;
}
.wa-step-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 16px;
}
.wa-step-desc strong { color: #94a3b8; font-weight: 600; }
.wa-step-desc em { color: #94a3b8; font-style: normal; font-weight: 500; }

/* Tip */
.wa-step-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.18);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: #86efac;
}
.wa-tip-check { font-size: 0.9rem; }

/* ── Step 3 UI mockup ── */
.wa-step-ui {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  max-width: 480px;
  margin-top: 16px;
}
.wa-ui-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wa-ui-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.wa-ui-url {
  font-size: 0.68rem;
  color: #475569;
  margin-left: 8px;
  font-family: monospace;
}
.wa-ui-body { padding: 16px 16px 18px; }
.wa-ui-tab-row {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.wa-ui-tab {
  font-size: 0.72rem;
  color: #475569;
  padding: 5px 10px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wa-ui-tab--active {
  background: rgba(37,211,102,0.12);
  color: #25d366;
  font-weight: 600;
}
.wa-ui-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #07070f;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-ui-connect-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* ── Step 4 QR ── */
.wa-step-qr {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 400px;
}
.wa-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wa-qr-label {
  font-size: 0.62rem;
  color: #475569;
  white-space: nowrap;
}
.wa-qr-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-qr-step {
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.wa-qr-step span {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  color: #25d366;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Step 5 Live ── */
.wa-step-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4ade80;
  margin-top: 4px;
}
.wa-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25d366;
  animation: wa-blink 1.4s ease-in-out infinite;
}
@keyframes wa-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(37,211,102,0); }
}

@media (max-width: 768px) {
  .wa-requirements { grid-template-columns: 1fr; }
  .wa-step { gap: 18px; }
}

/* ════════════════════════════════════════════
   MOBILE APP SECTION
════════════════════════════════════════════ */
.mob-section {
  position: relative;
  background: #f0f4ff;
  overflow: hidden;
  padding: 100px 40px 0;
}

.mob-container {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 0;
  min-height: 520px;
}

/* ── LEFT ── */
.mob-left {
  flex: 0 0 34%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
  align-self: center;
  padding-bottom: 40px;
}
.mob-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #3b82f6;
  text-transform: uppercase;
}
.mob-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.mob-sub {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 320px;
}

/* Platform badges */
.mob-platforms {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.mob-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mob-platform-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mob-platform-icon:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.35);
}
.mob-platform span {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}

/* QR row */
.mob-qr-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.mob-qr-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
  flex-shrink: 0;
}
.mob-qr-label {
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.5;
}

/* ── CENTER ── */
.mob-center {
  flex: 0 0 30%;
  position: relative;
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mob-person-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(59,130,246,0.15));
  /* placeholder removed — real image */
  z-index: 2;
  position: relative;
}
.mob-person-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
}

/* ── RIGHT — phone mockups ── */
.mob-right {
  flex: 0 0 36%;
  position: relative;
  height: 500px;
  align-self: flex-end;
}

/* Phone frame */
.mob-phone {
  position: absolute;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.mob-phone-main {
  left: 0;
  top: 10px;
  z-index: 3;
  animation: mob-float 4s ease-in-out infinite;
}
@keyframes mob-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.mob-phone-frame {
  width: 190px;
  background: #0d1117;
  border-radius: 32px;
  border: 1.5px solid rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px rgba(0,0,0,0.6);
}
.mob-phone-notch {
  width: 60px; height: 20px;
  background: #0d1117;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.mob-phone-screen {
  background: #f8fafc;
  margin: 0 6px 6px;
  border-radius: 0 0 26px 26px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

/* Screen status bar */
.mob-screen-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px 4px;
  background: #f8fafc;
  font-size: 0.58rem;
  font-weight: 700;
  color: #0f172a;
}
.mob-status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #0f172a;
}

/* Top bar */
.mob-screen-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mob-screen-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
}
.mob-screen-brand {
  font-size: 0.66rem;
  font-weight: 700;
  color: #0f172a;
  flex: 1;
}
.mob-screen-bell {
  color: #64748b;
  display: flex;
}

/* Dashboard label */
.mob-screen-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0f172a;
  padding: 8px 10px 4px;
}

/* Revenue card */
.mob-revenue-card {
  margin: 0 8px 8px;
  background: linear-gradient(135deg, #1e3a5f, #1d3461);
  border-radius: 12px;
  padding: 10px 12px;
}
.mob-rev-title {
  font-size: 0.58rem;
  color: #93c5fd;
  font-weight: 500;
  margin-bottom: 2px;
}
.mob-rev-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.mob-rev-change {
  font-size: 0.6rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 2px;
}

/* Stats row */
.mob-stats-row {
  display: flex;
  gap: 6px;
  padding: 0 8px;
  margin-bottom: 8px;
}
.mob-stat {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 8px 9px;
}
.mob-stat-label {
  font-size: 0.56rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 2px;
}
.mob-stat-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 2px;
}
.mob-stat-delta {
  font-size: 0.55rem;
  font-weight: 600;
}
.mob-delta-up   { color: #22c55e; }
.mob-delta-pend { color: #f59e0b; }

/* Bottom nav */
.mob-screen-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 6px 10px;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.mob-nav-item {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #94a3b8;
}
.mob-nav-active { color: #3b82f6; }
.mob-nav-fab {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  border-radius: 10px;
  color: #ffffff;
}

/* Activity card */
.mob-activity-card {
  position: absolute;
  top: 30px;
  right: 0;
  width: 185px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  z-index: 4;
  animation: mob-float2 4s ease-in-out infinite;
}
@keyframes mob-float2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
.mob-act-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.mob-act-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mob-act-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.mob-act-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}
.mob-act-info strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}
.mob-act-info span {
  font-size: 0.6rem;
  color: #94a3b8;
}

@media (max-width: 960px) {
  .mob-container { flex-wrap: wrap; gap: 40px; }
  .mob-left  { flex: none; width: 100%; padding-right: 0; }
  .mob-center { display: none; }
  .mob-right { flex: none; width: 100%; height: 420px; }
}

/* ════════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════════ */
.faq-section {
  position: relative;
  background: #07070f;
  overflow: hidden;
  padding: 120px 40px 100px;
}
.faq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.faq-blob-1 {
  width: 500px; height: 500px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 70%);
}
.faq-blob-2 {
  width: 420px; height: 420px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, transparent 70%);
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.faq-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.faq-sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* Grid — single column */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Each accordion item */
.faq-item {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item[open] {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.25);
}
.faq-item:hover {
  border-color: rgba(255,255,255,0.13);
}

/* Summary row */
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.4;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:focus-visible { outline: 2px solid #3b82f6; outline-offset: -2px; }

/* Chevron icon — rotates when open */
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item[open] .faq-icon {
  background: rgba(59,130,246,0.15);
  color: #3b82f6;
  transform: rotate(180deg);
}

/* Body */
.faq-body {
  padding: 0 22px 20px;
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.75;
  animation: faq-slide-down 0.28s ease;
}
.faq-body strong {
  color: #94a3b8;
  font-weight: 600;
}

@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-section { padding: 80px 20px 60px; }
}

/* ════════════════════════════════════════════
   TESTIMONIALS SECTION
════════════════════════════════════════════ */
.testi-section {
  background: #ffffff;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Header */
.testi-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 64px;
}
.testi-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.testi-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.testi-sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* Track — horizontal row of cards, wider than viewport */
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 12px 40px;
  will-change: transform;
  transition: transform 0.1s linear;
}
.testi-track:first-of-type { margin-bottom: 4px; }

/* Individual card */
.testi-card {
  width: 340px;
  flex-shrink: 0;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: 20px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.testi-card:hover {
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 12px 36px rgba(59,130,246,0.10);
  transform: translateY(-4px);
}

/* Stars */
.testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* Quote */
.testi-quote {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.75;
  flex: 1;
}

/* Author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 4px;
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.testi-author > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-author strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  display: block;
}
.testi-author span {
  font-size: 0.72rem;
  color: #94a3b8;
  display: block;
}

/* ── Testimonials Mobile Slider ─────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Hide the desktop parallax rows */
  .testi-track { display: none !important; }

  /* Slider wrapper */
  .testi-mobile-slider {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0 0 8px;
  }

  /* Scrollable strip */
  .testi-mobile-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: 8px 0 12px;
  }
  .testi-mobile-track::-webkit-scrollbar { display: none; }

  /* Each slide */
  .testi-mobile-track .testi-card {
    flex: 0 0 85%;
    width: 85%;
    scroll-snap-align: center;
    margin: 0 7.5%;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: 20px;
    padding: 26px 24px 22px;
  }

  /* Dots */
  .testi-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 4px;
    padding-bottom: 4px;
  }
  .testi-mobile-dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    padding: 0; cursor: pointer;
    transition: background .25s, transform .25s;
  }
  .testi-mobile-dots button.active {
    background: #4a5af8;
    transform: scale(1.35);
  }
}

/* Hide mobile slider on desktop */
@media (min-width: 601px) {
  .testi-mobile-slider { display: none; }
  .testi-mobile-dots   { display: none; }
}

/* ════════════════════════════════════════════
   CTA BANNER SECTION
════════════════════════════════════════════ */
.cta-section {
  background: #f8fafc;
  padding: 80px 40px 100px;
}

.cta-card {
  max-width: 1160px;
  margin: 0 auto;
  background: linear-gradient(120deg, #2d4de0 0%, #4f46e5 50%, #6d28d9 100%);
  border-radius: 28px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  box-shadow: 0 24px 80px rgba(59,130,246,0.30);
}

/* Subtle inner glow */
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Person */
.cta-person {
  flex-shrink: 0;
  width: 380px;
  align-self: flex-end;
  position: relative;
  z-index: 2;
  margin-bottom: -4px;
}
.cta-person-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Center text */
.cta-center {
  flex: 1;
  padding: 52px 40px 52px 20px;
  position: relative;
  z-index: 2;
}
.cta-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Buttons */
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn-primary {
  background: #ffffff;
  color: #2d4de0;
}
.cta-btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255,255,255,0.35);
}
.cta-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.45);
}
.cta-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

/* Perks */
.cta-perks {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 52px 48px 52px 20px;
  position: relative;
  z-index: 2;
}
.cta-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.cta-perk-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

@media (max-width: 900px) {
  .cta-card { flex-wrap: wrap; }
  .cta-person { width: 180px; }
  .cta-center { padding: 40px 24px 24px; }
  .cta-perks  { padding: 0 24px 40px; flex-direction: row; flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 600px) {
  .cta-section { padding: 40px 16px 60px; }
  .cta-card { flex-direction: column; border-radius: 20px; overflow: hidden; }
  .cta-center { padding: 36px 24px 20px; order: 1; }
  .cta-perks {
    order: 2; padding: 0 24px 24px;
    flex-direction: column; gap: 12px; align-items: flex-start;
    width: 100%; box-sizing: border-box;
  }
  .cta-person { width: 85%; max-width: 300px; order: 3; align-self: center; margin: 0 auto; }
  .cta-perk { white-space: normal; font-size: 0.85rem; }
  .cta-headline { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .cta-buttons { flex-direction: column; gap: 12px; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; text-align: center; justify-content: center; }
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.site-footer {
  background: #07070f;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 40px 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 18px; }

.footer-logo { text-decoration: none; }
.footer-logo .logo-text { color: #ffffff; font-size: 1.18rem; }

.footer-tagline {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social:hover {
  background: rgba(93,132,245,0.18);
  border-color: rgba(93,132,245,0.35);
  color: #6a8fff;
}

/* Nav columns */
.footer-col { display: flex; flex-direction: column; gap: 16px; }

.footer-col-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: #ffffff; }

/* Bottom bar */
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 28px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}

.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
