/* ═══════════════════════════════════════════════════════════ RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ═══════════════════════════════════════════════════════════ VARIABLES */
:root {
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --cyan: #06b6d4;
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a2e;
  --border: rgba(255,255,255,0.08);
  --text: #e2e8f0;
  --text2: #94a3b8;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════════════════════════════ UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue); font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.section-sub { color: var(--text2); font-size: 18px; max-width: 600px; margin: 0 auto; }
.section-header.light .section-title { color: white; }

/* ═══════════════════════════════════════════════════════════ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: 15px; cursor: pointer; transition: all 0.2s; border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,0.4); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: rgba(59,130,246,0.1); }
.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-ghost { background: transparent; color: var(--text2); }
.btn-ghost:hover { color: white; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav.scrolled { background: rgba(10,10,15,0.98); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.logo-icon { font-size: 24px; }
.logo-accent { color: var(--blue); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px; border-radius: 6px; color: var(--text2);
  font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; gap: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════════════════════════════════ HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
}
.glow-1 { width: 600px; height: 600px; background: #3b82f6; top: -200px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: #8b5cf6; bottom: -100px; left: -100px; }
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25);
  color: var(--blue); font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero-title {
  font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.1;
  margin-bottom: 24px; letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 20px; color: var(--text2); max-width: 620px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  padding: 24px 32px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 16px; width: fit-content;
}
.stat { text-align: center; }
.stat-value { font-size: 28px; font-weight: 800; color: white; }
.stat-label { font-size: 13px; color: var(--text2); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ═══════════════════════════════════════════════════════════ LOGOS BAR */
.logos-bar {
  padding: 32px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); background: var(--bg2);
}
.logos-label { text-align: center; color: var(--text2); font-size: 13px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.logos-track { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.logo-item {
  padding: 8px 18px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text2);
  transition: all 0.2s;
}
.logo-item:hover { color: white; border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.08); }

/* ═══════════════════════════════════════════════════════════ FEATURES / TABS */
.features { padding: 100px 0; background: var(--bg); }
.tabs { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.tab-nav {
  display: flex; overflow-x: auto; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.tab-nav::-webkit-scrollbar { height: 0; }
.tab-btn {
  padding: 16px 22px; background: none; border: none; color: var(--text2);
  font-size: 14px; font-weight: 500; cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: all 0.2s; font-family: inherit;
}
.tab-btn:hover { color: white; background: rgba(255,255,255,0.04); }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); background: rgba(59,130,246,0.06); }
.tab-panel { display: none; padding: 48px; }
.tab-panel.active { display: block; }
.tab-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.tab-text h3 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.tab-text p { color: var(--text2); margin-bottom: 24px; line-height: 1.7; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.perf-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600;
}
.badge-blue { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }
.badge-green { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.badge-purple { background: rgba(139,92,246,0.15); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.3); }
.badge-orange { background: rgba(245,158,11,0.15); color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }

/* Code blocks */
.code-block {
  background: #0d1117; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; overflow: hidden; font-family: 'JetBrains Mono', monospace;
}
.code-block.small { font-size: 13px; }
.code-header {
  display: flex; align-items: center; gap: 6px; padding: 12px 16px;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #febc2e; }
.code-dot.green { background: #28c840; }
.code-title { margin-left: 8px; font-size: 12px; color: var(--text2); font-family: inherit; }
.code-block pre { padding: 20px; overflow-x: auto; font-size: 13px; line-height: 1.7; }
.code-block code { font-family: 'JetBrains Mono', monospace; }
.key { color: #79c0ff; }
.str { color: #a5d6ff; }
.num { color: #f8c555; }
.bool { color: #ff7b72; }

/* Transform flow */
.transform-flow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.flow-step {
  flex: 1; min-width: 100px; padding: 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  text-align: center;
}
.flow-step.active { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.4); }
.flow-icon { font-size: 24px; margin-bottom: 6px; }
.flow-label { font-weight: 600; font-size: 14px; }
.flow-sub { font-size: 11px; color: var(--text2); margin-top: 4px; line-height: 1.5; }
.flow-arrow { font-size: 20px; color: var(--text2); }
.rule-examples { display: flex; flex-direction: column; gap: 8px; }
.rule-chip {
  padding: 8px 14px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #a5d6ff;
}

/* Perf chart */
.perf-chart { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.chart-title { font-weight: 600; margin-bottom: 20px; font-size: 14px; color: var(--text2); }
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { width: 110px; font-size: 13px; color: var(--text2); flex-shrink: 0; }
.bar-track { flex: 1; height: 28px; background: rgba(255,255,255,0.06); border-radius: 6px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; display: flex; align-items: center; padding-left: 10px; font-size: 12px; font-weight: 600; color: white; transition: width 1s ease; }

/* Monitor cards */
.monitor-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.monitor-card {
  padding: 20px; border-radius: 10px; text-align: center;
  border: 1px solid var(--border);
}
.monitor-card.green { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); }
.monitor-card.blue { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); }
.monitor-card.purple { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.3); }
.monitor-card.orange { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }
.mc-value { font-size: 28px; font-weight: 800; }
.mc-label { font-size: 12px; color: var(--text2); margin-top: 4px; }
.pipeline-stages { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.stage {
  padding: 8px 14px; border-radius: 6px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text2);
}
.stage.done { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #6ee7b7; }
.stage.active { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.4); color: #93c5fd; }
.stage-arrow { color: var(--text2); }

/* Security */
.compliance-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.comp-badge {
  padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 700;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7;
}
.security-visual { display: flex; flex-direction: column; gap: 20px; }
.enc-flow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.enc-step {
  padding: 10px 14px; border-radius: 8px; font-size: 12px; font-weight: 500;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); text-align: center;
}
.enc-step.highlight { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.4); color: #93c5fd; }
.enc-arrow { color: var(--text2); font-size: 16px; }
.masking-demo { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.mask-row { display: flex; gap: 12px; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); }
.mask-row:last-child { border-bottom: none; }
.mask-label { width: 80px; font-size: 12px; color: var(--text2); font-weight: 600; }
.mask-val { font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.mask-val.masked { color: #f8c555; }

/* Wizard */
.wizard-preview { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.wizard-steps { display: flex; border-bottom: 1px solid var(--border); }
.wstep {
  flex: 1; padding: 12px 8px; text-align: center; font-size: 12px; font-weight: 600;
  color: var(--text2); border-right: 1px solid var(--border);
}
.wstep:last-child { border-right: none; }
.wstep.done { color: var(--green); background: rgba(16,185,129,0.06); }
.wstep.active { color: var(--blue); background: rgba(59,130,246,0.1); }
.wizard-body { padding: 20px; }
.wb-title { font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.wb-rule {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px;
  background: rgba(255,255,255,0.04); border-radius: 6px; margin-bottom: 8px;
  font-size: 13px; font-family: 'JetBrains Mono', monospace;
}
.wr-field { color: #79c0ff; }
.wr-fn { color: #f8c555; }
.wr-target { color: #6ee7b7; }
.wb-add {
  padding: 8px 12px; border: 1px dashed rgba(59,130,246,0.4);
  border-radius: 6px; color: var(--blue); font-size: 13px; cursor: pointer;
  text-align: center;
}

/* Reconciliation table */
.recon-table { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.rt-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 12px 16px; background: rgba(255,255,255,0.04); font-size: 12px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; }
.rt-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 12px 16px; border-top: 1px solid var(--border); font-size: 14px; }
.rt-row:hover { background: rgba(255,255,255,0.02); }
.status-match { color: var(--green); font-weight: 600; }
.status-warn { color: var(--orange); font-weight: 600; }
.rt-footer { padding: 12px 16px; border-top: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--green); background: rgba(16,185,129,0.05); }

/* ═══════════════════════════════════════════════════════════ ARCHITECTURE */
.architecture { padding: 100px 0; background: var(--bg2); }
.arch-diagram { margin-bottom: 48px; }
.arch-layer { margin-bottom: 8px; }
.arch-layer-label { font-size: 12px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.arch-boxes { display: flex; gap: 8px; flex-wrap: wrap; }
.arch-box {
  padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--border);
}
.arch-box.blue { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); color: #93c5fd; }
.arch-box.purple { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.3); color: #c4b5fd; }
.arch-box.green { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #6ee7b7; }
.arch-box.orange { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); color: #fcd34d; }
.arch-arrow-down { text-align: center; padding: 8px; color: var(--text2); font-size: 18px; }
.tech-stack { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding-top: 32px; border-top: 1px solid var(--border); }
.ts-item { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 500; }
.ts-icon { font-size: 18px; }

/* ═══════════════════════════════════════════════════════════ INDUSTRIES */
.industries { padding: 100px 0; background: var(--bg); }
.industry-tabs { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.ind-tab-nav { display: flex; overflow-x: auto; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.ind-tab-nav::-webkit-scrollbar { height: 0; }
.ind-btn {
  padding: 16px 22px; background: none; border: none; color: var(--text2);
  font-size: 14px; font-weight: 500; cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: all 0.2s; font-family: inherit;
}
.ind-btn:hover { color: white; background: rgba(255,255,255,0.04); }
.ind-btn.active { color: var(--blue); border-bottom-color: var(--blue); background: rgba(59,130,246,0.06); }
.ind-panel { display: none; padding: 48px; }
.ind-panel.active { display: block; }
.ind-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.ind-icon { font-size: 48px; margin-bottom: 16px; }
.ind-info h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.ind-scenario { color: var(--text2); margin-bottom: 24px; line-height: 1.7; }
.ind-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.ind-detail { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.ind-detail:last-child { border-bottom: none; }
.ind-label { font-size: 13px; color: var(--text2); font-weight: 600; }
.ind-val { font-size: 13px; font-weight: 500; }
.ind-tables { display: flex; gap: 6px; flex-wrap: wrap; }
.ind-table-chip {
  padding: 5px 10px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3);
  border-radius: 6px; font-size: 11px; font-weight: 600; color: #93c5fd;
  font-family: 'JetBrains Mono', monospace;
}

/* ═══════════════════════════════════════════════════════════ PERFORMANCE */
.perf-section { padding: 100px 0; background: linear-gradient(180deg, var(--bg2), var(--bg)); }
.perf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 64px; }
.perf-card {
  padding: 32px; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 16px; text-align: center; transition: all 0.3s;
}
.perf-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.06); }
.perf-number { font-size: 48px; font-weight: 800; background: linear-gradient(135deg, #3b82f6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.perf-unit { font-size: 14px; color: var(--text2); margin-bottom: 12px; }
.perf-desc { font-size: 14px; color: var(--text2); line-height: 1.6; }
.comparison-table { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.comparison-table h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.comparison-table table { width: 100%;
  border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.comparison-table th { font-weight: 700; color: var(--text2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.comparison-table .highlight-col { color: #6ee7b7; font-weight: 600; }
.comparison-table th.highlight-col { color: var(--green); }

/* ═══════════════════════════════════════════════════════════ PRICING */
.pricing { padding: 100px 0; background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }
.pricing-card {
  padding: 36px; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 16px; position: relative; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.3); }
.pricing-card.featured {
  background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.5);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 100px; font-size: 12px; font-weight: 700; color: white; white-space: nowrap;
}
.plan-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-price { font-size: 40px; font-weight: 800; margin-bottom: 8px; }
.plan-price span { font-size: 16px; color: var(--text2); font-weight: 400; }
.plan-desc { color: var(--text2); font-size: 14px; margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--text2); }
.plan-features li::before { content: ''; }
.roi-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 36px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.3);
  border-radius: 16px; flex-wrap: wrap;
}
.roi-text { display: flex; flex-direction: column; gap: 4px; }
.roi-text strong { font-size: 18px; color: #6ee7b7; }
.roi-text span { font-size: 14px; color: var(--text2); }

/* ═══════════════════════════════════════════════════════════ DOCS */
.docs-section { padding: 100px 0; background: var(--bg2); }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.doc-card {
  padding: 28px; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 14px; transition: all 0.3s;
}
.doc-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-3px); }
.doc-icon { font-size: 32px; margin-bottom: 14px; }
.doc-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.doc-card p { color: var(--text2); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.doc-code { display: flex; flex-direction: column; gap: 6px; }
.doc-code code {
  display: block; padding: 8px 12px; background: #0d1117;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #a5d6ff;
}
.doc-endpoints { display: flex; flex-direction: column; gap: 8px; }
.doc-endpoints code { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text2); }
.ep {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 700; margin-right: 6px;
}
.ep.get { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.ep.post { background: rgba(59,130,246,0.2); color: #93c5fd; }
.ws-events { display: flex; flex-direction: column; gap: 8px; }
.ws-event { font-size: 13px; color: var(--text2); }
.ws-type { font-family: 'JetBrains Mono', monospace; color: #f8c555; font-size: 12px; margin-right: 6px; }

/* ═══════════════════════════════════════════════════════════ CTA */
.cta-section { padding: 100px 0; background: var(--bg); }
.cta-box {
  text-align: center; padding: 80px 48px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
  border: 1px solid rgba(59,130,246,0.3); border-radius: 24px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.08) 0%, transparent 70%);
}
.cta-box h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-box p { color: var(--text2); font-size: 18px; margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; position: relative; }
.cta-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-trust span { font-size: 14px; color: var(--text2); }

/* ═══════════════════════════════════════════════════════════ CONTACT */
.contact { padding: 100px 0; background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text2); line-height: 1.7; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.contact-item span:first-child { font-size: 20px; }
.contact-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.cb {
  padding: 6px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; color: var(--text2);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px; color: white;
  font-size: 15px; font-family: inherit; transition: border-color 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); }
.contact-form select option { background: #1a1a2e; }
.contact-form textarea { resize: vertical; }
.form-note { font-size: 13px; color: var(--text2); text-align: center; }

/* ═══════════════════════════════════════════════════════════ FOOTER */
.footer { padding: 64px 0 32px; background: #07070d; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text2); font-size: 14px; margin-top: 16px; margin-bottom: 12px; line-height: 1.6; }
.footer-stats { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text2); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px;
}

/* ═══════════════════════════════════════════════════════════ TOAST */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  padding: 16px 24px; background: #1a1a2e; border: 1px solid rgba(16,185,129,0.4);
  border-radius: 12px; color: #6ee7b7; font-weight: 600; font-size: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(100px); opacity: 0; transition: all 0.4s;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .tab-content, .ind-content, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: rgba(10,10,15,0.98);
    padding: 16px; border-bottom: 1px solid var(--border); gap: 4px;
  }
  .hero-stats { gap: 16px; padding: 16px 20px; }
  .stat-divider { display: none; }
  .tab-panel, .ind-panel { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card.featured { transform: none; }
  .roi-banner { flex-direction: column; text-align: center; }
  .comparison-table { overflow-x: auto; }
  .cta-box { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .perf-grid { grid-template-columns: 1fr 1fr; }
  .monitor-cards { grid-template-columns: 1fr 1fr; }
}
