/* ============================================
   MedPilot AI — Product Marketing Website
   Pure CSS, no frameworks
   ============================================ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────── */
:root {
  --blue-400: #38bdf8;
  --blue-500: #0ea5e9;
  --blue-600: #0284c7;
  --blue-700: #0369a1;
  --purple: #684DF4;
  --purple-light: #8b6ff7;
  --purple-dark: #5338c9;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-950: #0a0a14;
  --gradient: linear-gradient(135deg, #0ea5e9, #684DF4);
  --gradient-wide: linear-gradient(135deg, #0ea5e9 0%, #684DF4 50%, #a855f7 100%);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-glow-blue: 0 0 40px rgba(14,165,233,0.15);
  --shadow-glow-purple: 0 0 40px rgba(104,77,244,0.15);
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--gray-900); }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; font-weight: 600; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-title { text-align: center; margin-bottom: 1rem; }
.section-sub { text-align: center; color: var(--gray-500); font-size: 1.125rem; max-width: 600px; margin: 0 auto 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.grid-features { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:640px) { .grid-features { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .grid-features { grid-template-columns: repeat(5,1fr); } }

.dark-section { background: var(--gray-950); }
.dark-section .section-sub { color: var(--gray-400); }
.section-title.light, .section-sub.light { color: var(--gray-100); }
.section-title.light { color: var(--white); }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.938rem;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 16px rgba(14,165,233,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,0.35); }
.btn-ghost {
  border: 1.5px solid var(--blue-500); color: var(--blue-500);
  background: transparent;
}
.btn-ghost:hover { background: rgba(14,165,233,0.06); }
.btn-white { background: #fff; color: var(--gray-900); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ─── GLASS CARD ─────────────────────────────── */
.glass-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
  padding: 0.6rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.375rem; color: var(--white); transition: color 0.3s; }
.navbar.scrolled .logo-text { color: var(--gray-900); }
.logo-highlight { color: var(--blue-500); -webkit-text-fill-color: var(--blue-500); }
.logo-ai {
  font-size: 0.65em; font-weight: 700; letter-spacing: 0.08em;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; vertical-align: super;
}
.nav-links { display: none; gap: 2rem; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.7);
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--blue-500); transition: width 0.25s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--gray-600); }
.navbar.scrolled .nav-link:hover { color: var(--gray-900); }
.nav-cta { display: none; }
@media(min-width:768px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.navbar.scrolled .hamburger span { background: var(--gray-800); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media(min-width:768px) { .hamburger { display: none; } }

/* Mobile drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 999; pointer-events: none; }
.mobile-drawer.open { pointer-events: auto; }
.drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.drawer-content {
  position: absolute; top: 0; right: 0; width: 280px; height: 100%;
  background: var(--white); padding: 5rem 2rem 2rem;
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mobile-drawer.open .drawer-content { transform: translateX(0); }
.drawer-link { font-family: var(--font-heading); font-weight: 600; font-size: 1.125rem; padding: 0.75rem 0; color: var(--gray-800); border-bottom: 1px solid var(--gray-100); }

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--gray-950);
  padding: 8rem 0 4rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-glow {
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, rgba(104,77,244,0.08) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; top: 60%; right: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(104,77,244,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes pulse { 0%,100% { transform: translateX(-50%) scale(1); opacity: 1; } 50% { transform: translateX(-50%) scale(1.15); opacity: 0.7; } }

.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-content { max-width: 800px; margin: 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2);
  border-radius: 50px; padding: 0.4rem 1.25rem;
  font-size: 0.85rem; font-weight: 500; color: var(--blue-400);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title { color: var(--white); margin-bottom: 1.5rem; }
.hero-sub { color: var(--gray-400); font-size: 1.2rem; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.fomo-bar {
  max-width: 420px; margin: 0 auto;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 1rem 1.5rem;
}
.fomo-text { color: var(--gray-400); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.fomo-text strong { color: var(--white); }
.fomo-pulse { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.7); animation: pulse-ring 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); } 70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.fomo-progress { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.fomo-progress-fill { height: 100%; background: var(--gradient); border-radius: 3px; transition: width 0.5s; }

/* Benefit cards (replaces testimonials) */
.benefit-card { text-align: center; padding: 2rem; }
.benefit-icon {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,165,233,0.08);
}
.benefit-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.benefit-card .testimonial-quote { font-style: normal; text-align: center; margin: 0; }

/* Hero dashboard mockup */
.hero-visual { margin-top: 4rem; }
.dashboard-mockup {
  max-width: 800px; margin: 0 auto;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(14,165,233,0.08);
}
.mockup-topbar { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1rem; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-title { color: var(--gray-400); font-size: 0.8rem; font-weight: 500; }
.mockup-body { display: flex; min-height: 240px; }
.mockup-sidebar { width: 48px; background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.06); padding: 1rem 0.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mockup-nav-item { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.04); }
.mockup-nav-item.active { background: rgba(14,165,233,0.2); border: 1px solid rgba(14,165,233,0.3); }
.mockup-main { flex: 1; padding: 1rem; }
.mockup-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; margin-bottom: 1rem; }
.mockup-stat-card { height: 36px; border-radius: 8px; }
.mockup-stat-card.c1 { background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.2); }
.mockup-stat-card.c2 { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.2); }
.mockup-stat-card.c3 { background: rgba(104,77,244,0.12); border: 1px solid rgba(104,77,244,0.2); }
.mockup-stat-card.c4 { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.mockup-calendar { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; }
.mockup-cal-header { height: 24px; background: rgba(14,165,233,0.08); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mockup-cal-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; padding: 0.5rem; }
.mockup-cal-slot { height: 28px; border-radius: 4px; }
.mockup-cal-slot.s1 { background: rgba(14,165,233,0.2); grid-column: 1; }
.mockup-cal-slot.s2 { background: rgba(34,197,94,0.2); grid-column: 2; }
.mockup-cal-slot.s3 { background: rgba(104,77,244,0.2); grid-column: 1; }
.mockup-cal-slot.s4 { background: rgba(245,158,11,0.15); grid-column: 3; }
.mockup-cal-slot.s5 { background: rgba(14,165,233,0.15); grid-column: 2; }
.mockup-cal-slot.s6 { background: rgba(104,77,244,0.15); grid-column: 4; }
.mockup-cal-slot.s7 { background: rgba(34,197,94,0.15); grid-column: 3; }
.mockup-cal-slot.s8 { background: rgba(14,165,233,0.2); grid-column: 4; }

/* ─── PROBLEM ────────────────────────────────── */
.problem { background: var(--white); }
.problem-cards { margin-top: 1rem; }
.problem-card { text-align: center; padding: 2.5rem 2rem; }
.problem-icon { margin-bottom: 1.25rem; display: flex; justify-content: center; }
.problem-stat { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800; color: var(--gray-900); line-height: 1.1; letter-spacing: -0.02em; }
.problem-stat-label {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.25rem; margin-bottom: 1rem;
}
.problem-text { color: var(--gray-500); font-size: 0.95rem; }

/* ─── SOCIAL PROOF ───────────────────────────── */
.social-proof { background: var(--gray-50); padding: 3rem 0 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.proof-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; }
.proof-item { text-align: center; padding: 1rem; }
.proof-number { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 700; color: var(--gray-900); }
.proof-label { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.25rem; }
.proof-divider { width: 1px; height: 40px; background: var(--gray-300); display: none; }
@media(min-width:768px) { .proof-divider { display: block; } }

.marquee-wrap { overflow: hidden; margin-top: 2rem; padding: 0.75rem 0; background: var(--gray-100); }
.marquee { display: flex; width: max-content; animation: scroll-marquee 30s linear infinite; }
.marquee span { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; white-space: nowrap; }
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── FEATURES ───────────────────────────────── */
.features { background: var(--white); }
.feature-cluster { margin-bottom: 3rem; }
.cluster-label {
  display: inline-block; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.cluster-label.blue { background: rgba(14,165,233,0.08); color: var(--blue-600); }
.cluster-label.purple { background: rgba(104,77,244,0.08); color: var(--purple); }
.cluster-label.gradient { background: var(--gradient); color: #fff; }

.feature-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem;
  transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gray-300); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon.blue { background: rgba(14,165,233,0.08); color: var(--blue-600); }
.feature-icon.purple { background: rgba(104,77,244,0.08); color: var(--purple); }
.feature-icon.gradient { background: var(--gradient); color: #fff; }
.feature-card h4 { margin-bottom: 0.5rem; color: var(--gray-900); }
.feature-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ─── WHATSAPP DEMO ──────────────────────────── */
.wa-demo { background: var(--gray-50); }
.wa-demo-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media(min-width:768px) { .wa-demo-grid { grid-template-columns: 1fr 1fr; } }

.wa-phone-frame {
  max-width: 360px; margin: 0 auto;
  background: #0b141a; border-radius: 24px;
  overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.wa-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1rem; background: #1f2c34;
}
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem;
}
.wa-name { color: #e9edef; font-size: 0.9rem; font-weight: 600; }
.wa-status { color: #8696a0; font-size: 0.75rem; }
.wa-chat { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.35rem; min-height: 400px; max-height: 500px; overflow-y: auto; }

.wa-msg {
  max-width: 85%; padding: 0.5rem 0.75rem;
  font-size: 0.8rem; line-height: 1.4; border-radius: 8px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.wa-msg.visible { opacity: 1; transform: translateY(0); }
.wa-msg.sent { align-self: flex-end; background: #005c4b; color: #e9edef; border-bottom-right-radius: 2px; }
.wa-msg.received { align-self: flex-start; background: #1f2c34; color: #e9edef; border-bottom-left-radius: 2px; }
.wa-btn-inline {
  display: inline-block; margin: 4px 4px 0 0;
  padding: 4px 10px; background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.3);
  border-radius: 4px; font-size: 0.78rem; color: var(--blue-400);
}
.wa-btn-inline.highlight { background: rgba(14,165,233,0.3); border-color: var(--blue-400); }
.wa-confirm-badge {
  display: inline-block; margin-top: 0.5rem;
  padding: 4px 10px; background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.3);
  border-radius: 4px; font-size: 0.78rem; color: #4ade80; font-weight: 600;
}

.wa-details { display: flex; flex-direction: column; gap: 1.25rem; }
.wa-detail-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem;
  transition: all 0.3s ease;
}
.wa-detail-card:hover { box-shadow: var(--shadow); }
.wa-detail-number { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 700; color: var(--blue-600); line-height: 1; }
.wa-detail-unit { font-size: 0.85rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.wa-detail-text { color: var(--gray-600); font-size: 0.9rem; }

/* ─── DASHBOARD PREVIEW ──────────────────────── */
.dashboard-section { padding: 6rem 0; }
.dashboard-preview { position: relative; margin: 3rem auto; max-width: 900px; }
.dash-mockup {
  background: #111827; border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), var(--shadow-glow-blue);
}
.dash-topbar { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1rem; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.06); }
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #eab308; }
.dash-dots span:nth-child(3) { background: #22c55e; }
.dash-breadcrumb { color: var(--gray-500); font-size: 0.75rem; }
.dash-body { display: flex; min-height: 350px; }

.dash-sidebar {
  width: 160px; background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0.75rem; display: flex; flex-direction: column; gap: 0.25rem;
  display: none;
}
@media(min-width:768px) { .dash-sidebar { display: flex; } }
.dash-menu-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.75rem; border-radius: 6px;
  font-size: 0.8rem; color: var(--gray-400); transition: all 0.2s;
}
.dash-menu-item.active { background: rgba(14,165,233,0.12); color: var(--blue-400); }

.dash-main { flex: 1; padding: 1rem; }
.dash-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.dash-stat {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 0.75rem; text-align: center;
}
.ds-num { display: block; font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.ds-label { font-size: 0.65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.03em; }
.purple-stat { border-color: rgba(104,77,244,0.3); background: rgba(104,77,244,0.06); }
.purple-stat .ds-num { color: var(--purple-light); }

.dash-cal { display: flex; gap: 0; overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); min-width: 0; }
.dash-time-col {
  width: 50px; background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
}
.dash-time-col::before { content: ''; display: block; padding: 0.4rem; font-size: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dash-time { padding: 0.25rem; font-size: 0.65rem; color: var(--gray-500); text-align: center; height: 32px; display: flex; align-items: center; justify-content: center; }
.dash-doc-col {
  flex: 1; display: grid; grid-template-rows: auto repeat(6,32px);
  border-right: 1px solid rgba(255,255,255,0.04);
}
.dash-doc-header {
  font-size: 0.7rem; font-weight: 600; color: var(--gray-300);
  padding: 0.4rem; text-align: center; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-appt {
  margin: 1px 3px; border-radius: 4px; padding: 3px 6px;
  font-size: 0.6rem; font-weight: 500; line-height: 1.3; overflow: hidden;
}
.dash-appt small { opacity: 0.7; }
.blue-appt { background: rgba(14,165,233,0.2); color: var(--blue-400); border-left: 2px solid var(--blue-500); }
.green-appt { background: rgba(34,197,94,0.15); color: #4ade80; border-left: 2px solid #22c55e; }
.purple-appt { background: rgba(104,77,244,0.15); color: var(--purple-light); border-left: 2px solid var(--purple); }
.amber-appt { background: rgba(245,158,11,0.15); color: #fbbf24; border-left: 2px solid #f59e0b; }

.dash-annotations { position: absolute; inset: 0; pointer-events: none; display: none; }
@media(min-width:1024px) { .dash-annotations { display: block; } }
.annotation {
  position: absolute; display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.5rem 1rem;
  color: var(--gray-300); font-size: 0.8rem; font-weight: 500;
  white-space: nowrap;
}
.annotation-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); animation: blink 2s ease-in-out infinite; }

.dash-callout {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 3rem; text-align: center;
}
.callout-stat { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--blue-400); }
.callout-text { color: var(--gray-400); font-size: 1.1rem; }

/* ─── AI SECTION ─────────────────────────────── */
.ai-section { position: relative; overflow: hidden; }
.ai-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(104,77,244,0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.ai-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; padding: 0.4rem 1rem; border-radius: 50px;
  background: rgba(104,77,244,0.1); border: 1px solid rgba(104,77,244,0.25);
  color: var(--purple-light); margin-bottom: 1.5rem; text-align: center;
}
.grid-ai { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
@media(min-width:640px) { .grid-ai { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .grid-ai { grid-template-columns: repeat(4,1fr); } }

.ai-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(104,77,244,0.12);
  border-radius: var(--radius); padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.ai-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(104,77,244,0.2), transparent, rgba(14,165,233,0.2));
  z-index: -1; opacity: 0; transition: opacity 0.3s;
}
.ai-card:hover::before { opacity: 1; }
.ai-card:hover { transform: translateY(-4px); border-color: rgba(104,77,244,0.3); }
.ai-card-icon { margin-bottom: 1rem; }
.ai-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.ai-card p { color: var(--gray-400); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.75rem; }
.ai-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(104,77,244,0.1); color: var(--purple-light);
}
.ai-cta { text-align: center; }

/* ─── COMPARISON ─────────────────────────────── */
.comparison { background: var(--white); }
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 2rem; }
.comparison-table {
  width: 100%; min-width: 600px; border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 1rem; text-align: left; border-bottom: 2px solid var(--gray-200);
}
.comparison-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--gray-100); }
.comparison-table tr:hover td { background: var(--gray-50); }
.col-us { background: rgba(14,165,233,0.03); }
.comparison-table th.col-us { background: rgba(14,165,233,0.06); color: var(--blue-600); }
.col-old { color: var(--gray-500); }
.col-generic { color: var(--gray-500); }
.check { color: #22c55e; font-weight: 700; margin-right: 0.35rem; }
.cross { color: #ef4444; font-weight: 700; margin-right: 0.35rem; }
.partial { color: #f59e0b; font-weight: 700; margin-right: 0.35rem; }
.comparison-cta { text-align: center; color: var(--gray-500); }
.text-link { color: var(--blue-500); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.text-link:hover { border-color: var(--blue-500); }

/* ─── PRICING / QUOTE ────────────────────────── */
.pricing-section { background: var(--gray-50); }

/* Quote card (custom pricing / contact) */
.quote-card {
  max-width: 1000px; margin: 0 auto;
  padding: 0; overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(14,165,233,0.08), 0 8px 24px rgba(104,77,244,0.05);
}
.quote-inner { display: grid; grid-template-columns: 1fr; }
@media(min-width:900px) { .quote-inner { grid-template-columns: 1.15fr 1fr; } }

.quote-left { padding: 2.5rem; }
@media(min-width:768px) { .quote-left { padding: 3rem; } }
.quote-label {
  display: inline-block; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.35rem 0.875rem; border-radius: 50px;
  background: rgba(14,165,233,0.08); color: var(--blue-600);
  margin-bottom: 1.25rem;
}
.quote-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.375rem, 2.8vw, 1.875rem); line-height: 1.25;
  color: var(--gray-900); margin-bottom: 1.5rem;
}
.quote-desc { color: var(--gray-600); font-weight: 500; margin-bottom: 0.75rem; }
.quote-factors {
  display: grid; grid-template-columns: 1fr; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media(min-width:480px) { .quote-factors { grid-template-columns: 1fr 1fr; } }
.quote-factors li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--gray-700); }
.quote-included { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.quote-included strong { color: var(--gray-800); }

.quote-right {
  padding: 2.5rem; background: linear-gradient(140deg, rgba(14,165,233,0.04), rgba(104,77,244,0.04));
  border-left: 1px solid var(--gray-100);
  display: flex; align-items: center;
}
@media(max-width:899px) { .quote-right { border-left: none; border-top: 1px solid var(--gray-100); } }
.contact-block { width: 100%; }
.contact-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.125rem; color: var(--gray-900); margin-bottom: 1.25rem;
}
.contact-row {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1rem; margin-bottom: 0.75rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.contact-row:hover {
  border-color: var(--blue-500);
  box-shadow: 0 4px 16px rgba(14,165,233,0.08);
  transform: translateY(-1px);
}
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-value { font-size: 0.95rem; color: var(--gray-900); font-weight: 600; word-break: break-all; }
.quote-cta { margin-top: 1rem; justify-content: center; }
.quote-response-time {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1rem; font-size: 0.8rem; color: var(--gray-500);
}
.response-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: blink 2s ease-in-out infinite; }
.pricing-grid { max-width: 960px; margin: 0 auto; }
.pricing-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  text-align: center; position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 1px var(--blue-500), var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 0.35rem 1.25rem; border-radius: 50px;
  white-space: nowrap;
}
.pricing-tier { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
.pricing-for { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 2rem; }
.pricing-old { text-decoration: line-through; color: var(--gray-400); font-size: 1rem; margin-right: 0.5rem; }
.pricing-current { font-family: var(--font-mono); font-size: 2.75rem; font-weight: 800; color: var(--gray-900); }
.pricing-period { font-size: 0.9rem; color: var(--gray-500); }
.pricing-features { text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.9rem; color: var(--gray-600); display: flex; align-items: flex-start; gap: 0.5rem; }
.pricing-features .check { color: #22c55e; flex-shrink: 0; }
.pricing-save { margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: #22c55e; }
.pricing-trust { text-align: center; margin-top: 2.5rem; color: var(--gray-500); font-size: 0.9rem; }

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials { background: var(--white); }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-quote { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--gray-900); font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-500); }

/* ─── TRUST BADGES ───────────────────────────── */
.trust-badges { background: var(--gray-50); padding: 2rem 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }

/* ─── FAQ ─────────────────────────────────────── */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; text-align: left;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--gray-800);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue-600); }
.faq-icon { font-size: 1.5rem; font-weight: 400; color: var(--gray-400); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--blue-500); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 0 1.25rem; color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ─── FINAL CTA ──────────────────────────────── */
.final-cta {
  background: var(--gradient-wide);
  text-align: center; padding: 5rem 0;
}
.final-cta-title { color: #fff; font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.final-cta-sub { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2.5rem; }
.final-cta-btns { margin-bottom: 1.5rem; }
.final-cta-phone { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.final-cta-phone a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.4); }

/* ─── FOOTER ─────────────────────────────────── */
.footer { background: var(--gray-950); color: var(--gray-400); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media(min-width:768px) { .footer-top { grid-template-columns: 2fr 3fr; } }
.footer-tagline { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 1rem; }
.footer-by {
  font-size: 0.8rem; color: var(--gray-600);
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.5rem;
}
.cfd-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-left: 0.35rem;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem;
  color: var(--gray-200);
  padding: 0.3rem 0.7rem; border-radius: 50px;
  background: linear-gradient(135deg, rgba(104,77,244,0.15), rgba(104,77,244,0.05));
  border: 1px solid rgba(104,77,244,0.25);
  transition: all 0.2s ease;
}
.cfd-link:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(104,77,244,0.3), rgba(104,77,244,0.15));
  border-color: var(--purple);
  transform: translateY(-1px);
}
.cfd-logo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}
.cfd-inline {
  color: var(--purple-light); font-weight: 600;
  border-bottom: 1px dashed rgba(139,111,247,0.4);
  transition: color 0.2s, border-color 0.2s;
}
.cfd-inline:hover { color: #fff; border-color: var(--purple-light); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col h5 { color: var(--gray-300); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--gray-500); padding: 0.25rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; text-align: center; font-size: 0.8rem; color: var(--gray-600); }

/* ─── ANIMATIONS ─────────────────────────────── */
[data-animate] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-animate][data-delay="50"] { transition-delay: 50ms; }
[data-animate][data-delay="100"] { transition-delay: 100ms; }
[data-animate][data-delay="150"] { transition-delay: 150ms; }
[data-animate][data-delay="200"] { transition-delay: 200ms; }
[data-animate][data-delay="250"] { transition-delay: 250ms; }
[data-animate][data-delay="300"] { transition-delay: 300ms; }
[data-animate][data-delay="350"] { transition-delay: 350ms; }
[data-animate][data-delay="400"] { transition-delay: 400ms; }

/* ─── ACCESSIBILITY ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-animate] { opacity: 1; transform: none; }
  .wa-msg { opacity: 1; transform: none; }
  .marquee { animation: none; }
  .hero-glow, .hero-glow-2, .ai-glow { display: none; }
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media(max-width:767px) {
  .hero { padding: 5.5rem 0 2.5rem; min-height: auto; align-items: flex-start; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-sub br { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-visual { margin-top: 2rem; }
  .dashboard-mockup { max-width: 100%; }
  .section { padding: 4rem 0; }
  .mockup-stats { grid-template-columns: repeat(2,1fr); }
  .dash-stats-row { grid-template-columns: repeat(2,1fr); }
  .dash-doc-col:last-child { display: none; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .proof-grid { gap: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ─── SUBPAGES (About / Blog / Careers / Contact / Legal) ─── */
.subpage-hero {
  padding: 8rem 0 3rem;
  background: radial-gradient(ellipse at top, rgba(104,77,244,.12), transparent 60%), #0a0f1e;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.subpage-hero .eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #7c5cff; margin-bottom: .75rem;
}
.subpage-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); color: #f1f5f9; margin: 0 0 1rem; line-height: 1.15;
}
.subpage-hero p { color: #94a3b8; font-size: 1.1rem; max-width: 720px; margin: 0; }

.subpage-body { padding: 3rem 0 5rem; background: #0a0f1e; color: #cbd5e1; }
.subpage-body .prose { max-width: 820px; margin: 0 auto; }
.subpage-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #f1f5f9;
  font-size: 1.5rem; margin: 2.5rem 0 1rem;
}
.subpage-body h3 { color: #e2e8f0; font-size: 1.15rem; margin: 1.75rem 0 .75rem; font-weight: 600; }
.subpage-body p, .subpage-body li { line-height: 1.75; color: #cbd5e1; }
.subpage-body ul { padding-left: 1.25rem; margin: 1rem 0; }
.subpage-body li { margin-bottom: .5rem; }
.subpage-body a { color: #7c5cff; text-decoration: none; }
.subpage-body a:hover { text-decoration: underline; }
.subpage-body strong { color: #f1f5f9; }
.subpage-body .meta { color: #64748b; font-size: .9rem; margin-bottom: 2rem; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.sub-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 1.5rem; transition: border-color .2s, transform .2s;
}
.sub-card:hover { border-color: rgba(124,92,255,.4); transform: translateY(-2px); }
.sub-card h3 { margin-top: 0; color: #f1f5f9; }
.sub-card .tag {
  display: inline-block; font-size: .75rem; color: #7c5cff;
  background: rgba(124,92,255,.1); padding: .25rem .6rem; border-radius: 999px;
  margin-bottom: .75rem; font-weight: 600;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
@media(max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 1.5rem;
}
.contact-block .label { font-size: .8rem; color: #64748b; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.contact-block .value { color: #f1f5f9; font-size: 1.1rem; font-weight: 600; }
.contact-block .value a { color: #f1f5f9; }

.back-link { display: inline-flex; align-items: center; gap: .4rem; color: #7c5cff; font-weight: 500; margin-bottom: 1.5rem; }

