/* ═══════════════════════════════════════════════════════
   MjekuOnline landing — structure from medicaflow-landing
   Palette: #FFFFFF base · #1AC8DB accent · #75B22C support (tints only)
═══════════════════════════════════════════════════════ */

/* ─── ROOT VARIABLES ─── */
:root {
  --brand:         #1ac8db;
  --brand-light:   #5ddfef;
  --brand-deep:    #17a8bd;
  --brand-glow:    rgba(26, 200, 219, 0.35);
  --brand-soft:    rgba(26, 200, 219, 0.1);

  --accent:        #75b22c;
  --accent-soft:   rgba(117, 178, 44, 0.14);

  --teal:          #1ac8db;
  --teal-soft:     rgba(26, 200, 219, 0.1);

  --green:         #75b22c;
  --green-soft:    rgba(117, 178, 44, 0.12);

  /* Surfaces — white-first */
  --bg:               #ffffff;
  --bg-soft:          #f5fbfb;
  --bg-section-tint:  #f2f9fa;
  --bg-card:          #ffffff;
  --bg-cyan-wash:     #eef8fa;

  /* Readable type: dark cyan (not Medicaflow navy) */
  --text:          #0a4d58;
  --text-muted:    #2f7a86;
  --text-light:    rgba(10, 77, 88, 0.45);
  --navy:          #0a4d58;
  --navy-mid:      #0c5e6b;

  --border:        rgba(26, 200, 219, 0.14);
  --border-light:  rgba(26, 200, 219, 0.08);
  --shadow-sm:     0 2px 16px rgba(26, 200, 219, 0.06);
  --shadow:        0 10px 36px rgba(26, 200, 219, 0.08);
  --shadow-lg:     0 20px 48px rgba(26, 200, 219, 0.09);

  /* Type on strong cyan panels */
  --on-dark:       rgba(255, 255, 255, 0.96);
  --on-dark-muted: rgba(255, 255, 255, 0.82);

  /* Legacy section token — alternate rhythm (very light tint) */
  --dark-hero:     #ffffff;
  --dark-deep:     #f5fbfb;
  --dark-section:  #f2f9fa;
  --dark-card:     #ffffff;
  --dark-card-hov: #f7fdfe;
  --dark-border:   rgba(26, 200, 219, 0.16);
  --dark-border-s: rgba(26, 200, 219, 0.28);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --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);
  background: var(--brand-soft);
  border: 1px solid rgba(26, 200, 219, 0.2);
}

.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: var(--text);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}
.section-sub-dark {
  color: var(--text-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(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 200, 219, 0.18);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 24px rgba(26, 200, 219, 0.12);
}
.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;
}
.nav-logo img {
  height: clamp(2.5rem, 3.6vw, 3rem);
  width: auto;
  min-width: 0;
  max-width: min(280px, 58vw);
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
  transform: translateY(0.1rem);
  opacity: 1;
  visibility: visible;
  filter: none;
  mix-blend-mode: normal;
  -webkit-mask: none;
  mask: none;
}
.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: var(--text-muted);
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--brand-deep); background: var(--brand-soft); }
.nav-links a.is-active,
.nav-links a.is-active:hover {
  color: #75b22c;
  background: transparent;
}

.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: var(--text-muted);
  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(26, 200, 219, 0.15);
  background: #ffffff;
}
.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: var(--text-muted);
  border-bottom: 1px solid rgba(26, 200, 219, 0.08);
}
.nav-mobile > a.is-active {
  color: #75b22c;
}
.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: linear-gradient(180deg, #ffffff 0%, #fcfefd 42%, #f4fbfc 100%);
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 200, 219, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 200, 219, 0.04) 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: -35%;
  right: -10%;
  left: auto;
  transform: none;
  width: min(720px, 85vw);
  height: 560px;
  background: radial-gradient(ellipse 70% 60% at 70% 20%, rgba(26, 200, 219, 0.08) 0%, transparent 65%);
  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-deep);
  background: var(--brand-soft);
  border: 1px solid rgba(26, 200, 219, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #75b22c;
  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: var(--text);
  margin-bottom: 1.5rem;
}
.hero-h1-emphasis {
  color: #75b22c;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-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: var(--brand-deep);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(26, 200, 219, 0.4);
  border-radius: var(--r-sm);
  transition: color var(--t), border-color var(--t), background var(--t);
  white-space: nowrap;
  background: #ffffff;
}
.btn-hero-ghost:hover {
  color: var(--brand-deep);
  border-color: var(--brand);
  background: var(--brand-soft);
}

.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(--text-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(26,200,219,0.25), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hp-main-card {
  position: absolute;
  inset: 0 0 50px 0;
  background: #ffffff;
  border: 1px solid rgba(26, 200, 219, 0.22);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(26, 200, 219, 0.18), 0 0 0 1px rgba(26, 200, 219, 0.06) inset;
  z-index: 1;
}

.hp-chrome {
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(26, 200, 219, 0.12);
  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: var(--text-muted);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.02em;
  background: rgba(26, 200, 219, 0.08);
  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: var(--bg-soft);
  border-right: 1px solid rgba(26, 200, 219, 0.12);
  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(26, 200, 219, 0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.hp-sidebar-item--active { background: rgba(26,200,219,0.18); }
.hp-sidebar-item svg { width: 11px; height: 11px; stroke: var(--text-light); }
.hp-sidebar-item--active svg { stroke: var(--brand-deep); }

.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: var(--text);
  letter-spacing: -0.01em;
}
.hp-date-chip {
  font-size: 8px;
  color: var(--text-muted);
  background: rgba(26, 200, 219, 0.1);
  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(26,200,219,0.14); border: 1px solid rgba(26,200,219,0.22); }
.hp-kpi-green  { background: var(--green-soft); border: 1px solid rgba(117, 178, 44, 0.28); }
.hp-kpi-purple { background: rgba(26, 200, 219, 0.08); border: 1px solid rgba(26, 200, 219, 0.2); }
.hp-kpi-amber  { background: rgba(117, 178, 44, 0.1); border: 1px solid rgba(117, 178, 44, 0.22); }
.hp-kpi-val {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hp-kpi-blue .hp-kpi-val   { color: var(--brand-deep); }
.hp-kpi-green .hp-kpi-val  { color: var(--accent); }
.hp-kpi-purple .hp-kpi-val { color: var(--brand); }
.hp-kpi-amber .hp-kpi-val  { color: var(--accent); }
.hp-kpi-lbl { font-size: 7px; color: var(--text-light); font-weight: 500; }

.hp-chart {
  background: var(--bg-soft);
  border: 1px solid rgba(26, 200, 219, 0.12);
  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: var(--text-light); 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(26,200,219,0.35);
  transition: background var(--t);
}
.hp-bar-active { background: rgba(26,200,219,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: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(26, 200, 219, 0.1);
}
.hp-av {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hp-av-1 { background: linear-gradient(135deg, #1ac8db, #75b22c); }
.hp-av-2 { background: linear-gradient(135deg, #1ac8db, #75b22c); }
.hp-av-3 { background: linear-gradient(135deg, #75b22c, #1ac8db); }
.hp-pat-name { font-size: 8.5px; font-weight: 600; color: var(--text); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hp-appt-t { font-size: 7.5px; color: var(--text-light); 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: var(--green-soft); color: var(--accent); }
.hp-status-wait { background: var(--brand-soft); color: var(--brand-deep); }

/* Floating cards */
.hp-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 200, 219, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 48px rgba(26, 200, 219, 0.15), 0 0 0 1px rgba(26, 200, 219, 0.06) 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, #1ac8db, #75b22c); flex-shrink: 0; }
.hp-float-av-1 { background: linear-gradient(135deg, #1ac8db, #75b22c); }
.hp-float-info { display: flex; flex-direction: column; gap: 2px; }
.hp-float-name { font-size: 9px; font-weight: 700; color: var(--text); }
.hp-float-sub  { font-size: 8px; color: var(--text-muted); }
.hp-float-badge { font-size: 7.5px; padding: 2px 7px; border-radius: 100px; background: var(--green-soft); color: var(--accent); 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: var(--accent); letter-spacing: -0.04em; }
.hp-float-trend { color: var(--accent); }
.hp-float-trend svg { width: 14px; height: 14px; }
.hp-float-label { font-size: 8px; color: var(--text-light); font-weight: 500; white-space: nowrap; }
.hp-float-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hp-float-dot-green { background: var(--accent); box-shadow: 0 0 6px rgba(117, 178, 44, 0.55); }
.hp-float-mod-name { font-size: 9px; font-weight: 600; color: var(--text); }
.hp-float-mod-status { font-size: 8px; padding: 1px 6px; border-radius: 100px; background: var(--green-soft); color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   2. TRUST BAND
═══════════════════════════════════════════════════════ */
.trust-band {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  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) 0%, var(--accent) 100%);
  -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: var(--text);
  line-height: 1.5;
}
.trust-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 200, 219, 0.2);
  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-section-tint);
}

.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(26,200,219,0.06);
  border-color: rgba(26,200,219,0.15);
}
.cap-tab.active {
  background: var(--bg-card);
  border-color: rgba(26,200,219,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(26,200,219,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(26, 200, 219, 0.1); color: var(--brand-deep); }

/* 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(117, 178, 44, 0.12); }
.cap-pay-red    { background: rgba(26, 200, 219, 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(26,200,219,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='%231AC8DB' 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: #ffffff;
}

.mods-to-pricing {
  margin: 0.35rem 0 0;
  text-align: center;
}
.mods-to-pricing-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 200, 219, 0.35);
  padding-bottom: 0.1rem;
  transition: color var(--t), border-color var(--t);
}
.mods-to-pricing-link:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.mods-to-pricing-link:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Tab toggle */
.mods-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  background: #ffffff;
  border: 1px solid rgba(26, 200, 219, 0.18);
  border-radius: 12px;
  margin-bottom: 2.5rem;
}
.mods-tab {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 9px;
  border: 1px solid transparent;
  transition: all var(--t);
}
.mods-tab:hover { color: var(--brand-deep); background: var(--brand-soft); }
.mods-tab-active,
.mods-tab.active {
  color: #ffffff;
  background: var(--brand);
  border-color: rgba(26, 200, 219, 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: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-light);
}

.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(26, 200, 219, 0.14);
}
.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(26,200,219,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: var(--brand-soft); }
.mod-icon-gp svg     { stroke: var(--brand); }
.mod-icon-dent   { background: var(--brand-soft); }
.mod-icon-dent svg   { stroke: var(--brand-deep); }
.mod-icon-physio { background: var(--green-soft); }
.mod-icon-physio svg { stroke: var(--green); }
.mod-icon-cardio { background: var(--brand-soft); }
.mod-icon-cardio svg { stroke: var(--brand-deep); }
.mod-icon-gyn    { background: var(--accent-soft); }
.mod-icon-gyn svg    { stroke: var(--accent); }
.mod-icon-ortho  { background: var(--teal-soft); }
.mod-icon-ortho svg  { stroke: var(--teal); }
.mod-icon-ped    { background: var(--accent-soft); }
.mod-icon-ped svg    { stroke: var(--accent); }
.mod-icon-soon   { background: rgba(26, 200, 219, 0.08); }
.mod-icon-soon svg   { stroke: var(--text-light); }

.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(26,200,219,0.18); color: var(--brand-light); }
.mod-badge-aesthetic { background: var(--accent-soft); color: var(--accent); }
.mod-badge-gp        { background: var(--brand-soft); color: var(--brand-deep); }
.mod-badge-dent      { background: var(--teal-soft); color: var(--teal); }
.mod-badge-physio    { background: var(--green-soft); color: var(--green); }
.mod-badge-cardio    { background: var(--brand-soft); color: var(--brand-deep); }
.mod-badge-gyn       { background: var(--accent-soft); color: var(--accent); }
.mod-badge-ortho     { background: var(--teal-soft); color: var(--teal); }
.mod-badge-ped       { background: var(--accent-soft); color: var(--accent); }
.mod-badge-soon      { background: rgba(26, 200, 219, 0.08); color: var(--text-muted); }

.mod-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.mod-desc {
  font-size: 0.8rem;
  color: var(--text-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: var(--text-light);
  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-section-tint);
}
.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(26,200,219,0.2);
}

.solution-num {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(26,200,219,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: #ffffff;
}

.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(26,200,219,0.1);
  border-color: rgba(26,200,219,0.28);
}

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

.testi-quote {
  font-size: 0.95rem;
  color: var(--text);
  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(26,200,219,0.2);
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-avatar-accent { background: var(--accent-soft); }
.testi-avatar-teal   { background: var(--brand-soft); }
.testi-initials { font-size: 0.8rem; font-weight: 700; color: var(--brand-deep); }

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

.testi-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════
   9. AUDIENCE
═══════════════════════════════════════════════════════ */
.audience-section {
  padding: 6rem 0;
  background: #ffffff;
}

.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: #ffffff;
}

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

.eco-lead {
  font-size: 1.05rem;
  color: var(--text-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(26,200,219,0.14);
  border: 1px solid rgba(26,200,219,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: var(--text); margin-bottom: 3px; }
.eco-facts li p { font-size: 0.82rem; color: var(--text-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(26,200,219,0.15);
  border: 1.5px solid rgba(26,200,219,0.35);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  z-index: 2;
  box-shadow: 0 0 40px rgba(26,200,219,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(--text-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: #ffffff;
  border: 1px solid rgba(26, 200, 219, 0.22);
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.eco-mod-gp     { top: 5%;  left: 50%; transform: translateX(-50%); border-color: rgba(26,200,219,0.35); color: var(--brand-deep); }
.eco-mod-dent   { top: 20%; right: 5%; border-color: rgba(26,200,219,0.3); color: var(--brand); }
.eco-mod-physio { top: 55%; right: 2%; border-color: rgba(117,178,44,0.35); color: var(--green); }
.eco-mod-laser  { bottom: 8%; right: 20%; border-color: rgba(117,178,44,0.35); color: var(--accent); }
.eco-mod-cardio { bottom: 5%; left: 20%; border-color: rgba(26,200,219,0.3); color: var(--brand-deep); }
.eco-mod-gyn    { top: 55%; left: 2%; border-color: rgba(117,178,44,0.35); color: var(--accent); }
.eco-mod-ortho  { top: 20%; left: 5%; border-color: rgba(26,200,219,0.28); color: var(--brand); }
.eco-mod-more   { top: 50%; left: 50%; transform: translateX(-50%); background: var(--brand-soft); border-color: rgba(26,200,219,0.35); color: var(--brand-deep); top: 88%; }

/* ═══════════════════════════════════════════════════════
   11. FINAL CTA
═══════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6fcfd 45%, #eef8fa 100%);
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}
.final-cta-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,200,219,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,200,219,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,200,219,0.05) 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: var(--brand-deep);
  margin-bottom: 0.85rem;
}
.final-cta-h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.final-cta-sub {
  font-size: 1.02rem;
  color: var(--text-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(26,200,219,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(26,200,219,0.6);
}

.btn-cta-ghost {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-deep);
  transition: color var(--t);
}
.btn-cta-ghost:hover { color: var(--brand); }

/* ═══════════════════════════════════════════════════════
   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, #ffffff 0%, #f7fcfd 55%, #eef8fa 100%);
  padding: 0 0 3.25rem;
  border-top: 1px solid var(--border-light);
}

/* Subtle top highlight */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 0%, rgba(26, 200, 219, 0.06) 0%, transparent 70%);
  opacity: 1;
}

.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: 1.2rem;
}

.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;
  min-width: 0;
  max-width: min(100%, 360px);
  max-height: none;
  margin: 0 auto 1.05rem;
  padding: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: none;
  box-shadow: none;
  vertical-align: middle;
  transform: none;
  opacity: 1;
  visibility: visible;
  filter: none;
  mix-blend-mode: normal;
  -webkit-mask: none;
  mask: none;
}

.footer-headline {
  font-size: clamp(1.05rem, 2.2vw, 1.34rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
  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;
  }
}

/* Brand primary CTAs — cyan glow only */
@keyframes cta-pulse-brand {
  0%,
  65% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(26, 200, 219, 0);
  }
  72% {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
      0 6px 20px rgba(26, 200, 219, 0.35),
      0 0 28px rgba(26, 200, 219, 0.35);
  }
  80% {
    transform: translateY(0) scale(1.008);
    box-shadow: 0 3px 14px rgba(26, 200, 219, 0.25);
  }
  88%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(26, 200, 219, 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: #ffffff;
  border-radius: 9999px;
  border: 1px solid rgba(26, 200, 219, 0.35);
  background: var(--brand);
  box-shadow: 0 6px 24px rgba(26, 200, 219, 0.22);
  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);
}
@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(26, 200, 219, 0.5);
  color: #ffffff;
  background: var(--brand-light);
  box-shadow: 0 10px 32px rgba(26, 200, 219, 0.28);
  transform: translateY(-2px);
}
.footer-cta:hover .footer-cta-icon {
  opacity: 1;
  transform: translateX(3px);
}
.footer-cta:focus-visible {
  animation: none;
  outline: 2px solid rgba(26, 200, 219, 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: var(--brand-deep);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s var(--ease);
}
.footer-email:hover {
  color: var(--brand);
}

.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: var(--text-muted);
  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: var(--brand);
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(26, 200, 219, 0.25));
}
.footer-social-link:focus-visible {
  outline: 1px solid rgba(26, 200, 219, 0.45);
  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: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s var(--ease);
}
.footer-phone:hover {
  color: var(--brand-deep);
}

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

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-light) !important;
  margin: 0 !important;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.footer-copy .footer-techkos {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--t) var(--ease), opacity var(--t) var(--ease);
}
.footer-copy .footer-techkos:hover {
  color: var(--brand);
  opacity: 1;
}
.footer-copy .footer-techkos:focus-visible {
  outline: 2px solid rgba(26, 200, 219, 0.45);
  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: var(--text);
}

/* ─── 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(--text-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: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%2375B22C' 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(26, 200, 219, 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(26, 200, 219, 0.1);
  border: 1px solid rgba(26, 200, 219, 0.18);
}
.mod-icon-spec svg { stroke: var(--brand-light); }
/* Unified specialty badge */
.mod-badge-spec {
  background: rgba(26, 200, 219, 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(26, 200, 219, 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(26, 200, 219, 0.22); }

/* ─── PRICING SECTION ───────────────────────────────── */
.pricing-section {
  padding: 6rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.pricing-lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-module-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(26, 200, 219, 0.25);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.pricing-module-trigger:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}
.pricing-module-trigger:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 2px;
}

.pricing-selection {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(26, 200, 219, 0.1);
  border: 1px solid rgba(26, 200, 219, 0.22);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
}
.pricing-selection-label {
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-selection-value {
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto 2rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: #fafcfd;
  border: 1px solid rgba(26, 200, 219, 0.2);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.pricing-card:hover {
  border-color: rgba(26, 200, 219, 0.35);
}

.pricing-card--annual {
  background: linear-gradient(165deg, #ffffff 0%, rgba(231, 252, 255, 0.85) 100%);
  border-color: rgba(26, 200, 219, 0.45);
  box-shadow: 0 8px 32px rgba(26, 200, 219, 0.12);
}
.pricing-card--annual:hover {
  box-shadow: 0 12px 40px rgba(26, 200, 219, 0.16);
}

.pricing-card-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: rgba(26, 200, 219, 0.18);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
}

.pricing-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 0;
  padding-right: 5.5rem;
}
.pricing-card--monthly .pricing-card-title {
  padding-right: 0;
}

.pricing-card-tagline {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-card-amount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-top: 0.35rem;
}

.pricing-card-price {
  font-size: clamp(2rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.pricing-card-unit {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card-floor {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.pricing-card-floor strong {
  color: var(--text);
  font-weight: 700;
}

.pricing-card-features {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1.15rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.pricing-card-features li {
  margin-bottom: 0.35rem;
}

.pricing-card-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: var(--brand);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background var(--t), transform var(--t);
}
.pricing-card-cta:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}
.pricing-card-cta--secondary {
  background: transparent;
  color: var(--brand-deep) !important;
  border: 2px solid rgba(26, 200, 219, 0.45);
}
.pricing-card-cta--secondary:hover {
  background: rgba(26, 200, 219, 0.08);
}

.pricing-notes {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pricing-notes p {
  margin: 0 0 0.5rem;
}
.pricing-notes-subtle {
  font-size: 0.8rem;
  opacity: 0.92;
}

/* Pricing modal */
.pricing-modal[hidden] {
  display: none !important;
}

.pricing-modal:not([hidden]) {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.pricing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pricing-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: min(85vh, 560px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(26, 200, 219, 0.2);
  box-shadow: 0 24px 60px rgba(15, 35, 42, 0.18);
  overflow: hidden;
}

.pricing-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(26, 200, 219, 0.12);
}

.pricing-modal__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pricing-modal__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(26, 200, 219, 0.1);
  color: var(--text);
  cursor: pointer;
  transition: background var(--t);
}
.pricing-modal__close:hover {
  background: rgba(26, 200, 219, 0.2);
}
.pricing-modal__close:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 2px;
}

.pricing-modal__hint {
  margin: 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-bottom: 1px solid rgba(26, 200, 219, 0.08);
}

.pricing-modal__list {
  padding: 0.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-modal__option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--text);
  background: #fafcfd;
  border: 1px solid rgba(26, 200, 219, 0.15);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.pricing-modal__option:hover {
  background: rgba(26, 200, 219, 0.08);
  border-color: rgba(26, 200, 219, 0.3);
}
.pricing-modal__option:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 2px;
}
.pricing-modal__option.is-selected {
  border-color: rgba(117, 178, 44, 0.55);
  background: rgba(117, 178, 44, 0.1);
  box-shadow: 0 0 0 1px rgba(117, 178, 44, 0.2);
  font-weight: 700;
}

/* ─── MID-PAGE CTA BAND ─────────────────────────────── */
.cta-mid-band {
  padding: 2rem 0;
  background: linear-gradient(90deg, #ffffff 0%, var(--bg-section-tint) 50%, #ffffff 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.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: var(--text);
  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: var(--brand);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(26, 200, 219, 0.2);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.btn-cta-mid:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(26, 200, 219, 0.22);
}

/* ─── CTA + CONTACT section ─────────────────────────── */
.contact-cta-section {
  padding: 5rem 0;
  background: var(--bg-section-tint);
  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(26,200,219,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(26,200,219,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: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-light);
}

/* ─── RESPONSIVE additions ──────────────────────────── */
@media (max-width: 1060px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card-title { padding-right: 0; }
  .pricing-card-ribbon { position: static; display: inline-block; margin-bottom: 0.35rem; }

  .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; }
}
