/* ═══════════════════════════════════════════════════
   STHEALTH — Design System v2.0
   IA de Governança Hospitalar · Tech-forward, Clean
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800;900&family=Karla:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand tech-forward */
  --primary:       #0a0f1e;
  --primary-2:     #060b18;
  --primary-light: #0f1629;
  --accent:        #0693e3;
  --accent-dark:   #0570b0;
  --accent-light:  #e0f2fe;
  --accent-glow:   rgba(6, 147, 227, 0.25);

  /* Gradientes tech */
  --grad-hero:     linear-gradient(135deg, #0a0f1e 0%, #0a1a30 50%, #0a0f1e 100%);
  --grad-radial:   radial-gradient(ellipse 60% 50% at 70% 20%, rgba(6,147,227,.12) 0%, transparent 70%);
  --grad-card:     linear-gradient(145deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  --grad-text:     linear-gradient(135deg, #0693e3 0%, #10b981 100%);

  /* Glass-morphism */
  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --glass-blur:    blur(12px);

  /* Grid tech (linhas de fundo) */
  --grid-line:     rgba(255, 255, 255, 0.02);
  --grid-size:     60px;

  /* Glow pulsante para badges */
  --glow-pulse:    0 0 20px rgba(6, 147, 227, 0.4);

  /* Gradiente de texto para métricas */
  --metric-grad:   linear-gradient(135deg, #0693e3 0%, #10b981 100%);

  /* Typography */
  --ink:    #0f172a;
  --slate:  #475569;
  --muted:  #94a3b8;
  --faint:  #cbd5e1;
  --white:  #ffffff;

  /* Surfaces */
  --surface:  #f8fafc;
  --surface2: #f1f5f9;
  --border:   #e2e8f0;

  /* Metric / result */
  --metric:     #10b981;
  --metric-bg:  #d1fae5;
  --metric-dark:#065f46;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(0,0,0,.08);
  --sh-md: 0 4px 20px rgba(0,0,0,.12);
  --sh-lg: 0 12px 48px rgba(0,0,0,.18);
  --sh-xl: 0 24px 64px rgba(0,0,0,.24);

  /* Glow (tech accent) */
  --glow: 0 0 40px rgba(6,147,227,.25);

  /* Shape */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --t: .2s ease;

  --font-body: 'Karla', system-ui, sans-serif;
  --font-head: 'Open Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--ink); background: var(--white); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1320px; }
.container--narrow { max-width: 760px; }
section { padding: 96px 0; }
section.section--sm { padding: 64px 0; }
section.section--lg { padding: 128px 0; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.18; color: var(--ink); }
h1 { font-size: clamp(2rem,5vw,3.25rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); }
.display { font-size: clamp(2.5rem,6vw,4.5rem); font-family: var(--font-head); font-weight: 900; line-height: 1.08; }
.eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead { font-size: clamp(1.05rem,2vw,1.2rem); line-height: 1.7; color: var(--slate); }
.section-title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  transition: var(--t);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--glow); }
.btn--ghost { border: 2px solid rgba(255,255,255,.35); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--outline { border: 2px solid var(--accent); color: var(--accent); }
.btn--outline:hover { background: var(--accent-light); }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }

/* ── Navigation ── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--primary); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav__inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo img { height: 48px; width: auto; }
.nav__logo span { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--white); }
.nav__sup { font-size: .65rem; font-weight: 600; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { font-family: var(--font-head); font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.7); padding: 6px 12px; border-radius: var(--r-sm); transition: var(--t); }
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__hamburger { display: none; }
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
  .nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
  .nav--open .nav__links { display: flex; flex-direction: column; position: absolute; top: 88px; left: 0; right: 0; background: var(--primary); padding: 16px 24px 24px; border-bottom: 1px solid rgba(255,255,255,.06); gap: 4px; }
  .nav--open .nav__links a { width: 100%; padding: 10px 12px; }
}

/* ── Hero (dark, tech) ── */
.hero {
  background: var(--primary);
  padding: 112px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(6,147,227,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(16,184,129,.08) 0%, transparent 60%);
  pointer-events: none;
}
/* Grid lines (subtle tech effect) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  pointer-events: none;
}
.hero__eyebrow { color: rgba(255,255,255,.7); margin-bottom: 20px; }
.hero__title { color: var(--white); font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 900; line-height: 1.1; max-width: 760px; }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__case {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(16,184,129,.1);
  border: 1px solid rgba(16,184,129,.25);
  border-left: 4px solid var(--metric);
  border-radius: var(--r-md);
  max-width: 600px;
}
.hero__case-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--metric); margin-bottom: 5px; }
.hero__case-text { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); }
.hero__guarantee {
  margin-top: 14px;
  max-width: 560px;
  padding: 12px 16px;
  background: rgba(6,147,227,.08);
  border: 1px solid rgba(6,147,227,.2);
  border-radius: var(--r-md);
}
.hero__guarantee p { font-size: .85rem; color: rgba(255,255,255,.65); }
.hero__guarantee strong { color: var(--accent); }
.hero__actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Metrics strip ── */
.metrics { background: rgba(255,255,255,.03); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); padding: 48px 0; }
.metrics--dark { background: var(--primary-2); }
.metrics__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 40px 24px; text-align: center; }
.metrics__number { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--white); line-height: 1; }
.metrics__number--cyan { color: var(--accent); }
.metrics__number--green { color: var(--metric); }
.metrics__label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7); margin-top: 8px; line-height: 1.3; }

/* ── Cards ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 28px; transition: var(--t); box-shadow: var(--sh-sm); }
.card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); border-color: var(--accent-light); }
.card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.card--dark:hover { border-color: rgba(6,147,227,.4); box-shadow: var(--glow); }
.card--dark .card__title { color: var(--white); }
.card--dark .card__text { color: rgba(255,255,255,.6); }
.card__icon { width: 44px; height: 44px; background: rgba(6,147,227,.12); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--accent); }
.card__title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.card__text { font-size: .9rem; color: var(--slate); line-height: 1.65; }

/* ── Grid ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }

/* ── Section header ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header .eyebrow { margin-bottom: 12px; display: block; }
.section-header p { margin-top: 14px; font-size: 1.05rem; color: var(--slate); }

/* ── Pricing ── */
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; } }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--r-lg); padding: 36px 28px; position: relative; }
.pricing-card--featured { border-color: var(--accent); box-shadow: var(--glow); transform: scale(1.02); }
.pricing-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.pricing-card__name { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--slate); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }
.pricing-card__price { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 900; color: var(--ink); line-height: 1; }
.pricing-card__price small { font-size: .85rem; font-weight: 500; color: var(--muted); }
.pricing-card__for { font-size: .85rem; color: var(--slate); margin: 12px 0 24px; line-height: 1.55; }
.pricing-card__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--ink); }
.pricing-card__feature::before { content: '✓'; flex-shrink: 0; color: var(--metric); font-weight: 700; margin-top: 1px; }

/* ── Form ── */
.form-section { background: var(--primary); padding: 96px 0; }
.form-wrapper { background: var(--white); border-radius: var(--r-xl); padding: 48px 40px; max-width: 560px; margin: 0 auto; box-shadow: var(--sh-xl); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__label { font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .06em; }
.form__input, .form__select, .form__textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-md); font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--white); transition: border-color var(--t); outline: none; }
.form__input:focus, .form__select:focus, .form__textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form__submit { width: 100%; margin-top: 8px; justify-content: center; }
.form__note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 12px; }

/* ── Case highlight ── */
.case-highlight { background: linear-gradient(135deg, var(--primary) 0%, #0a1a30 100%); border: 1px solid rgba(6,147,227,.2); border-radius: var(--r-xl); padding: 56px 48px; }
.case-highlight__label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--metric); margin-bottom: 12px; }
.case-highlight__title { font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2rem); font-weight: 900; color: var(--white); margin-bottom: 28px; }
.case-highlight__metrics { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 24px; margin-bottom: 32px; }
.case-metric__number { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--metric); line-height: 1; }
.case-metric__label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ── Page hero ── */
.page-hero { background: var(--primary); padding: 96px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 70% 0%, rgba(6,147,227,.1) 0%, transparent 70%); pointer-events: none; }
.page-hero .eyebrow { margin-bottom: 16px; display: block; }
.page-hero h1 { color: var(--white); max-width: 680px; }
.page-hero p { color: rgba(255,255,255,.65); margin-top: 16px; max-width: 580px; }

/* ── Footer ── */
.footer { background: var(--primary-2); padding: 56px 0 32px; border-top: 1px solid rgba(255,255,255,.05); }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 32px; } }
.footer__logo { margin-bottom: 14px; }
.footer__logo span { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer__tagline { font-size: .88rem; color: rgba(255,255,255,.65); max-width: 280px; line-height: 1.6; }
.footer__heading { font-family: var(--font-head); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: var(--t); }
.footer__links a:hover { color: var(--white); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .88rem; color: rgba(255,255,255,.6); }
.footer__contact-item svg { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; color: var(--accent); }
.footer__contact-item a { color: rgba(255,255,255,.6); transition: var(--t); }
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-accent { color: var(--accent); }
.text-metric { color: var(--metric); }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .form-wrapper { padding: 32px 24px; }
  .case-highlight { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   Design System v2.0 — Novos Componentes e Estilos
   ═══════════════════════════════════════════════════ */

/* ── Glass-morphism card ── */
.card--glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* ── Metric gradient text ── */
.metric--gradient {
  background: var(--metric-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge with pulsing glow ── */
.badge--glow {
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(6,147,227,.2); }
  50% { box-shadow: var(--glow-pulse); }
}

/* ── Navigation scrolled state ── */
.nav--scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@supports not (backdrop-filter: blur(12px)) {
  .nav--scrolled {
    background: rgba(10, 15, 30, 0.98);
  }
}

/* ── Scroll-triggered animations ── */
.anim-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.anim-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.anim-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.anim-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grids */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-in,
  .anim-slide-up,
  .anim-scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .badge--glow {
    animation: none;
  }
}

/* ── Video embed component ── */
.video-embed {
  max-width: 720px;
  margin: 0 auto;
}
.video-embed__wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--primary);
}
.video-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed__caption {
  margin-top: 16px;
  text-align: center;
}
.video-embed__author {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
}
.video-embed__desc {
  font-size: .85rem;
  color: var(--slate);
  margin-top: 4px;
}

/* Video embed dark variant (default for Sthealth dark sections) */
.video-embed--dark .video-embed__wrapper {
  border: 1px solid rgba(255,255,255,.1);
}
.video-embed--dark .video-embed__author { color: var(--white); }
.video-embed--dark .video-embed__desc { color: rgba(255,255,255,.5); }

/* ── IMGG Section (dimensões → módulos da plataforma) ── */
.imgg {
  background: var(--primary);
  position: relative;
}
.imgg__dimensions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.imgg__dim-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--t);
}
.imgg__dim-card:hover {
  border-color: rgba(6,147,227,.4);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}
.imgg__dim-icon {
  width: 48px;
  height: 48px;
  background: rgba(6,147,227,.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 800;
  color: var(--accent);
}
.imgg__dim-title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.imgg__dim-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  line-height: 1.4;
}

/* IMGG score (IIG) — tech variant */
.imgg__score {
  text-align: center;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-lg);
}
.imgg__score-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--metric-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.imgg__score-label {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
}

/* IMGG metrics row */
.imgg__metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.imgg__metric {
  text-align: center;
}
.imgg__metric-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.imgg__metric-label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .imgg__dimensions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .imgg__dimensions { grid-template-columns: 1fr; }
}

/* ── Blog placeholder ── */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.blog-category {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  transition: var(--t);
  cursor: pointer;
}
.blog-category:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.blog-category.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.blog-empty {
  text-align: center;
  padding: 80px 24px;
  background: rgba(255,255,255,.02);
  border-radius: var(--r-lg);
  border: 1px dashed rgba(255,255,255,.1);
}
.blog-empty p {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.blog-empty p + p {
  margin-top: 8px;
  font-weight: 600;
  color: var(--accent);
}

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════════════
   PREMIUM VISUAL OVERHAUL — Dark Theme, Cyan Accent, Glass-morphism
   Inspired by Clenia, Vaulta (dark glass cards), Pipely (elegant)
   Adapted for Sthealth's tech/IA identity
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Animated Gradient Hero Background + Tech Grid ── */
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 0%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

.hero--animated {
  background: linear-gradient(
    135deg,
    #0a0f1e 0%,
    #0a1a30 15%,
    #071525 30%,
    #0d1f3a 50%,
    #081420 70%,
    #0a0f1e 85%,
    #0a1a30 100%
  );
  background-size: 400% 400%;
  animation: gradient-shift 20s ease infinite;
}

/* Enhanced tech grid — more visible lines */
.hero--animated::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 147, 227, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 147, 227, 0.06) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  pointer-events: none;
  z-index: 0;
}

/* ── 2. Much Larger Typography ── */
.hero--animated .hero__title,
.hero__title--xl {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.section-title--xl {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ── 3. Animated Gradient Orbs (Cyan + Green) ── */
@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 30px) scale(1.08); }
  66%      { transform: translate(25px, -25px) scale(0.92); }
}

@keyframes orb-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.1); }
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.bg-orb--cyan {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 147, 227, 0.3) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orb-float-1 15s ease-in-out infinite;
}

.bg-orb--green {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation: orb-float-2 18s ease-in-out infinite;
}

.bg-orb--cyan-sm {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 147, 227, 0.15) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: orb-pulse 12s ease-in-out infinite;
}

/* Orbs for dark sections */
.bg-orb--dark-cyan {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 147, 227, 0.12) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: orb-float-1 20s ease-in-out infinite;
}

.bg-orb--dark-green {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: orb-float-2 22s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .bg-orb { animation: none; }
  .hero--animated { animation: none; }
}

/* ── 4. Cards with Glass Spotlight Hover Effect ── */
.card--spotlight {
  position: relative;
  overflow: hidden;
}

.card--spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(6, 147, 227, 0.12) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.card--spotlight:hover::before {
  opacity: 1;
}

/* Glass variant spotlight (enhanced for dark theme) */
.card--glass.card--spotlight::before {
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(6, 147, 227, 0.18) 0%,
    rgba(16, 185, 129, 0.06) 40%,
    transparent 70%
  );
}

/* Ensure card content stays above spotlight */
.card--spotlight > * {
  position: relative;
  z-index: 2;
}

/* Enhanced glass card hover for dark theme */
.card--glass.card--spotlight:hover {
  border-color: rgba(6, 147, 227, 0.3);
  box-shadow: 0 0 30px rgba(6, 147, 227, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ── 5. Logo Carousel / Marquee (Dark Theme) ── */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee__item:hover {
  opacity: 0.9;
  filter: grayscale(0) brightness(1);
}

.marquee__item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (max-width: 480px) {
  .marquee__item { height: 28px; }
  .marquee__track { gap: 40px; }
}

/* ── 6. Counter Animation Styles ── */
.counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  display: inline-block;
}

.counter--large {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

/* ── 7. More Generous Spacing ── */
section.section--spacious {
  padding: 120px 0;
}

section.section--spacious-lg {
  padding: 140px 0;
}

@media (max-width: 768px) {
  section.section--spacious { padding: 80px 0; }
  section.section--spacious-lg { padding: 96px 0; }
}

/* Increased gap helpers */
.gap-lg { gap: 40px; }
.gap-xl { gap: 56px; }

/* ── 8. Image Integration Styles ── */

/* Hero with background image + overlay */
.img-hero {
  position: relative;
  overflow: hidden;
}

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

.img-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 30, 0.94) 0%,
    rgba(10, 26, 48, 0.88) 50%,
    rgba(10, 15, 30, 0.92) 100%
  );
  z-index: 1;
}

.img-hero > .container {
  position: relative;
  z-index: 2;
}

/* 50/50 Image + Text layout */
.img-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.img-section--reverse {
  direction: rtl;
}

.img-section--reverse > * {
  direction: ltr;
}

.img-section__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.img-section__media img {
  width: 100%;
  height: auto;
  display: block;
}

.img-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .img-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .img-section--reverse {
    direction: ltr;
  }
}

/* ── 9. Testimonial Cards (Dark Theme) ── */
.testimonial {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial:hover {
  border-color: rgba(6, 147, 227, 0.25);
  box-shadow: 0 0 20px rgba(6, 147, 227, 0.08);
  transform: translateY(-2px);
}

.testimonial__quote {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(6, 147, 227, 0.3);
  flex-shrink: 0;
}

.testimonial__info {
  display: flex;
  flex-direction: column;
}

.testimonial__name {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial__role {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ── 10. Gradient Text (Cyan-to-Green) ── */
.text-gradient {
  background: linear-gradient(135deg, #0693e3 0%, #10b981 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gradient--cyan {
  background: linear-gradient(135deg, #0693e3 0%, #38bdf8 50%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gradient--green {
  background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── 11. Floating Pills / Badges (Dark Theme with Glow) ── */
@keyframes pill-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: pill-float 4s ease-in-out infinite;
}

.pill--cyan {
  background: rgba(6, 147, 227, 0.15);
  color: var(--accent);
  border: 1px solid rgba(6, 147, 227, 0.25);
  box-shadow: 0 0 16px rgba(6, 147, 227, 0.15);
}

.pill--green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--metric);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.15);
}

.pill--white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pill--static {
  animation: none;
}

.pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pill { animation: none; }
}

/* ── 12. Hero Split Layout ── */
.hero__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.hero__split-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.hero__split-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(10, 15, 30, 0.4) 100%
  );
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── 13. Enhanced Section Spacing Overrides ── */
.hero--animated {
  padding: 32px 0 48px;
}

@media (max-width: 768px) {
  .hero--animated { padding: 96px 0 80px; }
}

/* ── 14. Smoother Transitions ── */
.btn,
.card,
.card--glass,
.nav__links a,
.testimonial {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 15. Larger Section Header ── */
.section-header--lg {
  max-width: 760px;
  margin: 0 auto 72px;
}

.section-header--lg .section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
}

/* ── 16. Additional Utility Classes ── */
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }

/* ── 17. Dark Section Backgrounds ── */
.section--dark {
  background: var(--primary);
  color: var(--white);
}

.section--dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.section--dark .section-title {
  color: var(--white);
}

/* ── 18. Spotlight Card JS Helper ── */
/* Add this small inline script to enable mouse tracking:
   document.querySelectorAll('.card--spotlight').forEach(function(card) {
     card.addEventListener('mousemove', function(e) {
       var rect = card.getBoundingClientRect();
       card.style.setProperty('--mouse-x', ((e.clientX - rect.left) / rect.width * 100) + '%');
       card.style.setProperty('--mouse-y', ((e.clientY - rect.top) / rect.height * 100) + '%');
     });
   });
*/


/* ═══════════════════════════════════════════════════════════════════
   INTERMEDIATE VISUAL ELEMENTS — Inspired by Clenia, Vaulta, Pipely
   Gradient dividers, trust rows, integrations, CTA banners
   ═══════════════════════════════════════════════════════════════════ */

/* ── Gradient Divider ── */
.divider--gradient {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.3;
  max-width: 1140px;
  margin: 0 auto;
}
.divider--gradient-green {
  background: linear-gradient(90deg, transparent 0%, var(--metric) 50%, transparent 100%);
}

/* ── Testimonial Marquee ── */
.marquee--testimonials .marquee__track {
  gap: 24px;
  animation-duration: 45s;
}
.marquee--testimonials .marquee__item {
  opacity: 1;
  filter: none;
  height: auto;
  min-width: 320px;
  max-width: 380px;
}

/* ── Integration Grid ── */
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.integrations__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--t);
  min-height: 80px;
}
.integrations__item:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.integrations__item img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}
.integrations__item span {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--slate);
}

/* ── Integration Grid — Dark variant for Sthealth ── */
.integrations__item--dark {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: var(--glass-blur);
}
.integrations__item--dark:hover {
  border-color: rgba(6,147,227,.3);
  box-shadow: var(--glow);
}
.integrations__item--dark span {
  color: rgba(255,255,255,.7);
}

/* ── Enhanced CTA Banner ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
}
.cta-banner--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.cta-banner .btn--white {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
}
.cta-banner .btn--white:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ── Trust Badge Row ── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.trust-row__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
}
.trust-row__item svg {
  width: 18px;
  height: 18px;
  color: var(--metric);
}


/* ═══════════════════════════════════════════════════════════════════
   INTERMEDIATE VISUAL ELEMENTS v2 — Marquee Dividers, Steps,
   Stats Strip, Integration Grid, Testimonial Marquee
   Inspired by Clenia, Vaulta, Pipely
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Text Marquee Divider Strip (Pipely-inspired) ── */
.divider-marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.divider-marquee--accent { background: var(--accent); }
.divider-marquee--dark { background: var(--primary-2); }
.divider-marquee--metric { background: var(--metric); }
.divider-marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}
.divider-marquee__text {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 24px;
  color: var(--white);
  opacity: .9;
}
.divider-marquee--metric .divider-marquee__text { color: var(--metric-dark); }

@media (prefers-reduced-motion: reduce) {
  .divider-marquee__track { animation: none; }
}

/* ── 2. Steps with Connector Line (Vaulta-inspired) ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 600px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step__number--green {
  background: var(--metric);
}
.step__content {}
.step__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.step__text {
  font-size: .9rem;
  color: var(--slate);
}

/* ── 3. Stats Strip (Pipely-inspired horizontal metrics) ── */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 24px;
  flex-wrap: wrap;
}
.stats-strip--dark { background: var(--primary); }
.stats-strip--accent { background: var(--accent); }
.stats-strip__item { text-align: center; }
.stats-strip__number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stats-strip__label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

@media (max-width: 600px) {
  .stats-strip {
    gap: 32px;
    padding: 36px 16px;
  }
  .stats-strip__item {
    flex: 0 0 calc(50% - 16px);
  }
}

/* ── 4. Integration Grid (Vaulta-inspired) ── */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.integration-item {
  width: 100px;
  height: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
}
.integration-item:hover {
  border-color: rgba(6,147,227,.4);
  box-shadow: 0 0 20px rgba(6,147,227,.12);
  transform: translateY(-4px);
}
.integration-item__name {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-align: center;
}

/* ── 5. Testimonial Marquee variant ── */
.testimonial-marquee .marquee__track { gap: 24px; }
.testimonial-marquee .marquee__item {
  opacity: 1;
  filter: none;
  height: auto;
  min-width: 320px;
  max-width: 380px;
}
