/* ===========================
   CYBERGUARD MANAGER - WEBSITE
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050b15;
  --bg2: #070e1c;
  --bg3: #0a1428;
  --surface: #0d1a2e;
  --surface2: #112238;
  --border: rgba(0,200,255,0.12);
  --border2: rgba(0,200,255,0.08);
  --cyan: #00c8ff;
  --cyan2: #00e5ff;
  --blue: #1a6fff;
  --blue2: #0d4ed8;
  --green: #00e676;
  --orange: #ff8c00;
  --red: #ff3d5a;
  --yellow: #ffd600;
  --text: #e2edf9;
  --text2: #8da4be;
  --text3: #5a7494;
  --unique: #ffd700;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.num-highlight { color: var(--cyan); font-weight: 900; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.section-header p { color: var(--text2); font-size: 18px; max-width: 600px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.3);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-header.light h2, .section-header.light p { color: white; }
.section-tag-light {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ---- NAV ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,11,21,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: white; font-size: 18px; flex-shrink: 0;
}
.logo-icon { font-size: 22px; color: var(--cyan); }
.nav-links { display: flex; gap: 32px; list-style: none; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text2); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: white; text-decoration: none; padding: 10px 22px;
  border-radius: 8px; font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; padding-top: 64px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,100,255,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0,200,255,0.08) 0%, transparent 60%),
              var(--bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero > .container { position: relative; text-align: center; padding: 80px 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.2);
  color: var(--cyan2); font-size: 13px; font-weight: 500; padding: 8px 20px;
  border-radius: 24px; margin-bottom: 32px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 80px); font-weight: 900; line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: var(--text2); max-width: 680px;
  margin: 0 auto 40px;
}
.hero-sub strong { color: var(--cyan); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: white; text-decoration: none; padding: 16px 36px;
  border-radius: 10px; font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(0,100,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,200,255,0.5); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); text-decoration: none;
  padding: 16px 36px; border-radius: 10px; font-size: 16px; font-weight: 600;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-val { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--cyan); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text2); margin-top: 6px; font-weight: 500; }

/* ---- SHOWCASE ---- */
.showcase { padding: 100px 0; background: var(--bg2); }
.screenshot-tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap;
}
.ss-tab {
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--text2); padding: 10px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.ss-tab.active, .ss-tab:hover {
  background: linear-gradient(135deg, var(--blue2), rgba(0,200,255,0.3));
  border-color: var(--cyan); color: white;
}
.screenshot-display { position: relative; }
.ss-pane { display: none; }
.ss-pane.active { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.ss-frame {
  flex: 1; min-width: 300px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 40px rgba(0,100,255,0.1);
}
.ss-topbar {
  background: var(--surface2); padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
}
.ss-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ss-dot.red { background: #ff5f57; }
.ss-dot.yellow { background: #ffbd2e; }
.ss-dot.green { background: #28c840; }
.ss-url {
  margin-left: 12px; font-size: 12px; color: var(--text3);
  background: rgba(0,0,0,0.3); padding: 3px 12px; border-radius: 4px;
}
.ss-frame img { width: 100%; display: block; object-fit: cover; }
.ss-caption { flex: 0 0 280px; padding: 20px 0; }
.ss-caption h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--cyan); }
.ss-caption p { color: var(--text2); font-size: 15px; line-height: 1.7; }

/* ---- MODULES ---- */
.modules { padding: 100px 0; }
.modules-category { margin-bottom: 60px; }
.cat-title {
  font-size: 20px; font-weight: 700; margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.cat-icon { font-size: 16px; }
.unique-badge {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 12px; border-radius: 12px;
}
.modules-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.module-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 12px; padding: 24px; position: relative;
  transition: all 0.3s;
}
.module-card:hover {
  border-color: var(--cyan); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,200,255,0.1);
}
.module-card.featured {
  border-color: rgba(255,215,0,0.3);
  background: linear-gradient(135deg, var(--surface), rgba(255,215,0,0.03));
}
.module-card.featured:hover { border-color: var(--unique); }
.module-badge {
  position: absolute; top: -10px; right: 16px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000; font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 12px; border-radius: 10px;
}
.module-icon { font-size: 28px; margin-bottom: 12px; }
.module-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.module-card p { color: var(--text2); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.module-features { list-style: none; }
.module-features li {
  font-size: 13px; color: var(--text2); padding: 4px 0;
  border-bottom: 1px solid var(--border2); display: flex; align-items: center; gap: 8px;
}
.module-features li::before { content: "→"; color: var(--cyan); font-size: 11px; }

/* ---- DIFFERENTIATOR ---- */
.differentiator { padding: 100px 0; background: var(--bg2); }
.diff-wrapper { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; }
.diff-content { flex: 1; min-width: 280px; }
.diff-content h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 20px; }
.diff-lead { font-size: 17px; color: var(--text2); margin-bottom: 32px; line-height: 1.7; }
.diff-example {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; margin-bottom: 24px;
}
.diff-example h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--cyan); }
.timeline-steps { display: flex; flex-direction: column; gap: 10px; }
.t-step { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.t-num {
  background: var(--cyan); color: var(--bg); width: 24px; height: 24px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.diff-note { font-size: 14px; color: var(--text3); font-style: italic; border-left: 3px solid var(--cyan); padding-left: 16px; }
.diff-visual { flex: 0 0 420px; }
.diff-cards { display: flex; gap: 16px; flex-wrap: wrap; }
.diff-card {
  flex: 1; min-width: 180px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.diff-card.cg { border-color: rgba(0,200,255,0.3); }
.dc-logo {
  font-size: 14px; font-weight: 800; margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.diff-card.cg .dc-logo { color: var(--cyan); }
.dc-items { display: flex; flex-direction: column; gap: 7px; }
.dc-item { font-size: 12px; padding: 4px 8px; border-radius: 4px; }
.dc-item.ok { color: var(--text2); }
.dc-item.unique { color: var(--unique); font-weight: 700; }
.dc-item.no { color: var(--red); opacity: 0.8; }
.dc-item.warn { color: var(--orange); opacity: 0.8; }

/* ---- TECH STACK ---- */
.techstack { padding: 80px 0; background: var(--bg3); }
.tech-grid { display: flex; flex-direction: column; gap: 16px; }
.tech-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.tech-layer {
  min-width: 140px; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text3); text-align: right;
}
.tech-items { display: flex; gap: 10px; flex-wrap: wrap; }
.tech-pill {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); padding: 6px 14px; border-radius: 20px; font-size: 13px;
}
.tech-pill.open {
  background: rgba(0,230,118,0.08); border-color: rgba(0,230,118,0.25); color: var(--green);
}

/* ---- COMPARISON TABLE ---- */
.comparison { padding: 100px 0; background: var(--bg2); }
.table-wrapper { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); }
.comp-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.comp-table th {
  background: var(--surface2); padding: 16px 18px; text-align: center;
  font-size: 13px; font-weight: 700; color: var(--text2); white-space: nowrap;
  border-bottom: 2px solid var(--border);
}
.comp-table th:first-child { text-align: left; }
.comp-table th.col-cg {
  background: linear-gradient(135deg, rgba(0,100,255,0.2), rgba(0,200,255,0.1));
  color: var(--cyan); border-bottom-color: var(--cyan);
}
.comp-table td {
  padding: 13px 18px; font-size: 13px; border-bottom: 1px solid var(--border2);
  text-align: center; color: var(--text2);
}
.comp-table td:first-child { text-align: left; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.row-label { font-weight: 700; color: var(--text); min-width: 140px; }
.col-cg { background: rgba(0,200,255,0.04); }
.cell-ok { color: var(--green); font-weight: 600; }
.cell-no { color: var(--red); font-weight: 600; }
.cell-warn { color: var(--orange); font-weight: 500; }
.cell-unique { color: var(--unique); font-weight: 800; font-size: 14px; }
.highlight-row td { background: rgba(255,215,0,0.03); }
.pricing-row td { font-weight: 800; font-size: 15px; background: var(--surface2); }
.cell-price { color: var(--green); }
.cell-price-high { color: var(--orange); }
.cell-price-highest { color: var(--red); }
.cell-price-med { color: var(--yellow); }
.cell-price small, .cell-price-high small, .cell-price-highest small, .cell-price-med small {
  display: block; font-size: 11px; font-weight: 500; opacity: 0.8;
}

/* ---- DECISION MATRIX ---- */
.decision-matrix { padding: 100px 0; }
.matrix-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.matrix-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 12px; padding: 24px; text-align: center; transition: all 0.3s;
}
.matrix-card:hover { border-color: var(--cyan); transform: translateY(-3px); }
.matrix-card.ideal { border-color: rgba(0,200,255,0.2); }
.matrix-icon { font-size: 20px; margin-bottom: 12px; }
.matrix-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.matrix-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ---- PRICING ---- */
.pricing { padding: 100px 0; background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; margin-bottom: 60px; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 16px; padding: 32px 28px; position: relative; transition: all 0.3s;
}
.pricing-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--surface), rgba(0,200,255,0.05));
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 4px 16px; border-radius: 12px; white-space: nowrap;
}
.pricing-tier { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 8px; }
.pricing-range { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.pricing-price { font-size: 44px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--text2); }
.pricing-total { font-size: 13px; color: var(--text3); margin-bottom: 4px; }
.pricing-savings { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 24px; }
.pricing-includes { list-style: none; margin-bottom: 28px; }
.pricing-includes li { font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--border2); color: var(--text2); }
.btn-pricing {
  display: block; text-align: center; text-decoration: none;
  background: var(--surface2); border: 1px solid var(--border);
  color: white; padding: 13px; border-radius: 8px; font-size: 15px; font-weight: 700;
  transition: all 0.2s;
}
.btn-pricing:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-pricing.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
}
.btn-pricing.primary:hover { opacity: 0.9; color: white; }
.pricing-addons h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.addon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.addon-item {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 10px; padding: 16px 20px; display: flex; gap: 16px; align-items: center;
}
.addon-icon { font-size: 24px; flex-shrink: 0; }
.addon-item strong { font-size: 14px; }
.addon-item small { color: var(--text3); font-size: 13px; }

/* ---- ROI ---- */
.roi-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1628 0%, #071020 50%, #0d1a2e 100%);
}
.roi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 60px; }
.roi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 28px; text-align: center;
}
.roi-icon { font-size: 40px; margin-bottom: 16px; }
.roi-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.roi-before { font-size: 14px; color: rgba(255,255,255,0.5); padding: 8px; background: rgba(255,61,90,0.1); border-radius: 6px; }
.roi-arrow { font-size: 24px; my: 8px; padding: 8px 0; color: var(--cyan); }
.roi-after { font-size: 14px; color: rgba(255,255,255,0.7); padding: 8px; background: rgba(0,230,118,0.08); border-radius: 6px; }
.roi-saving { margin-top: 12px; font-size: 16px; color: var(--green); font-weight: 700; }

.roi-summary { max-width: 600px; margin: 0 auto 60px; }
.roi-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; }
.roi-table th { background: rgba(255,255,255,0.1); padding: 12px 20px; font-size: 14px; text-align: left; }
.roi-table td { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px; }
.roi-table td:last-child { text-align: right; font-weight: 700; }
.roi-table .negative td { color: rgba(255,255,255,0.5); }
.roi-table .total td { color: var(--green); background: rgba(0,230,118,0.08); font-size: 17px; }
.roi-table .roi-final td { color: var(--cyan); font-size: 20px; font-weight: 900; background: rgba(0,200,255,0.1); }
.roi-table .payback td { color: var(--yellow); background: rgba(255,214,0,0.08); }

.tco-section h3 { text-align: center; font-size: 22px; font-weight: 700; margin-bottom: 32px; }
.tco-bars { display: flex; flex-direction: column; gap: 16px; }
.tco-bar-item { display: flex; align-items: center; gap: 16px; }
.tco-label { min-width: 140px; font-size: 14px; font-weight: 600; text-align: right; }
.tco-bar-wrap { flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px; height: 40px; position: relative; }
.tco-bar {
  height: 40px; background: rgba(255,255,255,0.15); border-radius: 6px;
  display: flex; align-items: center; padding-left: 16px;
  font-size: 14px; font-weight: 700; transition: width 0.8s;
}
.tco-bar.cg-bar { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.tco-bar.splunk-bar { background: rgba(255,61,90,0.4); }
.tco-tag { font-size: 13px; font-weight: 700; min-width: 80px; }
.tco-tag.best { color: var(--green); }

/* ---- PLAYBOOKS ---- */
.playbooks { padding: 100px 0; background: var(--bg3); }
.playbook-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.pb-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 12px; padding: 24px; transition: all 0.3s;
}
.pb-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.pb-icon { font-size: 32px; margin-bottom: 12px; }
.pb-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pb-trigger { font-size: 12px; color: var(--orange); background: rgba(255,140,0,0.1); padding: 6px 12px; border-radius: 6px; margin-bottom: 16px; }
.pb-steps { display: flex; flex-direction: column; gap: 7px; }
.pb-step {
  font-size: 13px; color: var(--text2); padding: 6px 12px;
  background: var(--surface2); border-radius: 6px; border-left: 3px solid var(--cyan);
}

/* ---- DEPLOYMENT ---- */
.deployment { padding: 100px 0; }
.deploy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 32px; }
.deploy-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 12px; padding: 28px; transition: all 0.3s;
}
.deploy-card:hover { border-color: var(--cyan); }
.deploy-card.highlight { border-color: rgba(0,200,255,0.3); background: linear-gradient(135deg, var(--surface), rgba(0,200,255,0.03)); }
.deploy-icon { font-size: 36px; margin-bottom: 16px; }
.deploy-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.deploy-card p { color: var(--text2); font-size: 14px; margin-bottom: 14px; }
.deploy-use { font-size: 12px; color: var(--cyan); background: rgba(0,200,255,0.08); padding: 6px 12px; border-radius: 6px; margin-bottom: 16px; }
.deploy-card ul { list-style: none; }
.deploy-card li { font-size: 13px; color: var(--text2); padding: 5px 0; border-bottom: 1px solid var(--border2); }
.deploy-note {
  background: rgba(0,200,255,0.05); border: 1px solid rgba(0,200,255,0.15);
  border-radius: 10px; padding: 16px 20px; font-size: 14px; color: var(--text2);
}

/* ---- CONTACT ---- */
.contact-section { padding: 100px 0; background: var(--bg2); }
.contact-wrapper { display: flex; gap: 60px; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 280px; }
.contact-info h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 20px; }
.contact-info p { color: var(--text2); font-size: 17px; margin-bottom: 36px; }
.process-steps { margin-bottom: 40px; }
.ps-step { display: flex; gap: 16px; margin-bottom: 16px; align-items: flex-start; font-size: 15px; }
.ps-num {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-link { text-decoration: none; color: var(--text2); font-size: 16px; transition: color 0.2s; }
.contact-link:hover { color: var(--cyan); }
.contact-form-wrap {
  flex: 0 0 420px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); padding: 13px 16px; border-radius: 8px; font-size: 14px;
  font-family: inherit; outline: none; transition: border-color 0.2s; margin-bottom: 12px;
}
.form-row input { margin-bottom: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white; border: none; padding: 15px; border-radius: 8px;
  font-size: 16px; font-weight: 700; cursor: pointer; transition: opacity 0.2s;
  font-family: inherit; margin-top: 4px;
}
.btn-submit:hover { opacity: 0.85; }
.form-note { font-size: 12px; color: var(--text3); text-align: center; margin-top: 12px; }

/* ---- FOOTER ---- */
.footer { padding: 60px 0 40px; background: var(--bg3); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: white; }
.footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.7; }
.footer-version { font-size: 12px; color: var(--text3); margin-top: 8px; }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { font-size: 14px; color: var(--text3); padding: 5px 0; }
.footer-col a { text-decoration: none; color: var(--text3); transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border2); padding-top: 24px; text-align: center; font-size: 13px; color: var(--text3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .diff-visual { flex: 1 1 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 24px; z-index: 999; }
  .ss-pane.active { flex-direction: column; }
  .ss-caption { flex: 1; }
  .contact-form-wrap { flex: 1 1 100%; }
  .diff-wrapper { flex-direction: column; }
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .tech-row { flex-direction: column; align-items: flex-start; }
  .tech-layer { text-align: left; }
  .tco-bar-item { flex-wrap: wrap; }
  .tco-label { text-align: left; }
  .roi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 24px; }
  .pricing-card.popular { transform: none; }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,200,255,0.3); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero > .container { animation: fadeInUp 0.8s ease-out; }
