/* ═══════════════════════════════════════════════════════════
   NEXUS AI — Premium Dark Futuristic Design System
   Palette: Deep Void + Electric Cyan + Plasma Violet
   Fonts: Syne (display) + Outfit (body)
═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #050508;
  --bg2:       #080810;
  --bg3:       #0d0d1a;
  --surface:   #0f0f1e;
  --surface2:  #141428;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(0,245,255,0.15);
  --cyan:      #00F5FF;
  --violet:    #7B2FFF;
  --orange:    #FF6B2B;
  --text:      #E8E4F0;
  --text2:     #9090B0;
  --text3:     #5a5a7a;
  --grad:      linear-gradient(135deg, #00F5FF, #7B2FFF);
  --grad2:     linear-gradient(135deg, #7B2FFF, #FF6B2B);
  --glow-c:    rgba(0,245,255,0.15);
  --glow-v:    rgba(123,47,255,0.15);
  --radius:    16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p  { color: var(--text2); line-height: 1.7; }
a  { text-decoration: none; color: inherit; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 24px rgba(0,245,255,0.25), 0 0 48px rgba(123,47,255,0.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0,245,255,0.4), 0 0 72px rgba(123,47,255,0.25);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn--ghost:hover {
  background: rgba(0,245,255,0.06);
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn--xl { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  color: var(--cyan); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--text2); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { display: flex; align-items: center; }
.logo-text {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.3rem; letter-spacing: 0.05em; color: var(--text);
}
.logo-ai { color: var(--cyan); }
.nav__links {
  display: flex; list-style: none; gap: 32px; margin-left: auto;
}
.nav__links a {
  color: var(--text2); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--cyan); }
.nav__cta { display: flex; gap: 12px; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 600px; flex: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.2);
  font-size: 0.85rem; color: var(--cyan); font-weight: 500;
  margin-bottom: 28px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0,245,255,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,245,255,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(0,245,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,245,255,0); }
}
.hero__headline { margin-bottom: 24px; letter-spacing: -0.02em; }
.hero__sub { font-size: 1.1rem; color: var(--text2); margin-bottom: 40px; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.stat { flex: 1; min-width: 100px; text-align: center; padding: 0 16px; }
.stat__num {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--cyan);
  line-height: 1;
}
.stat__label { font-size: 0.75rem; color: var(--text3); margin-top: 4px; display: block; }
.stat__div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── HERO VISUAL ── */
.hero__visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px; z-index: 1;
}
.agent-orb {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.orb-core {
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(0,245,255,0.9), rgba(123,47,255,0.8), rgba(5,5,8,0.9));
  box-shadow:
    0 0 60px rgba(0,245,255,0.5),
    0 0 120px rgba(123,47,255,0.3),
    inset 0 0 40px rgba(0,245,255,0.2);
  animation: orb-breathe 4s ease-in-out infinite;
  position: relative; z-index: 3;
}
.orb-core::after {
  content: '';
  position: absolute; inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 60%);
}
@keyframes orb-breathe {
  0%,100% { transform: scale(1); box-shadow: 0 0 60px rgba(0,245,255,0.5), 0 0 120px rgba(123,47,255,0.3); }
  50%      { transform: scale(1.06); box-shadow: 0 0 80px rgba(0,245,255,0.7), 0 0 160px rgba(123,47,255,0.4); }
}
.orb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent; top: 50%; left: 50%;
}
.r1 {
  width: 220px; height: 220px; margin: -110px 0 0 -110px;
  border-color: rgba(0,245,255,0.3);
  animation: spin 8s linear infinite;
}
.r1::before {
  content: ''; position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
}
.r2 {
  width: 300px; height: 300px; margin: -150px 0 0 -150px;
  border-color: rgba(123,47,255,0.25);
  animation: spin 14s linear infinite reverse;
}
.r2::before {
  content: ''; position: absolute; top: -4px; left: 30%;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--violet); box-shadow: 0 0 10px var(--violet);
}
.r3 {
  width: 400px; height: 400px; margin: -200px 0 0 -200px;
  border-color: rgba(0,245,255,0.1);
  animation: spin 22s linear infinite;
}
.r3::before {
  content: ''; position: absolute; bottom: -4px; right: 20%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 10px var(--orange);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orb-glow {
  position: absolute; width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,255,0.08) 0%, rgba(123,47,255,0.05) 50%, transparent 70%);
  animation: orb-breathe 4s ease-in-out infinite;
}

/* ── FLOAT CARDS ── */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 12px;
  background: rgba(13,13,26,0.9);
  border: 1px solid var(--border2);
  backdrop-filter: blur(12px);
  font-size: 0.82rem; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.fc-icon { font-size: 1.2rem; }
.fc-label { color: var(--text3); font-size: 0.72rem; }
.fc-val { color: var(--cyan); font-weight: 700; font-size: 0.95rem; }
.fc1 { top: 8%; left: 0; animation: float1 6s ease-in-out infinite; }
.fc2 { top: 30%; right: -10px; animation: float2 7s ease-in-out infinite; }
.fc3 { bottom: 30%; left: -10px; animation: float1 8s ease-in-out infinite 1s; }
.fc4 { bottom: 8%; right: 5%; animation: float2 6.5s ease-in-out infinite 0.5s; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text3); font-size: 0.75rem; z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop { 0%,100%{opacity:0.3;transform:scaleY(0.5)} 50%{opacity:1;transform:scaleY(1)} }

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0,245,255,0.04);
  border-top: 1px solid rgba(0,245,255,0.1);
  border-bottom: 1px solid rgba(0,245,255,0.1);
  padding: 14px 0;
}
.ticker-track { display: flex; }
.ticker-inner {
  display: flex; gap: 48px; align-items: center;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-inner span {
  color: var(--text2); font-size: 0.85rem; font-weight: 500;
  padding: 0 8px;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how { padding: 120px 0; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 80px 80px 1fr;
  gap: 0 32px; align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.step:last-child { border-bottom: none; }
.step:hover { background: rgba(0,245,255,0.02); border-radius: var(--radius); }
.step__num {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(0,245,255,0.12); line-height: 1; padding-top: 4px;
  transition: color 0.3s;
}
.step:hover .step__num { color: rgba(0,245,255,0.3); }
.step__icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step__body h3 { margin-bottom: 12px; color: var(--text); }
.step__body p { color: var(--text2); margin-bottom: 16px; }
.step__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.step__tags span {
  padding: 4px 12px; border-radius: 50px;
  background: rgba(123,47,255,0.1);
  border: 1px solid rgba(123,47,255,0.2);
  color: var(--violet); font-size: 0.78rem; font-weight: 500;
}

/* ════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════ */
.features { padding: 120px 0; background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feat-card {
  position: relative; overflow: hidden;
  padding: 36px 32px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feat-card:hover {
  border-color: rgba(0,245,255,0.25);
  transform: translateY(-4px);
}
.feat-card--large { grid-column: span 2; }
.feat-card--wide  { grid-column: span 2; }
.feat-glow {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,255,0.06), transparent 70%);
  pointer-events: none;
}
.feat-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.feat-card h3 { margin-bottom: 12px; }
.feat-card p { font-size: 0.95rem; }
.feat-badge {
  display: inline-block; margin-top: 16px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  color: var(--cyan); font-size: 0.75rem; font-weight: 600;
}

/* ════════════════════════════════════════════
   REVENUE
════════════════════════════════════════════ */
.revenue { padding: 120px 0; }
.revenue-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.revenue-streams { display: flex; flex-direction: column; gap: 32px; }
.rev-stream {
  padding: 32px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.rev-stream:hover { border-color: rgba(0,245,255,0.2); }
.rs-top { display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: start; margin-bottom: 20px; }
.rs-num {
  font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: rgba(0,245,255,0.2); line-height: 1; padding-top: 4px;
}
.rs-top h3 { margin-bottom: 8px; font-size: 1.1rem; }
.rs-top p { font-size: 0.9rem; color: var(--text2); }
.rs-amount {
  font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--cyan); white-space: nowrap; text-align: right;
}
.rs-amount small { font-size: 0.8rem; color: var(--text3); }
.rs-bar { height: 4px; background: var(--surface2); border-radius: 2px; margin-bottom: 12px; overflow: hidden; }
.rs-fill {
  height: 100%; width: 0; border-radius: 2px;
  background: var(--grad);
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.rs-fill.animated { width: var(--w); }
.rs-meta { display: flex; gap: 16px; }
.rs-meta span { font-size: 0.8rem; color: var(--text3); }

/* ── TOTAL CARD ── */
.revenue-total { position: sticky; top: 100px; }
.total-card {
  position: relative; overflow: hidden;
  padding: 40px 32px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(0,245,255,0.2);
  text-align: center;
}
.tc-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,255,0.08), transparent 70%);
  pointer-events: none;
}
.tc-label { font-size: 0.85rem; color: var(--text3); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.tc-amount {
  font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800;
  color: var(--cyan); line-height: 1; margin-bottom: 8px;
}
.tc-sub { font-size: 0.85rem; color: var(--text3); margin-bottom: 32px; }
.tc-breakdown { text-align: left; margin-bottom: 28px; }
.tcb-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.9rem; color: var(--text2); }
.tcb-row span:last-child { color: var(--text); font-weight: 600; }
.tcb-divider { height: 1px; background: var(--border); margin: 8px 0; }
.tcb-total { font-weight: 700; }
.tcb-total span { color: var(--cyan) !important; font-size: 1.1rem; }

/* ════════════════════════════════════════════
   DASHBOARD MOCKUP
════════════════════════════════════════════ */
.dash-section { padding: 120px 0; background: var(--bg2); }
.dash-mockup {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,245,255,0.05);
}
.dash-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 12px; height: 12px; border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FFBD2E; }
.dash-dots span:nth-child(3) { background: #28CA41; }
.dash-title { flex: 1; text-align: center; font-size: 0.85rem; color: var(--text3); }
.dash-live { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #28CA41; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #28CA41; animation: pulse 2s infinite; }
.dash-body { display: grid; grid-template-columns: 180px 1fr; min-height: 480px; }
.dash-sidebar {
  background: var(--surface); border-right: 1px solid var(--border);
  padding: 20px 0;
}
.ds-item {
  padding: 12px 20px; font-size: 0.85rem; color: var(--text3);
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.ds-item:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.ds-active { color: var(--cyan) !important; background: rgba(0,245,255,0.06) !important; border-right: 2px solid var(--cyan); }
.dash-main { padding: 24px; background: var(--bg3); }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.kpi {
  padding: 16px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
}
.kpi-val { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--text); }
.kpi-label { font-size: 0.75rem; color: var(--text3); margin: 4px 0; }
.kpi-trend { font-size: 0.78rem; font-weight: 600; }
.kpi-trend.up { color: #28CA41; }
.dash-chart-area {
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  margin-bottom: 20px;
}
.chart-label { font-size: 0.82rem; color: var(--text3); margin-bottom: 16px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(0,245,255,0.6), rgba(123,47,255,0.4));
  transition: height 1s ease;
  min-height: 4px;
}
.dash-activity {
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
}
.act-title { font-size: 0.82rem; color: var(--text3); margin-bottom: 12px; font-weight: 600; }
.act-feed { display: flex; flex-direction: column; gap: 8px; }
.act-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text2);
}
.act-item b { color: var(--text); }
.act-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.act-email { background: var(--cyan); }
.act-reply { background: #28CA41; }
.act-meet  { background: var(--violet); }
.act-qual  { background: var(--orange); }
.act-time  { margin-left: auto; color: var(--text3); font-size: 0.75rem; white-space: nowrap; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials { padding: 120px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  padding: 36px 32px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(0,245,255,0.2); transform: translateY(-4px); }
.testi-stars { color: #FFD700; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 0.95rem; color: var(--text2); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.85rem; color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.testi-author span { font-size: 0.8rem; color: var(--text3); }
.testi-result {
  padding: 8px 14px; border-radius: 8px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.15);
  color: var(--cyan); font-size: 0.82rem; font-weight: 600;
  display: inline-block;
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing { padding: 120px 0; background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.price-card {
  padding: 40px 32px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.price-card:hover { border-color: rgba(0,245,255,0.2); transform: translateY(-4px); }
.price-card--featured {
  border-color: rgba(0,245,255,0.3) !important;
  background: linear-gradient(160deg, rgba(0,245,255,0.04), rgba(123,47,255,0.04));
  transform: scale(1.03);
}
.price-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pc-glow {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,255,0.08), transparent 70%);
  pointer-events: none;
}
.pc-popular {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 12px; border-radius: 50px;
  background: var(--grad); color: #fff;
  font-size: 0.72rem; font-weight: 700;
}
.pc-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text3); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.pc-price {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--text); line-height: 1; margin-bottom: 12px;
}
.pc-price span { font-size: 1rem; color: var(--text3); font-weight: 400; }
.pc-desc { font-size: 0.9rem; color: var(--text2); margin-bottom: 28px; }
.pc-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pc-features li { font-size: 0.9rem; color: var(--text2); }
.pc-features li::first-letter { color: var(--cyan); }

/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.cta-section { padding: 120px 0; }
.cta-box {
  position: relative; overflow: hidden;
  padding: 80px 60px; border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(0,245,255,0.15);
  text-align: center;
}
.cta-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,255,0.06), rgba(123,47,255,0.04), transparent 70%);
  pointer-events: none;
}
.cta-orb {
  position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,255,0.08), transparent 70%);
  pointer-events: none;
}
.cta-box .section-tag { margin-bottom: 20px; }
.cta-box h2 { margin-bottom: 20px; }
.cta-box p { color: var(--text2); max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.cta-trust span { font-size: 0.85rem; color: var(--text3); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 48px; }
.footer-brand .nav__logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text3); max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.fl-col h4 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.fl-col a { display: block; font-size: 0.88rem; color: var(--text3); margin-bottom: 10px; transition: color 0.2s; }
.fl-col a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--cyan); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__visual { width: 360px; height: 360px; right: 2%; }
  .r3 { width: 320px; height: 320px; margin: -160px 0 0 -160px; }
  .revenue-layout { grid-template-columns: 1fr; }
  .revenue-total { position: static; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .feat-card--large, .feat-card--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { flex-direction: column; padding: 100px 24px 60px; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__stats { gap: 0; }
  .stat { padding: 0 8px; }
  .stat__num { font-size: 1.4rem; }
  .hero__visual { position: relative; right: auto; top: auto; transform: none; width: 300px; height: 300px; margin: 40px auto 0; }
  .r3 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }
  .orb-core { width: 120px; height: 120px; }
  .fc1,.fc2,.fc3,.fc4 { display: none; }
  .step { grid-template-columns: 48px 1fr; }
  .step__icon-wrap { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card--large, .feat-card--wide { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-kpis { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-box { padding: 48px 24px; }
  .rs-top { grid-template-columns: 40px 1fr; }
  .rs-amount { display: none; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 16px; }
  .stat__div { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
}