:root {
  /* Wolf Wolof Logo Colors */
  --bg-primary: #333333;       /* Background & Foreground Dual Use */
  --fg-yellow: #f4e182;       /* Foreground Use - Yellow */
  --fg-brown: #7c5246;        /* Foreground Use - Brown */
  --pure-black: #000000;      /* Pure Black */
  --pure-white: #ffffff;      /* Pure White */
  
  /* Background & Text */
  --bg-dark: #333333;
  --bg-card: #2a2a2a;
  --text: #ffffff;
  --text-muted: #cccccc;
  
  /* Borders */
  --border: #7c5246;
  --grid-line: rgba(124, 82, 70, 0.3);
  
  /* Fonts */
  --font-pixel: 'Press Start 2P', monospace;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  
  /* Custom Cursor - Brown Lightning Bolt */
  --cursor-lightning: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M18 2L6 18h8l-2 12 12-16h-8l2-12z" fill="%237c5246" stroke="%23f4e182" stroke-width="1"/></svg>') 16 16, pointer;
}

/* Custom Cursor */
body {
  cursor: var(--cursor-lightning);
}

/* Default cursor for inputs and text areas */
input, textarea, select {
  cursor: text;
}

/* Pointer cursor for clickable elements */
a, button, .cursor-pointer {
  cursor: pointer;
}

/* Custom cursor on interactive elements */
.cta-button:hover,
.mobile-menu-btn:hover,
.indicator-dot:hover,
.req-dot:hover,
.contact-item a:hover {
  cursor: pointer;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(var(--grid-line) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--fg-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--fg-brown);
  text-shadow: 0 0 10px var(--fg-yellow);
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(51, 51, 51, 0.95);
  border-bottom: 2px solid var(--fg-brown);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 50px;
  height: 50px;
  image-rendering: pixelated;
}

.logo-text {
  font-family: var(--font-pixel);
  font-size: 14px;
  color: var(--fg-yellow);
  text-shadow: 0 0 10px var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav a:hover {
  color: var(--fg-yellow);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(244, 225, 130, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-text {
  width: 100%;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text h1 {
  font-family: var(--font-pixel);
  font-size: 28px;
  color: var(--fg-yellow);
  text-shadow: 4px 4px 0 var(--fg-brown);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-text p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-text .hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 520px;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-text .hero-detail {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.75;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Globe Hero Visual - Three.js Container */
.globe-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  position: relative;
}

.globe-hero canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(244, 225, 130, 0.15));
}
  border: 2px solid var(--fg-brown);
  padding: 10px 15px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--fg-yellow);
  animation: speechPulse 2s ease-in-out infinite;
}

/* Agent Character */
.agent-container {
  position: relative;
  width: 250px;
  height: 300px;
  animation: containerFloat 4s ease-in-out infinite;
}

@keyframes containerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.agent {
  width: 200px;
  height: 250px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 25px var(--fg-yellow));
  animation: agentWiggle 2s ease-in-out infinite;
}

@keyframes agentWiggle {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  25% { transform: rotate(1deg) scale(1.02); }
  50% { transform: rotate(-1deg) scale(0.98); }
  75% { transform: rotate(2deg) scale(1.01); }
}

.agent-speech {
  position: absolute;
  top: 0;
  right: -20px;
  background: var(--bg-card);
  border: 2px solid var(--fg-brown);
  padding: 15px 20px;
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--fg-yellow);
  max-width: 180px;
  animation: speechPulse 2s ease-in-out infinite;
}

.agent-speech::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-right-color: var(--fg-brown);
}

.agent-speech::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-right-color: var(--primary);
}

@keyframes agentFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes speechPulse {
  0%, 100% { box-shadow: 0 0 10px var(--fg-yellow); }
  50% { box-shadow: 0 0 20px var(--fg-yellow), 0 0 30px var(--fg-brown); }
}

@keyframes eyeBlink {
  0%, 45%, 55%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
}

@keyframes headbandGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes headbandBlink {
  0%, 100% { fill: #f4e182; }
  50% { fill: #7c5246; }
}

.agent svg rect[fill="#ffffff"] {
  animation: eyeBlink 4s ease-in-out infinite;
}

.agent svg rect[x="70"], 
.agent svg rect[x="110"] {
  transform-origin: center;
}

.agent-large svg rect[fill="#ffffff"] {
  animation: eyeBlink 4s ease-in-out infinite;
}

.agent-follow svg rect[fill="#ffffff"] {
  animation: eyeBlink 4s ease-in-out infinite;
}

/* Headband lights animation */
.agent svg rect[x="70"],
.agent svg rect[x="100"] {
  animation: headbandBlink 1s ease-in-out infinite;
}

.agent-large svg rect[x="70"],
.agent-large svg rect[x="100"] {
  animation: headbandBlink 1s ease-in-out infinite;
}

.agent-follow svg rect[x="70"],
.agent-follow svg rect[x="100"] {
  animation: headbandBlink 1s ease-in-out infinite;
}

/* Services Section */
.services {
  padding: 100px 0;
  position: relative;
}

/* Service Animation Showcase - Professional */
.service-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 2px solid var(--fg-brown);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.service-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(244, 225, 130, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-icon {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.showcase-icon svg.service-icon {
  width: 120px;
  height: 120px;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.showcase-icon svg.service-icon circle,
.showcase-icon svg.service-icon rect,
.showcase-icon svg.service-icon path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-info {
  text-align: center;
  margin-bottom: 25px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--fg-yellow);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

.service-indicator {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--fg-brown);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot:hover {
  background: var(--fg-brown);
}

.indicator-dot.active {
  background: var(--fg-yellow);
  border-color: var(--fg-yellow);
  box-shadow: 0 0 10px var(--fg-yellow);
  animation: dotPulse 1s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 10px var(--fg-yellow); }
  50% { box-shadow: 0 0 20px var(--fg-yellow), 0 0 30px var(--fg-brown); }
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(51, 51, 51, 0.8), transparent);
  pointer-events: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg-yellow);
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

@keyframes titlePulse {
  0%, 100% { text-shadow: 3px 3px 0 var(--fg-brown); }
  50% { text-shadow: 3px 3px 10px var(--fg-yellow), 0 0 20px var(--fg-yellow); }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--fg-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--fg-yellow);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 225, 130, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover .service-number {
  color: var(--fg-yellow);
  text-shadow: 0 0 10px var(--fg-yellow);
}

.service-number {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--fg-brown);
  margin-bottom: 15px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 16px;
}

/* Special Requirements */
.requirements {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 2px solid var(--fg-yellow);
  border-bottom: 2px solid var(--fg-brown);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

/* Requirements Animation Showcase */
.requirements-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 2px solid var(--fg-yellow);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.requirements-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(244, 225, 130, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

#reqShowcaseIcon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#reqShowcaseIcon svg.service-icon {
  width: 100px;
  height: 100px;
  animation: reqIconPulse 2.5s ease-in-out infinite;
}

@keyframes reqIconPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-2deg); }
  75% { transform: scale(1.05) rotate(2deg); }
}

.requirement-info {
  text-align: center;
  margin-bottom: 20px;
}

.requirement-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg-yellow);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.requirement-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

.requirement-indicator {
  display: flex;
  gap: 12px;
}

.req-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fg-brown);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.req-dot:hover {
  background: var(--fg-yellow);
}

.req-dot.active {
  background: var(--fg-yellow);
  border-color: var(--fg-yellow);
  box-shadow: 0 0 10px var(--fg-yellow);
}

.requirement-item {
  padding: 30px;
  border: 2px solid var(--border);
  background: var(--bg-primary);
}

.requirement-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg-yellow);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-number {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg-brown);
  margin-bottom: 15px;
  font-weight: bold;
}

.fee-badge {
  display: inline-block;
  background: var(--fg-yellow);
  color: var(--bg-primary);
  padding: 12px 25px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
  text-transform: uppercase;
}

/* Partners Section */
.partners {
  padding: 100px 0;
  position: relative;
  background: var(--bg-primary);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

/* When .partner-card is an <a> link — strip browser-default link styling */
a.partner-card,
a.partner-card:hover {
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  border-color: var(--fg-yellow);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 225, 130, 0.15);
}

.partner-logo-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%) brightness(0.9);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
  filter: grayscale(0%) brightness(1);
}

.partner-name {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
  color: var(--fg-yellow);
}

.partners-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  padding: 60px 20px;
  border: 2px dashed var(--border);
  grid-column: 1 / -1;
}

.partners-placeholder strong {
  color: var(--fg-yellow);
  font-family: var(--font-pixel);
  font-size: 10px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--fg-yellow);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--fg-yellow);
}

.contact-item a {
  font-size: 18px;
}

.contact-item span {
  color: var(--text-muted);
}

/* ── WeChat QR Code ── */
.contact-item--qr {
  flex-wrap: wrap;
}

.qr-thumbnail {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid var(--border, #333);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  object-fit: cover;
}

.qr-thumbnail:hover {
  transform: scale(1.1);
  border-color: var(--fg-yellow, #f4e182);
  box-shadow: 0 0 12px rgba(244, 225, 130, 0.3);
}

/* ── QR Lightbox ── */
.qr-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: qrFadeIn 0.25s ease;
}

.qr-overlay--open {
  display: flex;
}

.qr-popup {
  background: #1a1a1a;
  border: 2px solid var(--fg-yellow, #f4e182);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  position: relative;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 0 40px rgba(244, 225, 130, 0.15);
  animation: qrPopupIn 0.3s ease;
}

.qr-popup__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted, #888);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.qr-popup__close:hover {
  color: var(--fg-yellow, #f4e182);
}

.qr-popup__img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 16px;
}

.qr-popup__text {
  font-family: var(--font-body, 'Rajdhani', sans-serif);
  font-size: 16px;
  color: var(--text-muted, #888);
  letter-spacing: 1px;
  margin: 0;
}

@keyframes qrFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes qrPopupIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Footer */
footer {
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid var(--border);
  background: var(--bg-card);
}

footer p {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--text-muted);
}

/* Agent Follow - Mouse follower */
.agent-follow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
  will-change: transform;
}

.agent-follow svg {
  width: 80px;
  height: 100px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 20px var(--fg-yellow));
  animation: agentBounce 2s ease-in-out infinite;
}

.agent-follow-speech {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 2px solid var(--fg-brown);
  padding: 10px 15px;
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--fg-yellow);
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
}

.agent-follow:hover .agent-follow-speech {
  opacity: 1;
  top: -50px;
}

@keyframes agentBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

.agent-follow-speech {
  position: absolute;
  bottom: 100px;
  right: 0;
  background: var(--bg-card);
  border: 2px solid var(--fg-brown);
  padding: 10px 15px;
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--fg-yellow);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.agent-follow:hover .agent-follow-speech {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--fg-yellow);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
  
  .globe-hero {
    width: 250px;
    height: 250px;
  }
  
  .showcase-icon svg.service-icon {
    width: 100px;
    height: 100px;
  }
  
  #reqShowcaseIcon svg.service-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    padding-top: 20px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 18px;
  }

  .hero-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }
  
  .globe-hero {
    width: 200px;
    height: 200px;
  }

  .service-showcase {
    padding: 30px 20px;
  }
  
  .showcase-icon {
    width: 100px;
    height: 100px;
  }
  
  .showcase-icon svg.service-icon {
    width: 80px;
    height: 80px;
  }
  
  .service-name, .requirement-name {
    font-size: 18px;
  }
  
  .service-desc, .requirement-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .requirements-showcase {
    padding: 25px 15px;
  }
  
  #reqShowcaseIcon {
    width: 80px;
    height: 80px;
  }
  
  #reqShowcaseIcon svg.service-icon {
    width: 60px;
    height: 60px;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }

  .partner-card {
    min-height: 130px;
    padding: 20px 15px;
  }

  .partner-logo-wrapper {
    width: 70px;
    height: 70px;
  }

  .partner-name {
    font-size: 12px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .section-title {
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .agent-follow {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 14px;
  }

  .logo-text {
    font-size: 10px;
  }

  .container {
    padding: 0 15px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 14px;
  }
}

/* Scanline Effect */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 2px
  );
  opacity: 0.4;
}

/* Add a subtle glow to the grid background */
body::before {
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

/* Scroll Animations */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.service-card {
  opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

.cta-button {
  display: inline-block;
  background: var(--fg-yellow);
  color: var(--bg-primary);
  padding: 15px 40px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--fg-brown);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--fg-brown);
  color: var(--fg-yellow);
  box-shadow: 0 0 30px var(--fg-brown);
  transform: translateY(-3px);
}

.agent-large {
  width: 200px;
  height: 250px;
  image-rendering: pixelated;
  animation: agentFloat 3s ease-in-out infinite, glowPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--fg-yellow));
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 15px var(--fg-yellow)); }
  50% { filter: drop-shadow(0 0 30px var(--fg-yellow)) drop-shadow(0 0 40px var(--fg-brown)); }
}
