/* ============================================================
   iTechFixr — Main Stylesheet
   itechfixr.css · v1.0
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* V1 Cipher — Dark ink + electric cyan */
  --v1-bg: #050E1A;
  --v1-bg2: #071525;
  --v1-bg3: #0A1E35;
  --v1-primary: #00C2E0;
  --v1-secondary: #1E7AAC;
  --v1-accent: #C8A22A;
  --v1-text: #E8F4FD;
  --v1-muted: #6B8FA8;
  --v1-card: rgba(14,36,58,0.9);
  --v1-border: rgba(0,194,224,0.18);
  --v1-nav-bg: rgba(5,14,26,0.95);

  /* V2 Command — Deep navy + editorial */
  --v2-bg: #0D1B2A;
  --v2-bg2: #112240;
  --v2-bg3: #1A3A6B;
  --v2-primary: #4DA8DA;
  --v2-secondary: #1565C0;
  --v2-accent: #E8C547;
  --v2-text: #F0F6FF;
  --v2-muted: #7B9BB8;
  --v2-card: rgba(17,34,64,0.95);
  --v2-border: rgba(77,168,218,0.2);
  --v2-nav-bg: rgba(13,27,42,0.97);

  /* V3 Sentinel — Dark hero + white body */
  --v3-bg: #060F1C;
  --v3-bg2: #FFFFFF;
  --v3-bg3: #F2F6FB;
  --v3-primary: #0056B3;
  --v3-secondary: #1A7DC8;
  --v3-accent: #FF6B35;
  --v3-text-dark: #0A1628;
  --v3-text-light: #F5F9FF;
  --v3-muted: #64748B;
  --v3-card: #FFFFFF;
  --v3-border: rgba(0,86,179,0.15);
  --v3-nav-bg: rgba(6,15,28,0.98);

  /* Active defaults (V1) */
  --bg: var(--v1-bg);
  --bg2: var(--v1-bg2);
  --bg3: var(--v1-bg3);
  --primary: var(--v1-primary);
  --secondary: var(--v1-secondary);
  --accent: var(--v1-accent);
  --text: var(--v1-text);
  --muted: var(--v1-muted);
  --card-bg: var(--v1-card);
  --border: var(--v1-border);
  --nav-bg: var(--v1-nav-bg);

  /* Typography */
  --font-body: 'Space Grotesk', sans-serif;
  --font-display: 'Sora', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing */
  --section-v: 96px;
  --max-w: 1200px;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.5s, color 0.5s;
  line-height: 1.6;
}

/* THEME VARIANTS */
body[data-variant="v2"] {
  --bg: var(--v2-bg); --bg2: var(--v2-bg2); --bg3: var(--v2-bg3);
  --primary: var(--v2-primary); --secondary: var(--v2-secondary); --accent: var(--v2-accent);
  --text: var(--v2-text); --muted: var(--v2-muted); --card-bg: var(--v2-card);
  --border: var(--v2-border); --nav-bg: var(--v2-nav-bg);
}
body[data-variant="v3"] {
  --bg: var(--v3-bg); --bg2: var(--v3-bg2); --bg3: var(--v3-bg3);
  --primary: var(--v3-primary); --secondary: var(--v3-secondary); --accent: var(--v3-accent);
  --text: var(--v3-text-light); --muted: #94A3B8; --card-bg: rgba(255,255,255,0.05);
  --border: var(--v3-border); --nav-bg: var(--v3-nav-bg);
}
body[data-variant="v3"] #about,
body[data-variant="v3"] #testimonials,
body[data-variant="v3"] #faq { background: #F2F6FB; color: var(--v3-text-dark); }
body[data-variant="v3"] #about .section-title,
body[data-variant="v3"] #about .section-sub,
body[data-variant="v3"] #about .cred-text,
body[data-variant="v3"] #testimonials .section-title,
body[data-variant="v3"] #testimonials .section-sub,
body[data-variant="v3"] #testimonials .testimonial-quote,
body[data-variant="v3"] #testimonials .testimonial-name,
body[data-variant="v3"] #faq .section-title,
body[data-variant="v3"] #faq .section-sub,
body[data-variant="v3"] #faq .faq-q { color: var(--v3-text-dark); }
body[data-variant="v3"] #about .section-label,
body[data-variant="v3"] #testimonials .section-label,
body[data-variant="v3"] #faq .section-label { color: var(--v3-primary); }
body[data-variant="v3"] #about .cred-item,
body[data-variant="v3"] #testimonials .testimonial-card,
body[data-variant="v3"] #faq .faq-item { background: #fff; border-color: rgba(0,86,179,0.12); }
body[data-variant="v3"] #about .about-photo-frame { background: #E8F0FE; border-color: rgba(0,86,179,0.15); }
/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 0 rgba(200, 162, 42, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 40px; height: 72px;
  display: flex; align-items: center;
  transition: background 0.3s, height 0.3s;
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 40px; height: 40px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  color: var(--text); letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0 auto; }
.nav-links li { position: relative; height: 72px; display: flex; align-items: center; }
.nav-links li > a {
  color: var(--muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em;
  transition: color 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li > a:hover { color: var(--primary); }

/* Mega Menu Dropdown Setup */
.has-megamenu { position: static !important; }
.megamenu-panel {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #030911;
  border: 1px solid var(--border);
  border-top: none;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 10000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border-radius: 0 0 4px 4px;
}
.has-megamenu:hover .megamenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu-column h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,194,224,0.2);
  padding-bottom: 8px;
}
.megamenu-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.megamenu-column ul li a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #E8F4FD;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.megamenu-column ul li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.megamenu-column ul li a span {
  font-size: 0.78rem;
  font-weight: 400;
  color: #8FA8BA;
  line-height: 1.3;
}

/* Simple Dropdown for Products */
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: #030911;
  border: 1px solid var(--border);
  padding: 20px;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 10000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #E8F4FD;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.dropdown-menu a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.dropdown-menu a span {
  font-size: 0.78rem;
  font-weight: 400;
  color: #8FA8BA;
  line-height: 1.3;
}

.nav-cta {
  background: var(--primary); color: #000 !important;
  padding: 9px 22px; border-radius: var(--radius);
  font-weight: 700 !important; font-size: 0.85rem !important;
  letter-spacing: 0.05em; transition: opacity 0.2s !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { opacity: 0.85; }
.nav-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--primary); color: #000;
  padding: 14px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-cta-attract { animation: ctaGlowPulse 2.8s ease-in-out infinite; }
.btn-cta-attract:hover { animation-play-state: paused; }
@keyframes ctaGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 194, 224, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(0, 194, 224, 0); }
}
.btn-outline {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { padding: var(--section-v) 40px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--primary);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--primary); }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--text); margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; padding: 120px 40px 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--bg);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.5;
}
.hero-glow {
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,224,0.12) 0%, transparent 65%); pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,122,172,0.1) 0%, transparent 65%); pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,194,224,0.08); border: 1px solid rgba(0,194,224,0.25); color: var(--primary);
  padding: 6px 14px; border-radius: 2px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: var(--text); margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }

/* genjutsu:cast — hero entrance stagger (Variant B, "Grid Scan") — uses the site's existing .reveal system */
.hero-badge.reveal { transition-delay: 0s; }
.hero h1.reveal { transition-delay: 0.08s; }
.hero-sub.reveal { transition-delay: 0.16s; }
.hero-actions.reveal { transition-delay: 0.24s; }
.hero-visual.reveal { transition-delay: 0.32s; }

/* One-pass diagonal scan across the hero grid on load — echoes "we scan for weaknesses" */
.hero-grid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(0,194,224,0.55) 50%, transparent 60%);
  background-size: 250% 250%;
  background-position: -100% -100%;
  opacity: 0;
  pointer-events: none;
  animation: hero-grid-scan 1.6s cubic-bezier(0.2, 0, 0, 1) 0.9s 1 both;
}
@keyframes hero-grid-scan {
  0%   { background-position: -100% -100%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { background-position: 100% 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge.reveal, .hero h1.reveal, .hero-sub.reveal, .hero-actions.reveal, .hero-visual.reveal {
    transition-delay: 0s !important;
  }
  .hero-grid-bg::after { animation: none !important; }
}

.hero-logo-wrap {
  width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-logo-ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(0,194,224,0.2);
  animation: spin-slow 20s linear infinite;
  transform-style: preserve-3d;
}
.hero-logo-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 12px var(--primary), 0 0 20px var(--accent);
}
.hero-logo-ring2 {
  position: absolute; inset: 30px; border-radius: 50%;
  border: 1px dashed rgba(0,194,224,0.12); animation: spin-slow 30s linear infinite reverse;
  transform-style: preserve-3d;
}
.hero-logo-img {
  width: 200px; height: 200px; object-fit: contain; position: relative; z-index: 1;
  animation: float-logo 6s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-tags {
  position: absolute; display: flex; flex-direction: column; gap: 10px; pointer-events: none;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-tags-left {
  left: -40px; top: 6%; align-items: flex-start;
  animation: float-tags-left 7s ease-in-out infinite;
}
.hero-tags-right {
  right: -40px; bottom: 6%; align-items: flex-end;
  animation: float-tags-right 8s ease-in-out infinite 1s;
}
.hero-tag {
  background: rgba(5,14,26,0.85); border: 1px solid var(--border); padding: 8px 14px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--primary); letter-spacing: 0.05em; white-space: nowrap;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  overflow: hidden;
  position: relative;
  
  /* Entrance initial state */
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.hero-tags-right .hero-tag {
  transform: translateX(30px);
}
.page-loaded .hero-tag {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger entrance */
.page-loaded .hero-tags-left .hero-tag:nth-child(1) { transition-delay: 0.4s; }
.page-loaded .hero-tags-left .hero-tag:nth-child(2) { transition-delay: 0.55s; }
.page-loaded .hero-tags-right .hero-tag:nth-child(1) { transition-delay: 0.7s; }
.page-loaded .hero-tags-right .hero-tag:nth-child(2) { transition-delay: 0.85s; }

/* Interactive Hover state */
.hero-tag:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0,194,224,0.45);
  color: #fff;
  background: rgba(0,194,224,0.12);
  z-index: 10;
  animation: tag-glitch 0.3s infinite linear;
}

@keyframes tag-glitch {
  0% {
    transform: translateY(-5px) scale(1.05) translate(0, 0) skewX(0deg);
    text-shadow: 2px 0 0 #ff0055, -2px 0 0 var(--primary);
    letter-spacing: 0.05em;
  }
  20% {
    transform: translateY(-5px) scale(1.05) translate(-2px, 1px) skewX(3deg);
    text-shadow: -2px 0 0 #ff0055, 2px 0 0 var(--primary);
    letter-spacing: 0.07em;
  }
  40% {
    transform: translateY(-5px) scale(1.05) translate(1px, -1px) skewX(-3deg);
    text-shadow: 1px 0 0 #ff0055, -1px 0 0 var(--primary);
    letter-spacing: 0.04em;
  }
  60% {
    transform: translateY(-5px) scale(1.05) translate(-1px, 2px) skewX(1deg);
    text-shadow: -1px 0 0 #ff0055, 1px 0 0 var(--primary);
    letter-spacing: 0.06em;
  }
  80% {
    transform: translateY(-5px) scale(1.05) translate(2px, -2px) skewX(-1deg);
    text-shadow: 3px 0 0 #ff0055, -3px 0 0 var(--primary);
    letter-spacing: 0.03em;
  }
  100% {
    transform: translateY(-5px) scale(1.05) translate(0, 0) skewX(0deg);
    text-shadow: 2px 0 0 #ff0055, -2px 0 0 var(--primary);
    letter-spacing: 0.05em;
  }
}


/* Scanning scanline overlay */
.hero-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 194, 224, 0.25),
    transparent
  );
  transform: skewX(-25deg);
  animation: tag-scan 5s infinite linear;
  pointer-events: none;
}
.hero-tags-left .hero-tag:nth-child(1)::before { animation-delay: 0.5s; }
.hero-tags-left .hero-tag:nth-child(2)::before { animation-delay: 1.8s; }
.hero-tags-right .hero-tag:nth-child(1)::before { animation-delay: 3.1s; }
.hero-tags-right .hero-tag:nth-child(2)::before { animation-delay: 4.4s; }

@keyframes tag-scan {
  0% { left: -150%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 40px rgba(0,194,224,0.35)); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 0 55px rgba(0,194,224,0.5)); }
}
@keyframes float-tags-left {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-tags-right {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   HUMAN FIREWALL SECTION
   ============================================================ */
#human-firewall {
  background: linear-gradient(135deg, #020810 0%, #071525 50%, #0A1E2E 100%);
  position: relative; overflow: hidden;
}
.hf-bg-circuit {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image:
    linear-gradient(rgba(0,194,224,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,224,1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hf-accent-bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
}
.hf-inner {
  max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1;
}
.hf-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 48px;
  flex-wrap: wrap; margin-bottom: 64px;
}
.hf-headline-wrap { flex: 1; min-width: 320px; }
.hf-popular-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, rgba(200,162,42,0.15), rgba(200,162,42,0.05));
  border: 1px solid rgba(200,162,42,0.4); color: #C8A22A;
  padding: 6px 16px; border-radius: 2px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px;
}
.hf-popular-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #C8A22A; animation: pulse 1.5s infinite; }
.hf-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: #E8F4FD; margin-bottom: 20px;
}
.hf-title .hf-highlight {
  color: var(--primary);
  text-shadow: 0 0 40px rgba(0,194,224,0.4);
}
.hf-desc { font-size: 1rem; color: #6B8FA8; line-height: 1.75; max-width: 500px; }
.hf-cta-col { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; padding-top: 8px; }
.hf-stat-pill {
  background: rgba(0,194,224,0.08); border: 1px solid rgba(0,194,224,0.2);
  padding: 12px 20px; border-radius: var(--radius); text-align: center;
}
.hf-stat-pill strong {
  display: block; font-family: var(--font-mono); font-size: 1.6rem;
  color: var(--primary); font-weight: 700; line-height: 1;
}
.hf-stat-pill span { font-size: 0.72rem; color: #6B8FA8; text-transform: uppercase; letter-spacing: 0.08em; }

.hf-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.hf-pillar {
  background: rgba(14,36,58,0.7); border: 1px solid rgba(0,194,224,0.12);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color 0.25s, transform 0.2s;
  position: relative; overflow: hidden;
}
.hf-pillar:hover { border-color: var(--primary); transform: translateY(-3px); }
.hf-pillar-num {
  font-family: var(--font-mono); font-size: 0.6rem; color: var(--primary);
  letter-spacing: 0.1em; margin-bottom: 16px; opacity: 0.5;
}
.hf-pillar-icon {
  width: 44px; height: 44px; margin-bottom: 16px;
  background: rgba(0,194,224,0.08); border: 1px solid rgba(0,194,224,0.15); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.hf-pillar h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #E8F4FD; margin-bottom: 10px; }
.hf-pillar p { font-size: 0.825rem; color: #6B8FA8; line-height: 1.65; }

.hf-outcomes {
  background: rgba(0,194,224,0.04); border: 1px solid rgba(0,194,224,0.12);
  border-radius: var(--radius); padding: 32px 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px;
}
.hf-outcome {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.875rem; color: #E8F4FD;
}
.hf-outcome-check {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: rgba(0,194,224,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.7rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-frame {
  width: 100%; aspect-ratio: 3/4; max-width: 360px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative;
}
.about-photo-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.about-photo-placeholder svg { opacity: 0.3; }
.about-photo-placeholder span { color: var(--muted); font-size: 0.8rem; font-family: var(--font-mono); }
.about-corner { position: absolute; width: 30px; height: 30px; border-color: var(--primary); border-style: solid; }
.about-corner-tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.about-corner-br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: #000; padding: 16px 20px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; line-height: 1.4;
}
.about-creds { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.cred-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
}
.cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.cred-text { font-size: 0.875rem; color: var(--text); font-weight: 500; }
.cred-tag { margin-left: auto; font-family: var(--font-mono); font-size: 0.65rem; color: var(--primary); }

/* ============================================================
   TRAINING PROGRAMS
   ============================================================ */
#training { background: var(--bg); }
.training-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.training-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px;
  position: relative; overflow: hidden; transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s; cursor: default;
}
.training-card:hover {
  border-color: var(--primary); transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.3), 0 0 0 1px var(--primary) inset;
}
.training-card-glow {
  position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,224,0.08) 0%, transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.training-card:hover .training-card-glow { opacity: 1; }
.training-card-num { font-family: var(--font-mono); font-size: 0.65rem; color: var(--primary); letter-spacing: 0.1em; margin-bottom: 20px; opacity: 0.6; }
.training-card-icon {
  width: 48px; height: 48px; margin-bottom: 20px; background: rgba(0,194,224,0.08);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.training-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.training-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.training-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.training-feat { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text); }
.training-feat::before { content: ''; width: 14px; height: 1px; background: var(--primary); flex-shrink: 0; }
.training-audience {
  display: inline-block; background: rgba(0,194,224,0.08); border: 1px solid rgba(0,194,224,0.2);
  color: var(--primary); padding: 4px 10px; border-radius: 2px;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 20px; transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--primary); }
.testimonial-quote { font-size: 0.9rem; color: var(--text); line-height: 1.75; font-style: italic; }
.testimonial-quote::before { content: '\201C'; color: var(--primary); font-size: 1.4rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; color: var(--primary);
}
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--text); }
.testimonial-role { font-size: 0.75rem; color: var(--muted); }
.testimonial-stars { display: flex; gap: 2px; color: var(--accent); font-size: 0.8rem; }

/* ============================================================
   BLOG
   ============================================================ */
#blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.blog-card-img {
  height: 180px; background: var(--bg3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.blog-card-img-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
}
.blog-card-img-icon {
  position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,194,224,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card-cat { font-family: var(--font-mono); font-size: 0.65rem; color: var(--primary); letter-spacing: 0.1em; text-transform: uppercase; }
.blog-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.4; color: var(--text); }
.blog-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--muted);
  margin-top: auto;
}
.blog-read-more {
  color: var(--primary); font-weight: 700; font-size: 0.75rem; text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--bg2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-q {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none; font-weight: 600; font-size: 0.9rem; color: var(--text); gap: 16px;
}
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--primary); transition: transform 0.2s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #000; border-color: var(--primary); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px; font-size: 0.875rem; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--bg3); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0; background: rgba(0,194,224,0.08);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; font-family: var(--font-mono); }
.contact-item-val { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
input, select, textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 2px;
  padding: 12px 16px; color: var(--text); font-family: var(--font-body);
  font-size: 0.9rem; width: 100%; outline: none; transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.6; }
select option { background: var(--bg2); }
textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; margin-top: 8px; background: var(--primary); color: #000;
  border: none; border-radius: var(--radius); padding: 15px 24px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; cursor: pointer;
  font-family: var(--font-body); display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.85; }
.form-privacy { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--bg); border-top: 1px solid var(--border); box-shadow: 0 -1px 0 0 rgba(200, 162, 42, 0.35); padding: 60px 40px 32px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); font-weight: 700; margin-bottom: 16px; font-family: var(--font-mono); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-social-icon { transition: border-color 0.2s, color 0.2s; }
.footer-social-icon:hover { border-color: var(--accent) !important; color: var(--accent) !important; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-mono { font-family: var(--font-mono); font-size: 0.7rem; color: var(--primary); }

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--primary); }

/* ============================================================
   PAGE HERO (sub-pages: services / products / about / contact)
   ============================================================ */
.page-hero {
  padding: 130px 40px 72px;
  background: linear-gradient(135deg, #020810 0%, #071525 60%, #0A1E2E 100%);
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute; top: -180px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,224,0.1) 0%, transparent 65%); pointer-events: none;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--text); margin-bottom: 16px;
}
.page-hero-tagline {
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500; color: var(--primary); margin-bottom: 20px; letter-spacing: -0.01em;
}
.page-hero-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 680px; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-body { padding: 80px 40px 96px; background: var(--bg); }
.service-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start;
}
.service-prose { font-size: 1rem; color: var(--muted); line-height: 1.8; }
.service-prose p { margin-bottom: 20px; }
.service-prose strong { color: var(--text); }
.service-card-block {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; margin-bottom: 24px;
}
.service-card-block h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--text); margin-bottom: 18px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.service-card-block h3::before { content: ''; width: 18px; height: 2px; background: var(--primary); }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text); line-height: 1.65;
}
.service-list li .check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,194,224,0.1); border: 1px solid rgba(0,194,224,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.65rem; margin-top: 2px;
}

.service-aside { position: sticky; top: 84px; }
.service-pricing {
  background: linear-gradient(135deg, rgba(0,194,224,0.06), rgba(0,194,224,0.02));
  border: 1px solid rgba(0,194,224,0.25); border-radius: var(--radius); padding: 32px;
  margin-bottom: 16px;
}
.service-pricing-label {
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--primary);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px;
}
.service-pricing-value {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: var(--text); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
}
.service-pricing-value span { color: var(--primary); }
.service-pricing-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.service-pricing .btn-primary { width: 100%; justify-content: center; }
.service-pricing-alt {
  margin-top: 12px; text-align: center;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em;
}
.service-pricing-alt a { color: var(--primary); text-decoration: none; }

.service-cta-strip {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 56px 40px; text-align: center;
}
.service-cta-strip h3 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; color: var(--text); margin-bottom: 14px; letter-spacing: -0.02em;
}
.service-cta-strip p { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
.service-cta-strip-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   SERVICES / PRODUCTS LISTING GRID
   ============================================================ */
.listing-section { padding: 80px 40px 96px; background: var(--bg); }
.listing-inner { max-width: var(--max-w); margin: 0 auto; }
.listing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px;
}
.listing-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none; display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
}
.listing-card:hover {
  border-color: var(--primary); transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.3);
}
.listing-card-num {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--primary);
  letter-spacing: 0.1em; opacity: 0.5;
}
.listing-card-icon {
  width: 52px; height: 52px; background: rgba(0,194,224,0.08);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.listing-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--text); letter-spacing: -0.01em; line-height: 1.3;
}
.listing-card-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; flex: 1; }
.listing-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.listing-card-price {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--primary); font-weight: 700;
  letter-spacing: 0.04em;
}
.listing-card-arrow {
  color: var(--primary); font-weight: 700; font-size: 0.82rem;
  display: flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.listing-card:hover .listing-card-arrow { gap: 10px; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-soon-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, rgba(200,162,42,0.15), rgba(200,162,42,0.05));
  border: 1px solid rgba(200,162,42,0.4); color: #C8A22A;
  padding: 6px 14px; border-radius: 2px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px;
}
.product-soon-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #C8A22A; animation: pulse 1.5s infinite;
}
.product-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  background: rgba(0,194,224,0.04); border: 1px solid rgba(0,194,224,0.12);
  border-radius: var(--radius); padding: 28px;
}
.product-feature {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.9rem; color: var(--text); line-height: 1.6;
}
.product-feature-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(0,194,224,0.1); border: 1px solid rgba(0,194,224,0.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  font-size: 0.9rem;
}

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.about-bio-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; margin-top: 40px;
}
.about-bio-content p {
  font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 20px;
}
.about-bio-content p strong { color: var(--text); }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.about-pillar {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.about-pillar-num {
  font-family: var(--font-mono); font-size: 1.6rem; font-weight: 700;
  color: var(--primary); margin-bottom: 12px; line-height: 1; letter-spacing: -0.02em;
}
.about-pillar h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--text); margin-bottom: 8px;
}
.about-pillar p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* Sub-brand cards */
.subbrands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.subbrand-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: border-color 0.25s;
}
.subbrand-card:hover { border-color: var(--primary); }
.subbrand-card-label {
  font-family: var(--font-mono); font-size: 0.62rem; color: var(--primary);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px;
}
.subbrand-card h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--text); margin-bottom: 6px;
}
.subbrand-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE EXTRAS
   ============================================================ */
.contact-quick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}
.contact-quick-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.25s;
}
.contact-quick-card:hover { border-color: var(--primary); }
.contact-quick-icon {
  width: 44px; height: 44px; background: rgba(0,194,224,0.08);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-quick-label {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--primary);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.contact-quick-value { font-size: 1rem; color: var(--text); font-weight: 600; }
.contact-quick-sub { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .about-grid, .contact-grid { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .subbrands-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual-new { display: none; }
  .hero-visual .hero-stats { border-top: none; padding-top: 0; margin-top: 0; grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .training-grid, .testimonials-grid, .blog-grid, .faq-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .trainer-profile-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .trainer-portrait-row { flex-direction: column !important; }
  .team-sessions-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hf-pillars { grid-template-columns: 1fr; }
  .hf-outcomes { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-aside { position: static; }
  .listing-grid { grid-template-columns: 1fr; }
  .product-features-grid { grid-template-columns: 1fr; }
  .about-bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-pillars { grid-template-columns: 1fr; }
  .subbrands-grid { grid-template-columns: 1fr 1fr; }
  .contact-quick-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 20px 56px; }
  .service-body, .listing-section { padding: 56px 20px 72px; }
  .service-cta-strip { padding: 48px 20px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  section { padding: 64px 20px; }
  .hero { padding: 100px 20px 64px; }
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.form-status.success {
  background: rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(46, 125, 50, 0.35);
  color: #4caf50;
}
.form-status.error {
  background: rgba(211, 47, 47, 0.12);
  border: 1px solid rgba(211, 47, 47, 0.35);
  color: #f44336;
}

/* ============================================================
   PRELOADER (LUXURY SMOOTH)
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: #070b0e;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.preloader-logo {
  width: 72px;
  height: 72px;
  position: relative;
}
.preloader-logo-glow {
  position: absolute;
  inset: -10px;
  background: rgba(0, 194, 224, 0.15);
  filter: blur(14px);
  border-radius: 50%;
}
.preloader-logo-img {
  width: 100%;
  height: 100%;
  background-image: url('uploads/logo-1777714246311.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  animation: pulse-preloader 2s infinite ease-in-out;
}
.preloader-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.preloader-progress-wrap {
  width: 160px;
  height: 2px;
  background: rgba(20, 58, 108, 0.4);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00C2E0, #3d8bfd);
  transition: width 0.3s ease-out;
}

@keyframes pulse-preloader {
  0%, 100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 8px rgba(0, 194, 224, 0.4)); }
  50% { transform: scale(0.94); opacity: 0.7; filter: drop-shadow(0 0 2px rgba(0, 194, 224, 0.1)); }
}



/* ============================================================
   PAGE LOAD ENTRANCE ANIMATIONS (LUXURY STAGGERED)
   ============================================================ */
/* Default hidden state for all page elements on load */
.hero-content h1,
.hero-content .hero-sub,
.hero-content .hero-actions,
.hero-visual .hero-stats,
.page-hero-inner h1,
.page-hero-inner .page-hero-tagline,
.page-hero-inner .page-hero-sub,
.page-hero-inner .breadcrumb,
.blog-hero-inner h1,
.blog-hero-inner .blog-hero-sub,
.article-hero-inner h1,
.article-hero-inner .article-hero-meta,
.article-hero-inner .breadcrumb,
.team-hero-inner h1,
.team-hero-inner .team-hero-sub,
.profile-hero-inner .profile-name,
.profile-hero-inner .profile-title,
.profile-hero-inner .profile-tagline,
.profile-hero-inner .profile-quick-stats,
.profile-hero-inner .profile-headshot {
  opacity: 0;
  transform: translateY(24px);
}
.hero-visual {
  opacity: 0;
  transform: scale(0.95);
}

/* Page loaded reveal states with custom staggered cubic-bezier curve */
.page-loaded .hero-content h1,
.page-loaded .page-hero-inner h1,
.page-loaded .blog-hero-inner h1,
.page-loaded .article-hero-inner h1,
.page-loaded .team-hero-inner h1,
.page-loaded .profile-hero-inner .profile-name {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}

.page-loaded .hero-content .hero-sub,
.page-loaded .page-hero-inner .page-hero-tagline,
.page-loaded .blog-hero-inner .blog-hero-sub,
.page-loaded .article-hero-inner .article-hero-meta,
.page-loaded .team-hero-inner .team-hero-sub,
.page-loaded .profile-hero-inner .profile-title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

.page-loaded .hero-content .hero-actions,
.page-loaded .page-hero-inner .page-hero-sub,
.page-loaded .article-hero-inner .breadcrumb,
.page-loaded .profile-hero-inner .profile-tagline {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}

.page-loaded .hero-visual .hero-stats,
.page-loaded .page-hero-inner .breadcrumb,
.page-loaded .profile-hero-inner .profile-quick-stats {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.4s;
}

.page-loaded .hero-visual,
.page-loaded .profile-hero-inner .profile-headshot {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

/* Premium Button Sweep Animation */
.btn-primary, .btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover::before, .btn-outline:hover::before {
  left: 150%;
}

/* Ambient Glow Pulsing */
.hero-glow, .hero-glow2 {
  animation: ambient-breathe 8s ease-in-out infinite;
}
.hero-glow2 {
  animation-delay: 2s;
}
@keyframes ambient-breathe {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.12); opacity: 0.7; }
}

/* Card glow tracing */
.listing-card, .training-card, .blog-card, .hf-pillar, .testimonial-card, .subbrand-card, .contact-quick-card, .member-card, .contact-form {
  position: relative;
}
.listing-card::after, .training-card::after, .blog-card::after, .hf-pillar::after, .testimonial-card::after, .subbrand-card::after, .contact-quick-card::after, .member-card::after, .contact-form::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(0, 194, 224, 0.12),
    transparent 50%
  );
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.listing-card:hover::after, .training-card:hover::after, .blog-card:hover::after, .hf-pillar:hover::after, .testimonial-card:hover::after, .subbrand-card:hover::after, .contact-quick-card:hover::after, .member-card:hover::after, .contact-form:hover::after {
  opacity: 1;
}

/* Smooth transition reset for magnetic buttons on mouseleave */
.btn-primary, .btn-outline, .nav-cta, .nav-links a {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s, background 0.3s, border-color 0.3s, color 0.3s;
}

/* ============================================================
   Redesign Custom Styles for Lead Conversion & Trust
   ============================================================ */

/* New Hero Visual & Classroom card */
.hero-visual-new {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 194, 224, 0.15);
  box-shadow: 0 20px 50px rgba(0, 194, 224, 0.15);
  background: #020810;
}
.hero-visual-new img {
  width: 100%;
  height: auto;
  display: block;
}
/* Trusted Logos Strip */
.trusted-strip {
  padding: 48px 40px;
  background: #020810;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.trusted-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #00C2E0;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.logos-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.logo-item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.3s ease;
  filter: grayscale(1);
}
.logo-item:hover {
  opacity: 1;
  filter: none;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #E8F4FD;
  letter-spacing: -0.01em;
}
.logo-text span {
  color: #00C2E0;
}

/* Certifications strip */
.certifications-section {
  padding: 64px 40px;
  background: var(--bg2);
  text-align: center;
}
.certs-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cert-card {
  background: rgba(14, 36, 58, 0.4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 42, 0.5);
  box-shadow: 0 8px 24px rgba(200, 162, 42, 0.12);
}
.cert-icon {
  color: var(--accent);
}
.cert-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #E8F4FD;
  text-transform: uppercase;
}
.cert-sub {
  font-size: 0.62rem;
  color: var(--muted);
}

/* Outcomes section styling */
.outcomes-section {
  padding: 96px 40px;
  background: #020810;
  position: relative;
}
.outcomes-grid {
  max-width: var(--max-w);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.outcome-card {
  background: rgba(14, 36, 58, 0.4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.outcome-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 224, 0.3);
}
.outcome-icon {
  margin-bottom: 20px;
  color: #00C2E0;
}
.outcome-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #E8F4FD;
  margin-bottom: 12px;
  font-weight: 700;
}
.outcome-card p {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Industries We Serve Section */
.industries-section {
  padding: 96px 40px;
  background: var(--bg2);
}
.industries-grid {
  max-width: var(--max-w);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.industry-card {
  background: rgba(7, 21, 37, 0.6);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 224, 0.3);
}
.industry-icon {
  margin-bottom: 16px;
  color: #00C2E0;
}
.industry-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #E8F4FD;
  font-weight: 700;
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Lead Magnet Card */
.lead-magnet-section {
  padding: 96px 40px;
  background: #020810;
  position: relative;
}
.lead-magnet-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(14, 36, 58, 0.7) 0%, rgba(7, 21, 37, 0.9) 100%);
  border: 1px solid rgba(0, 194, 224, 0.25);
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 194, 224, 0.08);
}
.lead-magnet-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #E8F4FD;
  margin-bottom: 16px;
  font-weight: 800;
}
.lead-magnet-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.lead-magnet-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.lead-magnet-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #E8F4FD;
}
.lead-magnet-feature svg {
  color: #00C2E0;
  flex-shrink: 0;
}
.lead-magnet-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid var(--border);
  padding-left: 48px;
}
.lead-magnet-gift {
  color: #00C2E0;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.whatsapp-sticky:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  background: #22c35e;
  color: #FFFFFF;
}
.whatsapp-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.whatsapp-sticky .whatsapp-text {
  display: none;
}

@media (max-width: 600px) {
  .whatsapp-sticky {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* Media Queries for New Elements */
@media (max-width: 900px) {
  .lead-magnet-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  .lead-magnet-action {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 32px;
  }
  .logos-container {
    gap: 20px;
  }
}

/* Infinite Logo Marquee */
.logo-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 24px 0;
  display: flex;
}
.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #020810 0%, transparent 100%);
}
.logo-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #020810 0%, transparent 100%);
}
.logo-marquee-content {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.logo-marquee-content img {
  height: 34px;
  opacity: 0.35;
  filter: grayscale(1) brightness(1.5);
  transition: opacity 0.3s, filter 0.3s;
}
.logo-marquee-content img:hover {
  opacity: 0.95;
  filter: grayscale(0) brightness(1);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Interactive Industry Dashboard */
.industry-tab-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.industry-tab-btn {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.industry-tab-btn:hover,
.industry-tab-btn.active {
  background: rgba(0, 194, 224, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 194, 224, 0.2);
}
.industry-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.industry-tab-panel.active {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .industry-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.sector-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.sector-checklist ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}
.sector-checklist ul li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Cyber Attack Radar */
.radar-section {
  background: radial-gradient(circle at center, #071525 0%, #020810 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
}
.radar-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .radar-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.radar-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #01050a repeating-radial-gradient(circle at center, transparent, transparent 40px, rgba(255, 90, 90, 0.08) 40px, rgba(255, 90, 90, 0.08) 41px);
  border: 1px solid rgba(255, 90, 90, 0.35);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 45px rgba(255, 90, 90, 0.15), 0 15px 35px rgba(0,0,0,0.6);
}
/* Vertical crosshair line */
.radar-screen::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: rgba(255, 90, 90, 0.12);
  z-index: 2;
  pointer-events: none;
}
/* Horizontal crosshair line */
.radar-screen::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(255, 90, 90, 0.12);
  z-index: 2;
  pointer-events: none;
}
.radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, rgba(255, 90, 90, 0.2) 0deg, transparent 90deg, transparent 360deg);
  transform-origin: top left;
  transform: translate(-50%, -50%);
  animation: radar-sweep 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes radar-sweep {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.radar-ping {
  position: absolute;
  width: 8px; height: 8px;
  background: #FF5A5A;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px #FF5A5A;
  animation: ping-pulse 3s infinite ease-out;
  z-index: 3;
}
@keyframes ping-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}
.radar-log {
  background: rgba(2,8,16,0.85);
  border-left: 2px solid var(--primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #00C2E0;
  padding: 20px;
  border-radius: 0 4px 4px 0;
  height: 220px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

/* Security Maturity Quiz */
.quiz-section {
  background: #020810;
  padding: 96px 40px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.quiz-container {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(14, 36, 58, 0.7) 0%, rgba(7, 21, 37, 0.95) 100%);
  border: 1px solid rgba(0, 194, 224, 0.25);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
@media (max-width: 600px) {
  .quiz-container {
    padding: 24px;
  }
}
.quiz-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.quiz-industry-btn {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 20px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s ease;
}
.quiz-industry-btn:hover,
.quiz-industry-btn:focus-visible {
  background: rgba(0, 194, 224, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 194, 224, 0.2);
  outline: none;
}
.quiz-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px rgba(200, 162, 42, 0.5);
  transition: width 0.3s ease;
}
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}
.quiz-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #E8F4FD;
  font-weight: 700;
  margin-bottom: 24px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 4px;
  color: var(--text);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quiz-option:hover {
  background: rgba(0, 194, 224, 0.04);
  border-color: rgba(0, 194, 224, 0.5);
  color: #E8F4FD;
}
.quiz-option.selected {
  background: rgba(0, 194, 224, 0.08);
  border-color: var(--primary);
  color: #E8F4FD;
  font-weight: 600;
}

/* FAQ Accordion */
.faq-section {
  background: var(--bg2);
  padding: 96px 40px;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--border);
  background: rgba(7, 21, 37, 0.3);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(0,194,224,0.3);
}
.faq-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-header h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: #E8F4FD;
  margin: 0;
  font-weight: 600;
}
.faq-icon-arrow {
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-item.active .faq-body {
  max-height: 500px;
  border-top: 1px solid var(--border);
}
.faq-content {
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Mobile Navigation overlay when active */
@media (max-width: 900px) {
  nav .nav-cta {
    display: none !important;
  }
  .mobile-only-cta {
    display: block !important;
  }
  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(3, 9, 17, 0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px 24px;
    gap: 16px;
    align-items: flex-start;
    overflow-y: auto;
    z-index: 9998;
    height: calc(100vh - 72px);
    border-top: 1px solid var(--border);
    animation: slideIn 0.3s ease forwards;
  }
  .nav-links.active li {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.active li > a {
    font-size: 1.05rem;
    width: 100%;
    padding: 8px 0;
    justify-content: space-between;
  }
  .nav-links.active .megamenu-panel,
  .nav-links.active .dropdown-menu {
    display: none !important;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    flex-direction: column;
    padding: 12px 0 0 16px;
    background: transparent;
    box-shadow: none;
    border: none;
    gap: 12px;
    width: 100%;
  }
  .nav-links.active .megamenu-panel.mobile-open,
  .nav-links.active .dropdown-menu.mobile-open {
    display: flex !important;
  }
  .nav-links.active .megamenu-column h4 {
    margin-bottom: 8px;
    font-size: 0.78rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .nav-links.active .megamenu-column ul {
    gap: 10px;
  }
  @keyframes slideIn {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
}

/* Extra Mobile Responsiveness Fixes */
@media (max-width: 600px) {
  .subbrands-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 32px;
    text-align: center;
  }
  .footer-links {
    align-items: center !important;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .radar-container {
    grid-template-columns: 1fr !important;
  }
  .radar-screen {
    height: 300px;
    margin-top: 24px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-primary, .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Cyber Attack Radar Laser & Ticker */
.attack-laser {
  fill: none;
  stroke: #FF3B30;
  stroke-width: 1.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-laser 1.2s ease-out forwards;
  filter: drop-shadow(0 0 5px rgba(255, 59, 48, 0.8));
}
@keyframes draw-laser {
  to { stroke-dashoffset: 0; }
}

.radar-news-ticker {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  background: rgba(2, 8, 16, 0.9);
  border: 1px solid rgba(255, 90, 90, 0.2);
  border-radius: 4px;
  padding: 12px 20px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  overflow: hidden;
  gap: 16px;
}
.ticker-label {
  background: #FF5A5A;
  color: #020810;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 90, 90, 0.4);
}
.ticker-wrapper {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-slide 50s linear infinite;
}
.ticker-content span {
  display: inline-block;
  padding-right: 48px;
  color: #FF5A5A;
  font-weight: 500;
}
@keyframes ticker-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Floating Chatbot Widget */
.chatbot-bubble {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #071525;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 194, 224, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 99990;
}
.chatbot-bubble:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 194, 224, 0.45);
  border-color: #E8F4FD;
  color: #E8F4FD;
}

/* Pulsing outer ping glow for chatbot */
.chatbot-bubble::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: chatbot-ping 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

@keyframes chatbot-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Chatbot online status badge */
.chatbot-online-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  background: #10b981; /* online green */
  border: 2px solid #071525;
  border-radius: 50%;
  animation: status-pulse-glow 1.5s infinite alternate;
  z-index: 2;
}

@keyframes status-pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  100% { transform: scale(1.1); box-shadow: 0 0 8px 2px rgba(16, 185, 129, 0.4); }
}

/* Chatbot Tooltip / Greeting bubble */
.chatbot-tooltip {
  position: fixed;
  bottom: 108px;
  right: 100px;
  background: #0d1e33;
  border: 1px solid var(--primary);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 194, 224, 0.15);
  pointer-events: none;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 99989;
  display: flex;
  align-items: center;
}
.chatbot-tooltip.show {
  opacity: 1;
  transform: translateX(0);
}
.chatbot-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #0d1e33;
  border-right: 1px solid var(--primary);
  border-top: 1px solid var(--primary);
}

/* Dark Theme Chat Window - Matches Cyber Dashboard Theme */
.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  height: 520px;
  background: #071525;
  border: 1px solid rgba(0, 194, 224, 0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 99991;
  font-family: 'Space Grotesk', sans-serif;
  overflow: hidden;
}
.chatbot-window.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Header design */
.chat-header {
  padding: 16px 20px;
  border-bottom: 1.5px solid rgba(0, 194, 224, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #091E36;
}
.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-status-dot {
  width: 8px;
  height: 8px;
  background: #00C2E0;
  border-radius: 50%;
  box-shadow: 0 0 8px #00C2E0;
}
.chat-title-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #00C2E0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.chat-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.58rem;
  color: #88A9C3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chat-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-badge {
  border: 1px solid #00C2E0;
  color: #00C2E0;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chat-close-btn {
  background: none;
  border: none;
  color: #88A9C3;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.chat-close-btn:hover {
  color: #FF5A5A;
}

/* Message styling */
.chat-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #071525;
}
.chat-msg-container {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 85%;
}
.chat-msg-container.user {
  align-self: flex-end;
  justify-content: flex-end;
}
.chat-avatar {
  width: 32px;
  height: 32px;
  background: #0D233E;
  border: 1px solid rgba(0, 194, 224, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00C2E0;
  flex-shrink: 0;
}
.chat-msg {
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.5;
  font-size: 0.8rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.chat-msg.bot {
  background: #0D233E;
  color: #E8F4FD;
  border: 1px solid rgba(0, 194, 224, 0.15);
  border-top-left-radius: 1px;
}
.chat-msg.user {
  background: linear-gradient(135deg, #005C8A, #00C2E0);
  color: #071525;
  font-weight: 600;
  border-top-right-radius: 1px;
  box-shadow: 0 4px 10px rgba(0, 194, 224, 0.15);
}
.chat-msg-time {
  font-size: 0.6rem;
  color: #88A9C3;
  text-align: right;
  margin-top: 4px;
  font-family: var(--font-mono);
}
.chat-msg.user .chat-msg-time {
  color: rgba(7, 21, 37, 0.7);
}

/* Quick suggestions style */
.chat-suggestions-container {
  background: #071525;
  padding: 0 20px 14px 20px;
}
.chat-suggestions-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: #00C2E0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chat-chip {
  background: #091E36;
  border: 1px solid rgba(0, 194, 224, 0.2);
  color: #E8F4FD;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.chat-chip:hover {
  background: #00C2E0;
  border-color: #00C2E0;
  color: #071525;
}

/* Footer layout */
.chat-footer {
  padding: 16px 20px;
  border-top: 1.5px solid rgba(0, 194, 224, 0.15);
  display: flex;
  gap: 10px;
  background: #091E36;
}
.chat-input {
  flex-grow: 1;
  background: #0D233E;
  border: 1.5px solid rgba(0, 194, 224, 0.2);
  border-radius: 6px;
  padding: 10px 14px;
  color: #E8F4FD;
  font-size: 0.8rem;
}
.chat-input:focus {
  border-color: #00C2E0;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 194, 224, 0.2);
}
.chat-mic-btn {
  background: #0D233E;
  border: 1.5px solid rgba(0, 194, 224, 0.2);
  border-radius: 6px;
  color: #00C2E0;
  cursor: pointer;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-right: 4px;
}
.chat-mic-btn:hover {
  background: rgba(0, 194, 224, 0.1);
  border-color: #00C2E0;
}
.chat-mic-btn.listening {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
  animation: pulse-red-mic 1.5s infinite;
}

.chat-mic-btn.connecting {
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #ffffff !important;
  animation: pulse-orange-mic 1s infinite;
}

@keyframes pulse-orange-mic {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes pulse-red-mic {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.chat-send-btn {
  background: linear-gradient(135deg, #00C2E0, #007799);
  color: #071525;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-send-btn:hover {
  background: #00C2E0;
  box-shadow: 0 0 12px rgba(0, 194, 224, 0.4);
}

.chat-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 8px 12px;
  background: #0D233E;
  border: 1px solid rgba(0, 194, 224, 0.15);
  border-radius: 6px;
  font-size: 0.72rem;
  color: #88A9C3;
}
.chat-typing-dot {
  width: 4px;
  height: 4px;
  background: #88A9C3;
  border-radius: 50%;
  animation: typing-wave 1.4s infinite ease-in-out;
}
.chat-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (max-width: 600px) {
  .chatbot-bubble {
    bottom: 80px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .chatbot-window {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 80px;
    height: 420px;
  }
}

/* Inline Chat Window (Embedded Homepage Section - Dark Dashboard Theme) */
.inline-chat-window {
  width: 100%;
  max-width: 720px;
  height: 520px;
  background: #071525;
  border: 1px solid rgba(0, 194, 224, 0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 194, 224, 0.1);
  margin: 0 auto;
  font-family: 'Space Grotesk', sans-serif;
  overflow: hidden;
  color: #E8F4FD;
  text-align: left;
}

.inline-chat-window .chat-header {
  background: #0B1E36;
  border-bottom: 1px solid rgba(0, 194, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.inline-chat-window .chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inline-chat-window .chat-title {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.95rem;
  display: block;
}
.inline-chat-window .chat-subtitle {
  font-size: 0.65rem;
  color: #94A3B8;
  display: block;
  margin-top: 2px;
}
.inline-chat-window .chat-badge {
  font-size: 0.68rem;
  color: #FFB800;
  border: 1px solid #FFB800;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.inline-chat-window .chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #071525;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inline-chat-window .chat-msg-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 80%;
}
.inline-chat-window .chat-msg-container.user {
  align-self: flex-end;
  justify-content: flex-end;
  margin-left: auto;
}
.inline-chat-window .chat-msg-container.bot {
  align-self: flex-start;
}
.inline-chat-window .chat-avatar {
  width: 28px;
  height: 28px;
  background: #0F2642;
  border: 1px solid rgba(0, 194, 224, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00C2E0;
}
.inline-chat-window .chat-msg {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  position: relative;
}
.inline-chat-window .chat-msg.bot {
  background: #0F2642;
  border: 1px solid rgba(0, 194, 224, 0.15);
  color: #E8F4FD;
}
.inline-chat-window .chat-msg.user {
  background: #00C2E0;
  color: #030D1B;
  font-weight: 500;
}
.inline-chat-window .chat-msg-time {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  margin-top: 4px;
}
.inline-chat-window .chat-suggestions-container {
  padding: 12px 20px;
  background: #0B1E36;
  border-top: 1px solid rgba(0, 194, 224, 0.2);
}
.inline-chat-window .chat-suggestions-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #00C2E0;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.inline-chat-window .chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inline-chat-window .chat-chip {
  background: #071525;
  border: 1px solid rgba(0, 194, 224, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #E8F4FD;
  cursor: pointer;
  transition: all 0.2s ease;
}
.inline-chat-window .chat-chip:hover {
  background: #0F2642;
  border-color: #00C2E0;
  color: #FFFFFF;
}
.inline-chat-window .chat-footer {
  padding: 16px 20px;
  background: #071525;
  border-top: 1px solid rgba(0, 194, 224, 0.2);
  display: flex;
  gap: 12px;
}
.inline-chat-window .chat-input {
  flex: 1;
  border: 1px solid rgba(0, 194, 224, 0.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  background: #081628;
  color: #E8F4FD;
}
.inline-chat-window .chat-input:focus {
  border-color: #00C2E0;
  box-shadow: 0 0 8px rgba(0, 194, 224, 0.2);
}
.inline-chat-window .chat-send-btn {
  background: #00C2E0;
  color: #030D1B;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.inline-chat-window .chat-send-btn:hover {
  background: #009bb4;
  box-shadow: 0 0 10px rgba(0, 194, 224, 0.3);
}

@media (max-width: 600px) {
  .embedded-chat-section {
    padding: 30px 12px !important;
  }
  
  .inline-chat-window {
    height: 580px !important;
  }
  
  .inline-chat-window .chat-header {
    padding: 10px 14px !important;
  }
  
  .inline-chat-window .chat-title {
    font-size: 0.82rem !important;
  }
  
  .inline-chat-window .chat-subtitle {
    font-size: 0.55rem !important;
  }
  
  .inline-chat-window .chat-badge {
    font-size: 0.58rem !important;
    padding: 2px 6px !important;
  }
  
  .inline-chat-window .chat-body {
    padding: 12px 14px !important;
    gap: 12px !important;
  }
  
  .inline-chat-window .chat-msg {
    font-size: 0.82rem !important;
    padding: 10px 12px !important;
  }
  
  .inline-chat-window .chat-suggestions-container {
    padding: 10px 14px !important;
  }
  
  .inline-chat-window .chat-chips {
    gap: 6px !important;
  }
  
  .inline-chat-window .chat-chip {
    font-size: 0.7rem !important;
    padding: 5px 10px !important;
  }
  
  .inline-chat-window .chat-footer {
    padding: 10px 12px !important;
    gap: 8px !important;
  }
  
  .inline-chat-window .chat-input {
    font-size: 0.82rem !important;
    padding: 8px 10px !important;
  }
  
  .inline-chat-window .chat-send-btn {
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
  }
}
