/* ============================================================
   REOFT Technologies — Complete Stylesheet
   White / Purple Professional Theme
   ============================================================ */

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

/* ===== CSS VARIABLES ===== */
:root {
  /* Core Palette */
  --purple-900: #3b0764;
  --purple-800: #4c1d95;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --purple-100: #ede9fe;
  --purple-50:  #f5f3ff;

  /* Brand from logo */
  --brand:      #7c3aed;
  --brand-dark: #5b21b6;
  --brand-light:#ede9fe;

  /* Backgrounds */
  --bg-white:   #ffffff;
  --bg-light:   #fafafa;
  --bg-soft:    #f5f3ff;
  --bg-section: #f9f7ff;

  /* Text */
  --text-dark:    #1e1b4b;
  --text-body:    #374151;
  --text-muted:   #6b7280;
  --text-lighter: #9ca3af;

  /* Borders */
  --border:       rgba(124, 58, 237, 0.12);
  --border-mid:   rgba(124, 58, 237, 0.25);
  --border-strong:rgba(124, 58, 237, 0.45);

  /* Accents */
  --accent-glow:  rgba(124, 58, 237, 0.18);
  --accent-subtle:rgba(124, 58, 237, 0.07);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-purple: 0 8px 30px rgba(124, 58, 237, 0.2);
  --shadow-card:   0 2px 12px rgba(124, 58, 237, 0.08);

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --container:    1200px;
  --section-py:   5rem;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-full:  9999px;
  --transition:   all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-body); line-height: 1.75; }

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ===== UTILITY ===== */
.text-brand   { color: var(--brand); }
.text-muted   { color: var(--text-muted); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--accent-subtle);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}

.section-heading { margin-bottom: 1rem; }
.section-heading span { color: var(--brand); }
.section-subtext { max-width: 560px; color: var(--text-muted); font-size: 1.05rem; }
.center { text-align: center; }
.center .section-subtext { margin: 0 auto; }
.center .section-label  { margin-left: auto; margin-right: auto; }

.section-divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--purple-400));
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}
.center .section-divider { margin: 0.75rem auto 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.65rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: var(--transition); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.btn-ghost {
  color: var(--brand);
  padding: 0.5rem 0;
  border: none;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.btn-ghost:hover { gap: 0.75rem; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ===== ─── NAVBAR ─── ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: var(--accent-subtle);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav wrapper */
.mobile-nav-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav-wrapper.open { display: flex; }
.mobile-nav-wrapper .nav-links {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav-wrapper .nav-links a { width: 100%; }
.mobile-nav-wrapper .nav-cta {
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fdf9ff 0%, #f3effe 40%, #ede9fe 100%);
  overflow: hidden;
  padding-top: 72px;
}

/* Decorative blobs */
.hero-blob-1 {
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating binary code effect */
.hero-binary {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.03;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  line-height: 1.8;
  z-index: 0;
}

.hero-binary::before,
.hero-binary::after {
  content: '01001000 01100101 01101100 01101100 01101111 00100000 01010111 01101111 01110010 01101100 01100100 00100000 01000011 01111001 01100010 01100101 01110010 00100000 01010011 01100101 01100011 01110101 01110010 01101001 01110100 01111001 00100000 01010010 01000101 01001111 01000110 01010100 00100000 01010100 01100101 01100011 01101000 01101110 01101111 01101100 01101111 01100111 01101001 01100101 01110011';
  position: absolute;
  white-space: nowrap;
  animation: binaryFloat 25s linear infinite;
}

.hero-binary::before {
  top: 20%;
  left: -100%;
}

.hero-binary::after {
  top: 60%;
  left: -100%;
  animation-duration: 30s;
  animation-delay: -10s;
}

@keyframes binaryFloat {
  0% { transform: translateX(0); }
  100% { transform: translateX(200%); }
}

/* Removed blinking scanline and glow effects */

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: white;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-heading {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.hero-heading .gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--purple-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust-item svg { width: 15px; height: 15px; color: #10b981; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-lighter);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}
.scroll-indicator {
  width: 22px; height: 36px;
  border: 2px solid rgba(124,58,237,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 3px; height: 8px;
  background: var(--brand);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  margin-left: auto;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 22px; height: 22px; color: var(--brand); }
.hero-card-title { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.hero-card-sub   { font-size: 0.78rem; color: var(--text-muted); }

.hero-threat-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-threat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.threat-name { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.threat-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.badge-critical { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.badge-high     { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }
.badge-medium   { background: #fefce8; color: #ca8a04; border: 1px solid #fef08a; }
.badge-resolved { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

.hero-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hcf-stat-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--brand); }
.hcf-stat-label { font-size: 0.75rem; color: var(--text-muted); }

/* Hero layout (split) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--text-dark);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.ticker-item svg { width: 13px; height: 13px; color: var(--purple-400); flex-shrink: 0; }

/* ===== SECTIONS ===== */
section { padding: var(--section-py) 0; position: relative; }

/* ===== WHAT WE DO ===== */
.intro-section { background: var(--bg-white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.intro-image-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.intro-stat-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.intro-stat-card.card-1 { bottom: -1rem; left: -1rem; }
.intro-stat-card.card-2 { top: -1rem; right: -1rem; }
.stat-card-number { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--brand); }
.stat-card-label  { font-size: 0.78rem; color: var(--text-muted); }

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}
.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.intro-feature:hover {
  border-color: var(--border-strong);
  background: var(--purple-100);
  box-shadow: var(--shadow-card);
}
.intro-feature-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.intro-feature-icon svg { width: 17px; height: 17px; color: var(--brand); }
.intro-feature-text h4 { font-size: 0.83rem; font-weight: 600; margin-bottom: 0.15rem; color: var(--text-dark); }
.intro-feature-text p  { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* ===== SERVICES ===== */
.services-section { background: var(--bg-section); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--purple-400));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow-purple);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-icon svg { width: 26px; height: 26px; color: var(--brand); }
.service-card:hover .service-icon {
  background: var(--brand);
  border-color: var(--brand);
}
.service-card:hover .service-icon svg { color: white; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; color: var(--text-muted); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--accent-subtle);
  border: 1px solid var(--border);
  color: var(--brand);
  font-weight: 500;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%;
  height: 50%; width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ===== PROCESS ===== */
.process-section { background: var(--bg-white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), var(--border-mid), transparent);
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.process-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--accent-subtle);
}
.process-step h3 { font-size: 0.95rem; margin-bottom: 0.65rem; }
.process-step p  { font-size: 0.82rem; color: var(--text-muted); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--bg-section); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 0;
}
.why-image-wrap { position: relative; }
.why-image-wrap img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.why-image-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(124,58,237,0.15), transparent 50%);
  pointer-events: none;
}
.why-items { display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}
.why-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 20px; height: 20px; color: var(--brand); }
.why-item h4 { margin-bottom: 0.3rem; font-size: 0.95rem; }
.why-item p  { font-size: 0.83rem; color: var(--text-muted); }

/* ===== INDUSTRIES ===== */
.industries-section { background: var(--bg-white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.industry-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--purple-400));
  opacity: 0;
  transition: var(--transition);
}
.industry-card:hover {
  border-color: var(--border-strong);
  background: white;
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}
.industry-card:hover::after { opacity: 1; }
.industry-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  background: white;
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-sm);
}
.industry-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.industry-card p  { font-size: 0.875rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-section); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testimonial-stars svg { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--purple-400));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
  color: white; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; color: var(--text-dark); display: block; }
.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ===== CLIENTS ===== */
.clients-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.clients-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-lighter);
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.client-logo-placeholder {
  height: 44px;
  background: var(--bg-soft);
  border: 1.5px dashed var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-lighter);
  font-family: var(--font-mono);
  min-width: 130px;
  transition: var(--transition);
  cursor: default;
}
.client-logo-placeholder:hover {
  border-color: var(--border-strong);
  color: var(--brand);
  background: var(--accent-subtle);
}
.client-logo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}
.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.client-logo img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.client-logo span {
  filter: none !important;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-box {
  position: relative;
  text-align: center;
  padding: 2rem 0;
}
.cta-box .section-label {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.cta-box .section-label::before { background: white; }
.cta-box h2 { color: white; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-box p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-white {
  background: white;
  color: var(--brand);
  border-color: white;
}
.btn-white:hover {
  background: var(--purple-100);
  border-color: var(--purple-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin: 1.25rem 0 1.5rem;
  line-height: 1.7;
}
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-socials { display: flex; gap: 0.65rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--purple-400); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span,
.footer-contact-item a { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.75rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #fdf9ff 0%, #f3effe 40%, #ede9fe 100%);
  border-bottom: 1px solid var(--border-mid);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb svg { width: 13px; height: 13px; }

/* ===== ABOUT ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.value-icon svg { width: 24px; height: 24px; color: var(--brand); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.value-card p  { font-size: 0.875rem; color: var(--text-muted); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.team-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--purple-400));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: white;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}
.team-card-body { padding: 1.5rem; display: flex; flex-direction: column; }
.team-card-body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; min-height: 2.2rem; display: flex; align-items: center; }
.team-role {
  font-size: 0.78rem;
  color: var(--brand);
  font-family: var(--font-mono);
  margin-bottom: 0.85rem;
  display: block;
  min-height: 2.4rem;
}
.team-bio { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.team-links { display: flex; gap: 0.5rem; }
.team-social {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.team-social svg { width: 14px; height: 14px; }
.team-social:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

/* ===== SERVICES PAGE ===== */
.service-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem;
  overflow-x: auto;
}
.tab-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn.active { background: var(--brand); color: white; font-weight: 600; }
.tab-btn:hover:not(.active) { color: var(--brand); background: var(--accent-subtle); }

.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-list-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.service-list-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
.service-list-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--accent-subtle);
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-list-item h4 { font-size: 0.93rem; margin-bottom: 0.35rem; }
.service-list-item p  { font-size: 0.8rem; color: var(--text-muted); }

.methodology-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.method-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.method-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.method-card h4 { margin-bottom: 1rem; font-size: 0.95rem; }
.method-list { display: flex; flex-direction: column; gap: 0.5rem; }
.method-list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.method-list-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 3px var(--accent-subtle);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lighter); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-checkbox input {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--brand);
  margin-top: 2px;
}
.form-checkbox label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.form-checkbox a { color: var(--brand); }
.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--brand);
  color: white;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #16a34a;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-info-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--brand); }
.contact-info-text h4 { font-size: 0.875rem; margin-bottom: 0.3rem; }
.contact-info-text p,
.contact-info-text a { font-size: 0.82rem; color: var(--text-muted); display: block; }
.contact-info-text a:hover { color: var(--brand); }
.hours-grid {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hours-grid h4 { font-size: 0.875rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.hours-grid h4 svg { color: var(--brand); width: 15px; height: 15px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--text-body); font-weight: 500; }
.book-cta-card {
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.book-cta-card h4 { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; justify-content: center; }
.book-cta-card h4 svg { color: var(--brand); width: 17px; height: 17px; }
.book-cta-card p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ===== TYPEWRITER STABILITY FIX ===== */
/* Reserves space so surrounding text never jumps when words change */
.typewriter-stable {
  display: inline-block;
  min-width: 320px;
  vertical-align: bottom;
}

/* ===== HERO THREAT INTELLIGENCE CARD ===== */
.live-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #10b981;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-full);
  padding: 0.2rem 0.65rem;
  animation: livePulse 2s ease-in-out infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
.threat-counter {
  text-align: center;
  padding: 1.25rem 0 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.threat-counter-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.threat-counter-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.threat-bars { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.threat-bar-item {}
.threat-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.threat-bar-label span:last-child { color: var(--text-muted); }
.threat-bar-track {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 3px;
  overflow: hidden;
}
.threat-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s ease;
}

/* ===== DPIIT INFO BOX (light bg override) ===== */
.info-box {
  background: white;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 3rem;
}
.info-box h2 { color: var(--text-dark) !important; }
.info-box p  { color: var(--text-muted) !important; }
.info-box .section-label {
  background: var(--accent-subtle);
  border-color: var(--border-mid);
  color: var(--brand);
}
.info-box .section-label::before { background: var(--brand); }

/* ===== FOOTER SOCIALS FIX ===== */
.footer-socials {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.65rem;
}

/* ===== IDEOLOGY SECTION — FULL IMAGE ===== */
.ideology-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: center;
}
.ideology-image-wrap {
  position: relative;
}
.ideology-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.ideology-image-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(124,58,237,0.15), transparent 60%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .ideology-grid { grid-template-columns: 1fr; }
  .ideology-image-wrap { display: none; }
  .typewriter-stable { min-width: 200px; }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse      { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
@keyframes scrollDown { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(14px);opacity:0} }
@keyframes ticker     { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes fadeUp     { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }
.animate-delay-5 { transition-delay: .5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none !important; }
}

@media (max-width: 1024px) {
  :root { --section-py: 4rem; }
  .hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .intro-grid { gap: 3rem; }
  .why-grid { gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .services-list-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .methodology-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 3rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image-wrap { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-box { padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .intro-features { grid-template-columns: 1fr; }
  .hero-heading { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  :root { --section-py: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .clients-row { gap: 1rem; }
}
