﻿/* ════════════════════════════════════════════════════════════════
   NUKLEUS LANDING PAGE — Premium CSS
   ════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050b18;
  --bg2: #080f22;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.14);
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --indigo: #6366f1;
  --purple: #a855f7;
  --cyan: #06b6d4;
  --green: #10b981;
  --orange: #f97316;
  --red: #ef4444;
  --text: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ──────────────────────── NAVBAR ──────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5,11,24,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-icon svg { display: block; }
.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn-nav-outline {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text2);
  border: 1px solid var(--border-bright);
  transition: var(--transition);
}
.btn-nav-outline:hover { color: var(--text); border-color: var(--blue-light); }
.btn-nav-primary {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(59,130,246,0.5);
}

/* ──────────────────────── ORBs ──────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: rgba(59,130,246,0.12); top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: rgba(99,102,241,0.1); top: 100px; right: -200px; }
.orb-3 { width: 400px; height: 400px; background: rgba(168,85,247,0.08); bottom: 0; left: 40%; }
.orb-t1 { width: 600px; height: 600px; background: rgba(59,130,246,0.15); top: -100px; left: -200px; animation: float 8s ease-in-out infinite; }
.orb-t2 { width: 500px; height: 500px; background: rgba(99,102,241,0.12); bottom: -100px; right: -100px; animation: float 10s ease-in-out infinite reverse; }
.orb-fc1 { width: 500px; height: 500px; background: rgba(59,130,246,0.2); top: -100px; left: -100px; }
.orb-fc2 { width: 400px; height: 400px; background: rgba(168,85,247,0.15); bottom: -100px; right: -100px; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }

/* ──────────────────────── HERO ──────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text2);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  box-shadow: 0 8px 32px rgba(59,130,246,0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,130,246,0.55); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary.btn-xl { padding: 18px 40px; font-size: 18px; border-radius: 14px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--text2);
  border: 1px solid var(--border-bright);
  transition: var(--transition);
  background: var(--surface);
}
.btn-ghost:hover { color: var(--text); border-color: var(--blue-light); background: var(--surface-hover); }
.btn-ghost.btn-lg { padding: 16px 32px; font-size: 16px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text3);
  font-weight: 500;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ──────────────────────── HERO IMAGE ──────────────────────── */
.hero-img-wrap {
  position: relative;
  margin: 64px auto 0;
  max-width: 1000px;
  padding: 0 24px;
  z-index: 2;
  animation: fadeUp 0.9s 0.5s ease both;
}
.hero-img-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.35), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.browser-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  background: #0d1526;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0d1526;
  border-bottom: 1px solid var(--border);
}
.bdot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.bdot.r { background: #ff5f57; }
.bdot.y { background: #febc2e; }
.bdot.g { background: #28c840; }
.browser-url {
  margin-left: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 4px 16px;
  font-size: 12px;
  color: var(--text3);
  flex: 1;
  max-width: 300px;
}
.hero-screenshot {
  width: 100%;
  display: block;
}

/* ──────────────────────── STATS ──────────────────────── */
.stats-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 16px 48px;
}
.stat-num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-lbl { font-size: 13px; color: var(--text3); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ──────────────────────── SECTION HEADER ──────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p { font-size: 17px; color: var(--text2); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ──────────────────────── ZA KOGA ──────────────────────── */
.za-koga { padding: 100px 0; }
.clinic-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.clinic-card {
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.clinic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.clinic-med::before { background: linear-gradient(90deg, #3b82f6, #6366f1); }
.clinic-dent::before { background: linear-gradient(90deg, #06b6d4, #10b981); }
.clinic-vet::before { background: linear-gradient(90deg, #f97316, #ef4444); }
.clinic-card:hover { transform: translateY(-4px); border-color: var(--border-bright); background: var(--surface-hover); }
.clinic-emoji { font-size: 40px; margin-bottom: 12px; }
.clinic-tag-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  background: rgba(59,130,246,0.15);
  color: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.3);
}
.clinic-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.clinic-card p { color: var(--text2); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.clinic-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.clinic-feats li { font-size: 13px; color: var(--text2); font-weight: 500; }

/* ──────────────────────── FEATURES BENTO ──────────────────────── */
.funkcije { padding: 100px 0; background: var(--bg2); }
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}
.bento-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bento-card:hover { border-color: var(--border-bright); transform: translateY(-3px); background: var(--surface-hover); }
.bento-big { grid-column: span 2; }
.bento-card h3 { font-size: 18px; font-weight: 700; margin: 16px 0 10px; }
.bento-card p { font-size: 14px; color: var(--text2); line-height: 1.65; }
.feat-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon-wrap.blue { background: rgba(59,130,246,0.15); color: var(--blue-light); }
.feat-icon-wrap.purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.feat-icon-wrap.green { background: rgba(16,185,129,0.15); color: #34d399; }
.feat-icon-wrap.teal { background: rgba(6,182,212,0.15); color: #22d3ee; }
.feat-icon-wrap.orange { background: rgba(249,115,22,0.15); color: #fb923c; }
.feat-icon-wrap.red { background: rgba(239,68,68,0.15); color: #f87171; }
.feat-icon-wrap.indigo { background: rgba(99,102,241,0.15); color: #818cf8; }
.feat-icon-wrap.gray { background: rgba(148,163,184,0.1); color: #94a3b8; }
.feat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text2);
}
.feat-blue { border-color: rgba(59,130,246,0.2); }
.feat-blue:hover { border-color: rgba(59,130,246,0.4); box-shadow: 0 0 40px rgba(59,130,246,0.08); }
.feat-purple:hover { border-color: rgba(168,85,247,0.3); box-shadow: 0 0 40px rgba(168,85,247,0.08); }
.feat-green:hover { border-color: rgba(16,185,129,0.3); box-shadow: 0 0 40px rgba(16,185,129,0.08); }
.feat-teal:hover { border-color: rgba(6,182,212,0.3); box-shadow: 0 0 40px rgba(6,182,212,0.08); }
.feat-orange:hover { border-color: rgba(249,115,22,0.3); box-shadow: 0 0 40px rgba(249,115,22,0.08); }
.feat-red:hover { border-color: rgba(239,68,68,0.3); }
.feat-indigo:hover { border-color: rgba(99,102,241,0.3); }

/* ──────────────────────── HOW IT WORKS ──────────────────────── */
.how-it-works { padding: 100px 0; }
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 32px 20px;
}
.step-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(99,102,241,0.4);
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.step-arrow { font-size: 28px; color: var(--text3); padding: 0 8px; flex-shrink: 0; }

/* ──────────────────────── TRIAL BANNER ──────────────────────── */
.trial-banner {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(99,102,241,0.08));
  border-top: 1px solid rgba(59,130,246,0.15);
  border-bottom: 1px solid rgba(59,130,246,0.15);
  position: relative;
  overflow: hidden;
}
.trial-inner { position: relative; z-index: 2; }
.trial-badge-pill {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 24px;
}
.trial-banner h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -2px; margin-bottom: 20px; }
.trial-banner > .container > p { font-size: 17px; color: var(--text2); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 20px 28px;
  min-width: 90px;
}
.cd-num {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.cd-block small { font-size: 11px; color: var(--text3); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-size: 36px; font-weight: 300; color: var(--text3); margin-top: -20px; }
.btn-trial {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  box-shadow: 0 8px 32px rgba(59,130,246,0.45);
  transition: var(--transition);
  margin-bottom: 20px;
  display: inline-block;
}
.btn-trial:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(59,130,246,0.6); }
.trial-note { font-size: 13px; color: var(--text3); }

/* ──────────────────────── PRICING ──────────────────────── */
.paketi { padding: 100px 0; background: var(--bg2); }
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}
.btog-lbl { font-size: 15px; font-weight: 500; color: var(--text2); cursor: pointer; }
.btog-lbl.active { color: var(--text); }
.toggle-switch {
  width: 52px; height: 28px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-bright);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.toggle-switch.on { background: var(--blue); border-color: var(--blue); }
.toggle-knob {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 3px; left: 4px;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.toggle-switch.on .toggle-knob { left: 28px; }
.save-chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(52,211,153,0.15);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  border: 1px solid rgba(52,211,153,0.3);
  margin-left: 6px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.pricing-star {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.05);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.2), 0 24px 48px rgba(0,0,0,0.3);
}
.pricing-star:hover { transform: scale(1.03) translateY(-4px); }
.star-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(59,130,246,0.5);
}
.pkg-icon-lrg { font-size: 36px; margin-bottom: 16px; }
.pkg-name { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.pkg-desc { font-size: 13px; color: var(--text3); margin-bottom: 28px; line-height: 1.5; }
.pkg-price-wrap { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.price-val { font-size: 48px; font-weight: 900; letter-spacing: -2px; }
.price-sub { display: flex; flex-direction: column; gap: 0; }
.price-cur { font-size: 13px; color: var(--text3); font-weight: 600; }
.price-per { font-size: 12px; color: var(--text3); }
.price-annual-label { font-size: 12px; color: #34d399; margin-bottom: 24px; min-height: 16px; }
.btn-pkg {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-bright);
  color: var(--text);
  margin-bottom: 28px;
  transition: var(--transition);
  background: var(--surface-hover);
}
.btn-pkg:hover { border-color: var(--blue-light); color: var(--blue-light); }
.btn-pkg-star {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}
.btn-pkg-star:hover { box-shadow: 0 8px 28px rgba(59,130,246,0.55); color: #fff; border-color: transparent; }
.pkg-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pkg-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.pkg-feats li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; display: flex; }
.pkg-feats .yes { color: var(--text2); }
.pkg-feats .yes::before { background: rgba(52,211,153,0.2); border: 1.5px solid #34d399; content: '✓'; display: flex; align-items: center; justify-content: center; font-size: 9px; color: #34d399; font-weight: 900; }
.pkg-feats .no { color: var(--text3); }
.pkg-feats .no::before { background: rgba(148,163,184,0.08); border: 1.5px solid rgba(148,163,184,0.2); content: '–'; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--text3); }
.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--text3);
}

/* ──────────────────────── TESTIMONIALS ──────────────────────── */
.testimonials { padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.testi-featured-card {
  border-color: rgba(59,130,246,0.35);
  background: rgba(59,130,246,0.05);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.testi-stars { color: #fbbf24; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 14px; color: var(--text2); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-author strong { font-size: 14px; display: block; margin-bottom: 2px; }
.testi-author span { font-size: 12px; color: var(--text3); }

/* ──────────────────────── FAQ ──────────────────────── */
.faq { padding: 100px 0; background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-bright); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  line-height: 1.4;
}
.faq-icon {
  font-size: 22px;
  color: var(--text3);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--blue-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }

/* ──────────────────────── FINAL CTA ──────────────────────── */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(99,102,241,0.06) 50%, rgba(168,85,247,0.06) 100%);
}
.final-cta-body { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -2px; margin-bottom: 20px; }
.final-cta p { font-size: 18px; color: var(--text2); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.fcta-note { font-size: 13px; color: var(--text3); margin-top: 20px; }

/* ──────────────────────── FOOTER ──────────────────────── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-brand { flex: 0 0 220px; }
.footer-tagline { font-size: 13px; color: var(--text3); margin-top: 14px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: var(--text3); margin-top: 20px; }
.footer-links { display: flex; gap: 48px; flex: 1; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.footer-col a { text-decoration: none; font-size: 13px; color: var(--text3); transition: color var(--transition); }
.footer-col a:hover { color: var(--blue-light); }

/* ──────────────────────── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  .features-bento { grid-template-columns: 1fr 1fr; }
  .bento-big { grid-column: span 1; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-star { transform: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .features-bento { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .stat-divider { display: none; }
  .stat-item { padding: 16px 24px; }
  .footer-inner { gap: 32px; }
  .footer-links { gap: 28px; }
  .clinic-cards { grid-template-columns: 1fr; }
}
