/* ============================================================
   BUCLEO — Main Stylesheet
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A1628;
  --navy-2: #0F1F3D;
  --navy-3: #162850;
  --cyan: #00C2E0;
  --cyan-dim: #008BAA;
  --cyan-light: rgba(0,194,224,0.1);
  --white: #ffffff;
  --off-white: #F4F7FC;
  --text-muted: #7A8BAD;
  --border: rgba(255,255,255,0.07);
  --green: #2DD4A7;
  --amber: #F59E0B;
  --red: #EF4444;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-2); }
::-webkit-scrollbar-thumb { background: rgba(0,194,224,0.3); border-radius: 3px; }

/* CURSOR */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--cyan); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, opacity 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(0,194,224,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
}
.cursor.hover { transform: scale(2.5); }
.cursor-ring.hover { transform: scale(1.5); }

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.22; pointer-events: none; z-index: 1;
}

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(10,22,40,0.85);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10,22,40,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; cursor: none; }
.nav-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.85; }

.nav-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-menu a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; font-weight: 400;
  transition: color 0.2s; cursor: none;
  position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--cyan);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--white); }
.nav-menu a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9px; padding: 8px 18px;
  font-size: 13px; font-weight: 500; cursor: none;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}
.btn-nav-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.btn-nav-cta {
  background: var(--cyan); color: var(--navy);
  border: none; border-radius: 9px; padding: 9px 20px;
  font-size: 13px; font-weight: 700; cursor: none;
  font-family: var(--font-display);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,194,224,0.4); }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(10,22,40,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  display: none; flex-direction: column; gap: 16px;
  z-index: 999;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--text-muted); text-decoration: none;
  font-size: 16px; padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s; cursor: none;
}
.nav-drawer a:hover { color: var(--white); }
.nav-drawer .btn-nav-cta { margin-top: 8px; text-align: center; display: block; padding: 13px; }

/* ============================================================ BUTTONS */
.btn-primary {
  background: var(--cyan); color: var(--navy);
  border: none; border-radius: 12px; padding: 15px 30px;
  font-size: 15px; font-weight: 700; font-family: var(--font-display);
  cursor: none; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,194,224,0.45); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 15px 26px;
  font-size: 15px; cursor: none; font-family: var(--font-body);
  transition: background 0.2s, border-color 0.2s; text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.35); }

/* ============================================================ LAYOUT */
.page-section { position: relative; z-index: 2; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 60px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--cyan); }
.section-title.center { text-align: center; }
.section-lead {
  font-size: 16px; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 48px;
}
.section-lead.center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================ REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.from-left { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.visible.from-left, .reveal.visible.from-right { transform: translateX(0); }

/* ============================================================ HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px 60px 80px;
  position: relative; overflow: hidden;
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-1 { width: 600px; height: 600px; background: var(--cyan); top: -200px; left: -200px; opacity: 0.28; animation: drift1 12s ease-in-out infinite; }
.orb-2 { width: 500px; height: 500px; background: #1a4fa0; bottom: -150px; right: -150px; opacity: 0.28; animation: drift2 15s ease-in-out infinite; }
.orb-3 { width: 320px; height: 320px; background: var(--cyan); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.05; animation: pulse 6s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,40px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-60px)} }
@keyframes pulse { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.4)} }
.grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,194,224,0.1); border: 1px solid rgba(0,194,224,0.25);
  border-radius: 30px; padding: 6px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800; line-height: 1.04; letter-spacing: -3px;
  margin-bottom: 24px; animation: fadeUp 0.8s 0.15s ease both;
}
.hero-h1 em { font-style: normal; color: var(--cyan); position: relative; }
.hero-h1 em::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--cyan), transparent); border-radius: 2px;
}
.hero-sub {
  font-size: 18px; line-height: 1.7; color: var(--text-muted);
  max-width: 620px; margin: 0 auto 40px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-cards {
  position: relative; z-index: 2; margin-top: 64px;
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}
.float-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 20px 22px; backdrop-filter: blur(20px);
  min-width: 200px; transition: border-color 0.3s;
}
.float-card:hover { border-color: rgba(0,194,224,0.2); }
.float-card.accent { border-color: rgba(0,194,224,0.22); background: rgba(0,194,224,0.05); min-width: 320px; }
.fc-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; }
.fc-patient { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #0F2A6B, #185FA5);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  font-family: var(--font-display); flex-shrink: 0;
}
.fc-name { font-size: 14px; font-weight: 600; }
.fc-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.fc-badge {
  margin-left: auto; background: rgba(45,212,167,0.15);
  border: 1px solid rgba(45,212,167,0.3); border-radius: 20px;
  padding: 3px 9px; font-size: 9px; font-weight: 800;
  color: var(--green); text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}
.fc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.fc-stat { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px; text-align: center; }
.fc-stat-val { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--cyan); }
.fc-stat-lbl { font-size: 9px; color: var(--text-muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.metric-big { font-family: var(--font-display); font-size: 36px; font-weight: 800; letter-spacing: -1px; }
.metric-big em { font-style: normal; color: var(--cyan); }
.metric-lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.metric-trend { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 8px; }
.notif-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.notif-row:last-child { margin-bottom: 0; }
.ni { width: 34px; height: 34px; border-radius: 9px; background: rgba(0,194,224,0.15); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.nt h5 { font-size: 12px; font-weight: 600; }
.nt p { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.ntm { margin-left: auto; font-size: 10px; color: var(--text-muted); white-space: nowrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both; z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cyan), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ============================================================ STRIP */
.strip {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.strip-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.strip-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -1px; }
.strip-num em { font-style: normal; color: var(--cyan); }
.strip-lbl { font-size: 12px; color: var(--text-muted); text-align: center; }
.strip-div { width: 1px; height: 40px; background: var(--border); }

/* ============================================================ PROBLEM */
.alt-bg { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.prob-body { font-size: 16px; line-height: 1.75; color: var(--text-muted); }
.prob-body strong { color: var(--white); font-weight: 500; }
.prob-body + .prob-body { margin-top: 16px; }
.stat-stack { display: flex; flex-direction: column; gap: 14px; }
.stat-row {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px;
  display: flex; align-items: center; gap: 20px;
  transition: border-color 0.3s, transform 0.3s; cursor: default;
}
.stat-row:hover { border-color: rgba(0,194,224,0.3); transform: translateX(8px); }
.stat-num { font-family: var(--font-display); font-size: 40px; font-weight: 800; letter-spacing: -2px; min-width: 90px; }
.stat-num em { font-style: normal; color: var(--cyan); }
.stat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================ BUCLE */
.bucle-center { text-align: center; }
.bucle-flow { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin: 48px 0; }
.bn { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bn-c {
  width: 88px; height: 88px; border-radius: 50%;
  border: 1.5px solid rgba(0,194,224,0.3); background: rgba(0,194,224,0.05);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform 0.3s, border-color 0.3s; cursor: default;
}
.bn-c:hover { transform: scale(1.12); border-color: var(--cyan); }
.bn-c.active { background: var(--cyan); border-color: var(--cyan); }
.bn-icon { font-size: 28px; }
.bn-num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); border: 1px solid var(--cyan);
  font-size: 10px; font-weight: 800; color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}
.bn-lbl { font-size: 12px; font-weight: 600; color: var(--text-muted); max-width: 80px; text-align: center; line-height: 1.3; }
.bn-arr { color: rgba(0,194,224,0.3); font-size: 24px; margin: 0 12px; margin-bottom: 36px; flex-shrink: 0; }
.bucle-proof {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,194,224,0.08); border: 1px solid rgba(0,194,224,0.2);
  border-radius: 50px; padding: 10px 22px;
  font-size: 14px; font-weight: 600;
}
.bucle-proof em { font-style: normal; color: var(--cyan); }

/* ============================================================ MODULES */
.mod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.mod-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative; overflow: hidden; cursor: default;
}
.mod-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 130px; height: 130px; background: var(--cyan);
  border-radius: 50%; opacity: 0; filter: blur(50px);
  transition: opacity 0.4s; pointer-events: none;
}
.mod-card:hover { border-color: rgba(0,194,224,0.3); transform: translateY(-4px); background: rgba(0,194,224,0.04); }
.mod-card:hover::before { opacity: 0.14; }
.mod-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: rgba(0,194,224,0.1); border: 1px solid rgba(0,194,224,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.mod-pill {
  position: absolute; top: 20px; right: 20px;
  background: rgba(0,194,224,0.1); border: 1px solid rgba(0,194,224,0.2);
  border-radius: 20px; padding: 3px 9px;
  font-size: 9px; font-weight: 800; color: var(--cyan);
  letter-spacing: 0.8px; text-transform: uppercase;
}
.mod-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.mod-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.mod-features { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.mf { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-muted); }
.mf::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ============================================================ KANBAN */
.kanban { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; margin-top: 32px; }
.kc { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: 14px; padding: 14px 12px; }
.kc-head { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.kc-count { background: rgba(0,194,224,0.15); color: var(--cyan); border-radius: 10px; padding: 2px 7px; font-size: 10px; font-weight: 800; }
.kc-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 9px; padding: 10px 11px; margin-bottom: 8px; cursor: default; transition: border-color 0.2s, transform 0.2s; }
.kc-card:hover { border-color: rgba(0,194,224,0.3); transform: translateY(-2px); }
.kcc-name { font-size: 12px; font-weight: 600; }
.kcc-sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.kcc-seg { display: inline-block; margin-top: 5px; font-size: 9px; font-weight: 800; border-radius: 8px; padding: 2px 7px; text-transform: uppercase; letter-spacing: 0.3px; }
.seg-vip { background: rgba(251,191,36,0.15); color: #FBBF24; }
.seg-act { background: rgba(45,212,167,0.15); color: var(--green); }
.seg-lat { background: rgba(0,194,224,0.12); color: var(--cyan); }
.seg-risk { background: rgba(239,68,68,0.15); color: var(--red); }

/* ============================================================ DASHBOARD */
.dash-top { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 16px; }
.dc {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px;
  transition: border-color 0.3s; cursor: default;
}
.dc:hover { border-color: rgba(0,194,224,0.25); }
.dc-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.dc-val { font-family: var(--font-display); font-size: 32px; font-weight: 800; letter-spacing: -1.5px; }
.dc-val em { font-style: normal; color: var(--cyan); font-size: 18px; }
.dc-ch { font-size: 12px; font-weight: 600; margin-top: 5px; }
.dash-bot { display: grid; grid-template-columns: 1.3fr 1fr; gap: 14px; }
.db-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.db-card h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 18px; }
.fbar { margin-bottom: 12px; }
.fbar-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; }
.fbar-row span:first-child { color: rgba(255,255,255,0.6); }
.fbar-row span:last-child { color: var(--white); font-weight: 700; font-family: var(--font-display); }
.fbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; height: 6px; }
.fbar-fill { height: 6px; border-radius: 3px; }
.fc-cyan { background: var(--cyan); }
.fc-blue { background: #3A7FD5; }
.fc-amber { background: var(--amber); }
.risk-list { display: flex; flex-direction: column; gap: 12px; }
.ri { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--border); cursor: default; }
.ri:last-child { border-bottom: none; padding-bottom: 0; }
.ri:hover .ri-act { opacity: 1; }
.rd { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rd-r { background: var(--red); }
.rd-a { background: var(--amber); }
.rd-g { background: rgba(255,255,255,0.25); }
.ri-name { font-size: 13px; font-weight: 600; }
.ri-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.ri-act { margin-left: auto; font-size: 11px; color: var(--cyan); font-weight: 700; cursor: pointer; flex-shrink: 0; opacity: 0.6; transition: opacity 0.2s; }

/* ============================================================ PLANS */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.plan-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 24px; padding: 32px;
  transition: border-color 0.3s, transform 0.3s; position: relative;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured { border-color: rgba(0,194,224,0.4); background: rgba(0,194,224,0.05); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--navy);
  border-radius: 20px; padding: 5px 16px;
  font-size: 11px; font-weight: 800; font-family: var(--font-display);
  letter-spacing: 0.5px; white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.plan-price { font-family: var(--font-display); font-size: 48px; font-weight: 800; letter-spacing: -2px; margin-bottom: 4px; }
.plan-price em { font-style: normal; font-size: 18px; font-weight: 400; color: var(--text-muted); letter-spacing: 0; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.plan-div { height: 1px; background: var(--border); margin-bottom: 20px; }
.plan-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pi { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.pi-check { color: var(--green); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.pi-no { color: rgba(255,255,255,0.2); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.pi.off { opacity: 0.4; }
.plan-cta { width: 100%; padding: 13px; border-radius: 11px; font-size: 14px; font-weight: 700; font-family: var(--font-display); cursor: none; transition: transform 0.2s, box-shadow 0.2s; border: none; }
.plan-cta.main { background: var(--cyan); color: var(--navy); }
.plan-cta.main:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,194,224,0.4); }
.plan-cta.ghost { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid rgba(255,255,255,0.12); }
.plan-cta.ghost:hover { background: rgba(255,255,255,0.1); }
.plans-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-muted); }
.plans-note em { font-style: normal; color: var(--white); }

/* ============================================================ FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-align: left; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: none; transition: color 0.2s;
}
.faq-q:hover { color: var(--cyan); }
.faq-q.open { color: var(--cyan); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s, border-color 0.3s; font-size: 14px; }
.faq-q.open .faq-icon { transform: rotate(45deg); border-color: var(--cyan); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.75; padding-bottom: 22px; }
.faq-a p strong { color: var(--white); font-weight: 500; }

/* ============================================================ CTA FINAL */
.cta-box {
  background: rgba(0,194,224,0.05); border: 1px solid rgba(0,194,224,0.15);
  border-radius: 32px; padding: 80px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,224,0.12), transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,52px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 18px; position: relative; z-index: 1; }
.cta-box h2 em { font-style: normal; color: var(--cyan); }
.cta-box p { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 520px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-trust { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.3); position: relative; z-index: 1; }

/* ============================================================ MODAL */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--navy-2); border: 1px solid rgba(0,194,224,0.2);
  border-radius: 24px; padding: 48px; max-width: 500px; width: 100%;
  transform: translateY(20px); transition: transform 0.3s;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.06); border: none;
  color: var(--text-muted); border-radius: 8px; width: 32px; height: 32px;
  font-size: 16px; cursor: none; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.modal h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.modal p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-muted); display: block; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 16px; color: var(--white); font-family: var(--font-body);
  font-size: 15px; outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(0,194,224,0.5); }
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 16px; color: var(--white); font-family: var(--font-body);
  font-size: 15px; outline: none; transition: border-color 0.2s; cursor: none;
  appearance: none;
}
.form-select:focus { border-color: rgba(0,194,224,0.5); }
.form-select option { background: var(--navy-2); }
.btn-submit {
  width: 100%; background: var(--cyan); color: var(--navy);
  border: none; border-radius: 11px; padding: 14px;
  font-size: 15px; font-weight: 700; font-family: var(--font-display);
  cursor: none; margin-top: 8px; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,194,224,0.4); }
.form-success { text-align: center; padding: 20px 0; }
.form-success .success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h4 { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ============================================================ TOAST */
.toast {
  position: fixed; bottom: 30px; right: 30px; z-index: 3000;
  background: var(--navy-3); border: 1px solid rgba(0,194,224,0.3);
  border-radius: 14px; padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  transform: translateY(80px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s;
  max-width: 320px; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 20px; flex-shrink: 0; }
.toast-text h5 { font-size: 13px; font-weight: 700; }
.toast-text p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================ FOOTER */
.footer {
  border-top: 1px solid var(--border); padding: 60px 0 32px;
  position: relative; z-index: 2;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 32px; filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 220px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.3px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; cursor: none; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.25); text-decoration: none; cursor: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .mod-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-menu, .nav-actions .btn-nav-ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-cards { flex-direction: column; align-items: center; }
  .float-card.accent { min-width: 280px; }
  .container { padding: 0 24px; }
  .section-pad { padding: 70px 0; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .dash-top, .dash-bot, .plans-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .kanban { grid-template-columns: repeat(2,1fr); }
  .strip { gap: 32px; padding: 24px; }
  .strip-div { display: none; }
  .cta-box { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-h1 { letter-spacing: -2px; }
  .kanban { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
}
