/* ═══════════════════════════════════════════════════
   TOMORROW SOLUTIONS — Cybersecurity Website
   Modern dark theme · Electric cyan · Purple accent
   ═══════════════════════════════════════════════════ */

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

:root {
  --bg: #040d1a;
  --bg-2: #060f20;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-h: rgba(255, 255, 255, 0.06);
  --border: rgba(0, 212, 255, 0.12);
  --border-h: rgba(0, 212, 255, 0.35);
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.15);
  --cyan-glow: rgba(0, 212, 255, 0.25);
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dim: rgba(124, 58, 237, 0.15);
  --green: #00ff88;
  --green-dim: rgba(0, 255, 136, 0.15);
  --yellow: #f59e0b;
  --pink: #ec4899;
  --text: #e2e8f0;
  --text-2: #94a3b8;
  --text-3: #475569;
  --gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --gradient-btn: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
  --r-xl: 24px;
  --r-lg: 16px;
  --r-md: 10px;
  --r-sm: 6px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Noise Texture ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  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");
  opacity: 0.4;
}

/* ── Custom Cursor ── */
.cursor,
.cursor-follower {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9998;
  display: none;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  transition: none;
}

.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: 0.1s ease;
}

@media (pointer: fine) {

  .cursor,
  .cursor-follower {
    display: block;
  }
}

/* ── Containers ── */
.nav-container,
.section-container,
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0;
  background: rgba(4, 13, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--t);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(4, 13, 26, 0.95);
}

.nav-container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-shield {
  width: 36px;
  height: 40px;
  flex-shrink: 0;
}

.logo-shield.small {
  width: 28px;
  height: 32px;
}

.logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.logo-accent {
  color: var(--cyan);
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--r-md);
  transition: var(--t);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

/* CTA button */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-h);
  border-radius: var(--r-md);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--t);
}

.nav-cta:hover {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: var(--t);
}

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

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: 50%;
  right: -150px;
  animation-delay: 2s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00ff88 0%, transparent 70%);
  bottom: -100px;
  left: 40%;
  animation-delay: 4s;
  opacity: 0.12;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(20px, 20px) scale(1.06);
  }
}

/* Particles */
.particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Hero layout */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}

/* Glitch effect */
.glitch-text {
  color: var(--cyan);
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan);
  pointer-events: none;
}

.glitch-text::before {
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-2px, 0);
  color: #ff006e;
  opacity: 0.7;
}

.glitch-text::after {
  animation: glitch2 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(2px, 0);
  color: #00d4ff;
  opacity: 0.7;
}

@keyframes glitch1 {

  0%,
  94%,
  100% {
    transform: translate(0);
    opacity: 0;
  }

  95% {
    transform: translate(-2px, 1px);
    opacity: 0.7;
  }

  96% {
    transform: translate(2px, -1px);
    opacity: 0.7;
  }
}

@keyframes glitch2 {

  0%,
  94%,
  100% {
    transform: translate(0);
    opacity: 0;
  }

  95% {
    transform: translate(2px, -1px);
    opacity: 0.7;
  }

  96% {
    transform: translate(-2px, 1px);
    opacity: 0.7;
  }
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.2s both;
}

/* Hero buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: var(--r-md);
  background: var(--gradient-btn);
  color: white;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  transition: var(--t);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t);
  pointer-events: none;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--t);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-h);
  background: rgba(0, 212, 255, 0.06);
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.7s ease 0.4s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.trust-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Shield Visual ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s ease 0.5s both;
}

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

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(0, 212, 255, 0.12);
  animation-delay: 0s;
}

.ring-2 {
  width: 75%;
  height: 75%;
  border-color: rgba(0, 212, 255, 0.2);
  animation-delay: 0.5s;
}

.ring-3 {
  width: 52%;
  height: 52%;
  border-color: rgba(0, 212, 255, 0.3);
  animation-delay: 1s;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.shield-core {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.4));
  animation: shieldFloat 4s ease-in-out infinite alternate;
}

.shield-svg {
  width: 160px;
  height: 180px;
}

@keyframes shieldFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-12px);
  }
}

/* Threat indicators */
.threat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 13, 26, 0.85);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: threatFade 0.5s ease both;
}

.threat-1 {
  top: 20%;
  right: -10%;
  animation-delay: 1s;
}

.threat-2 {
  bottom: 30%;
  left: -15%;
  animation-delay: 1.5s;
}

.threat-3 {
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

.threat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
  animation: blink 1.5s ease-in-out infinite;
}

.threat-dot.green {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

@keyframes threatFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border-h), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ── Ticker ── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 212, 255, 0.03);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   GENERAL SECTION STYLES
══════════════════════════════════════════ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-h);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.cyan-text {
  color: var(--cyan);
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  background: var(--bg-2);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: var(--t);
}

.service-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--cyan-glow);
}

.card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, var(--cyan-dim) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t);
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(0, 212, 255, 0.3);
  grid-column: span 1;
}

.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--cyan-dim);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-features li {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 12px;
}

.service-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  transition: var(--t);
}

.service-cta:hover {
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Terminal */
.terminal-window {
  background: #080f1c;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.08), 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 212, 255, 0.05);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #f59e0b;
}

.dot.green-dot {
  background: #22c55e;
}

.term-title {
  font-size: 11px;
  color: var(--text-3);
  margin-left: 8px;
}

.terminal-body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.8;
}

.term-line {
  margin-bottom: 2px;
}

.term-prompt {
  color: var(--cyan);
  margin-right: 8px;
}

.term-cmd {
  color: #e2e8f0;
}

.term-line.output {
  padding-left: 16px;
}

.term-cyan {
  color: var(--cyan);
}

.term-green {
  color: var(--green);
}

.term-yellow {
  color: var(--yellow);
}

.typing {
  border-right: 2px solid var(--cyan);
  animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Float cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 15, 32, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.about-visual {
  position: relative;
}

.fc-1 {
  bottom: -20px;
  right: -20px;
  animation: floatCard 3s ease-in-out infinite alternate;
}

.fc-2 {
  top: -20px;
  left: -20px;
  animation: floatCard 3s ease-in-out infinite alternate;
  animation-delay: 1s;
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.fc-icon {
  font-size: 24px;
}

.fc-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.fc-label {
  font-size: 11px;
  color: var(--text-2);
}

/* About content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--text);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats-section {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.stats-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, var(--cyan-dim) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t);
}

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

.stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 10px;
}

.zero-stat {
  color: var(--green);
}

.stat-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.testi-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
}

.testi-card.featured-testi {
  border-color: rgba(0, 212, 255, 0.3);
}

.testi-card.featured-testi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.testi-quote {
  font-size: 60px;
  color: var(--cyan);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -10px;
  font-family: Georgia, serif;
}

.testi-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.cyan-avatar {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid var(--border-h);
}

.purple-avatar {
  background: var(--purple-dim);
  color: var(--purple-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.green-avatar {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.author-role {
  font-size: 12px;
  color: var(--text-2);
}

.testi-stars {
  margin-left: auto;
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   PLANS
══════════════════════════════════════════ */
.plans {
  background: var(--bg-2);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
}

.plan-card.plan-featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.plan-card.plan-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.plan-card.plan-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.plan-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--cyan-dim);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.plan-for {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
}

.plan-price {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-price span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 13px;
  color: var(--text-2);
}

.plan-features li.muted {
  color: var(--text-3);
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--t);
}

.plan-btn:hover {
  border-color: var(--border-h);
  color: var(--cyan);
  background: var(--cyan-dim);
}

.plan-btn.plan-btn-featured {
  background: var(--gradient-btn);
  border: none;
  color: white;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
}

.plan-btn.plan-btn-featured:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  color: white;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-label {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ci-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.ci-value:hover {
  color: var(--cyan);
}

/* Certifications */
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.cert-badge {
  padding: 5px 10px;
  border-radius: var(--r-sm);
  background: var(--bg-card-h);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.5px;
}

.cert-badge.small {
  font-size: 10px;
  padding: 3px 8px;
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.cf-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  outline: none;
  transition: var(--t);
  -webkit-appearance: none;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: var(--text-3);
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--border-h);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.cf-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.cf-group select option {
  background: #0f172a;
  color: var(--text);
}

.cf-group textarea {
  resize: vertical;
  min-height: 100px;
}

.cf-submit {
  width: 100%;
  padding: 15px;
  border-radius: var(--r-md);
  background: var(--gradient-btn);
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--t);
  letter-spacing: 0.3px;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.25);
  margin-top: 4px;
}

.cf-submit:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.45);
  transform: translateY(-1px);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: var(--green-dim);
  border: 1px solid rgba(0, 255, 136, 0.3);
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 64px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top .footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg-card-h);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--t);
}

.social-btn:hover {
  border-color: var(--border-h);
  color: var(--cyan);
  background: var(--cyan-dim);
}

.footer-links-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col a {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: var(--t);
}

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

.footer-emergency {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 10px;
}

.emergency-number {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  color: var(--cyan);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-3);
}

.footer-legal {
  color: var(--text-2) !important;
  font-weight: 600;
}

/* ── Back to top ── */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid var(--border-h);
  color: var(--cyan);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* ── Utility ── */
.hidden {
  display: none !important;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 72px 0;
  }

  .services-grid,
  .stats-grid,
  .testimonials-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

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

  .plan-card.plan-featured {
    transform: none;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .footer-top .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {

  .nav-container,
  .section-container,
  .footer-container {
    padding: 0 20px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 16px;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }
}