/* ============================================================
   PatientXpress — Hero Section Styles
   File: hero.css
   Usage: <link rel="stylesheet" href="hero.css">
   Requires: Inter font from Google Fonts
   ============================================================ */

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --brand-blue:   #2563EB;
  --brand-indigo: #4F46E5;
  --brand-light:  #EFF6FF;
  --accent:       #06B6D4;
  --text-dark:    #0F172A;
  --text-mid:     #475569;
  --text-light:   #94A3B8;
  --white:        #FFFFFF;
  --border:       #E2E8F0;
  --bg-page:      #F8FAFF;
}

/* ── RESET (scoped to hero only — remove if global reset exists) ── */
.hero-section *,
.hero-section *::before,
.hero-section *::after {
  box-sizing: border-box;
}

/* ── HERO WRAPPER ────────────────────────────────────────── */
.hero-wrapper {
  width: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(37, 99, 235, 0.02);
  transform: skewX(-12deg) translateX(30%);
  z-index: -1;
  pointer-events: none;
}

.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 64px);
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
}

/* ── LEFT COLUMN ─────────────────────────────────────────── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Entry animations */
.hero-left > * {
  animation: hxFadeUp 0.5s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.12s; }
.hero-left > *:nth-child(3) { animation-delay: 0.18s; }
.hero-left > *:nth-child(4) { animation-delay: 0.22s; }
.hero-left > *:nth-child(5) { animation-delay: 0.27s; }
.hero-left > *:nth-child(6) { animation-delay: 0.32s; }

/* ── BADGE ───────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 100px;
  padding: 6px 18px 6px 8px;
  width: fit-content;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.05);
}

.hero-badge__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: white;
  font-weight: 700;
}

.hero-badge__text {
  font-size: 12.5px;
  font-weight: 900;
  color: var(--brand-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── HEADLINE ────────────────────────────────────────────── */
.hero-h1 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.hero-h1__gradient {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SUBTEXT ─────────────────────────────────────────────── */
.hero-sub {
  font-size: 20px;
  line-height: 1.625;
  color: var(--text-mid);
  max-width: 640px;
  font-weight: 400;
}

/* ── FEATURE PILLS ───────────────────────────────────────── */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.feature-pill:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-light);
}

.feature-pill.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.feature-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transition: background 0.2s;
}

.feature-pill.active .feature-pill__dot {
  background: rgba(255, 255, 255, 0.6);
}

/* ── CTA BUTTONS ─────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: white;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-indigo) 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.btn-cta-primary__icon {
  transition: transform 0.2s;
}

.btn-cta-primary:hover .btn-cta-primary__icon {
  transform: translateX(3px);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--brand-blue);
  background: white;
  border: 1.5px solid var(--brand-blue);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta-ghost:hover {
  background: var(--brand-light);
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -7px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.trust-avatars .trust-avatar:first-child {
  margin-left: 0;
}

.trust-avatar--1 { background: linear-gradient(135deg, #3B82F6, #06B6D4); }
.trust-avatar--2 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.trust-avatar--3 { background: linear-gradient(135deg, #10B981, #34D399); }
.trust-avatar--4 { background: linear-gradient(135deg, #F59E0B, #EF4444); }

.trust-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.trust-stars {
  color: #FBBF24;
  font-size: 11px;
  letter-spacing: 1.5px;
}

/* ── RIGHT COLUMN ────────────────────────────────────────── */
.hero-right {
  position: relative;
  animation: hxFadeUp 0.6s 0.15s ease both;
}

/* ── FLOATING BADGES ─────────────────────────────────────── */
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 2;
  white-space: nowrap;
  transition: all 0.4s ease;
  font-family: 'Inter', sans-serif;
}

.float-badge__label {
  color: var(--text-mid);
  font-weight: 400;
}

.float-badge__val {
  color: var(--text-dark);
  font-weight: 700;
}

.float-badge--green .float-badge__val { color: #059669; }
.float-badge--blue  .float-badge__val { color: var(--brand-blue); }

.float-badge--tl {
  top: -16px;
  left: -20px;
  animation: hxFloatY 3s ease-in-out infinite;
}

.float-badge--br {
  bottom: -16px;
  right: -16px;
  animation: hxFloatY 3.6s 0.4s ease-in-out infinite;
}

/* ── DASHBOARD CARD ──────────────────────────────────────── */
.dashboard-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.06);
}

.card-titlebar {
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mac-dots {
  display: flex;
  gap: 6px;
}

.mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mac-dot--red    { background: #FF5F57; }
.mac-dot--yellow { background: #FFBD2E; }
.mac-dot--green  { background: #28CA41; }

.card-title-label {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.3s;
}

.card-body {
  padding: 14px;
  min-height: 300px;
  position: relative;
}

/* ── MOCKUP PANELS ───────────────────────────────────────── */
.mockup-panel {
  display: none;
  flex-direction: column;
  gap: 9px;
  animation: hxPanelIn 0.35s ease both;
}

.mockup-panel.active {
  display: flex;
}

/* ── SHARED CARD COMPONENTS ──────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat-tile {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

.stat-tile__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-tile__val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.stat-tile__change {
  font-size: 10px;
  font-weight: 600;
  color: #059669;
  margin-top: 3px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-tile {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mini-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mini-icon--green  { background: #DCFCE7; }
.mini-icon--purple { background: #EDE9FE; }
.mini-icon--amber  { background: #FEF3C7; }
.mini-icon--blue   { background: #DBEAFE; }
.mini-icon--rose   { background: #FFE4E6; }

.mini-tile__label { font-size: 12px; color: var(--text-light); font-weight: 500; margin-bottom: 1px; }
.mini-tile__val   { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.mini-tile__sub   { font-size: 10px; color: #059669; font-weight: 600; margin-top: 1px; }
.mini-tile__warn  { font-size: 10px; color: #D97706; font-weight: 600; margin-top: 1px; }

/* ── PANEL 1 — AI DENTAL RECEPTIONIST ───────────────────── */
.ai-call-card {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFB 100%);
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-call-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.ai-name { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.ai-sub  {
  font-size: 12.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #15803D;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22C55E;
  animation: hxBlink 1.2s ease-in-out infinite;
}

.live-dot--blue {
  background: var(--brand-blue);
}

.transcript {
  background: white;
  border: 1px solid #DBEAFE;
  border-left: 3px solid var(--brand-blue);
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.5;
}

.ai-btns { display: flex; gap: 7px; }

.ai-btn {
  flex: 1;
  padding: 9px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}

.ai-btn--primary   { background: var(--brand-blue); color: white; }
.ai-btn--secondary { background: white; color: var(--text-mid); border: 1px solid var(--border); }

.caller-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}

.caller-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #06B6D4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.caller-name  { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.caller-meta  { font-size: 10px; color: var(--text-light); }

.caller-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  background: #DCFCE7;
  color: #15803D;
  border-radius: 5px;
  padding: 2px 7px;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}

.waveform__bar {
  width: 3px;
  border-radius: 2px;
  background: var(--brand-blue);
  animation: hxWave 0.8s ease-in-out infinite;
}

.waveform__bar:nth-child(1) { height: 6px;  animation-delay: 0s; }
.waveform__bar:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.waveform__bar:nth-child(3) { height: 8px;  animation-delay: 0.2s; }
.waveform__bar:nth-child(4) { height: 14px; animation-delay: 0.05s; }
.waveform__bar:nth-child(5) { height: 5px;  animation-delay: 0.15s; }
.waveform__bar:nth-child(6) { height: 10px; animation-delay: 0.25s; }

/* ── PANEL 2 — E-PRESCRIBE ───────────────────────────────── */
.rx-card {
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rx-header { display: flex; align-items: center; justify-content: space-between; }

.rx-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #059669, #34D399);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.rx-title { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.rx-sub   { font-size: 12.5px; color: var(--text-light); margin-top: 1px; }

.hipaa-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #15803D;
}

.rx-detail-row {
  background: white;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rx-field { display: flex; justify-content: space-between; align-items: center; }
.rx-field__label { font-size: 12.5px; color: var(--text-light); font-weight: 500; }
.rx-field__val   { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.rx-divider      { height: 1px; background: var(--border); }

.rx-status-row { display: flex; align-items: center; gap: 6px; }

.rx-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: hxBlink 1.4s ease-in-out infinite;
}

.rx-status-text { font-size: 11px; font-weight: 600; color: #15803D; }

.rx-btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #059669, #34D399);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.15s;
}

.rx-btn:hover { opacity: 0.9; }

/* ── PANEL 3 — AUTOMATED FORMS ───────────────────────────── */
.form-card {
  background: linear-gradient(135deg, #FDF4FF, #FAF5FF);
  border: 1px solid #E9D5FF;
  border-radius: 12px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-header { display: flex; align-items: center; justify-content: space-between; }

.form-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.form-title { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.form-sub   { font-size: 12.5px; color: var(--text-light); margin-top: 1px; }

.auto-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #EDE9FE;
  border: 1px solid #C4B5FD;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #6D28D9;
}

.form-patient-row {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-patient-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.form-patient-name { font-size: 11.5px; font-weight: 700; color: var(--text-dark); }
.form-patient-meta { font-size: 10px; color: var(--text-light); }

.form-check-list { display: flex; flex-direction: column; gap: 5px; }

.form-check-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 10px;
}

.form-check-item__icon  { font-size: 12px; flex-shrink: 0; }
.form-check-item__label { font-size: 13px; font-weight: 600; color: var(--text-dark); flex: 1; }

.status-badge {
  font-size: 10px;
  font-weight: 700;
  border-radius: 5px;
  padding: 2px 7px;
}

.status-badge--done { background: #DCFCE7; color: #15803D; }
.status-badge--warn { background: #FEF3C7; color: #D97706; }
.status-badge--info { background: #DBEAFE; color: #1D4ED8; }

/* ── PANEL 4 — REAL-TIME ANALYTICS ──────────────────────── */
.analytics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.analytics-title { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.analytics-sub   { font-size: 12.5px; color: var(--text-light); }

.an-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #DBEAFE;
  border: 1px solid #BFDBFE;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
}

.bar-chart-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

.bar-chart-title { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; margin-bottom: 8px; }

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  padding-bottom: 4px;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.bar {
  width: 100%;
  max-width: 20px;
  background: var(--border);
  border-radius: 4px 4px 0 0;
  transition: all 0.6s ease;
}

.bar--accent {
  background: var(--brand-blue);
}

.bar-day { font-size: 8px; color: var(--text-light); font-weight: 600; }

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.kpi-tile {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}

.kpi-tile__val { font-size: 14px; font-weight: 800; color: var(--text-dark); }
.kpi-tile__label { font-size: 8px; color: var(--text-light); font-weight: 600; text-transform: uppercase; }
.kpi-tile__change { font-size: 8px; color: #059669; font-weight: 700; }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 48px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-block__num {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.stat-block__desc {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── INTEGRATION STRIP ───────────────────────────────────── */
.int-strip {
  padding: 24px 48px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.int-strip__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.int-strip__sep {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.int-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.int-logo-chip {
  background: #F1F5F9;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── PROGRESS BAR IN PILL ────────────────────────────────── */
.pill-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.5);
  width: 0%;
  pointer-events: none;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes hxFadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hxPanelIn {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes hxFloatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@keyframes hxBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

@keyframes hxWave {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.6); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-section { padding: 32px 24px; }
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 64px;
    min-height: auto;
    gap: 48px;
  }
  .hero-left { align-items: center; }
  .hero-features { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-sub { max-width: 100%; font-size: 18px !important; }
  .float-badge { display: none; }
  .trust-bar { justify-content: center; }
  .stats-inner { justify-content: center; text-align: center; }
  .int-strip { flex-direction: column; text-align: center; }
  .int-strip__sep { display: none; }
  .int-logos { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-section { padding: 48px 16px; }
  .hero-h1 { font-size: 32px; line-height: 1.2; }
  .hero-sub { font-size: 16px !important; line-height: 1.5 !important; }
  .hero-badge__text { font-size: 11px; }
  .hero-badge { padding: 4px 12px; }
  .feature-pill { font-size: 12.5px; padding: 6px 12px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-cta-primary, .btn-cta-ghost { width: 100%; text-align: center; font-size: 15px; }
  .dashboard-card { border-radius: 12px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-tile { text-align: center; }
}
