/* ===================================
   LEGION OFFENSIVE SECURITY
   Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
  --bg: #000000;
  --panel: #0a0a0a;
  --border: #1a1a1a;
  --accent: #e11d1d;
  --text: #ffffff;
  --muted: #808080;
  --glow: rgba(225, 29, 29, 0.15);
  font-family: "Rajdhani", sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.mono {
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.5px;
}

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand a {
  color: var(--text);
  text-decoration: none;
}

.logo-square {
  width: 42px;
  height: 42px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-square::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.logo-square svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.brand-text h1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-text p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 1px;
}

/* Navigation */
nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: var(--text);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
}

/* Buttons */
.btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--glow);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #c01818;
  box-shadow: 0 0 30px var(--glow);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content .accent-text {
  color: var(--accent);
}

.hero-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.stat-item {
  position: relative;
  padding-left: 20px;
}

.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 20px;
  background: var(--accent);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Network Visualization */
.network-container {
  position: relative;
  width: 550px;
  height: 550px;
  border: 1px solid var(--border);
  background: #000;
  overflow: hidden;
}

.network-viz {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
  cursor: pointer;
  transition: all 0.3s;
}

.node:hover {
  transform: scale(1.5);
  z-index: 10;
}

.node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.2;
}

.node-label {
  position: absolute;
  font-family: "Share Tech Mono", monospace;
  font-size: 9px;
  color: var(--accent);
  white-space: nowrap;
  transform: translateX(-50%);
  margin-top: 18px;
  text-shadow: 0 0 5px var(--accent);
}

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform-origin: left;
  opacity: 0;
}

.data-packet {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff00;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  box-shadow: 0 0 10px var(--accent);
  opacity: 0.6;
}

.radar-sweep {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-sweep:nth-child(2) {
  width: 350px;
  height: 350px;
}

.radar-sweep:nth-child(3) {
  width: 300px;
  height: 300px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(225, 29, 29, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 29, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.threat-marker {
  position: absolute;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: #ff0000;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #ff0000;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  z-index: 20;
}

.node-popup {
  position: absolute;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid var(--accent);
  padding: 12px;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: var(--text);
  min-width: 200px;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(225, 29, 29, 0.6);
}

.node-popup::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.95);
  border-left: 1px solid var(--accent);
  border-top: 1px solid var(--accent);
  transform: rotate(45deg);
}

.popup-header {
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-header::before {
  content: "●";
}

.popup-row {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
  padding: 3px 0;
  border-bottom: 1px solid rgba(225, 29, 29, 0.2);
}

.popup-label {
  color: var(--muted);
  font-size: 9px;
}

.popup-value {
  color: #00ff00;
  font-size: 9px;
}

.status-ok {
  color: #00ff00;
}

.status-warn {
  color: #ffaa00;
}

.status-crit {
  color: #ff0000;
}

.globe-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.globe-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--accent);
}

.globe-corner.tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.globe-corner.tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.globe-corner.bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.globe-corner.br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Terminal */
.terminal-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border-top: 2px solid var(--accent);
  padding: 16px;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  max-height: 180px;
  overflow: hidden;
  box-shadow: 0 -5px 30px rgba(225, 29, 29, 0.3);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(225, 29, 29, 0.3);
}

.terminal-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.terminal-title {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.terminal-line {
  color: var(--accent);
  margin-bottom: 6px;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-line::before {
  content: ">";
  color: var(--accent);
  font-weight: bold;
}

.terminal-line.success {
  color: #00ff00;
}

.terminal-line.success::before {
  content: "✓";
  color: #00ff00;
}

.terminal-line.warning {
  color: #ffaa00;
}

.terminal-line.warning::before {
  content: "⚠";
  color: #ffaa00;
}

.terminal-line.error {
  color: #ff0000;
}

.terminal-line.error::before {
  content: "✗";
  color: #ff0000;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 12px;
  background: var(--accent);
  margin-left: 4px;
}

/* Sections */
section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--muted);
  font-size: 16px;
}

/* Grid */
.grid {
  display: grid;
  padding: 10px 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(225, 29, 29, 0.1);
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 29, 29, 0.1);
  border: 2px solid var(--border);
  margin-bottom: 24px;
  transition: all 0.4s;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  transition: all 0.4s;
}

.card:hover .service-icon {
  background: rgba(225, 29, 29, 0.2);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.card:hover .service-icon svg {
  transform: scale(1.1);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--panel);
  border: 1px solid var(--border);
  transition: all 0.4s;
  overflow: hidden;
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(225, 29, 29, 0.15);
}

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.blog-content {
  padding: 24px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-meta a {
  color: var(--accent);
  text-decoration: none;
}

/* Ambassadors */
.amb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.amb-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.amb-card:hover {
  border-color: var(--accent);
  background: #0f0f0f;
}

.amb-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border);
  object-fit: cover;
}

.amb-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.amb-info p {
  font-size: 13px;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
}

/* Trusted By Section */
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}

.logo-item {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 1;
}

.client-logo {
  width: 120px;
  height: 40px;
  color: var(--muted);
  transition: color 0.3s;
}

.logo-item:hover .client-logo {
  color: var(--accent);
}

/* CTF Section */
.ctf-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.ctf-description {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.ctf-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.ctf-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.ctf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.ctf-card:hover::before {
  transform: scaleX(1);
}

.ctf-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(225, 29, 29, 0.1);
  transform: translateY(-4px);
}

.ctf-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 29, 29, 0.1);
  border: 2px solid var(--border);
  margin-bottom: 24px;
  transition: all 0.4s;
}

.ctf-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  transition: all 0.4s;
}

.ctf-card:hover .ctf-icon {
  background: rgba(225, 29, 29, 0.2);
  border-color: var(--accent);
  transform: translateY(-5px) rotate(5deg);
}

.ctf-card:hover .ctf-icon svg {
  transform: scale(1.1);
}

.ctf-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.ctf-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.ctf-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
}

.stat-box:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(225, 29, 29, 0.15);
}

.stat-big {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.stat-desc {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

.about-content h3:first-child {
  margin-top: 0;
}

.about-content p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 15px;
}

.about-features {
  display: grid;
  gap: 24px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  gap: 20px;
  background: var(--panel);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.about-feature:hover {
  border-color: var(--accent);
  background: #0f0f0f;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 29, 29, 0.1);
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.about-feature:hover .feature-icon {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.about-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-feature p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Team Certifications Section - New Design */
.cert-slider-section {
  position: sticky;
  top: 100px;
}

.cert-slider-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.cert-intro {
  color: var(--muted);
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.cert-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.cert-badge {
  background: rgba(225, 29, 29, 0.05);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.cert-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transition: left 0.4s;
}

.cert-badge:hover::before {
  left: 0;
}

.cert-badge:hover {
  background: rgba(225, 29, 29, 0.1);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.cert-badge-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 29, 29, 0.1);
  border: 2px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}

.cert-badge:hover .cert-badge-icon {
  background: rgba(225, 29, 29, 0.2);
  border-color: var(--accent);
  transform: scale(1.1);
}

.cert-badge-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.cert-badge-name {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.cert-badge-desc {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.4;
}

/* Old slider classes - keeping for compatibility */
.cert-slider-container,
.cert-slider,
.cert-slide,
.slider-btn,
.slider-dots,
.slider-dot {
  display: none;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--accent);
}

.contact-detail span {
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 14px;
}

.contact-detail a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--accent);
}

/* Contact Page Mobile-Specific Fixes */
.contact-info-section > .card {
  margin-bottom: 24px;
}

.contact-info-section > .card:last-child {
  margin-bottom: 0;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

input,
textarea,
select {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 14px 16px;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  transition: all 0.3s;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

select {
  cursor: pointer;
}

.form-submit {
  display: flex;
  gap: 16px;
  align-items: center;
}

#formStatus {
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text);
}

/* Page Content Styles */
.page-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
