/* ============================================================
   SWIFTPRINT — STYLES.CSS
   Dark Blue Futuristic Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --bg-deepest:    #010810;
  --bg-dark:       #040f1f;
  --bg-card:       #071628;
  --bg-card-hover: #0a1f38;
  --blue-primary:  #0057ff;
  --blue-bright:   #1a8cff;
  --blue-electric: #00d4ff;
  --blue-glow:     rgba(0, 87, 255, 0.35);
  --blue-glow-sm:  rgba(0, 87, 255, 0.15);
  --white:         #ffffff;
  --white-90:      rgba(255,255,255,0.9);
  --white-60:      rgba(255,255,255,0.6);
  --white-30:      rgba(255,255,255,0.3);
  --white-10:      rgba(255,255,255,0.08);
  --accent-cyan:   #00e5ff;
  --accent-green:  #00ff88;
  --border:        rgba(0, 87, 255, 0.25);
  --border-subtle: rgba(255,255,255,0.07);
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Outfit', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-blue:   0 0 60px rgba(0, 87, 255, 0.2), 0 0 120px rgba(0, 87, 255, 0.1);
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--bg-deepest);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--blue-primary); color: #fff; }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--blue-electric);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.3s ease;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0, 212, 255, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--blue-primary);
  background: rgba(0, 87, 255, 0.08);
}

/* ── NOISE OVERLAY ─────────────────────────────────────────── */
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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── SCROLL PROGRESS BAR ───────────────────────────────────── */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-electric));
  z-index: 9997;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--blue-electric);
}

/* ── LOADER ────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deepest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--white), var(--blue-electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: pulse-logo 1.5s ease infinite;
}

@keyframes pulse-logo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loader-bar-wrap {
  width: 200px; height: 2px;
  background: var(--white-10);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-electric));
  border-radius: 2px;
  animation: loading-fill 1.8s ease forwards;
  box-shadow: 0 0 12px var(--blue-electric);
}

@keyframes loading-fill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ── NAVBAR ────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}

#navbar.scrolled {
  background: rgba(4, 15, 31, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.1em;
}

.nav-logo .logo-main { color: var(--white); }
.nav-logo .logo-accent {
  color: var(--blue-electric);
  text-shadow: 0 0 20px var(--blue-electric);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white-60);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue-electric);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  background: var(--blue-primary);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.4);
}

.btn-nav:hover {
  background: var(--blue-bright) !important;
  box-shadow: 0 0 30px rgba(0, 87, 255, 0.7) !important;
  transform: translateY(-2px);
}

.btn-nav::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
  box-shadow: 0 0 8px var(--accent-green);
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.9s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.hero-title .line-white { color: var(--white); }
.hero-title .line-blue {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-electric) 60%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--white-60);
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  animation: fadeInUp 0.9s ease forwards;
  opacity: 0;
  animation-delay: 0.6s;
}

.hero-tagline strong {
  color: var(--white-90);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease forwards;
  opacity: 0;
  animation-delay: 0.8s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue-primary);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 30px rgba(0, 87, 255, 0.5), 0 8px 32px rgba(0, 87, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 87, 255, 0.7), 0 12px 40px rgba(0, 87, 255, 0.4);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--white-10);
  border-color: var(--blue-bright);
  transform: translateY(-3px);
}

/* Stats pills */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeInUp 0.9s ease forwards;
  opacity: 0;
  animation-delay: 1s;
}

.stat-pill {
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-electric);
  line-height: 1;
  text-shadow: 0 0 20px var(--blue-electric);
}

.stat-suf {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--blue-bright);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--white-60);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--white-30);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  z-index: 2;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--blue-electric), transparent);
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTION COMMONS ───────────────────────────────────────── */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--blue-electric);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--blue-electric);
  box-shadow: 0 0 8px var(--blue-electric);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-sub {
  color: var(--white-60);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HOW IT WORKS ──────────────────────────────────────────── */
#how-it-works {
  background: linear-gradient(180deg, transparent 0%, var(--bg-dark) 20%, var(--bg-dark) 80%, transparent 100%);
}

.steps-header { max-width: 600px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 87, 255, 0.15), 0 0 0 1px rgba(0, 87, 255, 0.1);
}

.step-card:hover::before { opacity: 1; }

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(0, 87, 255, 0.1);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
  transition: color var(--transition);
}

.step-card:hover .step-number { color: rgba(0, 87, 255, 0.2); }

.step-icon {
  width: 48px; height: 48px;
  background: rgba(0, 87, 255, 0.15);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.step-card:hover .step-icon {
  background: rgba(0, 87, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.3);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.6;
}

/* ── WHY US (FEATURES) ─────────────────────────────────────── */
#why-us { background: transparent; }

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.features-left { position: sticky; top: 8rem; }

.features-illustration {
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 40% 40%, rgba(0, 87, 255, 0.15) 0%, transparent 60%),
              var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-90);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: float 4s ease-in-out infinite;
}

.float-icon:nth-child(2) { animation-delay: 1s; }
.float-icon:nth-child(3) { animation-delay: 2s; }

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

.features-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 32px rgba(0, 87, 255, 0.1);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(0, 87, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.feature-item:hover .feature-icon { background: rgba(0, 87, 255, 0.2); }

.feature-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.6;
}

/* ── COMPARISON TABLE ──────────────────────────────────────── */
#comparison {
  background: linear-gradient(180deg, transparent, var(--bg-dark) 10%, var(--bg-dark) 90%, transparent);
}

.compare-wrap {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.compare-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.compare-col.bad { background: rgba(255, 255, 255, 0.02); }
.compare-col.good {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(0, 212, 255, 0.05));
  border-color: var(--border);
  box-shadow: 0 0 40px rgba(0, 87, 255, 0.1);
}

.compare-header {
  padding: 1.2rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-col.bad .compare-header { color: var(--white-60); }
.compare-col.good .compare-header {
  color: var(--blue-electric);
  background: rgba(0, 87, 255, 0.08);
}

.compare-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  transition: background var(--transition);
}

.compare-row:last-child { border-bottom: none; }
.compare-col.bad .compare-row:hover { background: rgba(255,255,255,0.02); }
.compare-col.good .compare-row:hover { background: rgba(0, 87, 255, 0.06); }

.compare-icon-bad { color: #ff4444; font-size: 0.9rem; }
.compare-icon-good { color: var(--accent-green); font-size: 0.9rem; }

.compare-col.bad .compare-row { color: var(--white-60); }
.compare-col.good .compare-row { color: var(--white-90); font-weight: 500; }

/* ── KIOSK LOCATION ────────────────────────────────────────── */
#location { background: transparent; }

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 1.5rem; }

.kiosk-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--bg-card);
  position: relative;
}

.kiosk-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kiosk-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--white-30);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  text-align: center;
  padding: 2rem;
}

.kiosk-photo-placeholder .ph-icon { font-size: 3rem; opacity: 0.4; }

.location-details {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loc-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.loc-row-icon { color: var(--blue-electric); font-size: 1rem; margin-top: 0.1rem; }
.loc-row-text { color: var(--white-60); line-height: 1.5; }
.loc-row-text strong { color: var(--white); display: block; font-weight: 600; margin-bottom: 0.1rem; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: invert(90%) hue-rotate(195deg) saturate(1.5) brightness(0.85);
}

.map-overlay-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(4, 15, 31, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── CONTACT ───────────────────────────────────────────────── */
#contact {
  background: linear-gradient(180deg, transparent, var(--bg-dark) 15%, var(--bg-dark) 85%, transparent);
}

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

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-60);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-deepest);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group select option { background: var(--bg-dark); }

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

.btn-submit {
  width: 100%;
  background: var(--blue-primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 30px rgba(0, 87, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 50px rgba(0, 87, 255, 0.6);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* Contact info panel */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 87, 255, 0.1);
}

.cc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
}

.cc-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
  color: var(--white-60);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.cc-item:last-child { border-bottom: none; }
.cc-item:hover { color: var(--white); }

.cc-icon {
  width: 34px; height: 34px;
  background: rgba(0, 87, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.cc-item:hover .cc-icon { background: rgba(0, 87, 255, 0.25); }

/* social pills */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-deepest);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-60);
  text-decoration: none;
  transition: all var(--transition);
}

.social-pill:hover {
  border-color: var(--border);
  color: var(--white);
  background: rgba(0, 87, 255, 0.1);
  transform: translateY(-2px);
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.footer-brand-name .accent { color: var(--blue-electric); text-shadow: 0 0 20px var(--blue-electric); }

.footer-desc {
  color: var(--white-60);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--white-60);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--white-30);
  font-size: 0.8rem;
}

.footer-tagline-sm {
  color: var(--blue-electric);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

/* ── FLOATING TICKER ───────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0, 87, 255, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-move 28s linear infinite;
  width: max-content;
}

@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-60);
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.ticker-dot { color: var(--blue-electric); font-size: 0.5rem; }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ── MOBILE MENU ───────────────────────────────────────────── */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(1, 8, 16, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; }
  .nav-hamburger { display: flex; z-index: 1001; }

  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-stats { gap: 0.75rem; }

  .features-layout { grid-template-columns: 1fr; gap: 2rem; }
  .features-left { position: static; }

  .compare-wrap { grid-template-columns: 1fr; }

  .location-layout { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-inner { padding: 4rem 1.25rem; }
}

/* ── KIOSK SHOWCASE (Why Us section) ──────────────────────── */
.kiosk-showcase {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 87, 255, 0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow linear infinite;
}

.orbit-1 {
  width: 360px; height: 360px;
  border-color: rgba(0, 87, 255, 0.15);
  border-style: dashed;
  animation-duration: 20s;
}

.orbit-2 {
  width: 460px; height: 460px;
  border-color: rgba(0, 212, 255, 0.1);
  border-style: dashed;
  animation-duration: 32s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 560px; height: 560px;
  border-color: rgba(0, 87, 255, 0.07);
  animation-duration: 50s;
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scan beam sweeping across kiosk */
.scan-beam {
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-electric), transparent);
  border-radius: 3px;
  box-shadow: 0 0 20px var(--blue-electric), 0 0 40px rgba(0, 212, 255, 0.4);
  animation: scan-sweep 3s ease-in-out infinite;
  z-index: 5;
}

@keyframes scan-sweep {
  0%   { top: 8%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

/* Ground spotlight glow */
.kiosk-spotlight {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 87, 255, 0.35) 0%, transparent 70%);
  filter: blur(12px);
  animation: spotlight-pulse 3s ease-in-out infinite;
}

@keyframes spotlight-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.2); }
}

/* Kiosk image wrapper */
.kiosk-img-wrap {
  position: relative;
  z-index: 4;
  animation: kiosk-float 5s ease-in-out infinite;
  filter:
    drop-shadow(0 30px 80px rgba(0, 87, 255, 0.45))
    drop-shadow(0 0 40px rgba(0, 212, 255, 0.25))
    drop-shadow(0 60px 40px rgba(0, 0, 0, 0.6));
}

.kiosk-main-img {
  width: 260px;
  max-width: 280px;
  height: auto;
  display: block;
  user-select: none;
}

@keyframes kiosk-float {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  33%       { transform: translateY(-14px) rotate(0.3deg); }
  66%       { transform: translateY(-8px) rotate(-0.4deg); }
}

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

/* Floating info badges */
.kiosk-badge {
  position: absolute;
  background: rgba(7, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 6;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 87, 255, 0.1);
  min-width: 130px;
}

.badge-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; }

.badge-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.68rem;
  color: var(--white-30);
  font-family: var(--font-mono);
  line-height: 1;
  margin-top: 1px;
}

.badge-tl {
  top: 12%; left: -8%;
  animation: badge-float 4s ease-in-out infinite;
}

.badge-tr {
  top: 20%; right: -8%;
  animation: badge-float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.badge-bl {
  bottom: 22%; left: -6%;
  animation: badge-float 4s ease-in-out infinite;
  animation-delay: 2s;
}

.badge-br {
  bottom: 14%; right: -4%;
  animation: badge-float 4s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Orbiting dots around the kiosk */
.orbit-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--blue-electric);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue-electric), 0 0 24px rgba(0, 212, 255, 0.5);
  animation: orbit-spin var(--dur, 8s) linear infinite;
  transform-origin: 0 0;
  z-index: 3;
}

@keyframes orbit-spin {
  from {
    transform: rotate(var(--angle, 0deg)) translateX(var(--radius, 140px)) rotate(calc(-1 * var(--angle, 0deg)));
  }
  to {
    transform: rotate(calc(var(--angle, 0deg) + 360deg)) translateX(var(--radius, 140px)) rotate(calc(-1 * (var(--angle, 0deg) + 360deg)));
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .kiosk-showcase { min-height: 380px; }
  .kiosk-main-img { width: 180px; }
  .orbit-1 { width: 260px; height: 260px; }
  .orbit-2 { width: 320px; height: 320px; }
  .orbit-3 { display: none; }
  .badge-tl { left: 0; top: 4%; }
  .badge-tr { right: 0; top: 4%; }
  .badge-bl { left: 0; bottom: 10%; }
  .badge-br { right: 0; bottom: 10%; }
  .orbit-dot { display: none; }
}

/* ── LOC SECTION KIOSK IMAGE ───────────────────────────────── */
.loc-kiosk-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  padding: 1.2rem;
  filter:
    drop-shadow(0 20px 60px rgba(0,87,255,0.4))
    drop-shadow(0 0 30px rgba(0,212,255,0.2));
  animation: kiosk-loc-float 4s ease-in-out infinite;
}

.kiosk-photo-wrap {
  background: radial-gradient(circle at 50% 85%, rgba(0,87,255,0.14), transparent 70%),
              var(--bg-card);
}
