/* ═══════════════════════════════════════════════════════
   MedicaFlow — Premium Landing Page Styles v3
   Full rebuild: premium SaaS aesthetic
═══════════════════════════════════════════════════════ */

/* ─── ROOT VARIABLES ─────────────────────────────────── */
:root {
  /* Core brand */
  --brand:         #1e6fd4;
  --brand-light:   #3b89f0;
  --brand-glow:    rgba(30, 111, 212, 0.4);
  --brand-soft:    rgba(30, 111, 212, 0.1);

  /* Accent */
  --accent:        #e84c88;
  --accent-soft:   rgba(232, 76, 136, 0.12);

  /* Teal */
  --teal:          #0ea5b0;
  --teal-soft:     rgba(14, 165, 176, 0.12);

  /* Green */
  --green:         #10b981;
  --green-soft:    rgba(16, 185, 129, 0.12);

  /* Amber */
  --amber:         #f59e0b;

  /* Darks (for hero and dark sections) */
  --dark-hero:     #07091a;
  --dark-deep:     #04050e;
  --dark-section:  #0a0f1e;
  --dark-card:     rgba(255, 255, 255, 0.04);
  --dark-card-hov: rgba(255, 255, 255, 0.07);
  --dark-border:   rgba(255, 255, 255, 0.08);
  --dark-border-s: rgba(255, 255, 255, 0.14);

  /* Lights */
  --bg:            #ffffff;
  --bg-soft:       #f7f9fc;
  --bg-card:       #ffffff;
  --navy:          #0d1e3c;
  --navy-mid:      #162a4f;
  --text:          #0d1e3c;
  --text-muted:    #4b5e7e;
  --text-light:    #8094b4;
  --border:        rgba(14, 30, 60, 0.09);
  --border-light:  rgba(14, 30, 60, 0.05);
  --shadow-sm:     0 2px 12px rgba(14, 30, 60, 0.06);
  --shadow:        0 8px 32px rgba(14, 30, 60, 0.10);
  --shadow-lg:     0 20px 56px rgba(14, 30, 60, 0.14);

  /* On-dark text */
  --on-dark:       rgba(226, 232, 240, 0.92);
  --on-dark-muted: rgba(148, 163, 184, 0.8);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Timing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.22s;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ─── UTILITIES ──────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hidden { display: none !important; }

/* ─── REVEAL ANIMATION ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── SECTION HEADERS ────────────────────────────────── */
.section-head { margin-bottom: 3rem; }
.section-head-dark { margin-bottom: 3rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.eyebrow-dark {
  color: var(--brand-light);
  background: rgba(59, 137, 240, 0.12);
}

.section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-h2-dark {
  color: #fff;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}
.section-sub-dark {
  color: var(--on-dark-muted);
}

/* Një rresht në desktop; mbështetje normale në mobile */
@media (min-width: 1024px) {
  .section-sub-nowrap-lg {
    max-width: none;
    white-space: nowrap;
  }
}
@media (max-width: 1023px) {
  .section-sub-nowrap-lg {
    white-space: normal;
  }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 9, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(7, 9, 26, 0.95);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 0.4rem;
}
.nav-logo img {
  height: clamp(2.45rem, 3.5vw, 2.85rem);
  width: auto;
  max-width: min(260px, 58vw);
  display: block;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: translateY(-0.14rem);
}
.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  margin-left: 0.5rem;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-shrink: 0;
}
.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.15rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background var(--t), transform var(--t), box-shadow 0.35s var(--ease);
}
.btn-nav-primary:focus-visible {
  animation: none;
}
.btn-nav-primary:hover {
  animation: none;
  background: var(--brand-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: var(--t);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--dark-hero);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-mobile-cta { margin-top: 1rem; }
.btn-nav-mobile {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: background var(--t), transform var(--t), box-shadow 0.35s var(--ease);
}

/* ═══════════════════════════════════════════════════════
   1. HERO — dark, premium, product-led
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--dark-hero);
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-radial {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(30,111,212,0.22) 0%, rgba(30,111,212,0.06) 40%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left copy */
.hero-copy { max-width: 32rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(59, 137, 240, 0.12);
  border: 1px solid rgba(59, 137, 240, 0.22);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-light);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-h1-emphasis {
  color: #3b82f6;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--on-dark-muted);
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.85rem;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  box-shadow: 0 0 0 0 var(--brand-glow);
  transition: background var(--t), transform var(--t), box-shadow 0.4s;
  white-space: nowrap;
}
.btn-hero-primary:focus-visible {
  animation: none;
}
.btn-hero-primary:hover {
  animation: none;
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--brand-glow);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-sm);
  transition: color var(--t), border-color var(--t), background var(--t);
  white-space: nowrap;
}
.btn-hero-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.hero-facts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  line-height: 1.4;
  word-break: break-word;
}
.hero-facts li svg {
  width: 14px; height: 14px;
  stroke: var(--green);
  flex-shrink: 0;
}

/* ─── Hero product composition ─────────────────────── */
.hero-product {
  position: relative;
  height: 520px;
  isolation: isolate;
}
.hp-glow {
  position: absolute;
  inset: -10% -15% 5%;
  background: radial-gradient(ellipse 60% 60% at 60% 30%, rgba(30,111,212,0.25), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hp-main-card {
  position: absolute;
  inset: 0 0 50px 0;
  background: rgba(10, 16, 38, 0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
  z-index: 1;
}

.hp-chrome {
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 6px;
}
.hp-chrome-dots { display: flex; gap: 5px; flex-shrink: 0; }
.hp-dot { width: 8px; height: 8px; border-radius: 50%; }
.hp-dot-r { background: #ff5f57; }
.hp-dot-y { background: #ffbd2e; }
.hp-dot-g { background: #28c840; }
.hp-url {
  flex: 1;
  text-align: center;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.05);
  padding: 2px 10px;
  border-radius: 100px;
  max-width: 180px;
  margin: 0 auto;
}

.hp-body { display: flex; height: calc(100% - 34px); }

.hp-sidebar {
  width: 44px;
  background: rgba(5, 8, 24, 0.8);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.hp-sidebar-mark {
  width: 22px; height: 22px;
  background: var(--brand);
  border-radius: 6px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.hp-sidebar-item {
  width: 30px; height: 26px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.hp-sidebar-item--active { background: rgba(30,111,212,0.25); }
.hp-sidebar-item svg { width: 11px; height: 11px; stroke: rgba(255,255,255,0.35); }
.hp-sidebar-item--active svg { stroke: var(--brand-light); }

.hp-content {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  min-width: 0;
}

.hp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-page-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}
.hp-date-chip {
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  padding: 2px 8px;
  border-radius: 100px;
}

.hp-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.hp-kpi {
  border-radius: 7px;
  padding: 7px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hp-kpi-blue   { background: rgba(30,111,212,0.14); border: 1px solid rgba(30,111,212,0.22); }
.hp-kpi-green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.hp-kpi-purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.2); }
.hp-kpi-amber  { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.hp-kpi-val {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hp-kpi-blue .hp-kpi-val   { color: #60a5fa; }
.hp-kpi-green .hp-kpi-val  { color: #34d399; }
.hp-kpi-purple .hp-kpi-val { color: #a78bfa; }
.hp-kpi-amber .hp-kpi-val  { color: #fbbf24; }
.hp-kpi-lbl { font-size: 7px; color: rgba(255,255,255,0.4); font-weight: 500; }

.hp-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 7px 10px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.hp-chart-label { font-size: 8px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.04em; }
.hp-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
}
.hp-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(30,111,212,0.35);
  transition: background var(--t);
}
.hp-bar-active { background: rgba(30,111,212,0.8); }

.hp-list { display: flex; flex-direction: column; gap: 4px; }
.hp-list-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 7px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}
.hp-av {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hp-av-1 { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.hp-av-2 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.hp-av-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.hp-pat-name { font-size: 8.5px; font-weight: 600; color: rgba(255,255,255,0.85); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hp-appt-t { font-size: 7.5px; color: rgba(255,255,255,0.4); font-family: monospace; flex-shrink: 0; }
.hp-status { font-size: 7px; padding: 2px 5px; border-radius: 100px; font-weight: 600; flex-shrink: 0; }
.hp-status-ok   { background: rgba(16,185,129,0.15); color: #34d399; }
.hp-status-wait { background: rgba(245,158,11,0.15); color: #fbbf24; }

/* Floating cards */
.hp-float {
  position: absolute;
  background: rgba(10, 16, 38, 0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
  z-index: 2;
}
.hp-float-patient {
  bottom: 60px;
  left: -24px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: hp-float-a 8s ease-in-out infinite;
}
.hp-float-revenue {
  top: 20px;
  right: -20px;
  padding: 10px 14px;
  min-width: 150px;
  animation: hp-float-b 7s ease-in-out infinite;
}
.hp-float-module {
  top: 44%;
  right: -22px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: hp-float-c 9s ease-in-out infinite;
}
@keyframes hp-float-a { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-8px) rotate(0); } }
@keyframes hp-float-b { 0%,100% { transform: translateY(0) rotate(0.5deg); } 50% { transform: translateY(-7px) rotate(-0.5deg); } }
@keyframes hp-float-c { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
  .hp-float-patient, .hp-float-revenue, .hp-float-module { animation: none; }
  .hero-badge-dot { animation: none; }
}

.hp-float-av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #10b981, #06b6d4); flex-shrink: 0; }
.hp-float-av-1 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.hp-float-info { display: flex; flex-direction: column; gap: 2px; }
.hp-float-name { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.9); }
.hp-float-sub  { font-size: 8px; color: rgba(255,255,255,0.45); }
.hp-float-badge { font-size: 7.5px; padding: 2px 7px; border-radius: 100px; background: rgba(16,185,129,0.15); color: #34d399; font-weight: 700; white-space: nowrap; }

.hp-float-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 3px; }
.hp-float-metric { font-size: 18px; font-weight: 800; color: #34d399; letter-spacing: -0.04em; }
.hp-float-trend { color: #34d399; }
.hp-float-trend svg { width: 14px; height: 14px; }
.hp-float-label { font-size: 8px; color: rgba(255,255,255,0.4); font-weight: 500; white-space: nowrap; }
.hp-float-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hp-float-dot-green { background: #34d399; box-shadow: 0 0 6px #34d399; }
.hp-float-mod-name { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.85); }
.hp-float-mod-status { font-size: 8px; padding: 1px 6px; border-radius: 100px; background: rgba(16,185,129,0.15); color: #34d399; font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   2. TRUST BAND
═══════════════════════════════════════════════════════ */
.trust-band {
  background: rgba(4, 5, 14, 0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
}
.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  flex-shrink: 0;
}
.trust-num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand-light), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.trust-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(226,232,240,0.85);
  line-height: 1.5;
}
.trust-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(148,163,184,0.7);
  margin-top: 1px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   3. WHY SECTION
═══════════════════════════════════════════════════════ */
.why-section {
  padding: 6rem 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  position: relative;
  padding: 2rem 1.75rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.why-accent-brand  { background: var(--brand); }
.why-accent-teal   { background: var(--teal); }
.why-accent-accent { background: var(--accent); }

.why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.15rem;
}
.why-icon svg { width: 22px; height: 22px; }
.why-icon-brand  { background: var(--brand-soft); }
.why-icon-brand svg  { stroke: var(--brand); }
.why-icon-teal   { background: var(--teal-soft); }
.why-icon-teal svg   { stroke: var(--teal); }
.why-icon-accent { background: var(--accent-soft); }
.why-icon-accent svg { stroke: var(--accent); }

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.why-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   5. CAPABILITY SECTION
═══════════════════════════════════════════════════════ */
.capability-section {
  padding: 4rem 0 6rem;
  background: var(--bg-soft);
}

.cap-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Left: Tab list */
.cap-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: sticky;
  top: 90px;
}

.cap-tab {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.cap-tab:hover {
  background: rgba(30,111,212,0.06);
  border-color: rgba(30,111,212,0.15);
}
.cap-tab.active {
  background: var(--bg-card);
  border-color: rgba(30,111,212,0.2);
  box-shadow: var(--shadow-sm);
}

.cap-tab-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.cap-tab.active .cap-tab-icon { background: var(--brand-soft); }
.cap-tab-icon svg { width: 16px; height: 16px; stroke: var(--text-muted); }
.cap-tab.active .cap-tab-icon svg { stroke: var(--brand); }

.cap-tab-text { flex: 1; }
.cap-tab-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.cap-tab-text small {
  display: block;
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 1px;
}

.cap-tab-arrow { color: var(--text-light); opacity: 0; transition: opacity var(--t); }
.cap-tab-arrow svg { width: 14px; height: 14px; }
.cap-tab.active .cap-tab-arrow { opacity: 1; color: var(--brand); }

/* Right: Panel display */
.cap-display { position: relative; min-height: 400px; }

.cap-panel {
  display: none;
  gap: 1.5rem;
  flex-direction: column;
}
.cap-panel.active { display: flex; }

/* Cap mockups */
.cap-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cap-mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.cap-mock-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.cap-mock-btns { display: flex; gap: 0.35rem; flex-shrink: 0; }
.cap-mock-btn {
  font-size: 0.68rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
}
.cap-mock-btn-active { background: var(--brand); color: #fff; border-color: var(--brand); }
.cap-mock-btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); font-size: 0.68rem; padding: 0.25rem 0.65rem; border-radius: 6px; font-weight: 600; }
.cap-mock-chip { font-size: 0.68rem; padding: 0.2rem 0.6rem; background: var(--brand-soft); color: var(--brand); border-radius: 100px; font-weight: 600; flex-shrink: 0; }

/* Calendar mock */
.cap-mock-calendar .cap-mock-cal-grid {
  display: flex;
  gap: 1px;
  padding: 0.85rem;
  background: var(--bg-soft);
  min-height: 180px;
}
.cap-mock-cal-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cap-mock-cal-col-dim { opacity: 0.6; }
.cap-mock-cal-hdr {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}
.cap-mock-ev {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 5px 6px;
  border-radius: 5px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
}
.cap-mock-ev small { font-weight: 400; opacity: 0.75; font-size: 0.58rem; }
.cap-ev-blue   { background: rgba(30,111,212,0.12); color: var(--brand); border-left: 2px solid var(--brand); }
.cap-ev-teal   { background: var(--teal-soft); color: var(--teal); border-left: 2px solid var(--teal); }
.cap-ev-green  { background: var(--green-soft); color: var(--green); border-left: 2px solid var(--green); }
.cap-ev-accent { background: var(--accent-soft); color: var(--accent); border-left: 2px solid var(--accent); }

/* Table mock (shared) */
.cap-mock-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.3rem 0.75rem;
  flex-shrink: 0;
}
.cap-mock-search svg { width: 11px; height: 11px; stroke: var(--text-light); flex-shrink: 0; }
.cap-mock-search span { font-size: 0.72rem; color: var(--text-light); }

.cap-mock-table { padding: 0.5rem 0.75rem; }
.cap-mock-thead {
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.cap-mock-thead span {
  flex: 1;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.cap-mock-trow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid var(--border-light);
}
.cap-trow-alt { background: var(--bg-soft); }
.cap-td-name { flex: 1; font-size: 0.72rem; font-weight: 600; color: var(--navy); }
.cap-td { flex: 1; font-size: 0.68rem; color: var(--text-muted); }
.cap-td-dim { color: var(--text-light); }
.cap-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}
.cap-badge-active { background: var(--green-soft); color: var(--green); }
.cap-badge-debt   { background: rgba(239,68,68,0.1); color: #ef4444; }

/* Visit mock */
.cap-mock-visit { padding: 1rem; display: flex; flex-direction: column; gap: 0.85rem; }
.cap-mock-vsection { display: flex; flex-direction: column; gap: 0.4rem; }
.cap-mock-vsec-lbl { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.cap-mock-vrow { display: flex; gap: 0.5rem; }
.cap-mock-vfield { flex: 1; height: 26px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; }
.cap-vfield-wide { flex: 2; }
.cap-vfield-tall { height: 52px; }

/* Payment mock */
.cap-mock-pay-cards { display: flex; gap: 0.65rem; padding: 0.75rem; }
.cap-pay-card { flex: 1; border-radius: 9px; padding: 0.7rem 0.85rem; display: flex; flex-direction: column; gap: 3px; }
.cap-pay-green  { background: var(--green-soft); }
.cap-pay-amber  { background: rgba(245,158,11,0.1); }
.cap-pay-red    { background: rgba(239,68,68,0.08); }
.cap-pay-lbl { font-size: 0.62rem; color: var(--text-muted); font-weight: 500; }
.cap-pay-val { font-size: 1rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }

/* Report mock */
.cap-mock-report-kpis { display: flex; gap: 1rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.cap-rkpi { display: flex; flex-direction: column; gap: 2px; }
.cap-rkpi-v { font-size: 1.1rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.cap-rkpi-l { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }
.cap-mock-bigchart { padding: 0.75rem 1rem 0; min-height: 100px; display: flex; flex-direction: column; justify-content: flex-end; }
.cap-big-bars {
  display: flex;
  gap: 0.4rem;
  align-items: flex-end;
  height: 90px;
}
.cap-big-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(30,111,212,0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 4px;
  transition: background var(--t);
}
.cap-big-bar span { font-size: 0.58rem; color: var(--text-light); }
.cap-big-bar-active { background: var(--brand); }
.cap-big-bar-active span { color: #fff; }

/* Feature list */
.cap-features { padding: 0 0.25rem; }
.cap-feat-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 0.85rem; }
.cap-feat-list { display: flex; flex-direction: column; gap: 0.5rem; }
.cap-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cap-feat-list li::before {
  content: "";
  width: 16px; height: 16px;
  background: var(--brand-soft);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%231e6fd4' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3 3 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ═══════════════════════════════════════════════════════
   6. MODULES — dark, premium
═══════════════════════════════════════════════════════ */
.modules-section {
  padding: 6rem 0;
  background: var(--dark-section);
}

/* Tab toggle */
.mods-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  margin-bottom: 2.5rem;
}
.mods-tab {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  border-radius: 9px;
  border: 1px solid transparent;
  transition: all var(--t);
}
.mods-tab:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
.mods-tab-active,
.mods-tab.active {
  color: #fff;
  background: rgba(30,111,212,0.2);
  border-color: rgba(30,111,212,0.35);
}

.modules-panel { }
.modules-panel.hidden { display: none !important; }

.mods-category-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.6);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.mods-grid-wide {
  grid-template-columns: repeat(4, 1fr);
}

.mod-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.mod-card:hover:not(.mod-card-soon) {
  background: var(--dark-card-hov);
  border-color: var(--dark-border-s);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.mod-card-soon { opacity: 0.55; pointer-events: none; }
.mod-soon-badge-row { display: flex; }

.mod-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mod-icon svg { width: 20px; height: 20px; }
.mod-icon-brand  { background: rgba(30,111,212,0.18); }
.mod-icon-brand svg  { stroke: var(--brand-light); }
.mod-icon-teal   { background: var(--teal-soft); }
.mod-icon-teal svg   { stroke: var(--teal); }
.mod-icon-accent { background: var(--accent-soft); }
.mod-icon-accent svg { stroke: var(--accent); }
.mod-icon-gp     { background: rgba(20,184,166,0.15); }
.mod-icon-gp svg     { stroke: #14b8a6; }
.mod-icon-dent   { background: rgba(14,165,176,0.15); }
.mod-icon-dent svg   { stroke: var(--teal); }
.mod-icon-physio { background: rgba(22,163,74,0.15); }
.mod-icon-physio svg { stroke: var(--green); }
.mod-icon-cardio { background: rgba(239,68,68,0.12); }
.mod-icon-cardio svg { stroke: #ef4444; }
.mod-icon-gyn    { background: rgba(168,85,247,0.12); }
.mod-icon-gyn svg    { stroke: #a855f7; }
.mod-icon-ortho  { background: var(--teal-soft); }
.mod-icon-ortho svg  { stroke: var(--teal); }
.mod-icon-ped    { background: rgba(245,158,11,0.12); }
.mod-icon-ped svg    { stroke: var(--amber); }
.mod-icon-soon   { background: rgba(100,116,139,0.12); }
.mod-icon-soon svg   { stroke: #64748b; }

.mod-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.mod-badge-core      { background: rgba(30,111,212,0.18); color: var(--brand-light); }
.mod-badge-aesthetic { background: var(--accent-soft); color: var(--accent); }
.mod-badge-gp        { background: rgba(20,184,166,0.15); color: #14b8a6; }
.mod-badge-dent      { background: var(--teal-soft); color: var(--teal); }
.mod-badge-physio    { background: var(--green-soft); color: var(--green); }
.mod-badge-cardio    { background: rgba(239,68,68,0.12); color: #ef4444; }
.mod-badge-gyn       { background: rgba(168,85,247,0.12); color: #a855f7; }
.mod-badge-ortho     { background: var(--teal-soft); color: var(--teal); }
.mod-badge-ped       { background: rgba(245,158,11,0.12); color: var(--amber); }
.mod-badge-soon      { background: rgba(100,116,139,0.12); color: #64748b; }

.mod-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
}
.mod-desc {
  font-size: 0.8rem;
  color: var(--on-dark-muted);
  line-height: 1.58;
}
.mod-features {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: auto;
}
.mod-features li {
  font-size: 0.75rem;
  color: rgba(148,163,184,0.72);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.4;
}
.mod-features li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-light);
  flex-shrink: 0;
  margin-top: 0.4em;
}

/* ═══════════════════════════════════════════════════════
   7. SOLUTIONS — Cfare ndryshon
═══════════════════════════════════════════════════════ */
.solutions-section {
  padding: 6rem 0;
  background: var(--bg);
}
.solutions-section .section-head .section-sub-solutions {
  margin-top: -0.35rem;
  margin-bottom: 0;
  max-width: 36rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.solution-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 1.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(30,111,212,0.2);
}

.solution-num {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(30,111,212,0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5ch;
  padding-top: 0.1rem;
}

.solution-body { flex: 1; }
.solution-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}
.solution-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   8. TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--dark-section);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testi-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background var(--t), border-color var(--t);
}
.testi-card:hover { background: var(--dark-card-hov); border-color: var(--dark-border-s); }
.testi-card-featured {
  background: rgba(30,111,212,0.1);
  border-color: rgba(30,111,212,0.28);
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
}
.testi-stars svg { width: 13px; height: 13px; }

.testi-quote {
  font-size: 0.95rem;
  color: var(--on-dark);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
}

.testi-person { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(30,111,212,0.2);
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-avatar-accent { background: rgba(232,76,136,0.2); }
.testi-avatar-teal   { background: rgba(14,165,176,0.2); }
.testi-initials { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.85); }

.testi-info { display: flex; flex-direction: column; gap: 2px; }
.testi-name { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.testi-role { font-size: 0.75rem; color: var(--on-dark-muted); }

.testi-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(148,163,184,0.45);
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════
   9. AUDIENCE
═══════════════════════════════════════════════════════ */
.audience-section {
  padding: 6rem 0;
  background: var(--bg-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.audience-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--aud-color, var(--brand));
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.audience-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.audience-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.audience-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.audience-icon svg { width: 20px; height: 20px; }
.audience-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.audience-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.audience-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.62;
  flex: 1;
}
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.audience-list li {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.audience-list li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--aud-color, var(--brand));
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* ═══════════════════════════════════════════════════════
   10. ECOSYSTEM
═══════════════════════════════════════════════════════ */
.ecosystem-section {
  padding: 6rem 0;
  background: #06070f;
}

.eco-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eco-lead {
  font-size: 1.05rem;
  color: var(--on-dark-muted);
  line-height: 1.72;
  margin-bottom: 2.25rem;
}

.eco-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.eco-facts li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.eco-fact-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(30,111,212,0.14);
  border: 1px solid rgba(30,111,212,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.eco-fact-icon svg { width: 16px; height: 16px; stroke: var(--brand-light); }
.eco-facts li strong { display: block; font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 3px; }
.eco-facts li p { font-size: 0.82rem; color: var(--on-dark-muted); line-height: 1.55; }

/* Ecosystem visual */
.eco-visual {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-center-node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(30,111,212,0.15);
  border: 1.5px solid rgba(30,111,212,0.35);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  z-index: 2;
  box-shadow: 0 0 40px rgba(30,111,212,0.25);
}
.eco-core-label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--brand-light); letter-spacing: -0.01em; }
.eco-center-node small { font-size: 0.65rem; color: var(--on-dark-muted); }

.eco-modules-ring { position: absolute; inset: 0; }
.eco-mod-node {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.eco-mod-gp     { top: 5%;  left: 50%; transform: translateX(-50%); border-color: rgba(20,184,166,0.35); color: #14b8a6; }
.eco-mod-dent   { top: 20%; right: 5%; border-color: rgba(14,165,176,0.35); color: var(--teal); }
.eco-mod-physio { top: 55%; right: 2%; border-color: rgba(16,185,129,0.35); color: var(--green); }
.eco-mod-laser  { bottom: 8%; right: 20%; border-color: rgba(232,76,136,0.35); color: var(--accent); }
.eco-mod-cardio { bottom: 5%; left: 20%; border-color: rgba(239,68,68,0.3); color: #ef4444; }
.eco-mod-gyn    { top: 55%; left: 2%; border-color: rgba(168,85,247,0.3); color: #a855f7; }
.eco-mod-ortho  { top: 20%; left: 5%; border-color: rgba(14,165,176,0.3); color: var(--teal); }
.eco-mod-more   { top: 50%; left: 50%; transform: translateX(-50%); background: rgba(30,111,212,0.1); border-color: rgba(30,111,212,0.25); color: var(--brand-light); top: 88%; }

/* ═══════════════════════════════════════════════════════
   11. FINAL CTA
═══════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(145deg, #070b1c 0%, #0e1a36 45%, #070b1c 100%);
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(30,111,212,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.final-cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.65);
  margin-bottom: 0.85rem;
}
.final-cta-h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.final-cta-sub {
  font-size: 1.02rem;
  color: var(--on-dark-muted);
  line-height: 1.65;
  max-width: 36rem;
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 1rem 2rem;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  box-shadow: 0 0 40px rgba(30,111,212,0.5);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-cta-primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(30,111,212,0.6);
}

.btn-cta-ghost {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
}
.btn-cta-ghost:hover { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════════════
   12. CONTACT
═══════════════════════════════════════════════════════ */
.contact-section {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--brand); }
.contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}
.contact-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand);
  transition: color var(--t);
}
.contact-link:hover { color: var(--brand-light); }
.contact-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0a1430 0%, #070d1f 42%, #04060f 100%);
  padding: 0 0 3.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Soft glow band under wave (premium depth) */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 50% 0%, rgba(59, 130, 246, 0.09) 0%, transparent 72%);
  opacity: 0.85;
}

.footer-wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 0.35rem;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: clamp(28px, 4vw, 40px);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: min(100%, 52rem);
  margin: 0 auto;
  padding-top: 0.5rem;
}

.footer-top {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  height: clamp(3.65rem, 5.4vw, 4.45rem);
  width: auto;
  max-width: min(100%, 340px);
  margin: -0.2rem auto 1.45rem;
  padding: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: none;
  box-shadow: none;
  vertical-align: middle;
  transform: translateY(-0.2rem);
}

.footer-headline {
  font-size: clamp(1.05rem, 2.2vw, 1.34rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
  max-width: min(100%, 46rem);
  margin: 0 auto 1.85rem;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 1180px) {
  .footer-headline {
    white-space: nowrap;
    max-width: none;
  }
}

/* Footer CTA — calm pulse: mostly rest, brief soft emphasis, pause, repeat */
@keyframes footer-cta-pulse-soft {
  0%,
  72% {
    transform: translateY(0) scale(1);
    border-color: rgba(125, 211, 252, 0.28);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 8px 24px rgba(0, 0, 0, 0.22),
      0 0 0 1px rgba(0, 0, 0, 0.12) inset,
      0 0 0 rgba(59, 130, 246, 0);
  }
  78% {
    transform: translateY(-1px) scale(1.012);
    border-color: rgba(147, 197, 253, 0.38);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 10px 30px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(0, 0, 0, 0.1) inset,
      0 0 32px rgba(59, 130, 246, 0.14);
  }
  84% {
    transform: translateY(0) scale(1.004);
    border-color: rgba(125, 211, 252, 0.32);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.07) inset,
      0 9px 26px rgba(0, 0, 0, 0.24),
      0 0 0 1px rgba(0, 0, 0, 0.11) inset,
      0 0 20px rgba(59, 130, 246, 0.08);
  }
  92%,
  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(125, 211, 252, 0.28);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 8px 24px rgba(0, 0, 0, 0.22),
      0 0 0 1px rgba(0, 0, 0, 0.12) inset,
      0 0 0 rgba(59, 130, 246, 0);
  }
}

/* Brand primary CTAs (nav / hero / form) — same rhythm, subtle glow */
@keyframes cta-pulse-brand {
  0%,
  65% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(30, 111, 212, 0);
  }
  72% {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
      0 6px 20px rgba(30, 111, 212, 0.32),
      0 0 26px rgba(59, 130, 246, 0.28);
  }
  80% {
    transform: translateY(0) scale(1.008);
    box-shadow: 0 3px 14px rgba(30, 111, 212, 0.22);
  }
  88%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(30, 111, 212, 0);
  }
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.62rem 1.35rem 0.62rem 1.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(248, 250, 252, 0.96);
  border-radius: 9999px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: linear-gradient(
    165deg,
    rgba(30, 58, 110, 0.42) 0%,
    rgba(12, 22, 48, 0.72) 45%,
    rgba(8, 14, 32, 0.82) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 0, 0, 0.12) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    transform 0.28s var(--ease);
  animation: footer-cta-pulse-soft 2.75s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .footer-cta,
  .btn-nav-primary,
  .btn-nav-mobile,
  .btn-hero-primary,
  .btn-form-submit {
    animation: none;
  }
}
.footer-cta-text {
  line-height: 1.25;
}
.footer-cta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.88;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}
.footer-cta:hover {
  animation: none;
  border-color: rgba(147, 197, 253, 0.45);
  color: #fff;
  background: linear-gradient(
    165deg,
    rgba(42, 78, 140, 0.52) 0%,
    rgba(18, 32, 68, 0.78) 50%,
    rgba(10, 18, 42, 0.88) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 12px 32px rgba(0, 20, 60, 0.35),
    0 0 0 1px rgba(59, 130, 246, 0.12) inset;
  transform: translateY(-2px);
}
.footer-cta:hover .footer-cta-icon {
  opacity: 1;
  transform: translateX(3px);
}
.footer-cta:focus-visible {
  animation: none;
  outline: 2px solid rgba(147, 197, 253, 0.55);
  outline-offset: 3px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.55rem;
  width: 100%;
  margin-top: 2.85rem;
}

.footer-email {
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s var(--ease);
}
.footer-email:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  line-height: 0;
}

/* Small inline UI icons only — fixed box so SVGs cannot blow up to full width */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 0;
  margin: 0;
  color: rgba(125, 211, 252, 0.82);
  cursor: pointer;
  transition: color 0.18s var(--ease), transform 0.18s var(--ease), opacity 0.18s var(--ease), filter 0.18s var(--ease);
}
.footer-social-link:hover {
  color: #e0f2fe;
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.35));
}
.footer-social-link:focus-visible {
  outline: 1px solid rgba(147, 197, 253, 0.75);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer .footer-social-icon,
.site-footer .footer-social-link svg.footer-social-icon {
  display: block;
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex-shrink: 0;
  overflow: visible;
  vertical-align: middle;
}

.footer-phone {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s var(--ease);
}
.footer-phone:hover {
  color: rgba(255,255,255,0.62);
}

.footer-copy-row {
  width: 100%;
  margin-top: 3.25rem;
  padding-top: 2.1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58) !important;
  margin: 0 !important;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.footer-copy .footer-techkos {
  color: rgba(147, 196, 253, 0.95);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--t) var(--ease), opacity var(--t) var(--ease);
}
.footer-copy .footer-techkos:hover {
  color: #bfdbfe;
  opacity: 1;
}
.footer-copy .footer-techkos:focus-visible {
  outline: 1px solid rgba(59, 137, 240, 0.55);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS (shared secondary reuse)
═══════════════════════════════════════════════════════ */
.btn-primary, .btn-secondary, .btn-nav-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  padding: 0.75rem 1.5rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-sm);
}
.btn-secondary {
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1060px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-copy { max-width: 100%; }
  /* Stacked hero: decorative floats overlap / misalign — hide; mock uses fluid height */
  .hero-product {
    max-width: min(560px, 100%);
    margin: 0 auto;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }
  .hp-main-card {
    position: relative;
    inset: auto !important;
    width: 100%;
    height: clamp(260px, 58vw, 440px);
  }
  .hp-float-patient,
  .hp-float-revenue,
  .hp-float-module {
    display: none !important;
  }
  .hero-h1 { font-size: clamp(2.75rem, 7vw, 4rem); }

  .trust-item { padding: 0 1.75rem; }
  .trust-band-inner { gap: 0; }

  .cap-layout { grid-template-columns: 1fr; }
  .cap-tabs { flex-direction: row; position: static; overflow-x: auto; padding-bottom: 0.5rem; gap: 0.35rem; }
  .cap-tab { flex-shrink: 0; }

  .mods-grid { grid-template-columns: repeat(2, 1fr); }
  .mods-grid-wide { grid-template-columns: repeat(3, 1fr); }

  .audience-grid { grid-template-columns: repeat(2, 1fr); }

  .eco-layout { grid-template-columns: 1fr; }
  .eco-visual { max-width: 380px; margin: 0 auto; }

  .final-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .final-cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* Mobile large */
@media (max-width: 800px) {
  .cap-mock-pay-cards {
    flex-wrap: wrap;
  }
  .cap-pay-card {
    flex: 1 1 calc(33.333% - 0.5rem);
    min-width: 7.5rem;
  }

  .why-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .trust-band-inner { flex-direction: column; gap: 1.5rem; }
  .trust-divider { width: 40px; height: 1px; }
  .trust-item { padding: 0; }

  .mods-grid { grid-template-columns: 1fr 1fr; }
  .mods-grid-wide { grid-template-columns: repeat(2, 1fr); }

}

/* Mobile small */
@media (max-width: 600px) {
  .hero { padding: 7rem 0 3.5rem; }
  .hero-inner { gap: 1.75rem; }
  .hero-product { max-width: 100%; }
  .hp-main-card {
    height: clamp(220px, 68vw, 340px);
  }
  .hp-kpis { grid-template-columns: repeat(2, 1fr); }

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .cap-mock-bar { flex-wrap: wrap; align-items: flex-start; }
  .cap-mock-title {
    white-space: normal;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cap-mock-pay-cards {
    flex-direction: column;
  }

  .cap-mock-cal-grid { overflow-x: auto; }
  .cap-mock-cal-col { min-width: 80px; }

  .btn-hero-primary,
  .btn-hero-ghost {
    white-space: normal;
    text-align: center;
  }

  .cta-mid-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .btn-cta-mid {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .mods-grid { grid-template-columns: 1fr; }
  .mods-grid-wide { grid-template-columns: 1fr 1fr; }

  .solution-card { flex-direction: column; gap: 0.75rem; }
  .solution-num { font-size: 1.75rem; }

  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta-actions { width: 100%; }
  .btn-cta-primary { width: 100%; justify-content: center; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; }
}

@media (max-width: 420px) {
  .container { padding: 0 1rem; }
  .mods-grid-wide { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .why-card:hover,
  .mod-card:hover,
  .solution-card:hover,
  .audience-card:hover,
  .testi-card:hover { transform: none; }
  .btn-hero-primary:hover,
  .btn-cta-primary:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════════
   v3.1 ADDITIONS — refinement pass
═══════════════════════════════════════════════════════ */

/* ─── NAVBAR logo name (legacy text span) ─────────────── */
.nav-logo-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

/* ─── HERO FACTS — checkmark style matching cap-feat-list ── */
.hero-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  line-height: 1.4;
  word-break: break-word;
}
@media (max-width: 480px) {
  .hero-facts li {
    font-size: 0.8rem;
  }
}
.hero-fact-check {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(59,137,240,0.15);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%233b89f0' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3 3 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  flex-shrink: 0;
}

/* ─── PROOF STRIP ───────────────────────────────────── */
.proof-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.proof-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 2.75rem;
  flex: 1 1 0%;
  min-width: 200px;
}
.proof-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}
.proof-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  border: 1px solid rgba(30, 111, 212, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-icon-box svg { width: 18px; height: 18px; stroke: var(--brand); }
.proof-text { display: flex; flex-direction: column; gap: 3px; }
.proof-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.proof-sub { font-size: 0.78rem; color: var(--text-muted); line-height: 1.45; }

/* ─── MODULES REFINEMENT ────────────────────────────── */
/* Core grid: 4 full columns with full cards */
.mods-grid-core {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
/* Specialty grid: lighter cards, more compact */
.mods-grid-spec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}
/* Aesthetic services grid */
.mods-grid-aesthetic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.mods-category-label-aesthetic {
  margin-top: 0.25rem;
}
.mod-card-spec {
  padding: 1.1rem 1rem;
  gap: 0.6rem;
}
/* Unified specialty icon — single controlled color */
.mod-icon-spec {
  background: rgba(30, 111, 212, 0.1);
  border: 1px solid rgba(30, 111, 212, 0.18);
}
.mod-icon-spec svg { stroke: var(--brand-light); }
/* Unified specialty badge */
.mod-badge-spec {
  background: rgba(30, 111, 212, 0.1);
  color: var(--brand-light);
}
/* Compact description on spec cards (no feature list) */
.mod-card-spec .mod-desc { font-size: 0.78rem; line-height: 1.5; }
/* No feature list on spec cards */
.mod-card-spec .mod-features { display: none; }

/* ─── SOLUTIONS IMPROVEMENTS ────────────────────────── */
.solution-card {
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background var(--t);
  border-radius: 0;
}
.solution-card:hover::before { background: var(--brand); }
.solution-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(30, 111, 212, 0.12);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5ch;
  padding-top: 0.1rem;
  transition: color var(--t);
}
.solution-card:hover .solution-num { color: rgba(30, 111, 212, 0.22); }

/* ─── GROWTH SECTION ────────────────────────────────── */
.growth-section {
  padding: 6rem 0;
  background: var(--dark-section);
}

.growth-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.growth-card {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background var(--t);
}
.growth-card:hover { background: rgba(255,255,255,0.05); }
.growth-card-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(59,137,240,0.55);
}
.growth-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.growth-card-text {
  font-size: 0.84rem;
  color: var(--on-dark-muted);
  line-height: 1.65;
}

/* ─── MID-PAGE CTA BAND ─────────────────────────────── */
.cta-mid-band {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--brand) 0%, #1858a8 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-mid-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
}
.cta-mid-text {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 38rem;
}
.btn-cta-mid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  background: #fff;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.btn-cta-mid:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* ─── CTA + CONTACT section ─────────────────────────── */
.contact-cta-section {
  padding: 5rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left column */
.cta-left {}
.cta-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-promises {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}
.cta-promises li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.cta-promise-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--brand-soft);
  border: 1px solid rgba(30,111,212,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-promise-icon svg { width: 16px; height: 16px; stroke: var(--brand); }

.cta-direct-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.cta-direct-contacts { display: flex; flex-direction: column; gap: 0.55rem; }
.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand);
  transition: color var(--t);
}
.cta-contact-link svg { width: 16px; height: 16px; stroke: var(--brand); flex-shrink: 0; }
.cta-contact-link:hover { color: var(--brand-light); }

/* Right column — form card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.form-optional { font-weight: 400; color: var(--text-light); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-light); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30,111,212,0.1);
  background: var(--bg);
}
.form-field textarea { min-height: 80px; }

.btn-form-submit {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: none;
  transition: background var(--t), transform var(--t), box-shadow 0.35s var(--ease);
  font-family: inherit;
  letter-spacing: -0.01em;
}

.btn-nav-primary,
.btn-nav-mobile,
.btn-hero-primary,
.btn-form-submit {
  animation: cta-pulse-brand 2.75s ease-in-out infinite;
}

.btn-nav-mobile:focus-visible {
  animation: none;
}
.btn-nav-mobile:hover {
  animation: none;
  background: var(--brand-light);
}

.btn-form-submit:focus-visible {
  animation: none;
}
.btn-form-submit:hover {
  animation: none;
  background: var(--brand-light);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ─── MODULES toggle: remove old mods-grid, use new ─── */
.mods-category-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.6);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ─── RESPONSIVE additions ──────────────────────────── */
@media (max-width: 1060px) {
  .growth-cards { grid-template-columns: 1fr; }

  .cta-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .mods-grid-core { grid-template-columns: repeat(2, 1fr); }
  .mods-grid-spec { grid-template-columns: repeat(2, 1fr); }
  .mods-grid-aesthetic { grid-template-columns: repeat(2, 1fr); }

  .proof-item { padding: 1rem 1.75rem; }
}

@media (max-width: 800px) {
  .mods-grid-spec { grid-template-columns: repeat(2, 1fr); }
  .mods-grid-aesthetic { grid-template-columns: 1fr 1fr; }
  .proof-strip-inner { flex-direction: column; align-items: stretch; }
  .proof-sep { width: 100%; height: 1px; align-self: auto; }
  .proof-item { padding: 1rem 0; }

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

@media (max-width: 600px) {
  .mods-grid-core { grid-template-columns: 1fr 1fr; }
  .mods-grid-spec { grid-template-columns: 1fr 1fr; }
  .mods-grid-aesthetic { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .solution-card { flex-direction: column; gap: 0.6rem; }
  .solution-num { font-size: 1.75rem; }
}

@media (max-width: 420px) {
  .mods-grid-core { grid-template-columns: 1fr; }
  .mods-grid-spec { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .solution-card:hover::before { display: none; }
  .btn-form-submit:hover { transform: none; }
  .btn-cta-mid:hover { transform: none; }
}
