/* ============================================================
   ATHENA TI — CYBERSECURITY THEME
   ============================================================ */

:root {
  --bg:        #06080f;
  --bg-2:      #0c0f1a;
  --bg-3:      #0d1220;
  --accent:    #3eb8ff;
  --accent-2:  #0077ff;
  --accent-3:  #1a4bcc;
  --danger:    #ff3860;
  --warning:   #ffdd57;
  --text:      #c8d6e5;
  --text-muted:#6b7a99;
  --border:    rgba(62,184,255,0.12);
  --border-2:  rgba(0,119,255,0.12);
  --glow:      0 0 30px rgba(62,184,255,0.15);
  --glow-2:    0 0 30px rgba(0,119,255,0.15);
  --radius:    12px;
  --radius-lg: 20px;
  --font:      'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono', 'Courier New', monospace;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- MATRIX CANVAS ---- */
#matrix-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6,8,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 42px; width: auto; }
.logo-fallback {
  display: none;
  align-items: center;
  gap: 8px;
}
.logo-icon { font-size: 22px; color: var(--accent); }
.logo-text  { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: #fff; }
.logo-accent{ color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-2);
  color: #fff;
}
.btn-primary:hover {
  background: #0088ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,119,255,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(62,184,255,0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(62,184,255,0.2);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 520px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 12px auto 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,119,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(62,184,255,0.06) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  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(62,184,255,0.08);
  border: 1px solid rgba(62,184,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,184,255,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(62,184,255,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Glitch effect */
.glitch {
  position: relative;
  color: var(--accent);
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--accent);
}
.glitch::before {
  animation: glitch1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -1px);
  color: var(--accent-2);
  opacity: 0.6;
}
.glitch::after {
  animation: glitch2 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(2px, 1px);
  color: var(--danger);
  opacity: 0.6;
}
@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(-2px,-1px); opacity: 0; }
  91%, 93%      { transform: translate(-4px,-2px); opacity: 0.6; }
  92%           { transform: translate(2px,1px); opacity: 0.6; }
}
@keyframes glitch2 {
  0%, 90%, 100% { transform: translate(2px,1px); opacity: 0; }
  91%, 93%      { transform: translate(4px,2px); opacity: 0.6; }
  92%           { transform: translate(-2px,-1px); opacity: 0.6; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-subtitle strong { color: var(--text); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-plus   { color: var(--accent); font-weight: 700; font-size: 1.2rem; line-height: 1; }
.stat-label  { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- Shield Visual ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotateRing 20s linear infinite;
}
.ring-1 {
  width: 320px; height: 320px;
  border-color: rgba(62,184,255,0.15);
  animation-duration: 20s;
}
.ring-2 {
  width: 240px; height: 240px;
  border-color: rgba(0,119,255,0.14);
  animation-duration: 15s;
  animation-direction: reverse;
  border-style: dashed;
}
.ring-3 {
  width: 160px; height: 160px;
  border-color: rgba(62,184,255,0.22);
  animation-duration: 10s;
}
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.shield-core {
  position: relative;
  z-index: 2;
  color: var(--accent);
  filter: drop-shadow(0 0 20px rgba(62,184,255,0.55));
  animation: floatShield 4s ease-in-out infinite;
}
@keyframes floatShield {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.orbit-dot-1 {
  animation: orbit1 6s linear infinite;
}
.orbit-dot-2 {
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
  animation: orbit2 9s linear infinite;
}
.orbit-dot-3 {
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
  animation: orbit3 12s linear infinite;
}
@keyframes orbit1 {
  from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: rotate(120deg) translateX(120px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(120px) rotate(-480deg); }
}
@keyframes orbit3 {
  from { transform: rotate(240deg) translateX(80px) rotate(-240deg); }
  to   { transform: rotate(600deg) translateX(80px) rotate(-600deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-family: var(--mono);
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
  animation: fadeInUp 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, background 0.3s;
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  border-color: rgba(62,184,255,0.3);
  background: rgba(62,184,255,0.03);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: rgba(0,119,255,0.28);
  background: rgba(0,119,255,0.04);
}
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(62,184,255,0.1);
  border: 1px solid rgba(62,184,255,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(62,184,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: rgba(62,184,255,0.06);
  border: 1px solid rgba(62,184,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(62,184,255,0.12);
  box-shadow: 0 0 20px rgba(62,184,255,0.18);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.5rem;
  top: 4px;
}

.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 8px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(62,184,255,0.04), transparent 70%);
  pointer-events: none;
}

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

/* ---- Terminal ---- */
.terminal-window {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1117;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1c1f26;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.terminal-dot.red    { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green  { background: #27c93f; }
.terminal-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--mono);
  margin-left: 8px;
}
.terminal-body {
  padding: 24px 20px;
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 2;
}
.terminal-line { display: flex; gap: 10px; opacity: 0; animation: fadeInLine 0.3s forwards; }
.t-prompt { color: var(--accent); }
.t-cmd    { color: #e6db74; }
.t-output { color: var(--text-muted); }
.t-warning{ color: var(--warning); }
.t-success{ color: var(--accent); }
.cursor-blink {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes fadeInLine {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: none; }
}

.about-content .section-tag { display: block; }
.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 20px 0 32px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pillar-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(62,184,255,0.08);
  border: 1px solid rgba(62,184,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}
.pillar > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pillar strong { color: #fff; font-size: 0.95rem; }
.pillar span   { color: var(--text-muted); font-size: 0.88rem; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,119,255,0.06), transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  position: relative;
}
.stat-card {
  padding: 40px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, border-color 0.3s;
}
.stat-card:hover {
  background: rgba(62,184,255,0.04);
  border-color: rgba(62,184,255,0.25);
}
.stat-icon { color: var(--accent); margin-bottom: 8px; }
.big-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.big-plus { font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.big-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(0,119,255,0.05), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: rgba(62,184,255,0.06);
  border: 1px solid rgba(62,184,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item strong { color: #fff; font-size: 0.9rem; }
.contact-item span, .contact-item a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--accent); }

.contact-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(62,184,255,0.06);
  border: 1px solid rgba(62,184,255,0.15);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ---- Form ---- */
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text);
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-3); color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(62,184,255,0.4);
  box-shadow: 0 0 0 3px rgba(62,184,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 16px;
  background: rgba(62,184,255,0.06);
  border: 1px solid rgba(62,184,255,0.2);
  border-radius: var(--radius);
  animation: fadeInUp 0.4s ease;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-brand .nav-logo { margin-bottom: 0; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.86rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.compliance-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.comp-badge {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 10px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================================
   ANIMATIONS / UTILITIES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content     { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-visual      { order: -1; }
  .hero-actions     { justify-content: center; }
  .hero-stats       { justify-content: center; }
  .services-grid    { grid-template-columns: repeat(2,1fr); }
  .about-grid       { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid       { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(6,8,15,0.98);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-top: 1px solid var(--border);
  }
  .services-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .shield-container { width: 260px; height: 260px; }
  .ring-1 { width: 240px; height: 240px; }
  .ring-2 { width: 180px; height: 180px; }
  .ring-3 { width: 120px; height: 120px; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 16px 60px; }
  .btn  { padding: 11px 18px; font-size: 0.88rem; }
}
