/* ═══════════════════════════════════════════════════════════════
   AgentIQ Design System — Stripe/Linear quality
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-primary:    #050A14;
  --bg-secondary:  #0A1628;
  --bg-card:       #0F1E35;
  --bg-card-hover: #122240;
  --accent-teal:   #00D4AA;
  --accent-teal-dim: rgba(0,212,170,0.12);
  --accent-teal-glow: rgba(0,212,170,0.35);
  --accent-blue:   #0066FF;
  --text-primary:  #FFFFFF;
  --text-secondary:#8899AA;
  --text-dim:      #445566;
  --border:        #1A2E45;
  --border-bright: #243D56;
  --success:       #00D4AA;
  --warning:       #FFB800;
  --danger:        #FF4444;
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-card:   0 2px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  --shadow-glow:   0 0 40px rgba(0,212,170,0.15);
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:  'Syne', system-ui, sans-serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography ────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.body-lg  { font-size: 1.1rem; line-height: 1.7; }
.body-md  { font-size: 0.95rem; line-height: 1.65; }
.body-sm  { font-size: 0.85rem; line-height: 1.6; }
.mono     { font-family: var(--font-mono); font-size: 0.85rem; }
.text-secondary { color: var(--text-secondary); }
.text-dim       { color: var(--text-dim); }
.text-teal      { color: var(--accent-teal); }
.text-center    { text-align: center; }

/* ── Layout ────────────────────────────────────────────────── */
.container     { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm  { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.container-lg  { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section       { padding: 96px 0; }
.section-sm    { padding: 64px 0; }
.section-lg    { padding: 120px 0; }

/* ── Gradient mesh backgrounds ─────────────────────────────── */
.mesh-bg {
  position: relative;
  background: var(--bg-primary);
}
.mesh-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,170,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 40%, rgba(0,102,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,212,170,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.mesh-hero {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.mesh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(0,212,170,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 30%, rgba(0,102,255,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 10% 70%, rgba(0,212,170,0.05) 0%, transparent 50%);
  pointer-events: none;
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}

/* ── Grid pattern overlay ──────────────────────────────────── */
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,46,69,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,46,69,0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600;
  border: none; transition: all var(--transition);
  white-space: nowrap; line-height: 1;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-teal {
  background: var(--accent-teal);
  color: #050A14;
  box-shadow: 0 0 0 0 var(--accent-teal-glow);
}
.btn-teal:hover {
  box-shadow: 0 0 24px var(--accent-teal-glow), 0 0 0 1px var(--accent-teal);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}
.btn-dark {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-bright);
}
.btn-danger {
  background: rgba(255,68,68,0.1);
  color: var(--danger);
  border: 1px solid rgba(255,68,68,0.3);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px;
  background: rgba(5,10,20,0.8);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(26,46,69,0.5);
  transition: all var(--transition);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.nav-logo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px var(--accent-teal);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--accent-teal); }
  50%       { box-shadow: 0 0 16px var(--accent-teal), 0 0 32px rgba(0,212,170,0.3); }
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--text-primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Badge / Pills ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.01em;
}
.badge-teal {
  background: var(--accent-teal-dim);
  border: 1px solid rgba(0,212,170,0.25);
  color: var(--accent-teal);
}
.badge-blue {
  background: rgba(0,102,255,0.12);
  border: 1px solid rgba(0,102,255,0.25);
  color: #4D9FFF;
}
.badge-success {
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.2);
  color: var(--success);
}
.badge-warning {
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.2);
  color: var(--warning);
}
.badge-danger {
  background: rgba(255,68,68,0.1);
  border: 1px solid rgba(255,68,68,0.2);
  color: var(--danger);
}
.badge-neutral {
  background: rgba(136,153,170,0.1);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0,212,170,0.04) 0%, transparent 60%);
  pointer-events: none; opacity: 0;
  transition: opacity var(--transition);
}
.card:hover { border-color: var(--border-bright); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card-glow {
  box-shadow: 0 0 0 1px rgba(0,212,170,0.3), 0 0 40px rgba(0,212,170,0.08);
  border-color: rgba(0,212,170,0.3);
}
.card-popular {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 1px rgba(0,212,170,0.4), 0 0 60px rgba(0,212,170,0.1), var(--shadow-card);
}

/* ── Section headers ────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent-teal); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1.5px;
  background: var(--accent-teal);
}
.section-header { margin-bottom: 64px; }
.section-header .display-md { margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-header.center p { margin: 0 auto; }

/* ── Feature cards ──────────────────────────────────────────── */
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--accent-teal-dim);
  border: 1px solid rgba(0,212,170,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px;
  flex-shrink: 0;
}

/* ── Grids ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

/* ── Stats bar ──────────────────────────────────────────────── */
.stats-row {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.stat-item {
  flex: 1; padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-card-hover); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: var(--text-secondary); }

/* ── Chat demo UI ───────────────────────────────────────────── */
.chat-window {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.chat-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.chat-topbar .dots { display: flex; gap: 6px; }
.chat-topbar .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red   { background: #FF5F57; }
.dot-yellow{ background: #FEBC2E; }
.dot-green { background: #28C840; }
.chat-title {
  font-size: 0.82rem; color: var(--text-secondary);
  font-family: var(--font-mono);
  margin-left: auto;
}
.chat-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
  display: flex; gap: 10px; align-items: flex-start;
  animation: fadeUp 0.4s ease both;
}
.chat-msg.aria  { flex-direction: row; }
.chat-msg.patient { flex-direction: row-reverse; }
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.avatar-aria    { background: var(--accent-teal-dim); color: var(--accent-teal); border: 1px solid rgba(0,212,170,0.3); }
.avatar-patient { background: rgba(255,255,255,0.08); color: var(--text-secondary); }
.chat-bubble {
  max-width: 72%; padding: 10px 14px;
  border-radius: 16px; font-size: 0.88rem; line-height: 1.5;
}
.bubble-aria {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px 16px 16px 16px;
  color: var(--text-primary);
}
.bubble-patient {
  background: rgba(0,212,170,0.12);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 16px 4px 16px 16px;
  color: var(--text-primary);
}
.typing-indicator {
  display: flex; gap: 4px; align-items: center; padding: 4px 2px;
}
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-teal); opacity: 0.6;
  animation: typing 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(-4px); opacity: 1; }
}

/* ── ROI Calculator ─────────────────────────────────────────── */
.roi-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.roi-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
}
.roi-input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.roi-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 10px; letter-spacing: 0.03em; }
.roi-field .value-display {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.roi-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--border);
  border-radius: 2px; outline: none;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 12px rgba(0,212,170,0.5);
  cursor: pointer;
}
.roi-output {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 24px;
  background: rgba(0,212,170,0.06);
  border: 1px solid rgba(0,212,170,0.15);
  border-radius: var(--radius-lg);
}
.roi-output-item .val {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: var(--accent-teal);
  margin-bottom: 4px;
}
.roi-output-item .lbl { font-size: 0.78rem; color: var(--text-secondary); }

/* ── Steps ───────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(16.67% + 24px); right: calc(16.67% + 24px); height: 1px;
  background: linear-gradient(90deg, var(--accent-teal), var(--border), var(--accent-teal));
  opacity: 0.4;
}
.step-card { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--accent-teal);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-primary);
  transition: all var(--transition);
}
.step-card:hover .step-num {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 4px var(--bg-primary), 0 0 24px var(--accent-teal-glow);
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pricing-card.popular {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 1px rgba(0,212,170,0.4), 0 0 60px rgba(0,212,170,0.08);
  transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.popular-label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-teal); color: #050A14;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--text-primary);
  line-height: 1; margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.price-setup { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 24px; }
.plan-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.plan-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 28px; }
.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; padding: 8px 0;
  border-bottom: 1px solid rgba(26,46,69,0.6);
  color: var(--text-secondary);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check { color: var(--accent-teal); flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.feature-list .cross { color: var(--text-dim); flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.feature-list li.included { color: var(--text-primary); }
.feature-list li.excluded { opacity: 0.45; }

/* ── Toggle billing ─────────────────────────────────────────── */
.billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 48px;
}
.toggle-label { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.toggle-label.active { color: var(--text-primary); }
.toggle-switch {
  position: relative; width: 48px; height: 26px;
  background: var(--border); border-radius: 100px;
  cursor: pointer; border: none; transition: background var(--transition);
}
.toggle-switch.on { background: var(--accent-teal); }
.toggle-switch::after {
  content: ''; position: absolute;
  top: 3px; left: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--text-primary);
  transition: transform var(--transition);
}
.toggle-switch.on::after { transform: translateX(22px); }
.save-pill {
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.25);
  color: var(--warning);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 100px; text-transform: uppercase;
}

/* ── Comparison table ───────────────────────────────────────── */
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left; font-size: 0.88rem;
}
.compare-table thead th {
  background: rgba(255,255,255,0.03);
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child { color: var(--text-dim); }
.compare-table thead th.col-popular { color: var(--accent-teal); }
.compare-table tbody td { border-bottom: 1px solid rgba(26,46,69,0.5); color: var(--text-secondary); }
.compare-table tbody td:first-child { color: var(--text-primary); font-weight: 500; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .cat-row td {
  background: rgba(0,212,170,0.04);
  border-bottom: 1px solid rgba(0,212,170,0.15);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent-teal); padding: 10px 20px;
}
.check-yes { color: var(--success); font-size: 1rem; }
.check-no  { color: var(--text-dim); font-size: 1rem; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.faq-cat-header {
  padding: 20px 24px;
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 700;
  color: var(--accent-teal);
  background: rgba(0,212,170,0.04);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.faq-item { border-bottom: 1px solid rgba(26,46,69,0.5); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-primary); text-align: left;
  cursor: pointer; gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-arrow {
  color: var(--text-dim); font-size: 1.1rem; flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(90deg); color: var(--accent-teal); }
.faq-answer {
  display: none; padding: 0 24px 20px;
  font-size: 0.9rem; line-height: 1.7;
  color: var(--text-secondary);
}
.faq-item.open .faq-answer { display: block; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-required { color: var(--accent-teal); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 11px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 0.9rem;
  outline: none; transition: all var(--transition);
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.1);
}
.form-input.error { border-color: var(--danger); }
.form-error { font-size: 0.78rem; color: var(--danger); margin-top: 5px; }
.form-hint  { font-size: 0.78rem; color: var(--text-dim); margin-top: 5px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23445566' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-checkbox-group {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px;
}
.form-checkbox {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--transition);
  font-size: 0.88rem; color: var(--text-secondary);
}
.form-checkbox:hover { border-color: var(--accent-teal); color: var(--text-primary); }
.form-checkbox.checked { border-color: var(--accent-teal); color: var(--accent-teal); background: var(--accent-teal-dim); }
.form-checkbox input { display: none; }
.checkbox-mark { width: 16px; height: 16px; border: 1.5px solid var(--border); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.form-checkbox.checked .checkbox-mark { background: var(--accent-teal); border-color: var(--accent-teal); }
.form-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 20px;
}
.form-section-title {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.form-row { display: grid; gap: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* ── Stepper ─────────────────────────────────────────────────── */
.stepper {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 48px;
}
.step-item {
  display: flex; align-items: center; gap: 12px;
}
.step-bubble {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--text-dim); transition: all var(--transition); flex-shrink: 0;
}
.step-bubble.active { border-color: var(--accent-teal); color: var(--accent-teal); box-shadow: 0 0 16px rgba(0,212,170,0.3); }
.step-bubble.done { background: var(--accent-teal); border-color: var(--accent-teal); color: #050A14; }
.step-text { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); white-space: nowrap; }
.step-text.active { color: var(--text-primary); }
.step-text.done   { color: var(--text-secondary); }
.step-connector { width: 48px; height: 1px; background: var(--border); flex-shrink: 0; }
.step-connector.done { background: var(--accent-teal); opacity: 0.5; }

/* ── Dashboard ──────────────────────────────────────────────── */
.dash-layout { display: flex; min-height: 100vh; background: var(--bg-primary); }
.sidebar {
  width: 236px; flex-shrink: 0; height: 100vh;
  position: sticky; top: 0;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 20px 20px 16px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.sidebar-nav { flex: 1; padding: 12px 10px; }
.sidebar-section {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim);
  padding: 12px 10px 6px; margin-top: 8px;
}
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2px; transition: all var(--transition);
}
.sidebar-link:hover { background: rgba(255,255,255,0.04); color: var(--text-primary); }
.sidebar-link.active { background: var(--accent-teal-dim); color: var(--accent-teal); }
.sidebar-link .icon { width: 18px; text-align: center; font-size: 1rem; flex-shrink: 0; }
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}
.sidebar-clinic { font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.sidebar-plan   { color: var(--text-dim); font-size: 0.75rem; }

.dash-main { flex: 1; overflow-y: auto; }
.dash-topbar {
  height: 60px; display: flex; align-items: center;
  padding: 0 32px; gap: 16px;
  background: var(--bg-secondary); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.dash-topbar h2 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; flex: 1; }
.notif-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: all var(--transition);
}
.notif-btn:hover { border-color: var(--border-bright); background: rgba(255,255,255,0.08); }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-teal-dim);
  border: 1px solid rgba(0,212,170,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--accent-teal); cursor: pointer; flex-shrink: 0;
}
.dash-content { padding: 32px; }
.dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.kpi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; position: relative;
  overflow: hidden;
}
.kpi-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent-teal), transparent);
}
.kpi-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 10px; }
.kpi-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.kpi-delta { font-size: 0.78rem; color: var(--text-secondary); display: flex; align-items: center; gap: 4px; }
.kpi-delta.up { color: var(--success); }
.kpi-delta.down { color: var(--danger); }
.kpi-icon { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; opacity: 0.3; }

/* ── Tables ─────────────────────────────────────────────────── */
.table-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.table-header {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.table-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; flex: 1; }
.search-input {
  padding: 8px 14px; background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 0.85rem; outline: none;
  transition: all var(--transition); width: 220px;
}
.search-input:focus { border-color: var(--accent-teal); }
.search-input::placeholder { color: var(--text-dim); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 10px 16px; text-align: left;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dim); background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.data-table td { padding: 13px 16px; font-size: 0.88rem; border-bottom: 1px solid rgba(26,46,69,0.5); color: var(--text-secondary); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.015); }
.data-table td:first-child { color: var(--text-primary); font-weight: 500; }

/* ── Activity feed ──────────────────────────────────────────── */
.activity-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(26,46,69,0.5);
}
.activity-item:last-child { border-bottom: none; }
.activity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); flex-shrink: 0; margin-top: 6px;
}
.activity-dot.booked      { background: var(--success); box-shadow: 0 0 8px rgba(0,212,170,0.5); }
.activity-dot.cancelled   { background: var(--danger); }
.activity-dot.rescheduled { background: var(--warning); }
.activity-dot.sms         { background: #4D9FFF; }
.activity-content { flex: 1; }
.activity-title { font-size: 0.88rem; color: var(--text-primary); font-weight: 500; margin-bottom: 2px; }
.activity-time  { font-size: 0.75rem; color: var(--text-dim); }
.activity-pill  { font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; }

/* ── Login ──────────────────────────────────────────────────── */
.login-layout { display: flex; min-height: 100vh; }
.login-left {
  flex: 1; background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
}
.login-left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(0,212,170,0.06) 0%, transparent 60%);
}
.login-right {
  width: 480px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 48px; background: var(--bg-primary);
}
.login-form-wrap { width: 100%; max-width: 360px; }
.login-quote {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  margin-top: 40px; max-width: 480px;
}
.login-quote::before {
  content: '"'; font-family: var(--font-display); font-size: 3rem;
  color: var(--accent-teal); line-height: 1; position: absolute; top: 12px; left: 20px; opacity: 0.5;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; overflow: hidden;
}
.testimonial-card::after {
  content: '"'; position: absolute; bottom: -16px; right: 20px;
  font-family: var(--font-display); font-size: 6rem; font-weight: 800;
  color: var(--accent-teal); opacity: 0.04; line-height: 1;
  pointer-events: none;
}
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-teal-dim); border: 1px solid rgba(0,212,170,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 800; color: var(--accent-teal);
}
.author-name  { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.author-title { font-size: 0.78rem; color: var(--text-dim); }
.stars { color: var(--warning); font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 12px; }

/* ── Final CTA ──────────────────────────────────────────────── */
.cta-card {
  position: relative; overflow: hidden;
  background: var(--bg-card);
  border-radius: var(--radius-xl); padding: 64px;
  border: 1px solid var(--border);
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,170,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes counter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-secondary); max-width: 260px; line-height: 1.6; margin-bottom: 20px; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.88rem; color: var(--text-dim); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-teal); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent-teal); }

/* ── Misc ───────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.spacer { height: 24px; }
.highlight { color: var(--accent-teal); }
.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.notice {
  background: var(--accent-teal-dim); border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius); padding: 14px 18px;
  font-size: 0.88rem; color: var(--text-secondary);
  display: flex; align-items: flex-start; gap: 10px;
}
.success-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.success-icon { font-size: 3.5rem; margin-bottom: 24px; animation: fadeIn 0.5s ease; }

/* ── Phone UI demo ──────────────────────────────────────────── */
.phone-mockup {
  width: 280px; background: #111827;
  border-radius: 32px; padding: 12px;
  border: 8px solid #1F2937;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  margin: 0 auto;
}
.phone-screen { background: #0F172A; border-radius: 22px; overflow: hidden; }
.phone-notch  { width: 80px; height: 20px; background: #111827; margin: 0 auto; border-radius: 0 0 12px 12px; }
.phone-call-header {
  padding: 20px 16px 12px; text-align: center;
  background: linear-gradient(180deg, #0F172A 0%, #0A1628 100%);
}
.call-label { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.call-name  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin: 4px 0; }
.call-duration { font-size: 0.78rem; color: var(--accent-teal); font-family: var(--font-mono); }

/* ── Progress bar ───────────────────────────────────────────── */
.progress-bar { height: 3px; background: var(--border); border-radius: 100px; overflow: hidden; margin-bottom: 32px; }
.progress-fill { height: 100%; background: var(--accent-teal); border-radius: 100px; transition: width 0.5s ease; box-shadow: 0 0 12px rgba(0,212,170,0.5); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dash-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .roi-input-grid { grid-template-columns: 1fr; }
  .roi-output { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .login-right { width: 100%; }
  .sidebar { display: none; }
  .cta-card { padding: 36px 24px; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .dash-content { padding: 20px; }
  .stepper { display: none; }
}
@media (max-width: 480px) {
  .display-xl { font-size: 2.2rem; }
  .hero-cta   { flex-direction: column; }
  .stats-row  { flex-direction: column; }
  .stat-item  { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .dash-grid  { grid-template-columns: 1fr; }
  .nav-actions { display: none; }
  .section { padding: 60px 0 40px; }
}

/* ── Pricing preview inline grid ─────────────────────────────── */
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .pricing-preview-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ── Mobile Hamburger Nav ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  z-index: 999;
  overflow-x: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 11px 16px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}
.nav-mobile a:hover { background: rgba(255,255,255,.05); color: var(--text-primary); }
.nav-mobile .btn { text-align: center; display: block; margin-top: 4px; }
.nav-mobile hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* ── nav-container alias (legal pages) ───────────────────────── */
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-actions .btn-ghost { display: none; }
  .compare-table th:not(:first-child):not(.col-popular),
  .compare-table td:not(:first-child):not(:nth-child(3)) { display: none; }
  .compare-table th:first-child { width: auto; }
  .pricing-card { max-width: 100%; }
  .billing-toggle { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .nav-container { padding: 0 16px; }
}
