/* ============================================================
   CLINICRISE DIGITAL — REDESIGNED STYLESHEET
   ============================================================ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

:root {
  --blue:       #0D5C7D;
  --blue-dark:  #083d54;
  --blue-mid:   #0a4d69;
  --teal:       #15B392;
  --teal-dark:  #0e8f74;
  --teal-light: #1ed4ad;
  --dark:       #080f1a;
  --dark-2:     #0d1625;
  --dark-3:     #111e2e;
  --dark-card:  rgba(255,255,255,.045);
  --dark-border:rgba(255,255,255,.08);
  --light:      #f5f9fc;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --grad:       linear-gradient(135deg, var(--blue), var(--teal));
  --grad-hero:  linear-gradient(135deg, #060e1a 0%, #0a1e32 40%, #0c2a3e 70%, #071520 100%);
  --r-sm: 12px; --r-md: 20px; --r-lg: 28px; --r-xl: 40px;
  --shadow-sm:  0 2px 16px rgba(0,0,0,.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,.12);
  --shadow-lg:  0 24px 80px rgba(0,0,0,.18);
  --shadow-glow:0 0 60px rgba(21,179,146,.18);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}
html, body {
  max-width: 100vw;
}
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', sans-serif; }
a { text-decoration: none; }
img { max-width: 100%; }
.hidden { display: none !important; }
.hide-sm { display: initial; }

/* ── CUSTOM CURSOR ── */
#cursor {
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s, background .2s;
  mix-blend-mode: difference;
}
#cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(21,179,146,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .35s cubic-bezier(.23,1,.32,1), width .3s, height .3s, border-color .3s;
}
body:has(a:hover) #cursor-follower,
body:has(button:hover) #cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--teal);
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 900; color: white;
  margin-bottom: 24px;
  animation: loader-pulse 1.2s ease-in-out infinite;
}
.loader-logo span { color: var(--teal); }
.loader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,.1);
  border-radius: 99px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 99px;
  animation: loader-bar 1.8s ease forwards;
}
@keyframes loader-bar { to { width: 100%; } }
@keyframes loader-pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all .35s ease;
}
nav.scrolled {
  background: rgba(8,15,26,.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--dark-border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900; font-size: 22px; color: white;
  letter-spacing: -.3px;
}
.logo span { color: var(--teal); }
.logo em { font-style: normal; font-weight: 400; color: rgba(255,255,255,.5); font-size: 16px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content:''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--teal); transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--teal) !important; color: white !important;
  padding: 10px 22px; border-radius: 99px;
  font-weight: 700 !important; font-size: 13px !important;
  transition: transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 20px rgba(21,179,146,.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,179,146,.5) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  display: flex; position: fixed; inset: 0; z-index: 999;
  background: rgba(8,15,26,.97); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin-bottom: 28px; }
.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800; color: white;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-cta {
  background: var(--teal); color: white !important;
  padding: 14px 36px; border-radius: 99px; font-size: 22px !important;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: white;
  padding: 15px 30px; border-radius: 99px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 32px rgba(21,179,146,.4);
  transition: all .25s; cursor: none; border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(21,179,146,.55); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); color: white;
  padding: 15px 28px; border-radius: 99px;
  font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px);
  transition: all .25s; cursor: none;
}
.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gray-700);
  padding: 15px 28px; border-radius: 99px;
  font-weight: 600; font-size: 15px;
  border: 1.5px solid var(--gray-200);
  transition: all .25s; cursor: none;
}
.btn-ghost:hover { background: var(--gray-50); transform: translateY(-2px); border-color: var(--blue); color: var(--blue); }

/* ── SECTIONS ── */
.section-light { background: var(--white); padding: 110px 24px; }
.section-dark  { background: var(--dark); padding: 110px 24px; }
.container { max-width: 1240px; margin: 0 auto; }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.section-tag::before { content:''; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; }
.section-tag.light { color: var(--teal-light); }
.section-tag.light::before { background: var(--teal-light); }
.section-title { font-size: clamp(28px,3.5vw,46px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; color: var(--gray-800); }
.section-title.light { color: white; }
.section-sub { font-size: 17px; color: var(--gray-600); line-height: 1.75; }
.section-sub.light { color: rgba(255,255,255,.65); }
.accent { color: var(--blue); }
.gradient-text {
  background: linear-gradient(135deg, var(--teal-light), #5eead4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── ANIMATIONS ── */
.anim-fade-up {
  opacity: 0; transform: translateY(36px);
  animation: fadeUp .8s ease forwards;
  animation-delay: var(--d, 0s);
}
.anim-fade-right {
  opacity: 0; transform: translateX(40px);
  animation: fadeRight .9s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp   { to { opacity:1; transform:translateY(0); } }
@keyframes fadeRight{ to { opacity:1; transform:translateX(0); } }

.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .75s ease, transform .75s ease;
}
.reveal       { transform: translateY(40px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
  transition-delay: var(--sd, 0s);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex; align-items: center;
  padding: 120px 32px 80px;
  position: relative; overflow: hidden;
}
#particle-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-grid {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 18px; border-radius: 99px;
  color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.badge-dot.teal { background: var(--teal); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.hero-title {
  font-size: clamp(38px,4.8vw,66px); font-weight: 900; line-height: 1.05;
  color: white; margin-bottom: 24px; letter-spacing: -.5px;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.68); line-height: 1.75; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); padding: 18px 28px;
  width: fit-content;
}
.stat-pill { text-align: center; padding: 0 24px; }
.stat-pill span { font-size: 30px; font-weight: 900; color: white; line-height: 1; }
.stat-pill sup { font-size: 18px; color: var(--teal-light); font-weight: 800; vertical-align: super; }
.stat-pill em { display: block; font-style: normal; font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.4); font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.7)} }

/* ── 3D HERO DASHBOARD ── */
.hero-visual { position: relative; }
.dashboard-3d {
  position: relative;
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
  animation: dashboard-float 7s ease-in-out infinite;
  transition: transform .1s ease;
}
@keyframes dashboard-float {
  0%,100%{transform:perspective(1400px) rotateY(-8deg) rotateX(4deg) translateY(0)}
  50%{transform:perspective(1400px) rotateY(-6deg) rotateX(5deg) translateY(-16px)}
}

/* Floating cards */
.float-card {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  color: white; white-space: nowrap;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.fc-1 { top: -28px; right: -20px; animation: float1 5s ease-in-out infinite; }
.fc-2 { bottom: 60px; right: -40px; animation: float2 6s ease-in-out infinite; }
.fc-3 { top: 40%; left: -48px;  animation: float3 4.5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-icon { font-size: 24px; }
.fc-label { font-size: 10px; color: rgba(255,255,255,.6); margin-bottom: 2px; }
.fc-value { font-size: 20px; font-weight: 900; color: var(--teal-light); }
.fc-trend { font-size: 11px; margin-top: 2px; }
.fc-trend.up { color: #4ade80; }

/* Browser window */
.browser-window {
  background: #0d1a2a; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
}
.bw-topbar {
  background: #111e2e; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bw-dots { display: flex; gap: 6px; }
.bw-dot { width: 10px; height: 10px; border-radius: 50%; }
.bw-dot.r{background:#ff5f57} .bw-dot.y{background:#febc2e} .bw-dot.g{background:#28c840}
.bw-url {
  flex: 1; background: rgba(255,255,255,.06); border-radius: 6px;
  padding: 5px 12px; font-size: 10px; color: rgba(255,255,255,.3); font-family: monospace;
}
.bw-body { display: grid; grid-template-columns: 48px 1fr; min-height: 340px; }
.bw-sidebar {
  background: #080f1a; padding: 14px 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border-right: 1px solid rgba(255,255,255,.05);
}
.bw-brand {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: white; margin-bottom: 8px;
}
.bw-brand span { color: var(--teal-light); }
.bw-nav-item {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  cursor: pointer; transition: background .2s;
}
.bw-nav-item:hover, .bw-nav-item.active { background: rgba(21,179,146,.15); }
.bw-nav-sep { width: 24px; height: 1px; background: rgba(255,255,255,.07); margin: 4px 0; }
.bw-main { padding: 14px; background: #0a1520; }
.bw-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.bw-greeting { font-size: 12px; font-weight: 800; color: white; }
.bw-date { font-size: 9px; color: rgba(255,255,255,.35); margin-top: 2px; }
.bw-live-dot {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700; color: var(--teal-light);
}
.bw-live-dot span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light);
  animation: pulse 1.5s infinite;
}
.bw-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }
.bw-kpi {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; padding: 8px; text-align: center;
}
.bw-kpi-icon { font-size: 12px; margin-bottom: 2px; }
.bw-kpi-num { font-size: 16px; font-weight: 800; color: white; line-height: 1; }
.bw-kpi-num.teal{color:var(--teal-light)} .bw-kpi-num.green{color:#4ade80}
.bw-kpi-label { font-size: 8px; color: rgba(255,255,255,.35); margin-top: 2px; }
.bw-appt-label { font-size: 8px; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.bw-appt-list { display: flex; flex-direction: column; gap: 5px; }
.bw-appt {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.04); border-radius: 8px; padding: 7px 8px;
}
.bw-av {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: white; flex-shrink: 0;
}
.bw-av.blue{background:var(--grad)} .bw-av.teal{background:linear-gradient(135deg,var(--teal-dark),#22d3ee)} .bw-av.purple{background:linear-gradient(135deg,#7c3aed,#a78bfa)}
.bw-aname { font-size: 9px; font-weight: 600; color: white; flex: 1; }
.bw-atype { font-size: 8px; color: rgba(255,255,255,.4); }
.bw-astatus { font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 99px; white-space: nowrap; }
.bw-astatus.confirmed{background:rgba(21,179,146,.15);color:var(--teal-light)}
.bw-astatus.done{background:rgba(74,222,128,.15);color:#4ade80}
.bw-astatus.pending{background:rgba(251,191,36,.15);color:#fbbf24}
.bw-ai-chip {
  margin-top: 8px;
  background: linear-gradient(135deg,rgba(13,92,125,.3),rgba(21,179,146,.2));
  border: 1px solid rgba(21,179,146,.25);
  border-radius: 8px; padding: 7px 10px;
  font-size: 9px; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 6px;
  animation: chip-glow 3s ease-in-out infinite;
}
.bw-ai-chip strong { color: var(--teal-light); }
.ai-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); animation: pulse 1.5s infinite; flex-shrink: 0; }
@keyframes chip-glow { 0%,100%{box-shadow:none} 50%{box-shadow:0 0 16px rgba(21,179,146,.2)} }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-2); border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border); overflow: hidden;
  padding: 16px 0;
}
.trust-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.trust-track span {
  flex-shrink: 0; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.55); padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.08);
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── PROBLEMS ── */
.problem-list { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.problem-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md); padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.problem-card:hover { transform: translateX(8px); border-color: rgba(21,179,146,.3); box-shadow: 0 4px 24px rgba(21,179,146,.1); }
.problem-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.problem-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.problem-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

/* Solution card */
.solution-card {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 50%, #0c5a78 100%);
  border-radius: var(--r-xl); padding: 52px 44px;
  color: white; position: relative; overflow: hidden;
}
.solution-glow {
  position: absolute; top: -80px; right: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(21,179,146,.25), transparent 70%);
  pointer-events: none;
}
.solution-badge {
  display: inline-block; background: var(--teal); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.solution-card h3 { font-size: 26px; font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.solution-card p  { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 28px; }
.solution-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.solution-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.check {
  width: 24px; height: 24px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 0;
}
.service-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-xl); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: all .35s; cursor: default;
}
.service-card::before {
  content:''; position: absolute; inset: 0; border-radius: inherit;
  background: var(--grad); opacity: 0; transition: opacity .35s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 32px 80px rgba(0,0,0,.5); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover * { position: relative; z-index: 2; }
.service-card:hover h3 { color: white; }
.service-card:hover p  { color: rgba(255,255,255,.8); }
.service-card:hover .sc-list li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.15); }
.service-card:hover .sc-arrow { color: white; }

.service-card.featured {
  background: var(--grad); border-color: transparent;
}
.service-card.featured::before { display: none; }
.service-card.featured h3,
.service-card.featured p { color: white; }
.service-card.featured p { color: rgba(255,255,255,.8); }
.service-card.featured .sc-list li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.15); }
.service-card.featured .sc-arrow { color: white; }

.service-card.cta-card { display: flex; align-items: center; justify-content: center; text-align: center; }
.cta-card-inner h3 { color: white; margin-bottom: 12px; font-size: 22px; }
.cta-card-inner p  { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; }

.sc-popular {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  background: rgba(255,255,255,.2); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.3);
}
.sc-number { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: 2px; margin-bottom: 16px; }
.sc-icon { font-size: 36px; margin-bottom: 20px; }
.service-card h3 { font-size: 19px; font-weight: 800; color: white; margin-bottom: 12px; }
.service-card p   { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 24px; }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sc-list li {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.55);
  padding: 6px 0; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 8px;
}
.sc-list li::before { content:'✓'; color: var(--teal-light); font-weight: 700; flex-shrink: 0; }
.sc-arrow {
  position: absolute; bottom: 24px; right: 28px;
  font-size: 22px; color: rgba(255,255,255,.25);
  transition: all .3s;
}
.service-card:hover .sc-arrow { right: 20px; color: white; }

/* ── CLINICOS ── */
.clinicos-header { text-align: center; max-width: 780px; margin: 0 auto 72px; }
.clinicos-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(13,92,125,.1), rgba(21,179,146,.1));
  border: 1.5px solid rgba(21,179,146,.25);
  padding: 6px 18px; border-radius: 99px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 20px;
}
.new-pill {
  background: var(--teal); color: white; font-size: 9px; font-weight: 800;
  padding: 2px 8px; border-radius: 99px;
}
.clinicos-showcase { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }

/* Full dashboard window */
.clinicos-window {
  background: #f8fafc; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.07);
  transform: perspective(1200px) rotateY(4deg) rotateX(1deg);
  animation: clinicos-tilt 9s ease-in-out infinite;
}
@keyframes clinicos-tilt {
  0%,100%{transform:perspective(1200px) rotateY(4deg) rotateX(1deg) translateY(0)}
  50%{transform:perspective(1200px) rotateY(3deg) rotateX(2deg) translateY(-8px)}
}
.clinicos-topbar {
  background: white; border-bottom: 1px solid var(--gray-100);
  padding: 10px 16px; display: flex; align-items: center; gap: 12px;
}
.cw-dots { display: flex; gap: 5px; }
.cw-dots span { width: 10px; height: 10px; border-radius: 50%; }
.cw-dots .r{background:#ff5f57} .cw-dots .y{background:#febc2e} .cw-dots .g{background:#28c840}
.cw-brand { display: flex; align-items: center; gap: 8px; margin-right: 8px; }
.cw-logo { font-size: 18px; }
.cw-app-name { font-size: 11px; font-weight: 700; color: var(--gray-800); line-height: 1; }
.cw-app-sub  { font-size: 9px; color: var(--gray-400); }
.cw-search {
  flex: 1; background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 6px 12px; font-size: 10px; color: var(--gray-400);
}
.cw-user { display: flex; align-items: center; gap: 8px; }
.cw-notif { font-size: 14px; }
.cw-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: white;
}
.cw-uname { font-size: 9px; font-weight: 600; color: var(--gray-700); }
.cw-email  { font-size: 8px; color: var(--gray-400); }
.cw-body { display: grid; grid-template-columns: 130px 1fr; min-height: 420px; }
.cw-sidebar {
  background: white; border-right: 1px solid var(--gray-100);
  padding: 12px 0; display: flex; flex-direction: column; gap: 2px;
}
.cw-sidebar-label {
  font-size: 9px; font-weight: 700; color: var(--gray-400);
  letter-spacing: 1px; padding: 8px 14px 4px; text-transform: uppercase;
}
.cw-sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-size: 11px; color: var(--gray-600); cursor: pointer;
  transition: all .15s; border-radius: 0;
}
.cw-sidebar-item:hover { background: var(--gray-50); color: var(--gray-800); }
.cw-sidebar-item.active {
  background: rgba(21,179,146,.08); color: var(--teal-dark); font-weight: 600;
  border-left: 3px solid var(--teal);
}
.cw-sidebar-item span { font-size: 12px; }
.cw-ai-badge {
  margin: auto 10px 12px;
  background: linear-gradient(135deg,rgba(13,92,125,.1),rgba(21,179,146,.1));
  border: 1px solid rgba(21,179,146,.2); border-radius: 10px;
  padding: 10px 10px; font-size: 10px; font-weight: 700;
  color: var(--teal-dark); display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.cw-ai-sub { font-size: 8px; font-weight: 400; color: var(--gray-500); width: 100%; margin-top: 2px; }
.cw-main { background: var(--gray-50); padding: 14px 16px; overflow: hidden; }
.cw-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 700; color: var(--teal); letter-spacing: 1px;
  margin-bottom: 6px;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  animation: pulse 1.5s infinite; flex-shrink: 0;
}
.cw-page-title { font-size: 16px; font-weight: 800; color: var(--gray-800); margin-bottom: 2px; }
.cw-page-sub   { font-size: 10px; color: var(--gray-500); margin-bottom: 12px; }
.cw-view-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: white; font-size: 9px; font-weight: 700;
  padding: 5px 12px; border-radius: 8px; margin-bottom: 14px;
}
.cw-kpi-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 7px; margin-bottom: 12px; }
.cw-kpi-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 10px 8px; text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.cw-kpi-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.cw-kpi-top span:first-child { font-size: 7px; font-weight: 700; color: var(--gray-500); letter-spacing: .5px; text-transform: uppercase; }
.cw-kpi-icon { font-size: 12px; }
.cw-kpi-icon.red{filter:hue-rotate(120deg)} .cw-kpi-icon.green{filter:none}
.cw-kpi-val { font-size: 18px; font-weight: 900; color: var(--gray-800); line-height: 1; }
.cw-kpi-val.teal{color:var(--teal)} .cw-kpi-val.orange{color:#f97316}
.cw-kpi-sub { font-size: 7px; color: var(--gray-400); margin-top: 3px; }
.cw-lower-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; }
.cw-schedule { background: white; border: 1px solid var(--gray-200); border-radius: 12px; padding: 12px; }
.cw-schedule-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.cw-schedule-title { font-size: 11px; font-weight: 700; color: var(--gray-800); }
.cw-schedule-sub   { font-size: 9px; color: var(--gray-400); }
.cw-schedule-count { font-size: 9px; color: var(--teal); font-weight: 600; }
.cw-schedule-empty { text-align: center; padding: 20px 0; font-size: 10px; color: var(--gray-400); }
.empty-icon { font-size: 24px; margin-bottom: 6px; opacity: .4; }
.empty-sub  { font-size: 8px; color: var(--gray-300); margin-top: 4px; }
.cw-right-panel { display: flex; flex-direction: column; gap: 10px; }
.cw-upcoming { background: white; border: 1px solid var(--gray-200); border-radius: 12px; padding: 12px; }
.cw-upcoming-hdr { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; }
.cw-upcoming-hdr a { font-size: 9px; color: var(--teal); font-weight: 600; }
.cw-appt-item { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-top: 1px solid var(--gray-100); }
.cw-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.cw-dot.teal{background:var(--teal)}
.cw-appt-name { font-size: 10px; font-weight: 600; color: var(--gray-800); }
.cw-appt-type { font-size: 8px; color: var(--gray-400); }
.cw-ai-assistant {
  background: linear-gradient(135deg, var(--teal-dark), var(--blue));
  border-radius: 12px; padding: 14px 12px; color: white;
}
.cw-ai-hdr { font-size: 9px; font-weight: 700; letter-spacing: 1px; opacity: .8; margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.cw-ai-title { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.cw-ai-desc  { font-size: 9px; opacity: .8; line-height: 1.5; margin-bottom: 10px; }
.cw-ai-btn   { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: white; font-size: 9px; font-weight: 700; padding: 5px 12px; border-radius: 8px; display: inline-block; }

/* ── RESPONSIVE: MOBILE / TABLET FIXES ── */
@media (max-width: 880px) {
  /* Show mobile hamburger, hide desktop links */
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; cursor: pointer; }

  /* Ensure nav inner padding fits small screens */
  .nav-inner { padding: 0 18px; }

  /* Mobile nav full-screen adjustments */
  .mobile-nav a { font-size: 22px; }
  .mobile-cta { padding: 12px 28px; font-size: 18px; }

  /* Stack hero into single column and reduce padding */
  .hero-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .hero-content { order: 1; }
  .hero-visual  { order: 2; width: 100%; }
  #hero { padding: 64px 18px 48px; min-height: calc(100vh - 40px); }
  .hero-badge { margin-bottom: 18px; }
  .hero-title { font-size: clamp(28px,6.5vw,44px); }
  .hero-sub  { font-size: 16px; }

  /* Make loader content slightly smaller and centered on small screens */
  .loader-logo { font-size: 26px; margin-bottom: 14px; }
  .loader-bar { width: 160px; }

  /* Trust bar and many-grid collapses */
  .two-col { grid-template-columns: 1fr !important; gap: 28px; }
  .services-grid { grid-template-columns: 1fr !important; }
  .results-grid  { grid-template-columns: 1fr !important; }

  /* Hide decorative line breaks on small screens */
  .hide-sm { display: none !important; }
}

@media (max-width: 480px) {
  /* Slightly larger tap targets */
  .mobile-nav a { font-size: 20px; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { padding: 12px 18px; font-size: 15px; }
}

/* Disable custom cursor on touch-only devices to avoid odd behavior */
@media (hover: none), (pointer: coarse) {
  #cursor, #cursor-follower { display: none !important; }
}

/* ClinicOS features sidebar */
.clinicos-features { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.clinicos-feat {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--gray-100);
  transition: background .2s;
}
.clinicos-feat:first-child { padding-top: 0; }
.clinicos-feat:last-child { border-bottom: none; }
.cf-icon {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  transition: transform .25s;
}
.clinicos-feat:hover .cf-icon { transform: scale(1.1) rotate(-4deg); }
.cf-icon.blue  {background:linear-gradient(135deg,rgba(13,92,125,.12),rgba(13,92,125,.05))}
.cf-icon.teal  {background:linear-gradient(135deg,rgba(21,179,146,.12),rgba(21,179,146,.05))}
.cf-icon.purple{background:linear-gradient(135deg,rgba(124,58,237,.1),rgba(124,58,237,.04))}
.cf-icon.orange{background:linear-gradient(135deg,rgba(234,88,12,.1),rgba(234,88,12,.04))}
.cf-icon.green {background:linear-gradient(135deg,rgba(22,163,74,.1),rgba(22,163,74,.04))}
.cf-icon.pink  {background:linear-gradient(135deg,rgba(219,39,119,.1),rgba(219,39,119,.04))}
.cf-body h4 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.cf-body p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.clinicos-cta { display: flex; gap: 12px; padding-top: 24px; flex-wrap: wrap; }

/* ── RESULTS ── */
.results-section { position: relative; overflow: hidden; }
.results-section::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(21,179,146,.06) 0%, transparent 70%);
}
.results-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  position: relative; z-index: 1;
}
.result-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-xl); padding: 40px 28px; text-align: center;
  transition: all .3s; cursor: default;
}
.result-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.08); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.result-icon { font-size: 36px; margin-bottom: 16px; }
.result-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px; font-weight: 900; color: white; line-height: 1; margin-bottom: 12px;
}
.result-label { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── WHY ── */
.why-card {
  background: var(--grad); border-radius: var(--r-xl); padding: 52px 44px;
  color: white; position: relative; overflow: hidden;
}
.why-card::after {
  content:''; position: absolute; bottom:-60px; right:-60px;
  width:200px; height:200px; background:rgba(255,255,255,.06); border-radius:50%;
}
.why-quote { font-size: 72px; line-height: .8; margin-bottom: 16px; opacity: .25; font-family: serif; }
.why-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; line-height: 1.25; }
.why-card p  { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 28px; }
.founder-row { display: flex; align-items: center; gap: 14px; }
.founder-avatar {
  width: 52px; height: 52px; background: rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; border: 2px solid rgba(255,255,255,.3);
}
.founder-name { font-weight: 700; font-size: 15px; }
.founder-role { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.why-mini-stat {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md);
  padding: 18px 22px; margin-top: 24px; display: inline-block;
}
.wms-label { font-size: 11px; color: rgba(255,255,255,.65); }
.wms-value { font-size: 28px; font-weight: 900; margin: 4px 0; }
.wms-sub   { font-size: 12px; color: var(--teal-light); font-weight: 600; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--gray-50); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md); padding: 22px 24px;
  transition: all .3s;
}
.why-point:hover { border-color: rgba(21,179,146,.3); box-shadow: 0 4px 24px rgba(21,179,146,.1); transform: translateX(4px); }
.wp-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--grad); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.wp-body h4 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.wp-body p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ── PRICING ── */
.pricing-section { position: relative; }
.pricing-section::before {
  content:''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(21,179,146,.07) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-toggle {
  display: flex; gap: 4px; justify-content: center; margin-bottom: 60px;
  background: rgba(255,255,255,.05); border: 1px solid var(--dark-border);
  border-radius: 99px; padding: 6px; width: fit-content; margin: 0 auto 60px;
}
.ptab {
  padding: 11px 28px; border-radius: 99px; border: none;
  background: transparent; color: rgba(255,255,255,.55);
  font-size: 14px; font-weight: 600; cursor: none;
  transition: all .3s; font-family: 'Inter', sans-serif;
}
.ptab.active { background: var(--teal); color: white; box-shadow: 0 4px 20px rgba(21,179,146,.4); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.pricing-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-xl); padding: 40px 36px;
  position: relative; transition: all .35s;
}
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(21,179,146,.3); box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 40px rgba(21,179,146,.1); }
.pricing-card.popular {
  border-color: var(--teal); background: rgba(21,179,146,.07);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-10px); }
.pc-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white; font-size: 11px; font-weight: 700;
  padding: 5px 18px; border-radius: 99px; white-space: nowrap;
}
.pc-plan  { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.pc-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px; font-weight: 900; color: white; line-height: 1; margin-bottom: 12px;
}
.pc-price span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.45); }
.pc-desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--dark-border); }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.4; }
.pc-features li::before { content:'✓'; color: var(--teal-light); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pc-cta {
  display: block; text-align: center; padding: 14px;
  border-radius: var(--r-md); font-size: 14px; font-weight: 700;
  background: rgba(255,255,255,.08); color: white;
  border: 1px solid var(--dark-border);
  transition: all .25s; cursor: none;
}
.pc-cta:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.pricing-card.popular .pc-cta {
  background: var(--teal); border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(21,179,146,.4);
}
.pricing-card.popular .pc-cta:hover { background: var(--teal-dark); }
.pricing-note {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-top: 48px; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6;
}
.pricing-note span { font-size: 28px; }
.pricing-note a { color: var(--teal-light); font-weight: 600; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: white; border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 36px 32px;
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(21,179,146,.2); }
.testi-card.featured {
  background: var(--grad); border-color: transparent; color: white;
}
.testi-stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 15px; line-height: 1.75; color: var(--gray-600); margin-bottom: 24px; font-style: italic; }
.testi-card.featured p { color: rgba(255,255,255,.85); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white; flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: rgba(255,255,255,.2); }
.testi-author strong { font-size: 14px; font-weight: 700; color: var(--gray-800); display: block; }
.testi-card.featured .testi-author strong { color: white; }
.testi-clinic { font-size: 12px; color: var(--gray-400); }
.testi-card.featured .testi-clinic { color: rgba(255,255,255,.65); }

/* ── AUDIT FORM ── */
.audit-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.audit-check { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; color: var(--gray-700); }
.check-dot {
  width: 28px; height: 28px; background: var(--grad); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.audit-guarantee {
  display: inline-flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg,rgba(13,92,125,.06),rgba(21,179,146,.06));
  border: 1.5px solid rgba(21,179,146,.2); border-radius: var(--r-md);
  padding: 20px 24px;
}
.gift-icon { font-size: 32px; }
.audit-guarantee strong { font-size: 15px; font-weight: 700; color: var(--gray-800); display: block; }
.audit-guarantee p { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

.audit-form-card {
  background: white; border-radius: var(--r-xl); padding: 48px 44px;
  box-shadow: 0 32px 80px rgba(0,0,0,.12); border: 1.5px solid var(--gray-100);
  position: relative; overflow: hidden;
}
.form-glow {
  position: absolute; top: -80px; right: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(21,179,146,.08), transparent 70%);
  pointer-events: none;
}
.form-title { font-size: 24px; font-weight: 800; color: var(--gray-800); margin-bottom: 8px; }
.form-sub   { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 8px;
}
.form-group input {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
  font-size: 15px; font-family: 'Inter', sans-serif; color: var(--gray-800);
  outline: none; transition: all .2s; background: var(--gray-50);
  cursor: text;
}
.form-group input:focus { border-color: var(--teal); background: white; box-shadow: 0 0 0 4px rgba(21,179,146,.12); }
.submit-btn {
  width: 100%; padding: 17px;
  background: var(--grad); color: white;
  font-size: 16px; font-weight: 700; border: none; border-radius: var(--r-sm);
  cursor: none; transition: all .25s; box-shadow: 0 8px 28px rgba(13,92,125,.3);
  font-family: 'Inter', sans-serif;
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(13,92,125,.45); }
.form-note { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 14px; }

/* ── FOOTER ── */
footer { background: var(--dark-2); padding: 80px 24px 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 64px;
  border-bottom: 1px solid var(--dark-border);
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 900; color: white; margin-bottom: 12px;
}
.footer-logo span { color: var(--teal); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-contacts a, .footer-contacts span {
  font-size: 13px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.footer-contacts a:hover { color: var(--teal); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; background: rgba(255,255,255,.07);
  border: 1px solid var(--dark-border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: all .2s;
}
.footer-socials a:hover { background: var(--teal); color: white; border-color: var(--teal); transform: translateY(-3px); }
.footer-col h5 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.3);
}
.footer-tagline-bottom { color: var(--teal); font-weight: 600; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  animation: wa-pulse 3s ease-in-out infinite;
  cursor: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(-110%) scale(1); }
@keyframes wa-pulse { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.wa-tooltip {
  position: absolute; right: 0; background: var(--gray-800);
  color: white; font-size: 12px; font-weight: 600; padding: 8px 14px;
  border-radius: 8px; white-space: nowrap; opacity: 0;
  transform: translateX(-108%) scale(.95);
  transition: all .3s; pointer-events: none;
}
.wa-tooltip::after {
  content:''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: var(--gray-800);
}

/* ── TILT CARD ── */
.tilt-card { transform-style: preserve-3d; }

/* ── MAGNETIC ── */
.magnetic { transition: transform .4s cubic-bezier(.23,1,.32,1); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .clinicos-showcase { grid-template-columns: 1fr; }
  .clinicos-window { transform: none; }
  .cw-kpi-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  html, body { max-width: 100vw; overflow-x: hidden; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-grid, .hero-visual, .dashboard-3d, .browser-window, .trust-track, .results-grid, .pricing-grid, .footer-grid { min-width: 0; }
  .hero-visual { overflow: hidden; }
  .hero-stats { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    padding: 16px 12px;
    margin: 0 auto 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
  }
  .hero-stats .stat-pill { padding: 12px 8px;
    min-width: 0;
  }
  .hero-stats .stat-pill span { font-size: 20px; }
  .hero-stats .stat-pill em { font-size: 10px; }
  .hero-stats .stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }
  .hero-scroll-hint {
    display: none;
  }
  .hero-btns { justify-content: flex-start; }
  .hero-title { font-size: clamp(30px,6vw,42px); line-height: 1.08; }
  .hero-sub { margin-bottom: 30px; }
  .hero-badge { margin-bottom: 16px; }
  .hero-btns a { min-width: 160px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hide-sm { display: none; }
  #cursor, #cursor-follower { display: none; }
  body { cursor: default; }
  .btn-primary, .btn-outline, .btn-ghost, .submit-btn, .wa-float, .ptab, .pc-cta, .magnetic, .nav-cta { cursor: pointer; }
  .form-group input { cursor: text; }
}
@media (max-width: 640px) {
  .section-light, .section-dark { padding: 72px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .audit-form-card { padding: 32px 24px; }
  .hero-stats { flex-wrap: wrap; }
  .cw-body { grid-template-columns: 1fr; }
  .cw-sidebar { display: none; }
  .cw-kpi-grid { grid-template-columns: repeat(3,1fr); }
  .cw-lower-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}



