/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg2: #f8fafc;
  --bg3: #f1f5f9;
  --surface: rgba(0,0,0,0.04);
  --surface-hover: rgba(0,0,0,0.06);
  --border: rgba(0,0,0,0.1);
  --border-hover: rgba(0,130,180,0.45);
  --text: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  --accent: #0080b3;
  --accent-glow: rgba(0,128,179,0.15);
  --accent2: #7c3aed;
  --green: #16a34a;
  --red: #dc2626;
  --yellow: #d97706;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="dark"] {
  --bg: #070b14;
  --bg2: #0d1220;
  --bg3: #111827;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(0,194,255,0.3);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #00c2ff;
  --accent-glow: rgba(0,194,255,0.2);
  --accent2: #a855f7;
  --green: #22c55e;
  --red: #ff4444;
  --yellow: #f59e0b;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

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

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: linear-gradient(135deg, #00c2ff 0%, #a855f7 50%, #00c2ff 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00c2ff, #0087d4);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(0,194,255,0.3);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0,194,255,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,194,255,0.05);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.nav-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav-wrapper.scrolled {
  background: rgba(7,11,20,0.95);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-icon { display: flex; }
.logo-text { color: var(--text); }
.logo-text strong { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: var(--text); background: var(--surface); }
.chevron { font-size: 0.7rem; opacity: 0.6; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all 0.15s;
}
.dropdown-menu a:hover { color: var(--text); background: var(--surface); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-cta {
  margin-top: 16px;
  text-align: center;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  gap: 60px;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,255,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  bottom: -100px; left: 10%;
}

.hero-content {
  flex: 1;
  min-width: 0;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-social-proof strong { color: var(--text); }

.avatars {
  display: flex;
}
.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: var(--bg3);
}
.avatars img:first-child { margin-left: 0; }

/* ===== DASHBOARD MOCKUP ===== */
.hero-visual {
  flex: 1;
  min-width: 0;
  position: relative;
}

.dashboard-mockup {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,194,255,0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.3s;
}
.dashboard-mockup:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }

.mockup-bar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-bar-title {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-body { display: flex; height: 380px; }

.mockup-sidebar {
  width: 140px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.sidebar-item:hover, .sidebar-item.active {
  background: var(--surface);
  color: var(--accent);
}

.mockup-main { flex: 1; padding: 16px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  position: relative;
}
.stat-card.stat-red { border-color: rgba(255,68,68,0.2); }
.stat-card.stat-yellow { border-color: rgba(245,158,11,0.2); }
.stat-num { font-size: 1.4rem; font-weight: 700; }
.stat-label { font-size: 0.65rem; color: var(--text-muted); }
.stat-badge {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.badge-red { background: rgba(255,68,68,0.15); color: var(--red); }
.badge-yellow { background: rgba(245,158,11,0.15); color: var(--yellow); }
.badge-blue { background: rgba(0,194,255,0.15); color: var(--accent); }
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }

.mockup-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  flex-shrink: 0;
}
.chart-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.bar {
  width: 100%;
  height: var(--h);
  background: var(--c, linear-gradient(to top, #00c2ff, #0066cc));
  border-radius: 3px 3px 0 0;
  transition: height 0.3s;
}
.bar-group span { font-size: 0.55rem; color: var(--text-dim); }

.mockup-alerts { display: flex; flex-direction: column; gap: 6px; overflow: hidden; }

.alert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s;
}
.alert-item.alert-critical { border-color: rgba(255,68,68,0.3); }
.alert-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red { background: var(--red); box-shadow: 0 0 6px var(--red); }
.dot-yellow { background: var(--yellow); box-shadow: 0 0 6px var(--yellow); }
.alert-info { flex: 1; min-width: 0; }
.alert-title { font-size: 0.72rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alert-sub { font-size: 0.62rem; color: var(--text-muted); }
.alert-score {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(255,68,68,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== FLOATING CARDS ===== */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
.card-1 { bottom: 20px; left: -30px; animation-delay: 0s; }
.card-2 { top: 20px; right: -20px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fc-title { font-size: 0.8rem; font-weight: 600; }
.fc-sub { font-size: 0.7rem; color: var(--text-muted); }

/* ===== LOGOS ===== */
.logos-strip {
  padding: 48px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}
.logos-track { overflow: hidden; }
.logos-inner {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color 0.2s;
}
.logo-item svg { flex-shrink: 0; opacity: 0.7; }
.logo-item:hover { color: var(--text-muted); }
.logo-item:hover svg { opacity: 1; }

/* ===== STATS ===== */
.stats-section {
  padding: 80px 0;
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats-item {
  padding: 48px 40px;
  background: var(--bg2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stats-item:last-child { border-right: none; }
.stats-item:hover { background: var(--bg3); }
.stats-num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #00c2ff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.stats-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: inline-block;
  vertical-align: super;
}
.stats-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== PROBLEM ===== */
.problem-section {
  padding: 100px 0;
  background: var(--bg);
}
.problem-section > .container > .section-sub { margin-bottom: 60px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  padding: 36px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.problem-card:hover {
  border-color: var(--border-hover);
  background: var(--bg3);
  transform: translateY(-4px);
}
.problem-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.problem-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.problem-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.problem-stat {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.15);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 100px 0;
  background: var(--bg2);
}
.features-section > .container > .section-sub { margin-bottom: 60px; }

.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  margin-bottom: 40px;
  overflow-x: auto;
}
.tab-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); background: var(--surface-hover); }
.tab-btn.active {
  background: var(--bg3);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tab-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.tab-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.tab-visual { position: relative; }

.feature-screen {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.screen-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.screen-dots { display: flex; gap: 6px; }
.screen-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #febc2e; }
.screen-dots span:nth-child(3) { background: #28c840; }

/* Activity Feed */
.activity-feed { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.act-icon { font-size: 1.2rem; width: 36px; text-align: center; }
.act-body { flex: 1; min-width: 0; }
.act-title { font-size: 0.82rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.act-meta { font-size: 0.72rem; color: var(--text-muted); }
.act-risk {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.act-risk.low { background: rgba(34,197,94,0.1); color: var(--green); }
.act-risk.med { background: rgba(245,158,11,0.1); color: var(--yellow); }
.act-risk.high { background: rgba(255,68,68,0.1); color: var(--red); }

/* Risk Visual */
.risk-visual { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.risk-user { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--surface); border-radius: 8px; }
.risk-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.risk-info { flex: 1; }
.risk-name { font-size: 0.85rem; font-weight: 600; }
.risk-dept { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 6px; }
.risk-bar-wrap {
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.risk-bar-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.risk-score-num { font-size: 0.72rem; color: var(--text-muted); }

/* DLP Visual */
.dlp-visual { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.dlp-policy {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.dlp-policy.active-policy { border-color: rgba(0,194,255,0.2); }
.policy-icon { font-size: 1.1rem; }
.policy-body { flex: 1; }
.policy-name { font-size: 0.82rem; font-weight: 600; }
.policy-rule { font-size: 0.72rem; color: var(--text-muted); }
.policy-toggle {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.policy-toggle.on { background: rgba(34,197,94,0.15); color: var(--green); }
.policy-toggle.off { background: var(--surface); color: var(--text-dim); }

/* Timeline Visual */
.timeline-visual { padding: 16px; }
.timeline-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: -4px;
  width: 2px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  border: 2px solid var(--border);
}
.tl-red .tl-dot { background: var(--red); border-color: var(--red); box-shadow: 0 0 8px var(--red); }
.tl-yellow .tl-dot { background: var(--yellow); border-color: var(--yellow); }
.tl-green .tl-dot { background: var(--green); border-color: var(--green); }
.tl-time { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.tl-event { font-size: 0.82rem; }

/* Response Visual */
.response-visual { padding: 16px; }
.response-flow { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rf-node {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}
.rf-icon { font-size: 1.1rem; }
.rf-arrow { font-size: 1.2rem; color: var(--text-muted); }
.rf-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.rf-action {
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 100px 0;
  background: var(--bg);
}
.how-section > .container > .section-sub { margin-bottom: 60px; }

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-card {
  flex: 1;
  padding: 40px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  position: relative;
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,194,255,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-icon { margin-bottom: 16px; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  font-size: 1.5rem;
  color: var(--text-dim);
  padding: 0 4px;
  flex-shrink: 0;
}

/* ===== USE CASES ===== */
.usecases-section {
  padding: 100px 0;
  background: var(--bg2);
}
.usecases-section > .container > .section-title { margin-bottom: 60px; }
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usecase-card {
  padding: 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.usecase-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg);
}
.uc-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.usecase-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.usecase-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.uc-link { font-size: 0.88rem; font-weight: 600; color: var(--accent); }
.uc-link:hover { text-decoration: underline; }

/* ===== INTEGRATIONS ===== */
.integrations-section {
  padding: 100px 0;
  background: var(--bg);
}
.integrations-section > .container > .section-sub { margin-bottom: 60px; }
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.int-card {
  padding: 24px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.int-card:hover {
  border-color: var(--border-hover);
  background: var(--bg3);
  transform: translateY(-2px);
}
.int-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
.int-icon svg { display: block; }
.int-name { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.int-more { border-style: dashed; }
.int-more-icon { font-size: 1.5rem; color: var(--text-muted); font-weight: 300; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.int-more .int-name { color: var(--accent); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg2);
}
.testimonials-section > .container > .section-sub { margin-bottom: 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  padding: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.testi-card.featured {
  background: linear-gradient(135deg, rgba(0,194,255,0.05), rgba(168,85,247,0.05));
  border-color: rgba(0,194,255,0.2);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-size: 0.9rem; font-weight: 600; }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg);
}
.pricing-section > .container > .section-sub { margin-bottom: 40px; }

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  justify-content: center;
}
.toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.active-toggle { color: var(--text); }
.save-badge {
  font-size: 0.72rem;
  background: rgba(34,197,94,0.15);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
}
.toggle-switch {
  position: relative;
  width: 46px;
  height: 26px;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: background 0.2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.toggle-switch input:checked + .toggle-slider { background: rgba(0,194,255,0.2); border-color: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translate(20px, -50%); background: var(--accent); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  padding: 40px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.price-card.price-featured {
  border-color: rgba(0,194,255,0.3);
  background: linear-gradient(135deg, rgba(0,194,255,0.05), rgba(168,85,247,0.05));
  box-shadow: 0 0 40px rgba(0,194,255,0.1);
}
.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c2ff, #a855f7);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.price-amount { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 6px; }
.price-currency { font-size: 1.5rem; font-weight: 700; margin-top: 8px; }
.price-num { font-size: 3.5rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.price-per { font-size: 0.85rem; color: var(--text-muted); margin-top: auto; margin-bottom: 6px; }
.price-min { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 28px; }
.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-features li { font-size: 0.9rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: var(--bg2);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,255,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.demo-form { text-align: left; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,194,255,0.1);
}
.form-group select { color: var(--text-dim); }
.form-group select option { background: var(--bg3); color: var(--text); }

.submit-btn { margin-top: 8px; font-size: 1.05rem; }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 16px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.cta-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-socials a:hover { color: var(--accent); border-color: rgba(0,194,255,0.3); }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 16px; }
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-subtitle, .section-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { width: 100%; max-width: 600px; margin: 0 auto; }
  .tab-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-wrap: wrap; }
  .step-connector { display: none; }
  .step-card { flex: 1 1 calc(50% - 20px); }
  .integrations-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: flex; }
  .nav-cta .btn-ghost,
  .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .problem-grid, .usecases-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-item { padding: 32px 20px; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .tab-nav { flex-wrap: wrap; }
  .tab-btn { flex: 1 1 calc(50% - 4px); }
  .form-row { grid-template-columns: 1fr; }
  .step-card { flex: 1 1 100%; }
  .cta-features { gap: 16px; }
  .dashboard-mockup { transform: none; }
  .floating-card { display: none; }
  .mockup-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--border-hover);
  background: var(--surface-hover);
}
.icon-sun { display: none; }
.icon-moon { display: block; }

/* ===== LIGHT THEME VARIABLES ===== */
[data-theme="light"] {
  --bg: #ffffff;
  --bg2: #f8fafc;
  --bg3: #f1f5f9;
  --surface: rgba(0,0,0,0.04);
  --surface-hover: rgba(0,0,0,0.06);
  --border: rgba(0,0,0,0.1);
  --border-hover: rgba(0,130,180,0.45);
  --text: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  --accent: #0080b3;
  --accent-glow: rgba(0,128,179,0.15);
  --accent2: #7c3aed;
  --green: #16a34a;
  --red: #dc2626;
  --yellow: #d97706;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* ===== LIGHT THEME OVERRIDES ===== */

/* Sun icon visible in light mode, moon hidden */
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* Grid overlay — softer lines on white */
[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

/* Glows — softer tints */
[data-theme="light"] .glow-1 {
  background: radial-gradient(circle, rgba(0,128,179,0.08) 0%, transparent 70%);
}
[data-theme="light"] .glow-2 {
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
}

/* Navbar scrolled — white background */
[data-theme="light"] .nav-wrapper.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.06);
}

/* Gradient text — slightly adjusted for light */
[data-theme="light"] .gradient-text {
  background: linear-gradient(135deg, #0080b3 0%, #7c3aed 50%, #0080b3 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label */
[data-theme="light"] .section-label {
  color: var(--accent);
  background: rgba(0,128,179,0.08);
  border-color: rgba(0,128,179,0.2);
}

/* Buttons */
[data-theme="light"] .btn-primary {
  background: linear-gradient(135deg, #0080b3, #005f8a);
  box-shadow: 0 0 20px rgba(0,128,179,0.25);
}
[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 0 30px rgba(0,128,179,0.4);
}
[data-theme="light"] .btn-outline {
  border-color: rgba(0,0,0,0.15);
  color: var(--text-muted);
}
[data-theme="light"] .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,128,179,0.05);
}

/* Hero badge */
[data-theme="light"] .hero-badge {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}

/* Dashboard mockup */
[data-theme="light"] .dashboard-mockup {
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,130,180,0.12);
}
[data-theme="light"] .mockup-bar { background: rgba(0,0,0,0.03); }
[data-theme="light"] .mockup-sidebar { background: rgba(0,0,0,0.02); }

/* Floating cards */
[data-theme="light"] .floating-card {
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Logo strip */
[data-theme="light"] .logos-strip {
  background: var(--bg3);
}

/* Stats */
[data-theme="light"] .stats-num {
  background: linear-gradient(135deg, #0080b3, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="light"] .stats-suffix { color: #0080b3; }

/* Problem stat badge */
[data-theme="light"] .problem-stat {
  color: #0080b3;
  background: rgba(0,128,179,0.07);
  border-color: rgba(0,128,179,0.15);
}

/* Feature tab nav */
[data-theme="light"] .tab-nav {
  background: var(--bg3);
  border-color: var(--border);
}
[data-theme="light"] .tab-btn.active {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Feature screen */
[data-theme="light"] .feature-screen { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

/* Risk bar track */
[data-theme="light"] .risk-bar-wrap { background: var(--bg3); }

/* DLP active policy */
[data-theme="light"] .dlp-policy.active-policy { border-color: rgba(0,128,179,0.25); }

/* Response flow node */
[data-theme="light"] .rf-node {
  background: rgba(0,128,179,0.06);
  border-color: rgba(0,128,179,0.25);
}

/* Step num */
[data-theme="light"] .step-num { color: rgba(0,128,179,0.18); }

/* Testimonial featured */
[data-theme="light"] .testi-card.featured {
  background: linear-gradient(135deg, rgba(0,128,179,0.04), rgba(124,58,237,0.04));
  border-color: rgba(0,128,179,0.2);
}

/* Pricing featured */
[data-theme="light"] .price-card.price-featured {
  background: linear-gradient(135deg, rgba(0,128,179,0.05), rgba(124,58,237,0.05));
  border-color: rgba(0,128,179,0.25);
  box-shadow: 0 0 40px rgba(0,128,179,0.08);
}

/* Billing toggle slider */
[data-theme="light"] .toggle-slider {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .toggle-slider::before { background: #94a3b8; }
[data-theme="light"] .toggle-switch input:checked + .toggle-slider {
  background: rgba(0,128,179,0.15);
  border-color: #0080b3;
}
[data-theme="light"] .toggle-switch input:checked + .toggle-slider::before { background: #0080b3; }

/* CTA glow */
[data-theme="light"] .cta-glow {
  background: radial-gradient(circle, rgba(0,128,179,0.07) 0%, transparent 70%);
}

/* Footer socials */
[data-theme="light"] .footer-socials a:hover {
  color: #0080b3;
  border-color: rgba(0,128,179,0.3);
}

/* Smooth theme transition */
body,
.nav-wrapper,
.hero-bg,
.logos-strip,
.stats-section,
.problem-section,
.features-section,
.how-section,
.usecases-section,
.integrations-section,
.testimonials-section,
.pricing-section,
.cta-section,
.footer,
.dashboard-mockup,
.mockup-bar,
.mockup-sidebar,
.floating-card,
.problem-card,
.step-card,
.usecase-card,
.int-card,
.testi-card,
.price-card,
.dropdown-menu,
.activity-item,
.stat-card,
.risk-user,
.dlp-policy,
.rf-action,
.alert-item,
.sidebar-item,
.tab-nav,
.tab-btn,
.feature-screen,
.screen-header,
.form-group input,
.form-group select {
  transition-property: background, background-color, border-color, color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
