/* ============================================================
   EVOTEK INNOVATIONS — Futuristic Design System
   ============================================================ */

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

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg:         #0A1628;
  --surface:    #0D2040;
  --surface-2:  #122A50;
  --cyan:       #00E5FF;
  --green:      #00FF88;
  --purple:     #7C3AED;
  --red:        #FF3864;
  --text:       #E8EFF8;
  --muted:      #7A90A8;
  --border:     rgba(0, 229, 255, 0.18);
  --glow-cyan:  0 0 20px rgba(0, 229, 255, 0.4);
  --glow-green: 0 0 20px rgba(0, 255, 136, 0.4);
  --card-bg:    rgba(0, 229, 255, 0.04);
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
  --font-mono:  'Share Tech Mono', monospace;
  --radius:     4px;
  --nav-h:      72px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Scan Lines Overlay ───────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ── Particle Canvas ──────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Scroll Progress ──────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: var(--glow-cyan);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: rgba(0, 229, 255, 0.3); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  animation: logo-pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.7)) drop-shadow(0 0 16px rgba(0, 255, 136, 0.4));
}
@keyframes logo-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(0,229,255,0.7)) drop-shadow(0 0 14px rgba(0,255,136,0.35));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(0,229,255,1)) drop-shadow(0 0 28px rgba(0,255,136,0.6));
    transform: scale(1.06);
  }
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1.5px;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--cyan);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--bg);
  background: var(--cyan);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
}
.nav-cta:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-1px);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-left: 8px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 11px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  border: none;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.lang-btn.active {
  background: rgba(0,229,255,0.12);
  color: var(--cyan);
}
.lang-btn:hover:not(.active) { color: var(--text); }
.lang-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cyan);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10, 22, 40, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: var(--font-head);
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--cyan); }
#mobile-nav .nav-cta {
  margin-top: 16px;
  text-align: center;
  color: var(--bg);
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── HUD CARD ─────────────────────────────────────────────── */
.hud-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hud-card::before,
.hud-card::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--cyan);
  border-style: solid;
}
.hud-card::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.hud-card::after  { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.hud-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.08);
}

.hud-card-green {
  border-color: rgba(0, 255, 136, 0.15);
}
.hud-card-green::before,
.hud-card-green::after { border-color: var(--green); }
.hud-card-green:hover { border-color: rgba(0, 255, 136, 0.4); box-shadow: var(--glow-green); }

/* ── CHIP / BADGE ─────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 2px;
  background: rgba(0, 229, 255, 0.05);
}
.chip-green { color: var(--green); border-color: rgba(0,255,136,0.2); background: rgba(0,255,136,0.05); }
.chip::before { content: '//'; opacity: 0.5; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cyan);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.5px;
}
.section-title .accent { color: var(--cyan); }
.section-title .accent-green { color: var(--green); }
.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 16px;
  max-width: 600px;
  line-height: 1.8;
}

/* ── GRID ─────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--bg);
  background: var(--cyan);
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-primary:hover { box-shadow: var(--glow-cyan); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); transform: translateY(-2px); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--bg);
  background: var(--green);
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-green:hover { box-shadow: var(--glow-green); transform: translateY(-2px); }

/* ── LOGO WATERMARK (reusable) ────────────────────────────── */
.logo-watermark {
  position: absolute;
  background: url('../images/EVO2.png') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
/* Hero — large right-side watermark */
.hero-logo-watermark {
  width: 520px;
  height: 520px;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.035;
  animation: watermark-drift 60s linear infinite;
}
@keyframes watermark-drift {
  0%   { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}
/* Page hero — medium centred watermark */
.page-hero-watermark {
  width: 360px;
  height: 360px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.035;
}
/* CTA banner — subtle centred watermark */
.cta-logo-watermark {
  width: 280px;
  height: 280px;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
}
/* Footer — bottom-right watermark */
.footer-logo-watermark {
  width: 200px;
  height: 200px;
  right: 32px;
  bottom: 32px;
  opacity: 0.04;
}
/* Section accent — tiny inline logo */
.logo-accent {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('../images/EVO2.png') no-repeat center / contain;
  vertical-align: middle;
  opacity: 0.5;
  margin-right: 8px;
  filter: drop-shadow(0 0 4px rgba(0,229,255,0.4));
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

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

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-1 { top: -100px; left: -100px; background: rgba(0,229,255,0.08); }
.hero-glow-2 { bottom: -100px; right: -100px; background: rgba(0,255,136,0.06); }

.hero-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before { content: ''; width: 32px; height: 1px; background: var(--cyan); box-shadow: var(--glow-cyan); }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title .glitch {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0,229,255,0.5);
  display: inline-block;
  animation: glitch 4s infinite;
}

@keyframes glitch {
  0%, 94%, 100% { transform: none; text-shadow: 0 0 30px rgba(0,229,255,0.5); }
  95% { transform: translate(-2px, 1px); text-shadow: 2px 0 var(--red), -2px 0 var(--green); }
  96% { transform: translate(2px, -1px); text-shadow: -2px 0 var(--red), 2px 0 var(--green); }
  97% { transform: none; }
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}

.hero-right {
  position: relative;
}
.hero-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan 3s linear infinite;
}
@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.t-dot:nth-child(1) { background: var(--red); box-shadow: 0 0 6px var(--red); }
.t-dot:nth-child(2) { background: #FFB800; box-shadow: 0 0 6px #FFB800; }
.t-dot:nth-child(3) { background: var(--green); box-shadow: 0 0 6px var(--green); }
.t-title { font-size: 0.65rem; letter-spacing: 2px; color: var(--muted); margin-left: 8px; }

.terminal-line {
  font-size: 0.78rem;
  line-height: 2;
  color: var(--muted);
}
.terminal-line .t-cmd { color: var(--cyan); }
.terminal-line .t-val { color: var(--green); }
.terminal-line .t-key { color: #FFB800; }
.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--cyan);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ── STATS STRIP ──────────────────────────────────────────── */
.stats-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,229,255,0.02);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--green);
  text-shadow: var(--glow-green);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ── PROCESS STEPS ────────────────────────────────────────── */
.step-line {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-num {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--cyan);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SECTOR TAGS ──────────────────────────────────────────── */
.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.sector-tag:hover {
  color: var(--cyan);
  border-color: rgba(0,229,255,0.4);
  box-shadow: var(--glow-cyan);
}

/* ── DATA ROW ─────────────────────────────────────────────── */
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.data-row:last-child { border-bottom: none; }
.data-key { color: var(--muted); }
.data-val { color: var(--green); font-family: var(--font-head); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 72px 64px;
  text-align: center;
  overflow: hidden;
  background: var(--card-bg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,229,255,0.06), transparent);
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p { color: var(--muted); margin-bottom: 36px; position: relative; }
.cta-banner .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
}
.footer-top {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 12px;
}
.footer-brand-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cyan);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '>'; color: var(--border); font-size: 0.7rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact-item { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.footer-contact-item span { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.footer-accred {
  display: flex;
  gap: 16px;
  align-items: center;
}
.accred-badge {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-label::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.page-hero h1 .accent { color: var(--cyan); }
.page-hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.9;
}

/* ── TEAM CARD ────────────────────────────────────────────── */
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.team-card:hover { border-color: rgba(0,229,255,0.4); box-shadow: 0 0 40px rgba(0,229,255,0.06); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--cyan);
}
.team-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0px;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--cyan);
  margin-bottom: 16px;
}
.team-bio { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
.team-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 4px 12px;
  border-radius: var(--radius);
}
.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
  box-shadow: 0 0 24px rgba(0,229,255,0.18);
  margin: 0 auto 16px;
  display: block;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.team-photo:hover {
  border-color: rgba(0,229,255,0.5);
  box-shadow: 0 0 36px rgba(0,229,255,0.35);
}

.team-name-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.team-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(0,229,255,0.35); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0px;
  color: var(--text);
  background: var(--card-bg);
  transition: color 0.2s;
  cursor: pointer;
}
.faq-item.open .faq-q { color: var(--cyan); }
.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--cyan);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--cyan); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 24px;
  background: rgba(0,0,0,0.2);
}
.faq-item.open .faq-a { max-height: 300px; padding: 20px 24px; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: rgba(0,229,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.65rem; letter-spacing: 2px; color: var(--muted); margin-bottom: 4px; font-family: var(--font-head); }
.contact-info-val { font-size: 0.85rem; color: var(--text); }

/* ── HOURS TABLE ──────────────────────────────────────────── */
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.hours-day { color: var(--muted); }
.hours-time { color: var(--green); font-family: var(--font-head); }
.hours-closed { color: var(--red); font-family: var(--font-head); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── LIVE STATUS ──────────────────────────────────────────── */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--glow-green);
  animation: pulse-dot 2s infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* ── SEPARATOR ────────────────────────────────────────────── */
.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
  position: relative;
}
.sep::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url('../images/EVO2.png') no-repeat center / contain;
  opacity: 0.12;
  filter: drop-shadow(0 0 6px rgba(0,229,255,0.4));
}

/* ── LAYOUT CLASSES (replaces inline styles) ─────────────── */
.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-floating-badge {
  position: absolute;
}

.team-card-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.faq-layout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.location-grid {
  background: var(--surface);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.location-grid > div {
  padding: 16px;
}
.location-grid > div:not(:last-child) {
  border-right: 1px solid var(--border);
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.accred-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.accred-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 8px;
}
.accred-desc { font-size: 0.78rem; color: var(--muted); }

/* ── BIO TABS ─────────────────────────────────────────────── */
.bio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.bio-tab-btn {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--card-bg);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.bio-tab-btn:hover,
.bio-tab-btn.active {
  color: var(--cyan);
  border-color: rgba(0,229,255,0.4);
  box-shadow: var(--glow-cyan);
}
.bio-panel { display: none; }
.bio-panel.active { display: block; }
.bio-panel .hud-card,
.bio-panel .hud-card-green { padding: 32px 32px 32px 64px; }

/* ── CLAIMS LIST ──────────────────────────────────────────── */
.claims-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.claims-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.claims-list li:last-child { border-bottom: none; }
.claims-list li::before {
  content: '→';
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── NATURE'S WAY / BIOMIMICRY INTRO ──────────────────────── */
.nature-intro {
  border-left: 2px solid var(--cyan);
  padding-left: 24px;
  margin-bottom: 20px;
}
.nature-intro h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.nature-intro p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ── SECTOR ACCORDION (reuses .faq-item) ─────────────────── */
.sector-group-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  padding: 8px 0 4px;
  margin-top: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sector-group-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--cyan);
}

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.compare-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.compare-icon.yes { background: rgba(0,255,136,0.15); color: var(--green); }
.compare-icon.no  { background: rgba(255,56,100,0.15); color: var(--red); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout-grid { grid-template-columns: 1fr 300px; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Layout */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .section-header { margin-bottom: 40px; }

  /* Navigation */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #mobile-nav a { font-size: 0.9rem; padding: 14px 0; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 24px); min-height: auto; padding-bottom: 48px; }
  .hero-content-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-floating-badge { display: none; }

  /* Generic grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }

  /* Stats strip */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 1.8rem; }

  /* Cards */
  .hud-card { padding: 20px; }

  /* Team */
  .team-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .team-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 12px;
  }
  .team-name { text-align: center; }
  .team-role { text-align: center; }
  .team-bio { text-align: left; }
  .team-card-grid > div:last-child > div:first-child {
    justify-content: center;
  }
  .team-card-grid > div:first-child .team-tag {
    margin: 12px auto 0;
    display: inline-block;
  }
  .team-name-row {
    justify-content: center;
    text-align: center;
  }
  .team-skill-tags {
    justify-content: center;
  }

  /* FAQ */
  .faq-layout-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: static; margin-top: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; padding: 16px; }
  .location-grid > div { border-right: none !important; border-bottom: 1px solid var(--border); }
  .location-grid > div:last-child { border-bottom: none; }

  /* Section header split */
  .section-header-split { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* CTA */
  .cta-banner { padding: 40px 20px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner .btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-banner .btns a { width: 100%; justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Accreditations */
  .accred-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Page hero */
  .page-hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 40px; }
  .page-hero h1 { font-size: 2rem; }

  /* Bio tabs */
  .bio-tab-btn { font-size: 0.68rem; padding: 6px 12px; }

  /* Sector groups */
  .sector-group-label { margin-top: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 16px 8px; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .nav-logo-name { font-size: 0.9rem; }
  .nav-logo-img { width: 34px; height: 34px; }
  .team-photo { width: 140px; height: 140px; }
}
