/* ═══════════════════════════════════════════════════════════
   CONSTANT EMPLOYEE — WORLD-CLASS REDESIGN
   main.css — Complete stylesheet
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-300: #93C5FD;
  --blue-100: #DBEAFE;
  --navy-900: #0A0F1E;
  --navy-800: #0F172A;
  --navy-700: #1E293B;
  --navy-600: #1E3A5F;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --white: #FFFFFF;
  --gold: #F59E0B;
  --green: #10B981;
  --red: #EF4444;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.3);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.5), 0 4px 16px rgba(0,0,0,.4);
  --shadow-blue: 0 0 40px rgba(59,130,246,.25);
  --topbar-h: 64px;
  --ticker-h: 72px;
  --header-total: calc(var(--topbar-h) + var(--ticker-h));
  --max-w: 1200px;
  --section-py: 100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
p { line-height: 1.7; color: var(--slate-300); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 12px;
}

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head h2 { color: var(--white); margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: var(--slate-400); max-width: 600px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 4px 20px rgba(59,130,246,.35);
}
.btn--primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,.5);
}

.btn--white {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--blue-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,.2);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
}

.btn--outline {
  background: transparent;
  color: var(--blue-400);
  border-color: var(--blue-500);
}
.btn--outline:hover {
  background: rgba(59,130,246,.1);
  transform: translateY(-2px);
}

.btn--sm { padding: 8px 18px; font-size: 0.85rem; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--xl { padding: 18px 36px; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--topbar-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.brand__mark { color: var(--blue-400); display: flex; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-300);
  transition: color 0.2s;
}
.nav a:hover { color: var(--white); }

.topbar__cta {
  margin-left: 16px;
  padding: 9px 18px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Trust Badge Ticker ── */
.badge-ticker {
  height: var(--ticker-h);
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(59,130,246,.15);
  overflow: hidden;
  position: relative;
}

.badge-ticker::before,
.badge-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.badge-ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(10,15,30,1), transparent);
}
.badge-ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(10,15,30,1), transparent);
}

.badge-ticker__track {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
  padding: 0 20px;
}

.badge-ticker__badge {
  height: 58px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(59,130,246,.2));
  transition: filter 0.2s;
}
.badge-ticker__badge:hover {
  filter: drop-shadow(0 0 14px rgba(59,130,246,.55));
  animation-play-state: paused;
}

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

/* Mobile Nav */
.mobilenav {
  display: none;
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 999;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobilenav.is-open { display: flex; }
.mobilenav__link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-300);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.mobilenav__link:hover { background: rgba(255,255,255,.06); color: var(--white); }
.mobilenav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 20px;
  background: var(--blue-500);
  color: var(--white);
  font-weight: 700;
  border-radius: 50px;
  font-size: 1rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-total);
  display: flex;
  align-items: center;
  overflow: clip;
  overflow-clip-margin: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  top: 72px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
.hero__glow--a {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,.5) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero__glow--b {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.4) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Hero Slider */
.hslider { position: relative; }

.hslide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hslide.is-active { display: grid; }

.hslide__copy { max-width: 580px; }

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-300);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.hero__pill-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__pill-always {
  background: rgba(34,197,94,.15);
  color: #4ADE80;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hslide__h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.hslide__line { color: var(--white); }
.hslide__accent {
  font-style: italic;
  color: var(--blue-400);
  font-weight: 900;
}
.hslide__big {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hslide__sub {
  font-size: 1.15rem;
  color: var(--slate-300);
  margin-bottom: 36px;
  line-height: 1.65;
}
.hslide__sub strong { color: var(--white); }

.hslide__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hslide__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-blue);
  border: 1px solid rgba(59,130,246,.2);
  align-self: center;
}
.hslide__visual img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Slider Controls */
.hslider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.hslider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: rgba(255,255,255,.05);
}
.hslider__arrow:hover {
  background: rgba(59,130,246,.2);
  border-color: var(--blue-500);
}

.hslider__dots { display: flex; gap: 8px; align-items: center; }
.hslider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all 0.3s;
}
.hslider__dot.is-active {
  background: var(--blue-400);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats {
  background: var(--navy-700);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 48px 24px;
}

.stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 20px 48px;
  flex: 1;
  min-width: 160px;
}

.stat__num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue-400);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--slate-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   TRADE CARDS
═══════════════════════════════════════════════ */
.cats {
  padding: var(--section-py) 24px;
  background: var(--navy-900);
}

.cats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.cat {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.07);
  transition: all 0.25s ease;
  position: relative;
}
.cat:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,.4);
  box-shadow: 0 8px 30px rgba(0,0,0,.4), 0 0 20px rgba(59,130,246,.15);
}

.cat__media {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat:hover .cat__media img { transform: scale(1.06); }

.cat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.cat__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cat__phonecall {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(59,130,246,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.cat__phonecall:hover { background: var(--blue-600); transform: scale(1.1); }

.player {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
}

.player__btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.player__btn:hover { background: var(--blue-600); transform: scale(1.1); }

.player__pause { display: none; }
.player.is-playing .player__play { display: none; }
.player.is-playing .player__pause { display: block; }

.player__progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.player__bar {
  height: 100%;
  background: var(--blue-400);
  width: 0%;
  border-radius: 2px;
  transition: width 0.1s linear;
}

.player__time {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--slate-400);
  flex-shrink: 0;
}

.cats__footer {
  text-align: center;
  color: var(--slate-400);
  font-size: 0.95rem;
}
.cats__footer a { color: var(--blue-400); font-weight: 600; }
.cats__footer a:hover { color: var(--blue-300); }

/* ═══════════════════════════════════════════════
   CTA STRIPS
═══════════════════════════════════════════════ */
.ctastrip {
  padding: 80px 24px;
}

.ctastrip--blue {
  background: linear-gradient(135deg, #1a3a6e 0%, #1e3a5f 40%, #0f172a 100%);
  border-top: 1px solid rgba(59,130,246,.2);
  border-bottom: 1px solid rgba(59,130,246,.2);
}

.ctastrip--alt {
  background: var(--navy-700);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.ctastrip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ctastrip__copy h2 { color: var(--white); margin-bottom: 12px; }
.ctastrip__copy p { color: var(--slate-300); max-width: 500px; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS — PROMINENT GRID
═══════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 24px;
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,.05);
}

.testimonials__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  background: var(--navy-700);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(59,130,246,.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 30px rgba(59,130,246,.15);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.testimonials__cta {
  text-align: center;
}

.testimonials__cta-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--slate-400);
  text-align: center;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.flow {
  padding: var(--section-py) 24px;
  background: var(--navy-900);
}

.flow__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Explainer */
.explainer { margin-bottom: 80px; }

.explainer__frame {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  border: 1px solid rgba(59,130,246,.25);
  box-shadow: var(--shadow-lg), var(--shadow-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.explainer__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,.1) 0%, transparent 60%);
}

.explainer__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 12px rgba(59,130,246,.15), 0 0 0 24px rgba(59,130,246,.07);
  transition: all 0.3s;
}
.explainer__play:hover {
  background: var(--blue-600);
  transform: scale(1.1);
  box-shadow: 0 0 0 16px rgba(59,130,246,.2), 0 0 0 32px rgba(59,130,246,.1);
}

.explainer__caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate-300);
  z-index: 2;
}

.explainer__tag {
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* Flow Steps */
.flowmap { position: relative; }

.flowmap__line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-500), rgba(59,130,246,.1));
}

.flowstep {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.flowstep.is-visible { opacity: 1; transform: translateY(0); }
.flowstep:last-child { border-bottom: none; }

.flowstep__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3);
  color: var(--blue-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flowstep__tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue-400);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.flowstep__body h3 { color: var(--white); margin-bottom: 12px; }
.flowstep__body p { color: var(--slate-300); font-size: 0.95rem; }

.flowstep__visual { display: flex; align-items: flex-start; }
.flowstep__visual--photo img {
  border-radius: var(--radius-md);
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
}

/* Triage Cards */
.triage-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.triage-card {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.triage-card--emergency {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
}
.triage-card--emergency strong { color: #FCA5A5; display: block; margin-bottom: 6px; font-size: 0.7rem; letter-spacing: 0.1em; }
.triage-card--schedule {
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.25);
}
.triage-card--schedule strong { color: var(--blue-300); display: block; margin-bottom: 6px; font-size: 0.7rem; letter-spacing: 0.1em; }
.triage-card p { font-size: 0.82rem; color: var(--slate-300); }

/* Detect Card */
.detect-card {
  background: var(--navy-700);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.85rem;
}
.detect-card__head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.detect-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.dtag {
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.25);
  color: var(--blue-300);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}
.detect-card__route {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Voice Card */
.vcard {
  background: var(--navy-700);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 100%;
}
.vcard__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.78rem;
}
.vcard__live {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.vcard__lbl { color: var(--slate-300); font-weight: 500; }
.vcard__meta { color: var(--slate-400); margin-left: auto; font-family: var(--font-mono); }
.wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  margin-bottom: 12px;
}
.wave span {
  display: block;
  width: 3px;
  height: var(--h, 50%);
  background: var(--blue-400);
  border-radius: 2px;
  animation: wave-anim 1.2s ease-in-out infinite;
}
.wave span:nth-child(2n) { animation-delay: 0.15s; }
.wave span:nth-child(3n) { animation-delay: 0.3s; }
@keyframes wave-anim {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}
.vcard__quote {
  font-size: 0.88rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
}

/* Calendar Card */
.cal-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 100%;
}
.cal-card__head {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.cal-card__slot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 0.85rem;
}
.cal-card__slot:last-child { border-bottom: none; }
.cal-slot__time { font-family: var(--font-mono); color: var(--blue-400); font-size: 0.8rem; width: 36px; flex-shrink: 0; }
.cal-slot__name { color: var(--white); flex: 1; }
.cal-slot__new {
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* Email Card */
.email-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 100%;
  font-size: 0.85rem;
}
.email-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.email-sent {
  background: rgba(34,197,94,.15);
  color: #4ADE80;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.email-time { color: var(--slate-400); font-size: 0.78rem; }
.email-card__row {
  display: flex;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 0.83rem;
}
.email-card__row span:first-child { color: var(--slate-400); width: 60px; flex-shrink: 0; }
.email-card__row strong { color: var(--white); }
.email-card__preview {
  margin-top: 10px;
  padding: 8px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  color: var(--slate-300);
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════
   DASHBOARD
═══════════════════════════════════════════════ */
.dash {
  padding: var(--section-py) 24px;
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,.05);
}

.dash__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.dash__mockup {
  max-width: 860px;
  margin: 0 auto;
}

.dash__chrome {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg), var(--shadow-blue);
  background: var(--navy-700);
}

.dash__chrome-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dash__chrome-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.dash__chrome-dot:first-child { background: #EF4444; }
.dash__chrome-dot:nth-child(2) { background: #F59E0B; }
.dash__chrome-dot:nth-child(3) { background: #22C55E; }
.dash__chrome-title {
  font-size: 0.78rem;
  color: var(--slate-400);
  margin-left: 8px;
  font-family: var(--font-mono);
}

.dash__content { padding: 24px; }

.dash__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.dash__date { font-size: 0.85rem; color: var(--slate-400); font-family: var(--font-mono); }
.dash__tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.dash__tab {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-400);
  cursor: pointer;
  transition: all 0.2s;
}
.dash__tab--active { background: rgba(59,130,246,.15); color: var(--blue-300); }
.dash__badge {
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 50px;
  margin-left: 4px;
}

.dash__urgent {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.dash__urgent-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(239,68,68,.2);
  border: 1px solid rgba(239,68,68,.4);
  color: #FCA5A5;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash__urgent strong { color: #FCA5A5; font-size: 0.72rem; letter-spacing: 0.1em; display: block; margin-bottom: 2px; }
.dash__urgent p { color: var(--white); font-size: 0.9rem; font-weight: 600; margin: 0; }
.dash__urgent small { color: var(--slate-400); font-size: 0.78rem; }
.dash__urgent .btn { margin-left: auto; flex-shrink: 0; }

.dash__jobs { margin-bottom: 20px; }
.dash__job {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.dash__job:last-child { border-bottom: none; }
.dash__job-time {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-mono);
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  line-height: 1;
}
.dash__job-time span { display: block; font-size: 0.65rem; font-weight: 500; color: var(--slate-400); margin-top: 2px; }
.dash__job-info { flex: 1; }
.dash__job-info strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.dash__job-info span { font-size: 0.8rem; color: var(--slate-400); }
.dash__job-status {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  flex-shrink: 0;
}
.dash__job-status--confirmed {
  background: rgba(34,197,94,.1);
  color: #4ADE80;
  border: 1px solid rgba(34,197,94,.2);
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.dash__kpi { text-align: center; }
.dash__kpi-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue-400);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.dash__kpi-lbl { font-size: 0.72rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing {
  padding: var(--section-py) 24px;
  background: var(--navy-900);
}

.pricing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing__promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.25);
  color: #FCD34D;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-top: 16px;
}
.pricing__promo svg { color: var(--gold); }

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 60px;
}

.pricing__card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing__card--featured {
  background: linear-gradient(135deg, rgba(30,58,95,.9) 0%, rgba(15,23,42,.95) 100%);
  border-color: rgba(59,130,246,.4);
  box-shadow: 0 0 40px rgba(59,130,246,.15);
}

.pricing__badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59,130,246,.4);
}

.pricing__tier {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing__desc { color: var(--slate-400); font-size: 0.9rem; margin-bottom: 20px; }

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.pricing__amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing__period { color: var(--slate-400); font-size: 0.9rem; }

.pricing__setup {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-bottom: 28px;
}
.pricing__setup s { color: var(--slate-400); }
.pricing__setup strong { color: var(--white); }
.pricing__deadline {
  background: rgba(245,158,11,.15);
  color: #FCD34D;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing__features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--slate-300);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pricing__feature:last-child { border-bottom: none; }
.pricing__feature svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing__feature--highlight { color: var(--white); }
.pricing__feature--highlight strong { font-weight: 700; }

.pricing__overages {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}
.pricing__overages p { color: var(--slate-400); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.pricing__overages span { display: inline-block; margin-right: 16px; color: var(--slate-300); }
.pricing__overages strong { color: var(--white); }

.pricing__cancel { text-align: center; font-size: 0.8rem; color: var(--slate-400); margin-top: 12px; }

/* Add-ons */
.addons {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}
.addons h3 { color: var(--white); margin-bottom: 8px; }
.addons > p { color: var(--slate-400); margin-bottom: 24px; }
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
}
.addon strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 8px; }
.addon span { color: var(--blue-400); font-size: 0.85rem; font-weight: 600; }

.pricing__bottom-cta { text-align: center; }
.pricing__bottom-cta > p { color: var(--slate-400); margin-bottom: 20px; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq {
  padding: var(--section-py) 24px;
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,.05);
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.faq__tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-400);
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  transition: all 0.2s;
}
.faq__tab:hover { color: var(--white); border-color: rgba(255,255,255,.25); }
.faq__tab.is-active {
  background: rgba(59,130,246,.15);
  color: var(--blue-300);
  border-color: rgba(59,130,246,.3);
}

.faq__body { }
.faq__cat { display: none; }
.faq__cat.is-active { display: block; }

.faq__catlabel {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--slate-400);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
  gap: 16px;
}
.faq__item summary:hover { color: var(--blue-300); }
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue-400);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}

.faq__item p {
  padding: 0 0 20px;
  color: var(--slate-300);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq__item a { color: var(--blue-400); }
.faq__item a:hover { color: var(--blue-300); }

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.finalcta {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.05);
}

.finalcta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.finalcta__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(60px);
}

.finalcta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.finalcta__content h2 { color: var(--white); margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3.5rem); }
.finalcta__sub {
  font-size: 1.1rem;
  color: var(--slate-300);
  margin-bottom: 40px;
  line-height: 1.7;
}

.finalcta__btn {
  font-size: 1.2rem;
  padding: 20px 44px;
  box-shadow: 0 8px 40px rgba(59,130,246,.45);
}
.finalcta__btn:hover { box-shadow: 0 12px 50px rgba(59,130,246,.6); }

.finalcta__note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--slate-400);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 60px 24px 0;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand .brand { margin-bottom: 12px; }
.footer__tagline { color: var(--slate-400); font-size: 0.9rem; margin-bottom: 16px; }
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-400);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__phone:hover { color: var(--blue-300); }

.footer__cols {
  display: contents;
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: var(--slate-300);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p { font-size: 0.82rem; color: var(--slate-400); }

/* ═══════════════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: rgba(10,15,30,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59,130,246,.2);
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}

.sticky-cta__btn {
  border-radius: var(--radius-md);
  font-size: 1rem;
  padding: 14px 20px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hslide { grid-template-columns: 1fr; gap: 40px; }
  .hslide__visual img { max-height: 300px; height: auto; }

  .flowstep { grid-template-columns: 48px 1fr; }
  .flowstep__visual { display: none; }

  .pricing__cards { grid-template-columns: 1fr; max-width: 480px; }
  .addons__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__cols { display: contents; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
    --topbar-h: 60px;
    --ticker-h: 48px;
  }

  .nav { display: none; }
  .topbar__cta { display: none; }
  .menu-toggle { display: flex; }

  .hero__inner { padding: 40px 20px 60px; }
  .hslide { gap: 28px; }
  .hslide__h1 { gap: 0; }
  .hslide__big { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hslide__actions { flex-direction: column; }
  .hslide__actions .btn { width: 100%; justify-content: center; }
  .hslide__visual img { max-height: 220px; height: auto; }

  .stats__inner { flex-direction: column; gap: 0; }
  .stat { padding: 16px 24px; width: 100%; }
  .stat__divider { width: 100%; height: 1px; }

  .cats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .ctastrip__inner { flex-direction: column; text-align: center; }
  .ctastrip__inner .btn { width: 100%; justify-content: center; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .flowstep { grid-template-columns: 40px 1fr; gap: 16px; padding: 28px 0; }
  .flowmap__line { left: 20px; }

  .triage-cards { grid-template-columns: 1fr; }

  .dash__kpis { grid-template-columns: repeat(2, 1fr); }
  .dash__tabs { display: none; }

  .pricing__cards { grid-template-columns: 1fr; max-width: 100%; }
  .addons__grid { grid-template-columns: 1fr; }

  .faq__tabs { gap: 6px; }
  .faq__tab { font-size: 0.8rem; padding: 7px 14px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { display: contents; }

  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .cats__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hslider__controls { gap: 12px; }
  .badge-ticker__badge { height: 30px; }
}
