/* ─────────────────────────────────────────────────────────────────
   SmartCare Landing Page — Premium Medical SaaS
   Font: Plus Jakarta Sans (Google Fonts)
   ───────────────────────────────────────────────────────────────── */

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #ffffff;
  color: #1a2234;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── CSS Variables ───────────────────────────────────────────────── */
:root {
  --brand:       #00b4c8;
  --brand-dark:  #0094a8;
  --brand-light: #e0f7fa;
  --brand-mid:   #33c5d6;
  --navy:        #1a2234;
  --navy-2:      #243044;
  --text:        #1a2234;
  --text-sub:    #64748b;
  --text-muted:  #94a3b8;
  --bg:          #f0f4f8;
  --surface:     #ffffff;
  --border:      #e2eaf0;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 3px 0 rgb(0 0 0 / .06), 0 1px 2px -1px rgb(0 0 0 / .04);
  --shadow-md:   0 4px 16px -4px rgb(0 0 0 / .10), 0 2px 6px -2px rgb(0 0 0 / .06);
  --shadow-lg:   0 12px 32px -8px rgb(0 0 0 / .12), 0 4px 12px -4px rgb(0 0 0 / .08);
  --shadow-brand: 0 4px 18px 0 rgb(0 180 200 / .32);
}

/* ── Typography ─────────────────────────────────────────────────── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 800; }
.section-eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .75rem;
}
.section-title { font-size: 2.25rem; color: var(--navy); margin-bottom: 1rem; }
.section-sub { font-size: 1.1rem; color: var(--text-sub); max-width: 560px; margin: 0 auto; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: .9rem; border: none;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 6px 24px 0 rgb(0 180 200 / .40); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.btn-ghost-white {
  background: rgba(255,255,255,.1); color: #fff;
  border: 2px solid rgba(255,255,255,.2);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }

/* ── Badge ───────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem 1rem; border-radius: 99px;
  font-size: .72rem; font-weight: 700;
}
.badge-brand  { background: var(--brand-light); color: var(--brand-dark); border: 1px solid #b2ebf2; }
.badge-green  { background: #ecfdf5; color: #059669; }
.badge-cyan   { background: #ecfeff; color: #0891b2; }
.badge-amber  { background: #fffbeb; color: #d97706; }

/* ── Cards ───────────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #b2ebf2; }

/* ── Navbar ──────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s;
  backdrop-filter: blur(12px);
}
#navbar.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 16px rgb(0 0 0 / .06);
}
#navbar .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 1.5rem; max-width: 1200px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: 1.2rem; color: var(--navy);
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, #00d4e8 100%);
  display: flex; align-items: center; justify-content: center;
}
.logo span.accent { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: .875rem; font-weight: 600; color: var(--text-sub);
  transition: color .2s;
}
.nav-links a:hover { color: var(--brand); }
.nav-ctas { display: flex; align-items: center; gap: .75rem; }
.nav-login {
  font-size: .875rem; font-weight: 600; color: var(--text-sub);
  padding: .5rem .875rem; border-radius: var(--radius-sm);
  transition: color .2s;
}
.nav-login:hover { color: var(--brand); }

/* Mobile nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / .08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: .75rem 0;
  font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── Hero ────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 6rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,180,200,.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,212,232,.05) 0%, transparent 60%),
    #fff;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,200,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--brand-light); color: var(--brand-dark);
  border: 1px solid #b2ebf2; border-radius: 99px;
  padding: .375rem 1rem; font-size: .75rem; font-weight: 700;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
.hero-title {
  font-size: 3.2rem; font-weight: 900; color: var(--navy);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-title .gradient {
  background: linear-gradient(135deg, var(--brand) 0%, #00d4e8 50%, #0091b5 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-sub);
  line-height: 1.7; max-width: 500px; margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--text-sub);
}
.trust-icon { color: var(--brand); width: 16px; height: 16px; }

/* Dashboard mockup */
.mockup-wrap {
  position: relative; perspective: 1200px;
}
.mockup-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.04);
  transform: rotateY(-5deg) rotateX(3deg);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: rotateY(-5deg) rotateX(3deg) translateY(0); }
  50%      { transform: rotateY(-5deg) rotateX(3deg) translateY(-10px); }
}
.mockup-bar {
  background: var(--navy); padding: .75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.window-dots { display: flex; gap: 5px; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.mockup-title-bar { font-size: .6rem; color: rgba(255,255,255,.5); font-weight: 600; }
.mockup-body { padding: 1rem; background: var(--bg); }
.mockup-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .875rem;
}
.mockup-greeting { font-size: .7rem; color: var(--text-muted); font-weight: 600; }
.mockup-date { font-size: .8rem; font-weight: 800; color: var(--navy); }
.mockup-notif {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand); display: flex; align-items: center;
  justify-content: center; position: relative; cursor: pointer;
}
.notif-badge {
  position: absolute; top: -3px; right: -3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ef4444; color: #fff;
  font-size: .45rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .5rem; margin-bottom: .875rem;
}
.stat-card {
  background: #fff; border-radius: 10px; padding: .5rem .625rem;
  text-align: center; box-shadow: var(--shadow-sm);
}
.stat-num { font-size: 1.1rem; font-weight: 900; }
.stat-lbl { font-size: .55rem; color: var(--text-muted); margin-top: 1px; }
.blue  { color: #3b82f6; }
.amber { color: #f59e0b; }
.green { color: #10b981; }
.purple{ color: #8b5cf6; }

.queue-card {
  background: #fff; border-radius: 10px; padding: .75rem;
  margin-bottom: .5rem; box-shadow: var(--shadow-sm);
}
.queue-title { font-size: .6rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.queue-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .35rem 0; border-bottom: 1px solid #f8fafc;
}
.queue-row:last-child { border-bottom: none; }
.queue-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.q-name { font-size: .7rem; font-weight: 700; color: var(--navy); margin-left: .4rem; }
.q-time { font-size: .6rem; color: var(--text-muted); }
.q-status {
  font-size: .55rem; font-weight: 700; padding: .2rem .5rem;
  border-radius: 6px; background: #f1f5f9; color: #64748b;
}
.chart-card {
  background: #fff; border-radius: 10px; padding: .75rem;
  box-shadow: var(--shadow-sm);
}
.chart-title { font-size: .6rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.chart-bars { display: flex; align-items: flex-end; gap: 3px; height: 36px; }
.bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: rgba(0,180,200,.55);
  transition: background .2s;
}
.bar:hover { background: var(--brand); }

/* Floating pills */
.pill {
  position: absolute; background: #fff;
  border-radius: 99px; padding: .35rem .75rem;
  display: flex; align-items: center; gap: .4rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  font-size: .65rem; font-weight: 800; color: var(--navy);
  white-space: nowrap; z-index: 3;
}
.pill-1 { top: -10px; right: -12px; animation: bob 3.5s ease-in-out infinite; }
.pill-2 { bottom: -10px; left: -12px; animation: bob 4s ease-in-out infinite .8s; }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Section styles ──────────────────────────────────────────────── */
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-bg { background: var(--bg); }

/* Quick Nav */
.qnav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.qnav-card {
  padding: 1.75rem; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.qnav-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #b2ebf2; }
.qnav-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: transform .25s;
}
.qnav-card:hover .qnav-icon { transform: scale(1.1); }
.qnav-more {
  display: flex; align-items: center; gap: .25rem;
  font-size: .75rem; font-weight: 700; color: var(--brand);
  margin-top: .75rem; opacity: 0; transition: opacity .2s;
}
.qnav-card:hover .qnav-more { opacity: 1; }

/* Feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feat-card {
  padding: 1.375rem; border-radius: var(--radius-md);
  background: #fff; border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #b2ebf2; }
.feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .875rem;
  transition: background .2s, color .2s;
}
.feat-card:hover .feat-icon { background: var(--brand); color: #fff; }
.feat-title { font-size: .875rem; font-weight: 800; color: var(--navy); margin-bottom: .375rem; }
.feat-desc { font-size: .75rem; color: var(--text-muted); line-height: 1.6; }

/* Consultation 360 */
.c360-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.c360-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl); padding: 2.5rem;
  backdrop-filter: blur(8px);
  transition: background .25s;
}
.c360-card:hover { background: rgba(255,255,255,.09); }
.c360-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.c360-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.c360-icon-ped { background: var(--brand); }
.c360-icon-dent { background: #0891b2; }
.c360-title { font-size: 1.2rem; font-weight: 900; color: #fff; }
.c360-items { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.c360-item {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border-radius: 10px;
  padding: .625rem .875rem;
}
.c360-check { color: var(--brand); flex-shrink: 0; }
.c360-check-cyan { color: #22d3ee; }
.c360-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); }
.c360-note { font-size: .7rem; color: rgba(255,255,255,.4); font-weight: 600; margin-top: 1.25rem; }

/* Specialties */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.spec-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  border-top: 4px solid var(--brand);
  transition: transform .25s, box-shadow .25s;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.spec-card.teal   { border-top-color: var(--brand); }
.spec-card.cyan   { border-top-color: #0891b2; }
.spec-card.emerald{ border-top-color: #10b981; }
.spec-card.amber  { border-top-color: #f59e0b; }
.spec-icon-wrap {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1rem;
}
.spec-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg); display: flex; align-items: center;
  justify-content: center; color: var(--text-sub);
}
.spec-title { font-weight: 900; color: var(--navy); margin-bottom: .875rem; }
.spec-features { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.spec-features li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--text-sub);
}
.spec-check { color: var(--brand); flex-shrink: 0; }

/* Workflow */
.workflow-steps {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 1rem; position: relative;
}
.workflow-steps::before {
  content: '';
  position: absolute; top: 28px; left: 8%;
  right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-light) 10%, var(--brand-light) 90%, transparent);
  z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  gap: .625rem; text-align: center; position: relative; z-index: 1;
}
.step-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.step:hover .step-icon { border-color: var(--brand); color: var(--brand); box-shadow: var(--shadow-brand); }
.step-num { font-size: .6rem; font-weight: 900; color: var(--brand); }
.step-name { font-size: .72rem; font-weight: 800; color: var(--navy); }
.step-desc { font-size: .62rem; color: var(--text-muted); }

/* Security */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.sec-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1.5rem;
  transition: background .25s;
}
.sec-card:hover { background: rgba(255,255,255,.08); }
.sec-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,180,200,.2); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.sec-title { font-size: .875rem; font-weight: 800; color: #fff; margin-bottom: .375rem; }
.sec-desc { font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.sec-callout {
  background: rgba(0,180,200,.12); border: 1px solid rgba(0,180,200,.25);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: center;
}
.sec-callout-icon { margin: 0 auto .875rem; }
.sec-callout h3 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.sec-callout p { color: rgba(255,255,255,.55); font-size: .875rem; max-width: 560px; margin: 0 auto; }

/* Notifications */
.notif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.notif-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.notif-feature { display: flex; gap: 1rem; }
.notif-feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-feat-title { font-weight: 800; font-size: .9rem; color: var(--navy); margin-bottom: .25rem; }
.notif-feat-desc { font-size: .8rem; color: var(--text-muted); }
/* Notification mockup */
.notif-mock {
  background: #fff; border-radius: var(--radius-xl);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.notif-mock-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.notif-mock-title { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: .875rem; }
.unread-badge {
  background: #ef4444; color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: .6rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.read-all { font-size: .72rem; color: var(--brand); font-weight: 700; cursor: pointer; }
.notif-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .875rem 1.25rem; border-bottom: 1px solid #f8fafc;
  transition: background .15s;
}
.notif-item:hover { background: #f8fafc; }
.notif-item:last-child { border-bottom: none; }
.notif-item.unread { background: rgba(0,180,200,.03); }
.notif-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-msg { font-size: .78rem; font-weight: 700; color: var(--navy); }
.notif-time { font-size: .68rem; color: var(--text-muted); margin-top: 2px; }
.notif-dot { width: 7px; height: 7px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }

/* Reporting */
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.dashboard-mock {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-xl); padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.dash-title { font-weight: 900; color: #fff; }
.dash-date { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 2px; }
.live-dot { display: flex; align-items: center; gap: .375rem; }
.live-dot span { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; }
.live-dot em { font-size: .65rem; font-style: normal; color: var(--brand); font-weight: 700; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .625rem; }
.kpi-card {
  border-radius: 10px; padding: .75rem;
  text-align: left;
}
.kpi-val { font-size: 1.1rem; font-weight: 900; }
.kpi-lbl { font-size: .58rem; color: #6b7280; margin-top: 1px; line-height: 1.3; }
.kpi-change { font-size: .6rem; font-weight: 800; margin-top: 4px; }
.change-up { color: #10b981; }
.change-dn { color: #ef4444; }
.mini-chart { background: rgba(255,255,255,.05); border-radius: 10px; padding: .75rem; margin-top: .875rem; }
.mini-chart-title { font-size: .58rem; color: rgba(255,255,255,.4); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.mini-bars { display: flex; align-items: flex-end; gap: 3px; height: 40px; }
.mini-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: rgba(0,180,200,.5);
  transition: background .2s;
}
.mini-bar:hover { background: var(--brand); }

/* Report text */
.report-checks { list-style: none; display: flex; flex-direction: column; gap: .875rem; margin-top: 1.75rem; }
.report-checks li { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--text-sub); }
.check-icon { color: var(--brand); flex-shrink: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--navy); border: none;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: .68rem; font-weight: 800; padding: .3rem .875rem;
  border-radius: 99px; white-space: nowrap;
}
.pricing-name { font-size: 1.2rem; font-weight: 900; margin-bottom: .375rem; }
.pricing-desc { font-size: .8rem; margin-bottom: 1.5rem; }
.pricing-price { font-size: 1.75rem; font-weight: 900; color: var(--brand); margin-bottom: 1.75rem; }
.pricing-features { flex: 1; list-style: none; display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: .625rem; font-size: .85rem; }
.pricing-check { color: var(--brand); flex-shrink: 0; }
.pricing-btn { display: block; text-align: center; width: 100%; padding: .875rem; border-radius: var(--radius-md); font-weight: 800; font-size: .875rem; transition: all .2s; border: none; cursor: pointer; }
.pricing-btn-outline { background: transparent; border: 2px solid var(--brand); color: var(--brand); }
.pricing-btn-outline:hover { background: var(--brand); color: #fff; }
.pricing-btn-fill { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.pricing-btn-fill:hover { background: var(--brand-dark); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform .25s, background .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.star-icon { color: #f59e0b; }
.testi-text { font-size: .85rem; color: var(--text-sub); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-name { font-weight: 900; font-size: .875rem; color: var(--navy); }
.testi-role { font-size: .75rem; color: var(--brand); font-weight: 700; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq-item:hover, .faq-item.open { border-color: #b2ebf2; }
.faq-q {
  width: 100%; background: none; border: none; padding: 1.25rem 1.375rem;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; cursor: pointer;
  font-family: inherit;
}
.faq-q-text { font-size: .9rem; font-weight: 700; color: var(--navy); flex: 1; padding-right: 1rem; }
.faq-chevron {
  flex-shrink: 0; transition: transform .25s; color: var(--text-muted);
  width: 18px; height: 18px;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--brand); }
.faq-a {
  display: none; padding: 0 1.375rem 1.25rem;
  font-size: .85rem; color: var(--text-sub); line-height: 1.75;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}
.faq-item.open .faq-a { display: block; }

/* Final CTA */
#cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f45 50%, #0f1a28 100%);
  padding: 6rem 0; position: relative; overflow: hidden;
}
#cta-section::before {
  content: '';
  position: absolute; top: -100px; left: 30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,180,200,.12) 0%, transparent 70%);
  pointer-events: none;
}
#cta-section::after {
  content: '';
  position: absolute; bottom: -80px; right: 25%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,232,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,180,200,.15); border: 1px solid rgba(0,180,200,.25);
  color: #67e8f9; font-size: .72rem; font-weight: 700;
  padding: .35rem 1rem; border-radius: 99px; margin-bottom: 1.5rem;
}
.cta-title { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,.55); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* Contact form */
.contact-form-wrap {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 2.5rem;
  max-width: 540px; margin: 0 auto; text-align: left;
  backdrop-filter: blur(8px);
}
.form-title { font-size: 1.1rem; font-weight: 900; color: #fff; text-align: center; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: .375rem; }
.form-input, .form-select {
  width: 100%; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); color: #fff;
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  font-size: .875rem; font-family: inherit;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus, .form-select:focus { border-color: var(--brand); background: rgba(255,255,255,.11); }
.form-select option { color: #1a2234; background: #fff; }
.form-submit {
  width: 100%; padding: .9375rem; border-radius: var(--radius-md);
  background: var(--brand); color: #fff; font-weight: 800; font-size: .9rem;
  border: none; cursor: pointer; margin-top: .5rem;
  box-shadow: var(--shadow-brand);
  transition: background .2s, transform .2s;
  font-family: inherit;
}
.form-submit:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* Footer */
footer {
  background: var(--navy); padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: .875rem; max-width: 260px; }
.footer-contact { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-col-title { font-size: .8rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ── Animations on scroll ────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .mockup-wrap { display: none; }
  .hero-title { font-size: 2.5rem; }
  .qnav-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .c360-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .notif-grid { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .workflow-steps { grid-template-columns: repeat(4, 1fr); }
  .workflow-steps::before { display: none; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas .btn-outline { display: none; }
  .hamburger { display: flex; }
  .section-title { font-size: 1.875rem; }
  .hero-title { font-size: 2rem; }
  .cta-title { font-size: 2rem; }
  .qnav-grid, .feat-grid, .spec-grid, .sec-grid, .testi-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .c360-items { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}