/* ============================================================
   ZEEMOG SECURITY – MASTER DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --clr-bg: #020b18;
  --clr-bg-2: #050e1d;
  /* More transparent surfaces so background image shows through */
  --clr-surface: rgba(255, 255, 255, 0.06);
  --clr-surface-2: rgba(255, 255, 255, 0.10);
  --clr-surface-hover: rgba(255, 255, 255, 0.13);
  --clr-border: rgba(255, 255, 255, 0.12);
  --clr-border-2: rgba(255, 255, 255, 0.20);

  --clr-cyan: #00d4ff;
  --clr-cyan-dim: rgba(0, 212, 255, 0.12);
  --clr-cyan-glow: rgba(0, 212, 255, 0.25);
  --clr-blue: #3b82f6;
  --clr-blue-deep: #1e40af;
  --clr-indigo: #6366f1;
  --clr-violet: #8b5cf6;
  --clr-green: #10b981;
  --clr-red: #ef4444;
  --clr-amber: #f59e0b;

  /* Brighter text values for maximum readability on dark+image bg */
  --clr-text: #f0f4ff;
  --clr-text-2: #b8c8e0;
  --clr-text-muted: #7090b0;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #00d4ff 0%, #3b82f6 45%, #8b5cf6 100%);
  --grad-hero-soft: linear-gradient(135deg, rgba(0, 212, 255, 0.7) 0%, rgba(99, 102, 241, 0.7) 100%);
  --grad-card: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(59, 130, 246, 0.03) 100%);
  --grad-cta: linear-gradient(135deg, #0ea5e9 0%, #6366f1 60%, #8b5cf6 100%);
  --grad-dark: linear-gradient(180deg, #020b18 0%, #050e1d 100%);
  --grad-shimmer: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Typography */
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.18);
  --shadow-violet: 0 0 40px rgba(139, 92, 246, 0.2);
  --shadow-blue: 0 0 40px rgba(59, 130, 246, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --dur-fast: 0.15s;
  --dur-med: 0.3s;
  --dur-slow: 0.6s;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Slightly larger base font for better readability */
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: transparent;
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ── Global 3D Background Layer ── */
.global-3d-bg {
  position: fixed;
  inset: -15%;
  /* Negative inset so when it moves/rotates it doesn't show edges */
  background:
    /* Lighter overlay so the background image shows through clearly */
    radial-gradient(circle at 50% 100%, rgba(3, 7, 18, 0.25) 0%, rgba(3, 7, 18, 0.7) 100%),
    radial-gradient(ellipse at top, rgba(0, 212, 255, 0.07) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1614730321146-b6fa6a46bcb4?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat,
    var(--clr-bg);
  background-blend-mode: normal, normal, soft-light, normal;
  z-index: -10;
  pointer-events: none;
  will-change: transform;
  transform-style: preserve-3d;
  /* Increased opacity so image is more visible */
  opacity: 0.95;
}

/* Ensure background color is available during load or as fallback */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: -11;
  pointer-events: none;
}


/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--clr-cyan), var(--clr-violet));
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-cyan);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Typography ── */
h1,
h2 {
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

h5 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  color: var(--clr-text-2);
  line-height: 1.8;
  font-size: 1rem;
}

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

.text-cyan {
  color: var(--clr-cyan);
}

.text-muted {
  color: var(--clr-text-muted);
}

.text-center {
  text-align: center;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Background Effects ── */
.bg-grid {
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-noise::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Orb glows */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-cyan {
  background: rgba(0, 212, 255, 0.18);
}

.orb-blue {
  background: rgba(59, 130, 246, 0.15);
}

.orb-violet {
  background: rgba(139, 92, 246, 0.12);
}

/* ── Glassmorphism ── */
.glass {
  background: rgba(10, 20, 40, 0.45);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.glass-2 {
  background: rgba(10, 20, 40, 0.55);
  backdrop-filter: blur(26px) saturate(1.6);
  -webkit-backdrop-filter: blur(26px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--dur-med) var(--ease-out);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  background: var(--clr-surface-2);
  color: var(--clr-text);
  border: 1px solid var(--clr-border-2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--clr-cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
}

.btn-ghost:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
}

/* ── Badge / Tag ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-cyan {
  background: rgba(0, 212, 255, 0.1);
  color: var(--clr-cyan);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-violet {
  background: rgba(139, 92, 246, 0.1);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-cyan);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--clr-text-2);
  font-weight: 400;
}

/* ══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
/* ── Page Progress Bar ── */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-cta);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
  border-radius: 0 3px 3px 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--dur-med), border-color var(--dur-med);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--clr-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  /* No gap/font needed — image handles the full mark */
}

/* SVG logo image in nav */
.nav-logo-svg {
  height: 40px;
  width: auto;
  display: block;
  /* Smooth hover: slight brightness boost */
  transition: filter var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
  /* Ensure SVG colors (inline) render correctly on dark bg */
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.15));
}

.nav-logo:hover .nav-logo-svg {
  filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.45)) brightness(1.08);
  transform: translateY(-1px);
}

/* Legacy icon slot — hidden now that we use SVG */
.nav-logo-icon {
  display: none;
}

/* Footer logo */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.12));
  transition: filter var(--dur-med) var(--ease-out);
}

.footer-logo-link:hover .footer-logo-img {
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.35)) brightness(1.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-2);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-text);
  background: var(--clr-surface);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--dur-fast);
  margin-top: 1px;
  opacity: 0.6;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(5, 14, 29, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--dur-med), transform var(--dur-med) var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-2);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  color: var(--clr-cyan);
  background: rgba(0, 212, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease-out);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 18, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-sm);
  overflow-y: auto;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--clr-border);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
  /* No solid background – the global 3D background shows through */
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  margin-bottom: var(--space-md);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-cyan);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--clr-text-2);
  max-width: 660px;
  margin-bottom: var(--space-xl);
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

/* .hero-stat uses inherited flex from .hero-stats */

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 0.25rem;
}

.hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.6;
}

/* ══════════════════════════════════════
   TRUST LOGOS / MARQUEE
═══════════════════════════════════════ */
.trust-bar {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-align: center;
  margin-bottom: var(--space-md);
}

.trust-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  width: max-content;
  animation: marquee 28s linear infinite;
}

.trust-logos:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--dur-med);
}

.trust-logo:hover {
  color: var(--clr-cyan);
}

/* ══════════════════════════════════════
   PARTNER LOGOS
═══════════════════════════════════════ */
.partner-bar {
  padding: var(--space-xl) 0;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  transition: all var(--dur-med);
  min-width: 110px;
  text-align: center;
}

.partner-logo:hover {
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--clr-text);
  background: rgba(0, 212, 255, 0.04);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════ */
.service-card {
  background: rgba(8, 18, 38, 0.50);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--dur-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-hero);
  opacity: 0;
  transition: opacity var(--dur-med);
}

/* Shimmer on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shimmer);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--dur-med);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

/* ── Why Zeemog Section ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.why-card {
  background: rgba(8, 18, 38, 0.50);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--dur-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-hero);
  opacity: 0;
  transition: opacity var(--dur-med);
}

.why-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
  color: var(--clr-text);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--clr-text-2);
  line-height: 1.7;
}

.why-metric {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-metric-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: var(--clr-text);
}

.service-card p {
  font-size: 0.96rem;
  color: var(--clr-text-2);
  line-height: 1.7;
}

.service-card .btn-ghost {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

/* Grid responsive for service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ══════════════════════════════════════
   STATS / METRIC BARS
═══════════════════════════════════════ */
.stats-bar {
  background: rgba(8, 18, 38, 0.45);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--clr-text-2);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  background: var(--clr-border);
  align-self: stretch;
}

/* ══════════════════════════════════════
   FEATURE LIST
═══════════════════════════════════════ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--clr-green);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feature-item p {
  font-size: 0.96rem;
  color: var(--clr-text-2);
  margin: 0;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonial-card {
  background: rgba(8, 18, 38, 0.48);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: var(--space-md);
  font-size: 6rem;
  line-height: 1;
  font-family: Georgia, serif;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  pointer-events: none;
  transition: opacity var(--dur-med);
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover::before {
  opacity: 0.35;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--clr-text-2);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--clr-text-2);
}

/* ══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.07) 0%, rgba(99, 102, 241, 0.07) 50%, rgba(139, 92, 246, 0.07) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* animated pulse top border */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--grad-hero);
  border-radius: 2px;
  animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {

  0%,
  100% {
    opacity: 0.5;
    width: 40%;
  }

  50% {
    opacity: 1;
    width: 70%;
  }
}

/* ambient glow orb inside CTA */
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* ══════════════════════════════════════
   ACCORDION / FAQ
═══════════════════════════════════════ */
.accordion-item {
  background: rgba(8, 18, 38, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: border-color var(--dur-med);
}

.accordion-item.open {
  border-color: var(--clr-border-2);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--space-md);
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  gap: 1rem;
  transition: background var(--dur-fast);
}

.accordion-trigger:hover {
  background: var(--clr-surface-2);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--clr-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease-out);
  color: var(--clr-cyan);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.accordion-body-inner {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.96rem;
  color: var(--clr-text-2);
  line-height: 1.8;
  background: transparent;
}

.accordion-item.open .accordion-body {
  max-height: 500px;
}

/* ══════════════════════════════════════
   FORMS
═══════════════════════════════════════ */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-2);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  color: var(--clr-text);
  font-size: 0.92rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--clr-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-control::placeholder {
  color: var(--clr-text-muted);
}

select.form-control {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
}

select.form-control option {
  background-color: #0d1929;
  color: #f1f5f9;
  padding: 0.5rem;
}

select.form-control option:hover,
select.form-control option:checked {
  background-color: #1e3a5f;
  color: #00d4ff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem var(--space-md);
  color: var(--clr-green);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* ══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-card {
  background: rgba(8, 18, 38, 0.48);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-2);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-body {
  padding: var(--space-md);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.blog-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--clr-text);
}

.blog-card p {
  font-size: 0.94rem;
  color: var(--clr-text-2);
  margin-bottom: var(--space-md);
}

.blog-read-more {
  font-size: 0.82rem;
  color: var(--clr-cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-read-more:hover {
  gap: 0.6rem;
}

/* ══════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.pricing-card {
  background: rgba(8, 18, 38, 0.48);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--dur-med) var(--ease-out);
}

.pricing-card.featured {
  border-color: rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-cyan);
  margin-bottom: 0.5rem;
}

.pricing-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.93rem;
  color: var(--clr-text-2);
  margin-bottom: var(--space-lg);
}

.pricing-cta-label {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.pricing-features {
  margin-bottom: var(--space-xl);
}

/* ══════════════════════════════════════
   INDUSTRY CARDS
═══════════════════════════════════════ */
.industry-card {
  background: rgba(8, 18, 38, 0.45);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--dur-med) var(--ease-out);
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--clr-border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.industry-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--clr-text);
}

.industry-card p {
  font-size: 0.92rem;
  color: var(--clr-text-2);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.team-card {
  background: rgba(8, 18, 38, 0.48);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--dur-med) var(--ease-out);
}

.team-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.08);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto var(--space-sm);
  color: #fff;
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--clr-cyan);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--clr-text-2);
  line-height: 1.7;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-cyan), var(--clr-violet));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  padding-left: var(--space-md);
}

.timeline-dot {
  position: absolute;
  left: -2.4rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-cyan);
  border: 3px solid var(--clr-bg);
  box-shadow: 0 0 12px var(--clr-cyan);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-cyan);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.93rem;
  color: var(--clr-text-2);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CERT BADGES
═══════════════════════════════════════ */
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(8, 18, 38, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.75rem var(--space-md);
}

.cert-icon {
  font-size: 1.5rem;
}

.cert-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text);
}

.cert-issuer {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
}

/* ══════════════════════════════════════
   TERMINAL MOCK (SOC Preview)
═══════════════════════════════════════ */
.terminal-mock {
  background: #04060e;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
}

.terminal-body {
  padding: 1.25rem;
  min-height: 220px;
  max-height: 300px;
  overflow-y: auto;
}

.terminal-log {
  font-size: 0.78rem;
  line-height: 1.8;
  overflow-y: auto;
}

.terminal-line {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.1rem;
}

.t-time {
  color: var(--clr-text-muted);
  flex-shrink: 0;
}

.t-tag {
  flex-shrink: 0;
  padding: 0.05rem 0.45rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.t-tag.alert {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.t-tag.warn {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
}

.t-tag.block {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
}

.t-tag.info {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.t-msg {
  color: var(--clr-text-2);
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--clr-cyan);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  border-radius: 1px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.terminal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 212, 255, 0.03);
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--clr-green);
  font-weight: 600;
}

.terminal-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.terminal-cta {
  font-size: 0.8rem;
}

/* ══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #030912;
  border-top: 1px solid var(--clr-border);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: color var(--dur-fast);
}

.footer-link:hover {
  color: var(--clr-text);
}

.footer-newsletter label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  color: var(--clr-text);
  font-size: 0.85rem;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--clr-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom-left {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-bottom-right {
  display: flex;
  gap: var(--space-md);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.footer-social:hover {
  border-color: var(--clr-cyan);
  color: var(--clr-cyan);
  background: rgba(0, 212, 255, 0.05);
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-left.visible,
.reveal-right.visible {
  transform: translateX(0);
}

/* ══════════════════════════════════════
   DIVIDER
═══════════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-border), transparent);
  margin: var(--space-xl) 0;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  padding: calc(72px + 5rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--clr-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, rgba(99, 102, 241, 0.06) 35%, transparent 70%);
  pointer-events: none;
  animation: hero-glow-pulse 6s ease-in-out infinite;
}

@keyframes hero-glow-pulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

.page-hero .section-label {
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   404
═══════════════════════════════════════ */
.notfound-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
}

.notfound-code {
  font-size: 8rem;
  font-weight: 900;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ══════════════════════════════════════
   TABLE
═══════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-xl);
}

.compare-table th,
.compare-table td {
  padding: 0.9rem var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
}

.compare-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
}

.compare-table thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.compare-table tbody tr:hover td {
  background: var(--clr-surface);
}

.compare-table .check-yes {
  color: var(--clr-green);
}

.compare-table .check-no {
  color: var(--clr-text-muted);
}

/* ══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .hero-stats {
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {

  .container,
  .container-wide {
    padding: 0 var(--space-sm);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-logos {
    gap: var(--space-md);
  }

  .cta-banner {
    padding: var(--space-xl) var(--space-sm);
  }
}

/* ══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════════════════════════
   IMMERSIVE SCROLL — PARALLAX, DEPTH & 3D EFFECTS
══════════════════════════════════════════════════════════════ */

/* ── Scroll Reveal (upgraded) ── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.07s;
}

.reveal-delay-2 {
  transition-delay: 0.14s;
}

.reveal-delay-3 {
  transition-delay: 0.21s;
}

.reveal-delay-4 {
  transition-delay: 0.28s;
}

.reveal-delay-5 {
  transition-delay: 0.35s;
}

/* ── Particle Canvas ── */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Parallax Layer base ── */
.parallax-layer {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Hero: override z-indexes so layers stack correctly ── */
.hero-bg {
  z-index: 0;
}

.hero-grid {
  z-index: 1;
}

.hero .orb {
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 4;
}

.hero-particles {
  z-index: 0;
}

/* ── Hero Scroll Cue ── */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: cue-fade 2.5s ease-in-out infinite;
}

.scroll-cue-track {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-cue-dot {
  width: 4px;
  height: 8px;
  background: var(--clr-cyan);
  border-radius: 2px;
  animation: cue-scroll 1.8s ease-in-out infinite;
}

@keyframes cue-scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(12px);
    opacity: 0;
  }

  81% {
    transform: translateY(0);
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes cue-fade {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.85;
  }
}

/* ── Section Depth Layers ── */
.immersive-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Entrance animation initial state */
  --section-enter: 0;
}

.immersive-section.section-entered {
  --section-enter: 1;
}

.section-depth-layer {
  position: absolute;
  inset: -30% -10%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.immersive-section.section-entered .section-depth-layer {
  opacity: 1;
}

.section-depth-layer--far {
  background: radial-gradient(ellipse at 60% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  filter: blur(80px);
}

.section-depth-layer--mid {
  background: radial-gradient(ellipse at 40% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(100px);
}

.section-depth-layer--back {
  background: radial-gradient(ellipse at 50% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  filter: blur(120px);
}

/* Make sure section content is above depth layer */
.immersive-section>.container {
  position: relative;
  z-index: 1;
}

/* ── 3D Card Tilt Setup ── */
[data-tilt] {
  transform-style: preserve-3d;
  transform: perspective(800px);
  will-change: transform;
  transition: box-shadow 0.3s ease;
}

[data-tilt]:hover {
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 212, 255, 0.1);
}

/* Card inner glow element */
.service-card-glow,
.why-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  transition: background 0.1s linear;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.07), transparent 60%);
}

/* Push card content above glow */
.service-card>*:not(.service-card-glow),
.why-card>*:not(.why-card-glow) {
  position: relative;
  z-index: 1;
}

/* ── CTA Banner glow element ── */
.cta-banner {
  position: relative;
  isolation: isolate;
}

.cta-banner-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: cta-glow-breathe 4s ease-in-out infinite;
}

.cta-banner>*:not(.cta-banner-glow) {
  position: relative;
  z-index: 1;
}

@keyframes cta-glow-breathe {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

/* ── Enhanced nav glow on scroll ── */
.nav.scrolled {
  box-shadow: 0 1px 0 rgba(0, 212, 255, 0.06), 0 4px 32px rgba(0, 0, 0, 0.4);
}

/* ── Glassmorphism upgrade ── */
.glass {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-2 {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

/* ── Professional card border upgrade ── */
.service-card,
.why-card {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-card:hover,
.why-card:hover {
  border-color: rgba(0, 212, 255, 0.22);
  background: linear-gradient(135deg,
      rgba(0, 212, 255, 0.04) 0%,
      rgba(99, 102, 241, 0.03) 100%);
}

/* ── Section divider gradient line ── */
.section::before,
.section-sm::before {
  content: '';
  display: block;
  height: 1px;
  margin: 0 auto;
  width: 60%;
  background: linear-gradient(to right, transparent, rgba(0, 212, 255, 0.12), transparent);
  margin-bottom: var(--space-3xl);
  opacity: 0;
  pointer-events: none;
}

/* ── Hero stat groups — add subtle separator ── */
.hero-stat {
  position: relative;
  padding-right: var(--space-lg);
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* ── stats-bar polish ── */
.stats-bar {
  background: linear-gradient(135deg,
      rgba(0, 212, 255, 0.04) 0%,
      rgba(99, 102, 241, 0.04) 100%);
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── Terminal mock shadow upgrade ── */
.terminal-mock {
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 212, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ── Disable heavy effects on mobile for performance ── */
@media (max-width: 767px) {
  .hero-particles {
    display: none;
  }

  .parallax-layer {
    transform: none !important;
  }

  .section-depth-layer {
    display: none;
  }

  [data-tilt] {
    transform: none !important;
  }

  .hero-content {
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-scroll-cue {
    display: none;
  }
}

/* ══════════════════════════════════════
   COMPLIANCE FRAMEWORKS SECTION
═══════════════════════════════════════ */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.compliance-card {
  position: relative;
  background: linear-gradient(135deg,
      rgba(16, 185, 129, 0.06) 0%,
      rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--dur-med) var(--ease-out);
  overflow: hidden;
}

.compliance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(16, 185, 129, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--dur-med);
}

.compliance-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg,
      rgba(16, 185, 129, 0.1) 0%,
      rgba(0, 212, 255, 0.04) 100%);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.08);
}

.compliance-card:hover::before {
  opacity: 1;
}

.compliance-card-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.compliance-card-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #10b981, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
}

.compliance-card-full {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

.compliance-card-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--clr-text-muted);
}

.compliance-footer {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(16, 185, 129, 0.12);
}

/* Responsive compliance grid */
@media (max-width: 1024px) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Responsive Logo ── */
@media (max-width: 768px) {
  .nav-logo-svg {
    height: 32px;
  }

  .footer-logo-img {
    height: 36px;
  }
}