/* ═══════════════════════════════════════════
   Pulse CX Marketing Site
   ═══════════════════════════════════════════ */

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

:root {
  --blue-600: #1e4ed8;
  --blue-500: #3b82f6;
  --blue-50: #eff6ff;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --green-600: #059669;
  --green-50: #f0fdf4;
  --red-500: #dc2626;
  --amber-500: #f59e0b;
  --purple-500: #7c3aed;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  padding: 12px 24px;
}
.btn-primary:hover { background: #1a3fc4; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--blue-600);
  padding: 12px 24px;
  border: 1.5px solid var(--blue-600);
}
.btn-outline:hover { background: var(--blue-50); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo { color: var(--navy-900); }
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--slate-600); }
.navbar.scrolled .nav-links a:hover { color: var(--blue-600); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-link-btn:hover { color: var(--white); }
.navbar.scrolled .nav-link-btn { color: var(--slate-600); }
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--white);
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta-btn:hover { background: var(--blue-50); transform: translateY(-1px); }
.navbar.scrolled .nav-cta-btn { background: var(--blue-600); color: var(--white); }
.navbar.scrolled .nav-cta-btn:hover { background: #1a3fc4; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}
.navbar.scrolled .nav-mobile-toggle { color: var(--navy-900); }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 24px; box-shadow: var(--shadow-md); gap: 12px; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--slate-700) !important; font-size: 15px; }
  .nav-actions { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, #1e3a5f 40%, var(--blue-600) 100%);
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 60%; }

.hero-content {
  position: relative;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge .bi { color: var(--amber-500); }
.hero h1 {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-cta-row .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.3); }
.hero-cta-row .btn-outline:hover { background: rgba(255,255,255,0.1); }

.hero-trust { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.trust-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.trust-logos { display: flex; gap: 32px; }
.trust-logo {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta-row { flex-direction: column; }
  .trust-logos { flex-wrap: wrap; gap: 16px; }
}

/* ═══ METRICS BAR ═══ */
.metrics-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 40px 0;
  margin-top: -1px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.metric-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-600);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.metric-suffix {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-600);
}
.metric-label {
  display: block;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .metric-value { font-size: 36px; }
}

/* ═══ SECTION HEADERS ═══ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-badge.light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-header.light h2 { color: var(--white); }
.section-header p {
  font-size: 16px;
  color: var(--slate-500);
  max-width: 520px;
  margin: 0 auto;
}
.section-header.light p { color: rgba(255,255,255,0.6); }

/* ═══ FEATURES ═══ */
.features {
  padding: 100px 0;
  background: var(--slate-50);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--slate-200);
  transition: all 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ═══ HOW IT WORKS ═══ */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step-card {
  flex: 1;
  max-width: 260px;
  text-align: center;
  position: relative;
  padding: 32px 20px;
}
.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 16px auto 16px;
}
.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.7;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  color: var(--slate-300);
  font-size: 20px;
}

@media (max-width: 768px) {
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { padding: 0; transform: rotate(90deg); }
}

/* ═══ PLATFORM SHOWCASE ═══ */
.platform-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, #1e3a5f 100%);
}
.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}
.platform-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.platform-tab:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }
.platform-tab.active {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}
.platform-preview {
  max-width: 1000px;
  margin: 0 auto;
}
.platform-screen { display: none; }
.platform-screen.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.screen-placeholder {
  background: #1a2332;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.screen-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.screen-dots { display: flex; gap: 6px; }
.screen-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.screen-dots span:first-child { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #28c840; }
.screen-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.screen-body { padding: 24px; }
.mock-row { display: flex; gap: 16px; margin-bottom: 16px; }
.mock-card-metric {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-number { font-size: 28px; font-weight: 800; color: var(--white); }
.mock-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }
.mock-trend { font-size: 12px; font-weight: 700; }
.mock-trend.up { color: #34d399; }
.mock-trend.down { color: #34d399; }

.mock-chart-large {
  flex: 2;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
}
.mock-chart-small {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
}
.mock-chart-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
}
.mbar {
  flex: 1;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  border-radius: 4px 4px 0 0;
  min-height: 10px;
}
.mock-theme { margin-bottom: 12px; }
.mock-theme span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.mock-theme-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  border-radius: 3px;
}

/* Survey tab mock */
.mock-survey-builder { display: flex; gap: 16px; min-height: 200px; }
.mock-sidebar-mini {
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-q {
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.mock-q.active { background: rgba(59,130,246,0.2); border-color: var(--blue-500); color: var(--blue-500); }
.mock-survey-preview { flex: 1; display: flex; align-items: center; justify-content: center; }
.mock-survey-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.mock-survey-q { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; margin-bottom: 20px; line-height: 1.5; }
.mock-scale { display: flex; gap: 10px; justify-content: center; margin-bottom: 8px; }
.mock-scale span {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.mock-scale span.selected { background: var(--blue-600); border-color: var(--blue-500); color: var(--white); }
.mock-labels { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.3); }

/* Cases tab mock */
.mock-cases { display: flex; flex-direction: column; gap: 2px; }
.mock-case-row {
  display: grid;
  grid-template-columns: 80px 1fr 80px 80px 100px;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.mock-case-row.header {
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  background: transparent;
}
.mock-case-id { font-weight: 600; color: var(--blue-500); }
.priority { font-weight: 600; font-size: 11px; padding: 2px 8px; border-radius: 4px; }
.priority.critical { background: rgba(220,38,38,0.15); color: #f87171; }
.priority.high { background: rgba(245,158,11,0.15); color: #fbbf24; }
.priority.medium { background: rgba(59,130,246,0.15); color: #60a5fa; }
.priority.low { background: rgba(5,150,105,0.15); color: #34d399; }
.sla-ok { color: #34d399; font-weight: 600; }
.status-open { color: #fbbf24; font-weight: 600; }
.status-resolved { color: #34d399; font-weight: 600; }

/* Analytics tab mock */
.mock-ai-insight {
  display: flex;
  gap: 14px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 12px;
  padding: 20px;
}
.mock-ai-icon { font-size: 22px; color: var(--amber-500); flex-shrink: 0; margin-top: 2px; }
.mock-ai-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.mock-ai-text strong { color: var(--amber-500); }

/* Integrations tab mock */
.mock-integrations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mock-int-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.mock-int-card .bi { font-size: 28px; }
.mock-int-card.connected { border-color: rgba(52,211,153,0.3); }
.mock-int-card.connected .bi { color: #34d399; }
.int-status { font-size: 10px; font-weight: 700; text-transform: uppercase; color: #34d399; }
.int-status.avail { color: rgba(255,255,255,0.3); }

@media (max-width: 768px) {
  .platform-tabs { flex-wrap: wrap; }
  .mock-row { flex-direction: column; }
  .mock-integrations { grid-template-columns: repeat(2, 1fr); }
  .mock-case-row { grid-template-columns: 1fr 1fr; font-size: 11px; }
  .mock-case-row.header { display: none; }
}

/* ═══ COMPARISON ═══ */
.comparison {
  padding: 100px 0;
  background: var(--slate-50);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--white);
}
.compare-col {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
}
.compare-col.head {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: var(--slate-50);
  border-bottom: 2px solid var(--slate-200);
}
.compare-col.pulse-head {
  color: var(--blue-600);
  background: var(--blue-50);
}
.compare-col.label {
  font-weight: 600;
  color: var(--navy-900);
  background: var(--slate-50);
}
.compare-col.pulse-cell {
  font-weight: 600;
  color: var(--blue-600);
  background: #f8fbff;
}

@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr 1fr; font-size: 11px; }
  .compare-col:nth-child(5n+4),
  .compare-col:nth-child(5n+5) { display: none; }
}

/* ═══ TESTIMONIALS ═══ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-name { font-size: 13px; font-weight: 600; color: var(--white); }
.author-role { font-size: 11px; color: rgba(255,255,255,0.45); }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══ PRICING ═══ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card-mkt {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: all 0.2s;
}
.pricing-card-mkt:hover { box-shadow: var(--shadow-md); }
.pricing-card-mkt.featured {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-600), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.pricing-price-mkt {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.pricing-price-mkt span {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
}
.pricing-desc {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--slate-600);
  padding: 8px 0;
}
.pricing-features .bi {
  font-size: 16px;
  color: var(--green-600);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ═══ CTA ═══ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-600) 0%, #7c3aed 100%);
}
.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.cta-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.cta-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.cta-form .btn { flex-shrink: 0; background: var(--white); color: var(--blue-600); }
.cta-form .btn:hover { background: var(--blue-50); }
.cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .cta-content h2 { font-size: 28px; }
  .cta-form { flex-direction: column; }
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy-900);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
