/*
Theme Name: Neon Aegis
Theme URI: https://neonaegis.com
Author: Neon Aegis LTD
Author URI: https://neonaegis.com
Description: A professional IAM consulting WordPress theme for Neon Aegis LTD. Dark, modern, security-focused design with custom sections for services, process, and contact.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: neon-aegis
*/

/* ============================================
   NEON AEGIS THEME - MAIN STYLESHEET
   ============================================ */

:root {
  --bg: #050A12;
  --surface: #0A1220;
  --surface2: #0D1929;
  --neon: #00FFB2;
  --neon2: #00C8FF;
  --neon-glow: rgba(0, 255, 178, 0.12);
  --text: #E8EDF5;
  --muted: #6B7A94;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #FF4D6D;
  --max-width: 1520px;
  --radius: 12px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--neon);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover { opacity: 0.8; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

/* ---- CONTAINERS ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}

.section-pad { padding: 6rem 0; }

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--neon);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  color: #050A12;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  box-shadow: 0 0 32px rgba(0, 255, 178, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 255, 178, 0.35);
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  opacity: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 10, 18, 0.85);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5vw;
  transition: padding 0.3s;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #050A12;
  flex-shrink: 0;
}

.site-logo:hover { opacity: 1; color: var(--text); }

/* Primary Nav */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

#primary-menu li a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
#primary-menu li a:hover { color: var(--text); }

#primary-menu .menu-cta > a {
  padding: 0.55rem 1.4rem;
  background: transparent;
  border: 1px solid var(--neon);
  color: var(--neon);
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
#primary-menu .menu-cta > a:hover {
  background: var(--neon);
  color: #050A12;
  box-shadow: 0 0 24px rgba(0, 255, 178, 0.35);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  #primary-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 10, 18, 0.98);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
  }
  #primary-menu.is-open { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

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

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 178, 0.07) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-content { max-width: 800px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(0, 255, 178, 0.25);
  border-radius: 100px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-section h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-section h1 .gradient-text {
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  padding: 1.2rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon);
  flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--surface);
  padding: 6rem 0;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--surface2); }

.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 255, 178, 0.08);
  border: 1px solid rgba(0, 255, 178, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT / WHY US SECTION
   ============================================ */
.about-section { padding: 6rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  width: 260px;
}

.about-card.card-top { top: 0; left: 0; }
.about-card.card-bottom { bottom: 0; right: 0; }

.about-card-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.about-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.about-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.shield-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 200px;
  height: 200px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 178, 0.15);
  animation: ring-pulse 3s ease-in-out infinite;
}
.ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.ring:nth-child(2) { width: 148px; height: 148px; animation-delay: 0.6s; }
.ring:nth-child(3) { width: 96px; height: 96px; animation-delay: 1.2s; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

.shield-core {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 50px rgba(0, 255, 178, 0.4);
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(0, 255, 178, 0.1);
  border: 1px solid rgba(0, 255, 178, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--neon);
  margin-top: 0.15rem;
}

.point-text strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.point-text span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .about-card.card-top { top: 0; left: 0; width: 200px; }
  .about-card.card-bottom { bottom: 0; right: 0; width: 200px; }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--surface);
  padding: 6rem 0;
}

.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-tag { justify-content: center; }
.process-header .section-subtitle { margin: 0 auto; text-align: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--neon), var(--neon2), var(--neon));
  opacity: 0.25;
}

.process-step { text-align: center; padding: 0 1rem; }

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid rgba(0, 255, 178, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--neon);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-number {
  background: var(--neon);
  color: #050A12;
  box-shadow: 0 0 24px rgba(0, 255, 178, 0.5);
  border-color: var(--neon);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 255, 178, 0.04), transparent);
  pointer-events: none;
}

.testimonial-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 7rem;
  line-height: 0.7;
  color: rgba(0, 255, 178, 0.12);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 2rem;
}

.testimonial-author strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--neon);
  font-style: normal;
  margin-bottom: 0.2rem;
}
.testimonial-author span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { padding: 6rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 255, 178, 0.08);
  border: 1px solid rgba(0, 255, 178, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail a { color: var(--text); }
.contact-detail a:hover { color: var(--neon); }
.contact-detail span { color: var(--muted); }

/* Contact Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

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

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(0, 255, 178, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 255, 178, 0.06);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: #0A1220; color: var(--text); }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  color: #050A12;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 178, 0.35);
}

/* WordPress default form overrides */
.wpcf7-form .form-group input,
.wpcf7-form .form-group textarea,
.wpcf7-form .form-group select {
  width: 100%;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--neon); }

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

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-badge {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-badge strong { color: var(--neon); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   WORDPRESS CORE STYLES
   ============================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.wp-block-image { margin-bottom: 1.5rem; }

.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { text-align: center; }

/* Single post / page content */
.entry-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem 5vw 5rem;
}
.entry-content h1, .entry-content h2,
.entry-content h3, .entry-content h4 { margin-bottom: 1rem; margin-top: 2rem; }
.entry-content p { color: var(--muted); line-height: 1.75; }

/* ============================================
   LOGO — INLINE SVG (header & footer)
   ============================================ */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}
.site-logo:hover { opacity: 0.85; }

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-logo-link:hover { opacity: 0.85; }

.na-logo-shield {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 7px rgba(245,101,10,0.8)) drop-shadow(0 0 18px rgba(245,101,10,0.25));
  animation: na-shield-glow 3.5s ease-in-out infinite;
}

.na-logo-shield--footer {
  width: 36px;
  height: 36px;
}

@keyframes na-shield-glow {
  0%, 100% { filter: drop-shadow(0 0 7px rgba(245,101,10,0.8)) drop-shadow(0 0 18px rgba(245,101,10,0.22)); }
  50%       { filter: drop-shadow(0 0 14px rgba(255,140,50,1)) drop-shadow(0 0 32px rgba(245,101,10,0.45)); }
}

.na-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.na-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.na-accent {
  color: #F5650A;
}

.na-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   FORGEROCK SECTION — "Why Neon Aegis" style
   ============================================ */
.forgerock-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.fr-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 75% 50%, rgba(245,101,10,0.05), transparent);
  pointer-events: none;
}

.fr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ---- Left content ---- */
.fr-accent {
  background: linear-gradient(90deg, #FFCC66, #F5650A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fr-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  list-style: none;
}

.fr-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fr-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(245,101,10,0.1);
  border: 1px solid rgba(245,101,10,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: #F5650A;
  margin-top: 0.15rem;
}

.fr-point-text strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.fr-point-text span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.btn-fr {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #FF8C2A, #E04800);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  box-shadow: 0 0 28px rgba(245,101,10,0.2);
}
.btn-fr:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(245,101,10,0.4);
  opacity: 1;
}

/* ---- Right visual ---- */
.fr-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fr-stat-card {
  position: absolute;
  background: var(--bg);
  border: 1px solid rgba(245,101,10,0.15);
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  width: 250px;
}
.fr-card-top    { top: 0; left: 0; }
.fr-card-bottom { bottom: 0; right: 0; }

.fr-stat-icon {
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 0 6px rgba(245,101,10,0.6));
}

.fr-stat-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.fr-stat-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Central animated shield */
.fr-shield-viz {
  position: relative;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,101,10,0.18);
  animation: fr-ring-pulse 3s ease-in-out infinite;
}
.fr-ring:nth-child(1) { width: 190px; height: 190px; animation-delay: 0s; }
.fr-ring:nth-child(2) { width: 138px; height: 138px; animation-delay: 0.7s; }
.fr-ring:nth-child(3) { width: 88px;  height: 88px;  animation-delay: 1.4s; }

@keyframes fr-ring-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.06); }
}

.fr-shield-core {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #FF8C2A, #E04800);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 40px rgba(245,101,10,0.5);
}

@media (max-width: 900px) {
  .fr-grid { grid-template-columns: 1fr; gap: 3rem; }
  .fr-visual { height: 320px; }
  .fr-stat-card { width: 210px; }
}
@media (max-width: 560px) {
  .fr-visual { height: 280px; }
  .fr-stat-card { width: 170px; padding: 1.2rem; }
  .fr-card-top  { top: 0; left: 0; }
  .fr-card-bottom { bottom: 0; right: 0; }
}
