/* =========================================================================
   CyberShield-360 — Premium White Landing Page v1.0
   Google-product-page aesthetic. White backgrounds, humanized photography,
   subtle shadows, premium typography. Zero dark/purple AI clichés.
   ========================================================================= */

/* === FONTS === */
@font-face { font-family: 'Geist'; src: url('assets/fonts/Geist-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('assets/fonts/Geist-Black.woff2') format('woff2'); font-weight: 900; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('assets/fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('assets/fonts/Inter-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('assets/fonts/Inter-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('assets/fonts/Inter-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('assets/fonts/JetBrainsMono-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }

/* === DESIGN TOKENS — WHITE THEME === */
:root {
  /* Brand */
  --shield-navy:    #0A1628;
  --shield-navy-2:  #0F1F35;
  --shield-navy-3:  #152841;
  --cyber-cyan:     #00E5FF;
  --guardian-green:  #00FF88;

  /* Theme — White */
  --bg-primary:     #FFFFFF;
  --bg-secondary:   #F8FAFC;
  --bg-tertiary:    #F1F5F9;
  --bg-elevated:    #FFFFFF;

  /* Text */
  --text-primary:   #0A1628;
  --text-secondary: #334155;
  --text-tertiary:  #64748B;
  --text-muted:     #94A3B8;

  /* Accent — subdued for white backgrounds */
  --accent:         #0066CC;
  --accent-hover:   #0052A3;
  --accent-light:   #E8F4FD;
  --accent-green:   #059669;
  --accent-green-light: #ECFDF5;
  --accent-red:     #00B8CC;
  --accent-red-light: #E0FAFB;
  --accent-amber:   #D97706;
  --accent-amber-light: #FFFBEB;

  /* Borders */
  --border-subtle:  #F1F5F9;
  --border-default: #E2E8F0;
  --border-strong:  #CBD5E1;

  /* Shadows — subtle and premium */
  --shadow-xs:    0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm:    0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:    0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg:    0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl:    0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-card:  0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Layout */
  --container: 1280px;
  --section-y: clamp(80px, 12vw, 144px);

  /* Ease */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === INLINE SVG ICONS === */
.icon-inline { display: inline-block; vertical-align: -2px; margin-right: 2px; }

/* === CATEGORY DOTS === */
.cat-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: 1px;
}
.cat-dot.red { background: #00B8CC; }
.cat-dot.blue { background: #3B82F6; }
.cat-dot.gold { background: #F59E0B; }
.cat-dot.teal { background: #14B8A6; }
.cat-dot.purple { background: #8B5CF6; }

/* === STATS WATERMARK BACKGROUND === */
.section-stats {
  position: relative;
  overflow: hidden;
}
.section-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/stats-watermark.png') center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.section-stats > .container { position: relative; z-index: 1; }

/* === PROBLEM WATERMARK BACKGROUND === */
.section-problem {
  position: relative;
  overflow: hidden;
}
.section-problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/problem-watermark.png') center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.section-problem > .container { position: relative; z-index: 1; }

/* === TASKS WATERMARK BACKGROUND === */
.section-tasks {
  position: relative;
  overflow: hidden;
}
.section-tasks::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/tasks-watermark.png') center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.section-tasks > .container { position: relative; z-index: 1; }

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-secondary); }

/* === TYPOGRAPHY — Google Product Page Style === */
.display-2xl {
  font-family: 'Geist'; font-weight: 700;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.02; letter-spacing: -0.035em;
  color: var(--text-primary);
}
.display-xl {
  font-family: 'Geist'; font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05; letter-spacing: -0.03em;
}
.display-lg {
  font-family: 'Geist'; font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text-primary);
}
.body-lg { font-size: 18px; line-height: 1.65; color: var(--text-secondary); }
.body { font-size: 16px; line-height: 1.6; color: var(--text-secondary); }
.body-sm { font-size: 14px; line-height: 1.55; color: var(--text-tertiary); }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 13px; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === KICKER (section eyebrow) === */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.kicker::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* === BUTTONS — Clean, solid, premium === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 15px;
  white-space: nowrap;
  transition: all 0.25s var(--ease-out);
  position: relative;
}
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 102, 204, 0.3), 0 4px 12px rgba(0, 102, 204, 0.15);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.4), 0 8px 24px rgba(0, 102, 204, 0.2);
}
.btn-secondary {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--text-secondary);
  padding: 8px 16px;
}
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-secondary); border-radius: var(--radius-sm); }
.btn-lg { padding: 18px 36px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}
.announcement-bar a {
  color: var(--accent); font-weight: 600;
  margin-left: 8px;
}
.announcement-bar a:hover { text-decoration: underline; }

/* === NAV === */
.nav {
  position: sticky; top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 40;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-tertiary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-secondary); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  color: var(--text-tertiary);
  border: 1px solid var(--border-default);
  background: var(--bg-primary);
}
.lang-btn:hover { color: var(--text-primary); border-color: var(--border-strong); }
.lang-btn .chevron { font-size: 10px; opacity: 0.5; transition: transform 0.2s; }
.lang-switcher.open .chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  min-width: 160px;
  padding: 6px;
  box-shadow: var(--shadow-xl);
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.2s var(--ease-out);
}
.lang-switcher.open .lang-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  text-align: left;
}
.lang-option:hover { background: var(--bg-secondary); color: var(--text-primary); }
.lang-option.active { background: var(--accent-light); color: var(--accent); }
.lang-option .check { margin-left: auto; opacity: 0; }
.lang-option.active .check { opacity: 1; }

/* Mobile nav */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  color: var(--text-primary);
}
.nav-burger:hover { background: var(--bg-secondary); }

/* === HERO === */
.hero {
  padding-top: 80px;
  padding-bottom: 40px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Geist'; font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--accent); }
.hero-title .accent-green { color: var(--accent-green); }
.hero-subtitle {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--accent-green); }

.hero-visual {
  position: relative;
}
.hero-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-float-card {
  position: absolute;
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 32px; left: -24px; }
.hero-float-card.card-2 { top: 32px; right: -24px; animation-delay: 1s; }
.hero-float-card .float-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-float-card .float-icon.green { background: var(--accent-green-light); }
.hero-float-card .float-icon.blue { background: var(--accent-light); }
.hero-float-card .float-label { font-size: 12px; color: var(--text-muted); }
.hero-float-card .float-value { font-family: 'Geist'; font-weight: 700; font-size: 18px; color: var(--text-primary); }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* === LOGOS BAR === */
.logos-bar {
  padding: 24px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.logos-title {
  text-align: center;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.logos-grid > div {
  font-family: 'Geist'; font-weight: 700; font-size: 20px;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: -0.02em;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.logos-grid > div:hover { opacity: 1; }

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

/* === STATS === */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}
.stat-value {
  font-family: 'Geist'; font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.stat-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.4; }
.stat-source { font-size: 11px; color: var(--text-muted); font-style: italic; }

/* === PROBLEM === */
.problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.problem-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00B8CC, #00CC88);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.problem-card .badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-red-light);
  color: var(--accent-red);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.problem-card h3 { color: var(--text-primary); margin-bottom: 12px; font-size: 20px; font-weight: 600; }
.problem-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.problem-solution {
  text-align: center;
  font-family: 'Geist';
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.problem-solution::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-green));
  border-radius: 2px;
}

/* === SOLUTION === */
.solution-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.solution-features { display: flex; flex-direction: column; gap: 20px; }
.solution-feature {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  box-shadow: var(--shadow-xs);
}
.solution-feature:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.solution-feature .icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.solution-feature h4 { color: var(--text-primary); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.solution-feature p { font-size: 14px; color: var(--text-tertiary); line-height: 1.5; }

.solution-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

/* === AGENTS === */
.agents-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.agents-hero-text {
  text-align: left;
}
.agents-hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  object-fit: cover;
}
.agents-category { margin-bottom: 40px; }
.agents-category-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.agent-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}
.agent-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.agent-name { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.agent-desc { font-size: 13px; color: var(--text-tertiary); line-height: 1.55; }

/* === TASKS === */
.tasks-cloud {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-inline: auto;
}
.task-pill {
  padding: 10px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
}
.task-pill:hover {
  background: var(--accent-light);
  border-color: rgba(0, 102, 204, 0.2);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.tasks-cats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.task-cat {
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600;
  color: var(--accent);
}

/* === COMPARISON TABLE === */
.comp-table {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.comp-table table { width: 100%; border-collapse: collapse; }
.comp-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 12px; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-default);
}
.comp-table th:nth-child(3) { color: var(--accent-green); }
.comp-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}
.comp-table tr:last-child td { border-bottom: 0; }
.comp-table tr:hover td { background: var(--bg-secondary); }
.comp-task-name { font-weight: 600; color: var(--text-primary); }
.comp-before { color: var(--text-muted); text-decoration: line-through; opacity: 0.7; font-size: 13px; }
.comp-with { color: var(--accent-green); font-weight: 600; }
.comp-savings {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-green-light);
  color: var(--accent-green);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

/* === VS COMPETITORS === */
.vs-table {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.vs-table table { width: 100%; border-collapse: collapse; }
.vs-table th {
  padding: 20px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-default);
}
.vs-table th:first-child { text-align: left; padding-left: 24px; }
.vs-table th.vs-us-col {
  color: var(--accent);
  background: var(--accent-light);
  position: relative;
}
.vs-table th.vs-us-col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-green));
}
.vs-table td {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.vs-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
  padding-left: 24px;
}
.vs-table td.vs-us-cell {
  background: rgba(0, 102, 204, 0.03);
  font-weight: 600;
}
.vs-table tr:last-child td { border-bottom: 0; }
.vs-yes { color: var(--accent-green); font-size: 18px; }
.vs-no { color: var(--border-strong); font-size: 18px; }
.vs-partial-tag {
  font-size: 11px; color: var(--accent-amber);
  font-weight: 600; text-transform: uppercase;
}
.vs-expensive { color: var(--accent-red); font-weight: 600; font-size: 13px; }

/* === PRICING === */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 48px;
}
.pricing-toggle button {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.pricing-toggle button.active {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.pricing-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 102, 204, 0.1);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-tag {
  position: absolute; top: -1px; right: 24px;
  padding: 6px 14px;
  background: var(--accent);
  color: #FFFFFF;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-name {
  font-family: 'Geist'; font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.price-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-amount {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
}
.price-amount .num {
  font-family: 'Geist'; font-weight: 700;
  font-size: 48px;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.price-amount .per { font-size: 14px; color: var(--text-muted); }
.price-desc {
  font-size: 13px; color: var(--text-secondary);
  margin-bottom: 24px; line-height: 1.5;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.price-features {
  flex: 1;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.price-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card .btn { width: 100%; }

/* === TESTIMONIALS === */
/* Carousel container */
.test-carousel { position: relative; }
.test-carousel-track { overflow: hidden; }
.test-carousel-page {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  animation: fadeCarousel 0.5s ease;
}
.test-carousel-page.active { display: grid; }
@keyframes fadeCarousel {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.test-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.test-stars { color: #FBBF24; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.test-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.test-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.test-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-default);
}
.test-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.test-role { font-size: 13px; color: var(--text-muted); }

/* Carousel Controls */
.test-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.test-carousel-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-xs);
}
.test-carousel-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.test-carousel-dots { display: flex; gap: 8px; }
.test-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-default);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.test-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  box-shadow: var(--shadow-xs);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 500;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* === VALUE CHAIN === */
.section-chain {
  background: var(--shield-navy);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.section-chain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/chain-watermark.png') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.section-chain .display-lg,
.section-chain .display-lg span:not(.gradient-text) { color: #FFFFFF; }
.section-chain .body-lg { color: rgba(255,255,255,0.8); }
.section-chain .kicker { color: var(--cyber-cyan); border-color: rgba(0,184,204,0.3); background: rgba(0,184,204,0.1); }
.chain-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}
.chain-step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 0 8px;
}
.chain-number {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cyber-cyan);
  color: var(--shield-navy);
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.chain-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.chain-step h4 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.chain-step p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.chain-agents {
  display: block;
  font-size: 11px;
  color: var(--cyber-cyan);
  font-weight: 500;
  opacity: 0.8;
}
.chain-connector {
  display: flex;
  align-items: center;
  padding-top: 50px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* === AI CAPABILITIES === */
.cap-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.cap-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  object-fit: cover;
}
.cap-content .section-header {
  margin-bottom: 0;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.capability-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.cap-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 184, 204, 0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.capability-card h4 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--shield-navy);
  margin-bottom: 8px;
}
.capability-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* === 4-CARD PRICING LAYOUT === */
.pricing-cards {
  grid-template-columns: repeat(4, 1fr) !important;
}
.price-card.mssp-card {
  background: var(--shield-navy);
  color: #FFFFFF;
  border-color: rgba(0, 184, 204, 0.3);
}
.price-card.mssp-card .price-name,
.price-card.mssp-card .price-amount .num {
  color: #FFFFFF;
}
.price-card.mssp-card .price-tagline,
.price-card.mssp-card .price-desc {
  color: rgba(255,255,255,0.7);
}
.price-card.mssp-card .price-features li {
  color: rgba(255,255,255,0.85);
}
.price-card.mssp-card .price-features li::before {
  color: var(--cyber-cyan);
}
.price-card.mssp-card .btn {
  background: var(--cyber-cyan);
  color: var(--shield-navy);
  border: none;
}
.price-card.mssp-card .btn:hover {
  background: #00d4e8;
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #FFFFFF;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.final-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.55), rgba(0, 102, 204, 0.3));
}
.final-cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  font-family: 'Geist'; font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.final-cta p { font-size: 18px; color: rgba(255, 255, 255, 0.8); margin-bottom: 36px; }
.final-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary {
  background: #FFFFFF;
  color: var(--shield-navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.final-cta .btn-primary:hover {
  background: var(--bg-secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.final-cta-secondary {
  color: rgba(255, 255, 255, 0.9); font-weight: 500; font-size: 15px;
  align-self: center;
}
.final-cta-secondary:hover { text-decoration: underline; color: #fff; }

/* === FOOTER — Shield Navy (brand anchor) === */
.footer {
  background: var(--shield-navy);
  color: #FFFFFF;
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: #94A3B8; line-height: 1.55; max-width: 280px; }
.footer-social { display: none; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  transition: all 0.2s;
}
.footer-social a:hover {
  color: var(--cyber-cyan);
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.05);
}
.footer-col h4 {
  font-size: 13px; font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: #94A3B8;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyber-cyan); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: #64748B; }
.footer-certs {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #64748B;
  font-family: 'JetBrains Mono', monospace;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: #64748B; }
.footer-legal a:hover { color: var(--cyber-cyan); }

/* === SCROLL ANIMATIONS === */
.fade-up { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
html.js-anim .fade-up { opacity: 0; transform: translateY(24px); }
html.js-anim .fade-up.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .fade-up { opacity: 1 !important; transform: none !important; }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 100;
  padding: 80px 24px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--bg-secondary); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px;
  color: var(--text-primary);
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.mobile-close:hover { background: var(--bg-secondary); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-float-card { display: none; }
  .stats-grid, .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-cards, .pricing-cards, .test-carousel-page { grid-template-columns: 1fr 1fr !important; }
  .chain-grid { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .chain-connector { display: none; }
  .chain-step { max-width: 180px; min-width: 140px; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-layout { grid-template-columns: 1fr; }
  .agents-hero { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .stats-grid, .agents-grid { grid-template-columns: 1fr; }
  .vs-table, .comp-table { overflow-x: auto; display: block; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .pricing-cards { grid-template-columns: 1fr !important; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .chain-step { max-width: 100%; min-width: 100%; }
}
