/* ============================================
   QUENTA.IT — Ultra-Futuristic Design v2
   Syne + JetBrains Mono · Animated Borders
   Mesh Gradients · Grain · Holographic FX
   ============================================ */

/* ---------- @font-face via Google Fonts (loaded in HTML) ---------- */
:root {
  --bg: #050a08;
  --bg-alt: #070e0b;
  --bg-card: rgba(8, 20, 15, 0.92);
  --primary: #00C896;
  --primary-rgb: 0, 200, 150;
  --primary-dim: rgba(0, 200, 150, 0.12);
  --primary-glow: rgba(0, 200, 150, 0.5);
  --cyan: #00f0ff;
  --cyan-rgb: 0, 240, 255;
  --lime: #7fff6e;
  --lime-rgb: 127, 255, 110;
  --text: #edf8f3;
  --text-dim: rgba(237, 248, 243, 0.7);
  --text-muted: rgba(237, 248, 243, 0.45);
  --border: rgba(0, 200, 150, 0.12);
  --border-hover: rgba(0, 200, 150, 0.45);
  --glass: rgba(5, 10, 8, 0.88);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --font-body: 'Outfit', system-ui, sans-serif;
  --nav-h: 72px;
  --container: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.5s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale; 
}
@media (min-width: 1024px) {
  html { scroll-snap-type: y mandatory; }
  section { scroll-snap-align: start; scroll-snap-stop: always; }
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.7;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { cursor: none; font-family: var(--font-body); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--primary); color: var(--bg); }

/* ---------- Intro Overlay ---------- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, visibility 1s;
  cursor: auto;
}
.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: intro-fade-in 1.5s ease forwards;
}
@keyframes intro-fade-in {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: none; }
}
.intro-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.6));
  animation: intro-pulse 3s ease infinite;
}
@keyframes intro-pulse {
  0%, 100% { filter: drop-shadow(0 0 25px rgba(var(--primary-rgb), 0.5)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 50px rgba(var(--primary-rgb), 0.8)); transform: scale(1.05); }
}
.intro-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition);
  animation: intro-btn-glow 2s ease infinite;
}
@keyframes intro-btn-glow {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50% { box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.25); }
}
.intro-btn:hover {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.5);
}
.intro-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ---------- Sound Toggle ---------- */
.sound-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 20, 15, 0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.sound-toggle.visible {
  opacity: 1;
  pointer-events: auto;
}
.sound-toggle:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}
.sound-toggle .sound-off { display: none; }
.sound-toggle.muted .sound-on { display: none; }
.sound-toggle.muted .sound-off { display: block; }

/* ---------- Noise / Grain Overlay ---------- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ---------- Canvas ---------- */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Planet Image */
.hero-planet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 120%;
  max-width: 1400px;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  filter: drop-shadow(0 0 60px rgba(var(--primary-rgb), 0.4))
          drop-shadow(0 0 120px rgba(var(--primary-rgb), 0.15));
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  width: 18px; height: 18px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-width 0.3s;
  box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.3);
}
.cursor.hover {
  width: 44px; height: 44px;
  background: rgba(var(--primary-rgb), 0.1);
  border-width: 1px;
  box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.4);
}

/* ---------- Container ---------- */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Text ---------- */
.text-green {
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 50%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--primary); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--primary), 0 0 4px var(--primary); }
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--primary);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  border: none;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 0 0 0 transparent, 0 4px 24px rgba(var(--primary-rgb), 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.35), 0 8px 32px rgba(var(--primary-rgb), 0.25);
  filter: brightness(1.1);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
  box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.12);
  transform: translateY(-2px);
}

/* Glitch */
.btn-glitch:hover { animation: glitch 0.25s steps(3) 1; }
@keyframes glitch {
  0% { text-shadow: 2px 0 var(--cyan), -2px 0 #ff006a; }
  33% { text-shadow: -1px -1px var(--cyan), 1px 1px #ff006a; }
  66% { text-shadow: 1px 1px var(--lime), -1px -1px var(--cyan); }
  100% { text-shadow: none; }
}

/* ============================================
   ANIMATED BORDER CARD (reusable)
   ============================================ */
.glow-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.3),
    rgba(var(--cyan-rgb), 0.1),
    rgba(var(--primary-rgb), 0.05),
    rgba(var(--cyan-rgb), 0.3)
  );
  background-size: 300% 300%;
  animation: border-flow 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.glow-card:hover::before { opacity: 1; }

@keyframes border-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.glow-card-inner {
  background: var(--bg-card);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  height: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.5s;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.navbar.scrolled {
  transform: translateY(-100%);
  opacity: 0;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav-logo-icon {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.5));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-icon {
  filter: drop-shadow(0 0 16px rgba(var(--primary-rgb), 0.8));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.35s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--primary);
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.4);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.hamburger span {
  display: block; height: 1.5px; background: var(--text);
  border-radius: 2px; transition: var(--transition); transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile */
.mobile-nav {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  background: var(--glass); backdrop-filter: blur(24px);
  border-top: 1px solid rgba(var(--primary-rgb), 0.06);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em;
  color: var(--text-dim); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03); transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-cta {
  margin-top: 12px; padding: 14px 24px !important;
  background: var(--primary) !important; color: var(--bg) !important;
  border-radius: 999px; text-align: center; font-weight: 700;
  font-family: var(--font-display) !important; border: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
/* Mesh orbs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 600px; height: 600px;
  top: 10%; left: -100px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12), transparent 70%);
  animation: orb-float 12s ease-in-out infinite;
}
.hero::after {
  width: 400px; height: 400px;
  bottom: 5%; right: -50px;
  background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.08), transparent 70%);
  animation: orb-float 10s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 580px; position: relative; z-index: 3; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
  min-height: 3.4em;
  text-shadow: 0 0 30px rgba(0,0,0,1), 0 0 60px rgba(0,0,0,0.8);
}
.type-line { display: block; }
.type-green {
  background: linear-gradient(135deg, var(--primary), var(--cyan), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.type-cursor {
  color: var(--primary);
  animation: blink 0.7s step-end infinite;
  font-weight: 400;
  text-shadow: 0 0 10px var(--primary);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-subtitle {
  font-size: 15px; color: var(--text-dim); line-height: 1.9;
  margin-bottom: 36px; max-width: 500px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.95), 0 4px 30px rgba(0,0,0,0.8);
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Phone Mockup */
.hero-visual { display: flex; justify-content: flex-end; align-items: center; position: relative; z-index: 3; }
.hero-phone-img {
  width: 280px;
  max-height: 85vh;
  object-fit: contain;
  transform: translateY(-50px) scale(1.03);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9)) 
          drop-shadow(0 0 80px rgba(var(--primary-rgb), 0.6))
          drop-shadow(0 0 120px rgba(var(--cyan-rgb), 0.4));
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% {
    transform: translateY(-50px) scale(1.03);
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9)) drop-shadow(0 0 80px rgba(var(--primary-rgb), 0.6)) drop-shadow(0 0 120px rgba(var(--cyan-rgb), 0.4));
  }
  50% {
    transform: translateY(-60px) scale(1.05);
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.9)) drop-shadow(0 0 100px rgba(var(--primary-rgb), 0.8)) drop-shadow(0 0 150px rgba(var(--cyan-rgb), 0.5));
  }
}
.mock-dots { display: flex; gap: 5px; }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.mock-url {
  flex: 1; padding: 4px 12px;
  background: rgba(0,0,0,0.35); border-radius: 6px;
  font-family: var(--font-mono); font-size: 9px; color: var(--text-muted);
  letter-spacing: 0.05em;
}

.mock-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 10px; }
.kpi-card {
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.15);
  border-radius: var(--radius-sm); padding: 12px;
}
.kpi-label { font-family: var(--font-mono); font-size: 8px; color: var(--primary); letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.kpi-value { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text); display: block; }
.kpi-delta { font-family: var(--font-mono); font-size: 9px; display: block; margin-top: 4px; }
.kpi-up { color: var(--primary); }

.mock-order {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: rgba(var(--primary-rgb), 0.04);
  border: 1px solid rgba(var(--primary-rgb), 0.06);
  border-radius: var(--radius-sm); margin-bottom: 10px;
}
.order-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.order-title { font-family: var(--font-display); font-size: 12px; font-weight: 600; display: block; }
.order-sub { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); display: block; letter-spacing: 0.05em; }

.mock-chart {
  display: flex; align-items: flex-end; gap: 4px; height: 70px;
  padding: 8px; background: rgba(0,0,0,0.25); border-radius: var(--radius-sm);
}
.chart-bar {
  flex: 1; height: var(--h);
  background: linear-gradient(to top, rgba(var(--primary-rgb), 0.6), rgba(var(--primary-rgb), 0.1));
  border-radius: 3px 3px 0 0;
  animation: chart-grow 1.8s var(--ease) forwards;
  transform-origin: bottom; transform: scaleY(0);
}
.chart-bar-accent { background: linear-gradient(to top, rgba(var(--cyan-rgb), 0.7), rgba(var(--cyan-rgb), 0.1)); }
@keyframes chart-grow { to { transform: scaleY(1); } }
.chart-bar:nth-child(1) { animation-delay: 0.8s; }
.chart-bar:nth-child(2) { animation-delay: 0.95s; }
.chart-bar:nth-child(3) { animation-delay: 1.1s; }
.chart-bar:nth-child(4) { animation-delay: 1.25s; }
.chart-bar:nth-child(5) { animation-delay: 1.4s; }
.chart-bar:nth-child(6) { animation-delay: 1.55s; }
.chart-bar:nth-child(7) { animation-delay: 1.7s; }

/* Scroll */
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-mouse {
  width: 20px; height: 32px; border: 1.5px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 10px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot {
  width: 2px; height: 6px; background: var(--primary); border-radius: 2px;
  animation: scroll-anim 2s ease infinite;
}
@keyframes scroll-anim { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(10px); } }

/* ============================================
   TICKER STRIP
   ============================================ */
.ticker-strip {
  overflow: hidden; padding: 14px 0;
  background: rgba(var(--primary-rgb), 0.03);
  border-top: 1px solid rgba(var(--primary-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  position: relative; z-index: 2;
}
.ticker-track {
  display: flex; gap: 20px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.25em; color: rgba(var(--primary-rgb), 0.4);
  text-transform: uppercase;
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   FEATURES (Bento Grid)
   ============================================ */
.features { padding: 140px 0; position: relative; z-index: 2; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(var(--primary-rgb), 0.35),
    rgba(var(--cyan-rgb), 0.08),
    rgba(var(--primary-rgb), 0.02),
    rgba(var(--cyan-rgb), 0.25)
  );
  background-size: 300% 300%;
  animation: border-flow 8s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.5s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.feature-card-inner {
  background: rgba(8, 20, 15, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
/* Subtle glow on hover */
.feature-card-inner::after {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.feature-card:hover .feature-card-inner::after { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--primary); }
.feature-icon.icon-cyan { background: rgba(var(--cyan-rgb), 0.08); border-color: rgba(var(--cyan-rgb), 0.15); }
.feature-icon.icon-cyan svg { color: var(--cyan); }
.feature-icon.icon-lime { background: rgba(var(--lime-rgb), 0.08); border-color: rgba(var(--lime-rgb), 0.15); }
.feature-icon.icon-lime svg { color: var(--lime); }

.feature-card:hover .feature-icon {
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.feature-card p { font-size: 13px; color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 3px 10px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
}
.tag-cyan { background: rgba(var(--cyan-rgb), 0.06); color: var(--cyan); border-color: rgba(var(--cyan-rgb), 0.12); }
.tag-lime { background: rgba(var(--lime-rgb), 0.06); color: var(--lime); border-color: rgba(var(--lime-rgb), 0.12); }

/* ============================================
   SOLUTIONS
   ============================================ */
.solutions { padding: 140px 0; position: relative; z-index: 2; }

.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.solutions-left { display: flex; flex-direction: column; gap: 12px; }

.solution-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: rgba(8, 20, 15, 0.92);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.solution-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 32px rgba(var(--primary-rgb), 0.08);
  transform: translateX(4px);
}
.solution-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: rgba(var(--primary-rgb), 0.06);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.solution-icon svg { width: 20px; height: 20px; }
.solution-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.solution-card p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* Big Card */
.solutions-big-card {
  background: rgba(8, 20, 15, 0.95); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  height: 100%; position: relative;
  box-shadow: 0 0 80px rgba(var(--primary-rgb), 0.05);
}
.solutions-big-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan), var(--lime));
  border-radius: var(--radius) var(--radius) 0 0;
}
.big-card-title {
  font-family: var(--font-mono); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; color: var(--primary); margin-bottom: 32px;
}
.big-card-items { display: flex; flex-direction: column; gap: 24px; }
.big-card-item { display: flex; gap: 14px; align-items: flex-start; }
.bci-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(var(--primary-rgb), 0.05);
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.big-card-item strong { font-family: var(--font-display); font-size: 14px; font-weight: 700; display: block; margin-bottom: 3px; }
.big-card-item p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   STATS
   ============================================ */
.stats-section {
  padding: 80px 0; background: var(--bg-alt);
  position: relative; z-index: 2;
  border-top: 1px solid rgba(var(--primary-rgb), 0.06);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.06);
}
.stats-grid { display: flex; justify-content: center; align-items: center; }
.stat-item { text-align: center; padding: 24px 52px; }
.stat-number, .stat-number-static {
  display: block; font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px); font-weight: 800;
  line-height: 1; margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
.stat-divider { width: 1px; height: 50px; background: rgba(var(--primary-rgb), 0.15); }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 140px 0; position: relative; z-index: 2; }
.services-grid { max-width: 640px; margin: 0 auto; }
.services-list { display: flex; flex-direction: column; gap: 12px; }
.service-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.service-item:hover { border-color: var(--border-hover); transform: translateX(6px); }
.service-check {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-item p { font-size: 14px; color: var(--text-dim); }
.service-item strong { color: var(--text); }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 140px 0; position: relative; z-index: 2; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.about-text p { font-size: 14px; color: var(--text-dim); margin-bottom: 16px; line-height: 1.85; }
.about-text strong { color: var(--text); }
.about-badges { display: flex; gap: 16px; margin-top: 32px; }
.about-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.about-badge:hover { border-color: var(--border-hover); }
.ab-icon { font-size: 22px; }
.about-badge strong { font-family: var(--font-display); font-size: 13px; font-weight: 700; display: block; }
.about-badge span { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.05em; }

.about-cards { display: flex; flex-direction: column; gap: 12px; }
.about-card {
  padding: 28px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.about-card:hover { border-color: var(--border-hover); transform: translateX(6px); }
.ac-number {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.ac-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ac-lime {
  background: linear-gradient(135deg, var(--lime), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.about-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.about-card p { font-size: 13px; color: var(--text-dim); line-height: 1.75; }

/* ============================================
   CTA
   ============================================ */
.cta-section {
  position: relative; padding: 180px 24px; text-align: center;
  overflow: hidden; z-index: 2;
}
#ctaCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display); font-size: clamp(28px, 5vw, 52px);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em;
  line-height: 1.15; margin-bottom: 20px;
}
.cta-sub { font-size: 15px; color: var(--text-dim); margin-bottom: 36px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 140px 0; position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; padding-top: 16px; }
.ci-item { display: flex; gap: 16px; align-items: center; }
.ci-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-label { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 2px; }
.ci-value { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 600; }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  position: relative; overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan), var(--lime));
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 13px;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.08), 0 0 16px rgba(var(--primary-rgb), 0.08);
}
.form-group select { appearance: none; }
.form-group select option { background: var(--bg); }
.form-group textarea { resize: none; }

.form-consent { margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: var(--text-muted); cursor: none;
}
.consent-label input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.consent-label a { color: var(--primary); text-decoration: underline; }
.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 12px; }

.form-success { text-align: center; padding: 32px; margin-top: 16px; }
.form-success.hidden { display: none; }
.form-success h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 12px 0 6px; }
.form-success p { font-size: 13px; color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px; border-top: 1px solid rgba(var(--primary-rgb), 0.06);
  position: relative; z-index: 2;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer-logo-icon { width: 28px; height: 28px; filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.5)); }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 340px; margin-bottom: 10px; }
.footer-company { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-links h5 {
  font-family: var(--font-mono); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; color: var(--primary); margin-bottom: 16px;
}
.footer-links a { display: block; font-size: 13px; color: var(--text-muted); padding: 4px 0; transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(var(--primary-rgb), 0.04);
}
.footer-bottom p { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--primary); color: var(--primary);
  box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.2);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* === TABLET === */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-title { min-height: auto; }
  .hero-subtitle { max-width: 100%; margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { padding: 20px 36px; }
}

/* === MOBILE === */
@media (max-width: 768px) {
  /* Cursor off on mobile */
  body { cursor: auto; }
  .cursor { display: none !important; }

  /* Intro */
  .intro-title { font-size: 32px; }
  .intro-sub { font-size: 10px; letter-spacing: 0.15em; margin-bottom: 30px; }
  .intro-btn { padding: 12px 28px; font-size: 11px; }

  /* Planet on mobile — behind text, smaller, more transparent */
  .hero-planet {
    right: auto;
    left: 50%;
    top: 45%;
    width: 120%;
    max-width: 500px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }

  /* Sound toggle */
  .sound-toggle { bottom: 16px; right: 16px; width: 40px; height: 40px; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 0 16px; height: 60px; }
  .nav-logo { font-size: 17px; gap: 8px; }
  .nav-logo-icon { width: 30px; height: 30px; }

  /* Hero */
  .hero { min-height: 100svh; padding-top: 60px; }
  .hero-container { padding: 40px 20px 60px; }
  .hero-title {
    font-size: clamp(26px, 8vw, 42px);
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 11px;
  }
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .trust-badge { font-size: 11px; }
  .badge { font-size: 9px; padding: 4px 12px; letter-spacing: 0.15em; }

  /* Section headers */
  .section-header { margin-bottom: 48px; }
  .section-title {
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-sub { font-size: 14px; line-height: 1.75; }

  /* Ticker */
  .ticker-strip { padding: 12px 0; }
  .ticker-track { font-size: 10px; letter-spacing: 0.15em; }

  /* Features */
  .features { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card-inner { padding: 24px 20px; }
  .feature-card h3 { font-size: 14px; }
  .feature-card p { font-size: 13px; line-height: 1.7; }
  .feature-icon { width: 42px; height: 42px; margin-bottom: 16px; }
  .feature-icon svg { width: 20px; height: 20px; }
  .feature-tags { gap: 5px; }
  .tag { font-size: 9px; padding: 3px 8px; }

  /* Solutions */
  .solutions { padding: 80px 0; }
  .solutions-left { gap: 10px; }
  .solution-card { padding: 20px 16px; gap: 12px; }
  .solution-card h4 { font-size: 13px; }
  .solution-card p { font-size: 12px; }
  .solution-icon { width: 38px; height: 38px; }
  .solutions-big-card { padding: 24px 20px; }
  .big-card-items { gap: 20px; }
  .big-card-item strong { font-size: 13px; }
  .big-card-item p { font-size: 11px; }

  /* Stats */
  .stats-section { padding: 48px 0; }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 20px 12px; }
  .stat-number, .stat-number-static {
    font-size: clamp(32px, 9vw, 48px);
    margin-bottom: 6px;
  }
  .stat-label { font-size: 9px; letter-spacing: 0.12em; }

  /* Services */
  .services { padding: 80px 0; }
  .service-item { padding: 16px; gap: 12px; }
  .service-item p { font-size: 13px; }
  .service-check { width: 30px; height: 30px; }

  /* About */
  .about { padding: 80px 0; }
  .about-text p { font-size: 13px; line-height: 1.75; }
  .about-badges { flex-direction: column; gap: 10px; }
  .about-badge { padding: 12px; }
  .about-badge strong { font-size: 12px; }
  .about-cards { gap: 10px; }
  .about-card { padding: 20px; }
  .ac-number { font-size: 26px; }
  .about-card h4 { font-size: 14px; }
  .about-card p { font-size: 12px; }

  /* CTA */
  .cta-section { padding: 100px 20px; }
  .cta-title { font-size: clamp(22px, 6vw, 36px); }
  .cta-sub { font-size: 14px; margin-bottom: 28px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 24px;
  }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { gap: 20px; padding-top: 0; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 12px; }
  .form-group label { font-size: 9px; margin-bottom: 5px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 14px;
    font-size: 14px; /* iOS won't zoom on 16px+ */
    border-radius: 10px;
  }
  .consent-label {
    font-size: 11px;
    gap: 10px;
    line-height: 1.5;
  }
  .consent-label input[type="checkbox"] {
    width: 20px; height: 20px;
    margin-top: 1px;
  }
  .btn-submit { padding: 16px; font-size: 12px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-links h5 { margin-bottom: 10px; }
  .footer-links a { padding: 5px 0; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Scroll reveal — shorter distance on mobile */
  .reveal { transform: translateY(20px); }
}

/* === SMALL MOBILE === */
@media (max-width: 380px) {
  .section-container { padding: 0 14px; }
  .hero-container { padding: 32px 14px 48px; }
  .hero-title { font-size: 24px; }
  .section-title { font-size: 20px; }
  .feature-card-inner { padding: 20px 16px; }
  .contact-form { padding: 20px 14px; }
  .stat-item { padding: 16px 8px; }
}
