/* ============================================
   Code Box IT Solutions — Premium Theme
   Dark + Light mode support
   ============================================ */

:root {
  --bg: #070914;
  --bg-2: #0c1026;
  --bg-3: #11162e;
  --fg: #f3f1ea;
  --fg-dim: #c4c8db;
  --muted: #7a829e;
  --primary: #00e5ff;
  --primary-2: #00b8d4;
  --accent: #c6ff00;
  --accent-2: #9fcf00;
  --pink: #ff2d92;
  --purple: #8b5cf6;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --card: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.06);
  --surface-1: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --surface-3: rgba(255, 255, 255, 0.1);
  --grad: linear-gradient(135deg, #00e5ff 0%, #c6ff00 100%);
  --grad-pink: linear-gradient(135deg, #ff2d92 0%, #8b5cf6 100%);
  --radius: 24px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ============ LIGHT THEME ============ */
[data-theme="light"] {
  --bg: #f4f1ea;
  --bg-2: #ece8dd;
  --bg-3: #e0dcd0;
  --fg: #0a0e1c;
  --fg-dim: #3a4258;
  --muted: #6b7285;
  --primary: #0891b2;
  --primary-2: #0e7490;
  --accent: #65a30d;
  --accent-2: #4d7c0f;
  --pink: #db2777;
  --purple: #7c3aed;
  --border: rgba(10, 14, 28, 0.08);
  --border-strong: rgba(10, 14, 28, 0.18);
  --card: rgba(255, 255, 255, 0.55);
  --card-hover: rgba(255, 255, 255, 0.92);
  --surface-1: rgba(10, 14, 28, 0.035);
  --surface-2: rgba(10, 14, 28, 0.06);
  --surface-3: rgba(10, 14, 28, 0.1);
  --grad: linear-gradient(135deg, #0891b2 0%, #65a30d 100%);
  --grad-pink: linear-gradient(135deg, #db2777 0%, #7c3aed 100%);
  --shadow-card: 0 20px 50px rgba(10, 14, 28, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  transition: background-color 0.3s linear;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}

em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ BACKGROUND LAYERS ============ */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.5s;
}
[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(10, 14, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 28, 0.05) 1px, transparent 1px);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: orbFloat 22s ease-in-out infinite;
  transition: background 0.6s var(--ease);
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18), transparent 70%);
  top: -100px; left: -150px;
}
.orb-2 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(198, 255, 0, 0.1), transparent 70%);
  top: 30%; right: -200px;
  animation-delay: -8s;
}
.orb-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 70%);
  bottom: -100px; left: 40%;
  animation-delay: -15s;
}
[data-theme="light"] .orb-1 {
  background: radial-gradient(circle, rgba(8, 145, 178, 0.22), transparent 70%);
}
[data-theme="light"] .orb-2 {
  background: radial-gradient(circle, rgba(101, 163, 13, 0.18), transparent 70%);
}
[data-theme="light"] .orb-3 {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, background 0.5s;
  mix-blend-mode: screen;
}
[data-theme="light"] .cursor-glow {
  background: radial-gradient(circle, rgba(8, 145, 178, 0.18), transparent 60%);
  mix-blend-mode: multiply;
}
@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none !important; }
}

/* ============ TYPOGRAPHY ============ */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
}
.kicker-cyan {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.25);
  color: var(--primary);
}
.kicker-lime {
  background: rgba(198, 255, 0, 0.08);
  border-color: rgba(198, 255, 0, 0.3);
  color: var(--accent);
}
[data-theme="light"] .kicker,
[data-theme="light"] .kicker-cyan {
  background: rgba(8, 145, 178, 0.1);
  border-color: rgba(8, 145, 178, 0.3);
  color: var(--primary);
}
[data-theme="light"] .kicker-lime {
  background: rgba(101, 163, 13, 0.1);
  border-color: rgba(101, 163, 13, 0.3);
  color: var(--accent);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.lead {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 16px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.btn .arrow {
  transition: transform 0.4s var(--ease);
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--grad);
  color: #070914;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(0, 229, 255, 0.4);
}
[data-theme="light"] .btn-primary {
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(8, 145, 178, 0.3);
}
[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 16px 50px rgba(8, 145, 178, 0.45);
}

.btn-ghost {
  background: var(--surface-1);
  color: var(--fg);
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--surface-3);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--primary);
  color: #070914;
  border-color: var(--primary);
}
[data-theme="light"] .btn-outline:hover {
  color: #ffffff;
}

.btn-lg {
  padding: 17px 32px;
  font-size: 15px;
}

.btn-block { width: 100%; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  margin-top: 22px;
  padding: 16px 30px;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

/* ============ NAVBAR ============ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav-wrap.scrolled {
  background: rgba(7, 9, 20, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .nav-wrap.scrolled {
  background: rgba(244, 241, 234, 0.85);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--fg);
}
.logo-mark {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(20, 184, 166, 0.45));
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
[data-theme="light"] .logo-mark {
  filter: drop-shadow(0 0 12px rgba(5, 150, 105, 0.35));
}
.logo:hover .logo-mark {
  transform: scale(1.06);
  filter: drop-shadow(0 0 22px rgba(45, 212, 191, 0.6));
}
.logo-text {
  color: var(--fg);
  letter-spacing: -0.02em;
}
.logo-text .dot {
  color: var(--primary);
  font-size: 38px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-links a:hover::before {
  width: 20px;
}

.nav-cta { padding: 11px 22px; font-size: 13px; }

/* Theme toggle */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg);
  position: relative;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: none !important;
  animation: none !important;
}
.theme-toggle:hover {
  background: var(--surface-2);
  border-color: var(--primary);
  color: var(--primary);
  transform: none !important;
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}
.theme-toggle .t-sun { opacity: 1; }
.theme-toggle .t-moon { opacity: 0; }
[data-theme="light"] .theme-toggle .t-sun { opacity: 0; }
[data-theme="light"] .theme-toggle .t-moon { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: none !important;
  animation: none !important;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  transform: none !important;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

/* ============ HERO ============ */
.hero {
  padding: 160px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-dim);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(198, 255, 0, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(198, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 255, 0, 0); }
}
[data-theme="light"] .pulse-dot {
  animation: pulseLight 2s infinite;
}
@keyframes pulseLight {
  0% { box-shadow: 0 0 0 0 rgba(101, 163, 13, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(101, 163, 13, 0); }
  100% { box-shadow: 0 0 0 0 rgba(101, 163, 13, 0); }
}

.mega {
  font-size: clamp(2.1rem, 6.5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.mega em {
  font-size: 1.05em;
  color: var(--fg-dim);
  padding: 0 6px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--fg); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  max-width: 380px;
}
.avatars {
  display: flex;
}
.av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #070914;
  border: 2px solid var(--bg);
  margin-left: -10px;
}
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #00e5ff, #0891b2); }
.av2 { background: linear-gradient(135deg, #c6ff00, #65a30d); }
.av3 { background: linear-gradient(135deg, #ff2d92, #be185d); }
.av4 { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.stars-sm {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
[data-theme="light"] .stars-sm,
[data-theme="light"] .stars,
[data-theme="light"] .stars-lg {
  color: #d97706;
}
.hero-trust small {
  color: var(--fg-dim);
  font-size: 13px;
  display: block;
}
.hero-trust strong { color: var(--fg); }

/* ============ HERO BENTO ============ */
.hero-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
  align-self: start;
}
.bento {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.bento:hover {
  background: var(--card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
[data-theme="light"] .bento:hover {
  box-shadow: var(--shadow-card);
}
.bento-lg {
  grid-row: span 3;
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.1), rgba(0, 229, 255, 0.02));
  border-color: rgba(0, 229, 255, 0.2);
}
[data-theme="light"] .bento-lg {
  background: linear-gradient(160deg, rgba(8, 145, 178, 0.12), rgba(8, 145, 178, 0.02));
  border-color: rgba(8, 145, 178, 0.28);
}
.b-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}
.b-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 8px;
}
.b-num .plus { color: var(--primary); }
.b-meta {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}
.b-meta .up { font-weight: 700; }
.b-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 20px;
}
.b-chart span {
  flex: 1;
  background: var(--grad);
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
  animation: growBar 1.8s var(--ease) both;
  transform-origin: bottom;
}
.b-chart span:nth-child(1) { animation-delay: 0.1s; }
.b-chart span:nth-child(2) { animation-delay: 0.2s; }
.b-chart span:nth-child(3) { animation-delay: 0.3s; }
.b-chart span:nth-child(4) { animation-delay: 0.4s; }
.b-chart span:nth-child(5) { animation-delay: 0.5s; }
.b-chart span:nth-child(6) { animation-delay: 0.6s; }
.b-chart span:nth-child(7) { animation-delay: 0.7s; opacity: 1; }
@keyframes growBar {
  from { transform: scaleY(0); }
}

.bento-live {
  background: linear-gradient(160deg, rgba(198, 255, 0, 0.08), rgba(198, 255, 0, 0.02));
  border-color: rgba(198, 255, 0, 0.2);
}
[data-theme="light"] .bento-live {
  background: linear-gradient(160deg, rgba(101, 163, 13, 0.1), rgba(101, 163, 13, 0.02));
  border-color: rgba(101, 163, 13, 0.28);
}
.live-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.live-txt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.b-strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 6px;
}

.bento-tech .tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tech-chips span {
  padding: 5px 11px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-dim);
  font-family: 'Space Grotesk', sans-serif;
}

.bento-rating {
  text-align: center;
}
.rating-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.rating-num small { font-size: 16px; color: var(--muted); }
.stars-lg {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 3px;
  margin: 4px 0 6px;
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-1);
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: -0.01em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-head .lead { margin: 0 auto; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ab-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(14px);
}
.ab-card:hover {
  background: var(--card-hover);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
}
[data-theme="light"] .ab-card:hover {
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: var(--shadow-card);
}
.ab-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ab-icon svg { width: 22px; height: 22px; }
.ab-card:nth-child(2) .ab-icon { background: rgba(255, 45, 146, 0.08); color: var(--pink); }
.ab-card:nth-child(3) .ab-icon { background: rgba(198, 255, 0, 0.08); color: var(--accent); }
.ab-card:nth-child(4) .ab-icon { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
[data-theme="light"] .ab-icon { background: rgba(8, 145, 178, 0.1); }
[data-theme="light"] .ab-card:nth-child(2) .ab-icon { background: rgba(219, 39, 119, 0.1); }
[data-theme="light"] .ab-card:nth-child(3) .ab-icon { background: rgba(101, 163, 13, 0.1); }
[data-theme="light"] .ab-card:nth-child(4) .ab-icon { background: rgba(124, 58, 237, 0.1); }
.ab-card strong {
  display: block;
  color: var(--fg);
  font-size: 14px;
  margin-bottom: 8px;
}
.ab-metric {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.ab-metric span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}
.ab-bar {
  height: 4px;
  background: var(--surface-2);
  border-radius: 10px;
  margin-top: 14px;
  overflow: hidden;
}
.ab-fill {
  height: 100%;
  width: var(--w);
  background: var(--grad);
  border-radius: 10px;
  animation: fill 1.8s var(--ease) both;
}
@keyframes fill { from { width: 0; } }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0, 229, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
[data-theme="light"] .svc::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(8, 145, 178, 0.1), transparent 60%);
}
.svc:hover {
  background: var(--card-hover);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-6px);
}
[data-theme="light"] .svc:hover {
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: var(--shadow-card);
}
.svc:hover::before { opacity: 1; }

.svc-num {
  position: absolute;
  top: 30px; right: 30px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
}
.svc-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--primary);
  transition: all 0.5s var(--ease);
}
[data-theme="light"] .svc-icon {
  background: rgba(8, 145, 178, 0.08);
  border-color: rgba(8, 145, 178, 0.28);
}
.svc:hover .svc-icon {
  background: rgba(0, 229, 255, 0.12);
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}
[data-theme="light"] .svc:hover .svc-icon {
  background: rgba(8, 145, 178, 0.14);
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.2);
}
.svc-icon svg {
  width: 34px; height: 34px;
}

.svc-line {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
  animation: drawLine 3s var(--ease) infinite;
}
.svc-line.l1 { animation-delay: 0s; }
.svc-line.l2 { animation-delay: 0.3s; }
.svc-line.l3 { animation-delay: 0.6s; }
@keyframes drawLine {
  0%, 100% { stroke-dashoffset: 60; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 1; }
}

.svc-pulse {
  animation: pulseFill 2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulseFill {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.svc-drop {
  opacity: 0;
  animation: drop 2s ease-in-out infinite;
}
.svc-drop.d1 { animation-delay: 0s; }
.svc-drop.d2 { animation-delay: 0.3s; }
.svc-drop.d3 { animation-delay: 0.6s; }
@keyframes drop {
  0% { opacity: 0; transform: translateY(-6px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(8px); }
}

.svc-gear {
  transform-origin: center;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.svc h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--fg);
}
.svc p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.svc-tags span {
  padding: 5px 11px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 11px;
  color: var(--fg-dim);
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============ MOBILE SECTION ============ */
.mobile-section {
  position: relative;
}
.mobile-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mobile-feat {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-feat li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad);
  color: #070914;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
[data-theme="light"] .check { color: #ffffff; }
.mobile-feat strong {
  display: block;
  color: var(--fg);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}
.mobile-feat small {
  color: var(--fg-dim);
  font-size: 13px;
}

.store-badges {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--fg);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.store-badge:hover {
  background: var(--card-hover);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.store-badge svg {
  width: 28px; height: 28px;
  color: var(--fg);
}
.store-badge small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.store-badge strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
}

/* ============ PHONE MOCKUP ============ */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.phone-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2), transparent 60%);
  filter: blur(60px);
  z-index: 0;
  animation: orbFloat 10s ease-in-out infinite;
}
[data-theme="light"] .phone-glow {
  background: radial-gradient(circle, rgba(8, 145, 178, 0.25), transparent 60%);
}
.phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1e3a, #0c1026);
  border-radius: 44px;
  padding: 16px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 229, 255, 0.15);
  transform: rotate(-4deg);
  transition: transform 0.6s var(--ease);
  z-index: 1;
  animation: phoneFloat 6s ease-in-out infinite;
}
[data-theme="light"] .phone {
  background: linear-gradient(145deg, #2a2e3e, #0a0e1c);
  box-shadow:
    0 0 0 2px rgba(10, 14, 28, 0.12),
    0 40px 80px rgba(10, 14, 28, 0.25),
    0 0 60px rgba(8, 145, 178, 0.2);
}
.phone:hover { transform: rotate(0) scale(1.02); }
@keyframes phoneFloat {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-12px); }
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #070914;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0c1026, #11162e);
  border-radius: 30px;
  overflow: hidden;
  padding: 40px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
[data-theme="light"] .phone-screen {
  background: linear-gradient(180deg, #ffffff, #f4f1ea);
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--fg-dim);
  padding: 0 4px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
[data-theme="light"] .phone-status { color: var(--muted); }
.phone-header {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px 2px;
}
.ph-avatar {
  width: 34px; height: 34px;
  background: var(--grad);
  border-radius: 50%;
  flex-shrink: 0;
}
.ph-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 3px 0;
}
.ph-name { width: 80px; background: rgba(255, 255, 255, 0.2); }
.ph-sub { width: 110px; }
[data-theme="light"] .ph-line { background: rgba(10, 14, 28, 0.1); }
[data-theme="light"] .ph-name { background: rgba(10, 14, 28, 0.3); }
.phone-card {
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 14px;
  padding: 16px;
  height: 120px;
}
[data-theme="light"] .phone-card {
  background: rgba(8, 145, 178, 0.08);
  border-color: rgba(8, 145, 178, 0.22);
}
.ph-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
}
.ph-chart span {
  flex: 1;
  background: var(--grad);
  border-radius: 3px 3px 0 0;
  animation: phBar 2s ease-in-out infinite alternate;
}
.ph-chart span:nth-child(2) { animation-delay: 0.1s; }
.ph-chart span:nth-child(3) { animation-delay: 0.2s; }
.ph-chart span:nth-child(4) { animation-delay: 0.3s; }
.ph-chart span:nth-child(5) { animation-delay: 0.4s; }
.ph-chart span:nth-child(6) { animation-delay: 0.5s; }
@keyframes phBar {
  from { transform: scaleY(0.7); }
  to { transform: scaleY(1); }
}
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ph-tile {
  aspect-ratio: 2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
[data-theme="light"] .ph-tile {
  background: rgba(10, 14, 28, 0.04);
  border-color: rgba(10, 14, 28, 0.08);
}
.phone-btn {
  margin-top: auto;
  background: var(--grad);
  color: #070914;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  font-family: 'Space Grotesk', sans-serif;
}
[data-theme="light"] .phone-btn { color: #ffffff; }

/* ============ BLOCKCHAIN SECTION ============ */
.blockchain-section {
  background:
    radial-gradient(ellipse at top, rgba(198, 255, 0, 0.04), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(0, 229, 255, 0.04), transparent 60%);
}
[data-theme="light"] .blockchain-section {
  background:
    radial-gradient(ellipse at top, rgba(101, 163, 13, 0.05), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(8, 145, 178, 0.05), transparent 60%);
}
.blockchain-grid {
  display: grid;
  gap: 20px;
}
.blockchain-top {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}
.blockchain-sub {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
}
.bc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: all 0.5s var(--ease);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.bc-card:hover {
  background: var(--card-hover);
  border-color: rgba(198, 255, 0, 0.3);
  transform: translateY(-5px);
}
[data-theme="light"] .bc-card:hover {
  box-shadow: var(--shadow-card);
}

/* Default featured */
.bc-featured {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

/* Cyan featured - Crypto Exchange */
.bc-featured.bc-cyan {
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.08), rgba(0, 229, 255, 0.02));
  border-color: rgba(0, 229, 255, 0.25);
}
.bc-featured.bc-cyan:hover { border-color: rgba(0, 229, 255, 0.45); }
.bc-featured.bc-cyan .bc-icon {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.25);
  color: var(--primary);
}
.bc-featured.bc-cyan:hover .bc-icon {
  background: rgba(0, 229, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}
[data-theme="light"] .bc-featured.bc-cyan {
  background: linear-gradient(160deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.02));
  border-color: rgba(8, 145, 178, 0.28);
}
[data-theme="light"] .bc-featured.bc-cyan:hover { border-color: rgba(8, 145, 178, 0.45); }
[data-theme="light"] .bc-featured.bc-cyan .bc-icon {
  background: rgba(8, 145, 178, 0.1);
  border-color: rgba(8, 145, 178, 0.28);
}
[data-theme="light"] .bc-featured.bc-cyan:hover .bc-icon {
  background: rgba(8, 145, 178, 0.16);
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.22);
}

/* Lime featured - FIU */
.bc-featured.bc-lime {
  background: linear-gradient(160deg, rgba(198, 255, 0, 0.08), rgba(198, 255, 0, 0.02));
  border-color: rgba(198, 255, 0, 0.25);
}
.bc-featured.bc-lime:hover { border-color: rgba(198, 255, 0, 0.45); }
.bc-featured.bc-lime .bc-icon {
  background: rgba(198, 255, 0, 0.08);
  border-color: rgba(198, 255, 0, 0.25);
  color: var(--accent);
}
.bc-featured.bc-lime:hover .bc-icon {
  background: rgba(198, 255, 0, 0.14);
  box-shadow: 0 10px 30px rgba(198, 255, 0, 0.2);
}
[data-theme="light"] .bc-featured.bc-lime {
  background: linear-gradient(160deg, rgba(101, 163, 13, 0.1), rgba(101, 163, 13, 0.02));
  border-color: rgba(101, 163, 13, 0.28);
}
[data-theme="light"] .bc-featured.bc-lime:hover { border-color: rgba(101, 163, 13, 0.45); }
[data-theme="light"] .bc-featured.bc-lime .bc-icon {
  background: rgba(101, 163, 13, 0.1);
  border-color: rgba(101, 163, 13, 0.28);
}
[data-theme="light"] .bc-featured.bc-lime:hover .bc-icon {
  background: rgba(101, 163, 13, 0.16);
  box-shadow: 0 10px 30px rgba(101, 163, 13, 0.22);
}

/* Purple featured - dApp Development */
.bc-featured.bc-purple {
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.02));
  border-color: rgba(139, 92, 246, 0.25);
}
.bc-featured.bc-purple:hover { border-color: rgba(139, 92, 246, 0.48); }
.bc-featured.bc-purple .bc-icon {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.28);
  color: var(--purple);
}
.bc-featured.bc-purple:hover .bc-icon {
  background: rgba(139, 92, 246, 0.16);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
}
[data-theme="light"] .bc-featured.bc-purple {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.02));
  border-color: rgba(124, 58, 237, 0.28);
}
[data-theme="light"] .bc-featured.bc-purple:hover { border-color: rgba(124, 58, 237, 0.48); }
[data-theme="light"] .bc-featured.bc-purple .bc-icon {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.28);
}
[data-theme="light"] .bc-featured.bc-purple:hover .bc-icon {
  background: rgba(124, 58, 237, 0.16);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
}

/* Tags */
.bc-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(0, 229, 255, 0.12);
  color: var(--primary);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}
.bc-tag.tag-lime {
  background: rgba(198, 255, 0, 0.14);
  color: var(--accent);
}
.bc-tag.tag-purple {
  background: rgba(139, 92, 246, 0.16);
  color: var(--purple);
}
[data-theme="light"] .bc-tag {
  background: rgba(8, 145, 178, 0.14);
}
[data-theme="light"] .bc-tag.tag-lime {
  background: rgba(101, 163, 13, 0.14);
}
[data-theme="light"] .bc-tag.tag-purple {
  background: rgba(124, 58, 237, 0.14);
}

/* Default (non-featured) bc-icon */
.bc-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(198, 255, 0, 0.06);
  border: 1px solid rgba(198, 255, 0, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.5s var(--ease);
}
[data-theme="light"] .bc-icon {
  background: rgba(101, 163, 13, 0.08);
  border-color: rgba(101, 163, 13, 0.28);
}
.bc-card:hover .bc-icon {
  transform: rotate(-8deg) scale(1.05);
}
.bc-icon svg { width: 30px; height: 30px; }

.bc-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.bc-card p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
}
.bc-card p strong { color: var(--fg); font-weight: 600; }
.bc-list {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.bc-list li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--fg-dim);
}
.bc-cta {
  padding: 36px 44px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(198, 255, 0, 0.06));
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
[data-theme="light"] .bc-cta {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(101, 163, 13, 0.08));
  border-color: rgba(8, 145, 178, 0.25);
}
.bc-cta h3 {
  font-size: 26px;
  margin-bottom: 4px;
}
.bc-cta p { color: var(--fg-dim); font-size: 15px; }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.5s var(--ease);
  backdrop-filter: blur(14px);
  position: relative;
}
.price-card:hover {
  background: var(--card-hover);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-6px);
}
[data-theme="light"] .price-card:hover {
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: var(--shadow-card);
}
.price-card.featured {
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.1), rgba(198, 255, 0, 0.04));
  border-color: rgba(0, 229, 255, 0.35);
  transform: scale(1.03);
}
[data-theme="light"] .price-card.featured {
  background: linear-gradient(160deg, rgba(8, 145, 178, 0.12), rgba(101, 163, 13, 0.04));
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: 0 20px 60px rgba(8, 145, 178, 0.12);
}
.price-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #070914;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}
[data-theme="light"] .popular {
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.3);
}
.pc-head { margin-bottom: 24px; }
.plan-name {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--fg);
}
.plan-sub {
  color: var(--muted);
  font-size: 13px;
}
.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.price .cur {
  font-size: 22px;
  color: var(--muted);
  margin-right: 2px;
}
.price .plus {
  font-size: 22px;
  color: var(--primary);
  vertical-align: super;
}
.plan-features {
  margin-bottom: 30px;
  padding-bottom: 4px;
}
.plan-features li {
  padding: 10px 0;
  font-size: 13px;
  color: var(--fg-dim);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 22px;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.plan-features li:last-child { border: none; }

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.5s var(--ease);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
[data-theme="light"] .why-card::after {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), transparent 60%);
}
.why-card:hover {
  background: var(--card-hover);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
}
[data-theme="light"] .why-card:hover {
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: var(--shadow-card);
}
.why-card:hover::after { opacity: 1; }
.why-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
}
.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: all 0.5s var(--ease);
  backdrop-filter: blur(14px);
  position: relative;
}
.testi::before {
  content: '"';
  position: absolute;
  top: 16px; right: 28px;
  font-family: 'Instrument Serif', serif;
  font-size: 80px;
  color: rgba(0, 229, 255, 0.12);
  line-height: 1;
}
[data-theme="light"] .testi::before {
  color: rgba(8, 145, 178, 0.18);
}
.testi:hover {
  background: var(--card-hover);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
}
[data-theme="light"] .testi:hover {
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: var(--shadow-card);
}
.stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testi p {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #070914;
  font-size: 18px;
  flex-shrink: 0;
}
.a1 { background: linear-gradient(135deg, #00e5ff, #0891b2); }
.a2 { background: linear-gradient(135deg, #c6ff00, #65a30d); }
.a3 { background: linear-gradient(135deg, #ff2d92, #be185d); }
.a4 { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.a5 { background: linear-gradient(135deg, #fb923c, #ea580c); }
.a6 { background: linear-gradient(135deg, #f472b6, #ec4899); }
.testi-user strong {
  display: block;
  color: var(--fg);
  font-size: 14px;
}
.testi-user small {
  color: var(--muted);
  font-size: 12px;
}

/* ============ FAQ ============ */
.faq-section { padding-top: 60px; }
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 26px;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.faq-item:hover {
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-2px);
}
.faq-item summary {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #2dd4bf;
}
.faq-item[open] {
  border-color: rgba(45, 212, 191, 0.5);
  background: linear-gradient(180deg, var(--card) 0%, rgba(45, 212, 191, 0.04) 100%);
}
.faq-answer {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  animation: faqFade 0.4s var(--ease);
}
.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer strong { color: var(--fg); }
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-item { padding: 18px 20px; }
  .faq-item summary { font-size: 15px; }
  .faq-answer { font-size: 14px; }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  margin: 34px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ci {
  display: flex;
  gap: 16px;
  align-items: center;
}
.ci-icon {
  width: 52px; height: 52px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
[data-theme="light"] .ci-icon {
  background: rgba(8, 145, 178, 0.1);
  border-color: rgba(8, 145, 178, 0.28);
}
.ci-icon svg { width: 22px; height: 22px; }
.ci strong {
  display: block;
  color: var(--fg);
  font-size: 14px;
  margin-bottom: 2px;
}
.ci p {
  color: var(--fg-dim);
  font-size: 14px;
}
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  backdrop-filter: blur(20px);
}
[data-theme="light"] .contact-form {
  box-shadow: var(--shadow-card);
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Space Grotesk', sans-serif;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form select { color: var(--fg); cursor: pointer; }
.contact-form select option { background: var(--bg-2); }
[data-theme="light"] .contact-form select option { background: #ffffff; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.03);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}
[data-theme="light"] .contact-form input:focus,
[data-theme="light"] .contact-form select:focus,
[data-theme="light"] .contact-form textarea:focus {
  background: rgba(8, 145, 178, 0.04);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

/* ============ FOOTER ============ */
.footer {
  padding: 90px 0 30px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
[data-theme="light"] .footer {
  background: linear-gradient(180deg, transparent, rgba(10, 14, 28, 0.05));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.footer-brand .logo { margin-bottom: 18px; }
.foot-desc {
  color: var(--fg-dim);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer h4 {
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer ul li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--fg-dim);
  transition: color 0.3s;
}
.footer ul li a:hover { color: var(--primary); }
.footer address {
  font-style: normal;
}
.footer address ul li a {
  color: var(--fg-dim);
  transition: color 0.3s;
}
.footer address ul li a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ FLOATING WA ============ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: none !important;
  animation: none !important;
}
.wa-float:hover,
.wa-float:focus,
.wa-float:active {
  transform: none !important;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4) !important;
}
.wa-float svg {
  width: 28px;
  height: 28px;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-grid, .about-grid, .mobile-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .services-grid, .why-grid, .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blockchain-top,
  .blockchain-sub {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-bento { max-width: 560px; margin: 0 auto; width: 100%; }
  .phone-wrap { margin: 20px 0; }
  .mobile-grid { justify-items: center; }
  .mobile-text { max-width: 600px; }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .mobile-grid, .contact-grid {
    gap: 50px;
  }
  .orb-1 { width: 380px; height: 380px; }
  .orb-2 { width: 420px; height: 420px; }
  .orb-3 { width: 340px; height: 340px; }
  .phone-glow { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .nav {
    justify-content: flex-start;
    gap: 8px;
  }
  .logo {
    gap: 10px;
    font-size: 22px;
    margin-right: auto; /* pushes right-side cluster to edge */
  }
  .logo-mark { height: 42px; width: auto; }
  .logo-text .dot { font-size: 30px; }
  .nav-links {
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: rgba(7, 9, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px 20px;
    gap: 22px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    border-bottom: 1px solid var(--border);
  }
  [data-theme="light"] .nav-links {
    background: rgba(244, 241, 234, 0.96);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { display: none; }
  .theme-toggle {
    width: 40px;
    height: 40px;
    order: 10; /* sits right before hamburger */
  }
  .theme-toggle svg { width: 16px; height: 16px; }
  .hamburger {
    display: flex;
    order: 11; /* always last */
    padding: 8px 4px;
    margin-right: -4px; /* optical alignment to container edge */
  }

  .hero { padding: 110px 0 60px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
  .section-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  .mega {
    font-size: clamp(2.1rem, 8.5vw, 3.4rem);
    line-height: 1.02;
  }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }

  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    max-width: 100%;
    gap: 12px;
  }
  .bento-lg { grid-row: auto; grid-column: span 2; }
  .bento { padding: 20px; border-radius: 20px; }
  .b-num { font-size: 46px; }
  .b-chart { height: 48px; }
  .b-strong { font-size: 18px; }
  .rating-num { font-size: 30px; }

  .services-grid, .why-grid, .testimonial-grid,
  .pricing-grid, .footer-top, .about-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blockchain-top,
  .blockchain-sub {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc { padding: 28px 24px; }
  .bc-card { padding: 28px 24px; }
  .why-card { padding: 30px 24px; }
  .price-card { padding: 32px 24px; }
  .testi { padding: 28px 24px; }

  .contact-form { padding: 30px 22px; }
  .bc-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    gap: 22px;
  }
  .bc-cta h3 { font-size: 22px; }

  .marquee { padding: 22px 0; }
  .marquee-track { gap: 36px; }
  .marquee-track span { font-size: 16px; }

  .hero-cta { flex-direction: column; width: 100%; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .btn-lg { padding: 15px 26px; }

  .store-badges { flex-direction: row; gap: 10px; }
  .store-badge { padding: 10px 16px; flex: 1; min-width: 0; }

  .mobile-section .phone-wrap { margin: 10px 0; }
  .phone { width: 240px; height: 480px; border-radius: 38px; transform: rotate(-2deg); }
  @keyframes phoneFloat {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-10px); }
  }
  .phone-glow { width: 280px; height: 280px; }

  .orb-1 { width: 300px; height: 300px; filter: blur(80px); }
  .orb-2 { width: 340px; height: 340px; filter: blur(80px); }
  .orb-3 { width: 280px; height: 280px; filter: blur(80px); }

  .footer { padding: 70px 0 26px; }
  .footer-top { gap: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { gap: 6px; }
  .logo {
    font-size: 20px;
    gap: 8px;
  }
  .logo-mark { height: 36px; width: auto; }
  .logo-text .dot { font-size: 26px; }
  .theme-toggle {
    width: 38px;
    height: 38px;
  }
  .theme-toggle svg { width: 15px; height: 15px; }
  .hamburger { padding: 8px 2px; margin-right: -2px; }
  .nav-links { top: 76px; }

  .hero { padding: 100px 0 50px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 42px; }
  .section-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }

  .mega {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
    line-height: 1.04;
    margin-bottom: 22px;
  }
  .mega em { font-size: 1em; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }

  .hero-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bento-lg { grid-column: auto; }
  .bento { padding: 18px; }
  .b-num { font-size: 42px; }
  .b-chart { height: 42px; }

  .about-bento {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ab-card { padding: 18px; }
  .ab-metric { font-size: 26px; }
  .ab-icon { width: 42px; height: 42px; margin-bottom: 12px; }
  .ab-icon svg { width: 20px; height: 20px; }

  .svc { padding: 26px 20px; }
  .svc-num { top: 22px; right: 22px; font-size: 18px; }
  .svc-icon { width: 60px; height: 60px; margin-bottom: 22px; }
  .svc-icon svg { width: 30px; height: 30px; }
  .svc h3 { font-size: 20px; }

  .bc-card { padding: 26px 20px; }
  .bc-icon { width: 54px; height: 54px; margin-bottom: 18px; }
  .bc-icon svg { width: 26px; height: 26px; }
  .bc-card h3 { font-size: 20px; }
  .bc-cta { padding: 24px 18px; }
  .bc-cta h3 { font-size: 20px; }

  .price-card { padding: 28px 22px; }
  .price { font-size: 36px; margin-bottom: 22px; }
  .plan-name { font-size: 20px; }

  .why-card { padding: 28px 22px; }
  .why-num { font-size: 42px; }

  .testi { padding: 26px 22px; }
  .testi::before { font-size: 60px; top: 12px; right: 20px; }
  .testi p { font-size: 14px; }

  .contact-form { padding: 26px 20px; }
  .contact-form h3 { font-size: 20px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 12px 14px; }

  .ci-icon { width: 46px; height: 46px; }
  .ci-icon svg { width: 20px; height: 20px; }

  .store-badges { flex-direction: column; }
  .store-badge { padding: 12px 18px; }

  .phone { width: 210px; height: 420px; border-radius: 34px; padding: 12px; }
  .phone-notch { width: 80px; height: 18px; top: 12px; }
  .phone-screen { padding: 34px 14px 14px; border-radius: 26px; }
  .phone-glow { width: 240px; height: 240px; }

  .marquee { padding: 18px 0; }
  .marquee-track { gap: 28px; }
  .marquee-track span { font-size: 15px; }

  .kicker { font-size: 11px; padding: 6px 14px; margin-bottom: 20px; }

  .eyebrow { font-size: 12px; padding: 7px 14px; margin-bottom: 22px; }

  .orb-1 { width: 240px; height: 240px; }
  .orb-2 { width: 260px; height: 260px; }
  .orb-3 { width: 220px; height: 220px; }

  .wa-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 22px; height: 22px; }

  .footer { padding: 56px 0 24px; }
  .footer-top { gap: 32px; padding-bottom: 32px; }
}

/* ============ FINAL ANIMATION KILL SWITCH ============
   Absolute override — kills every form of motion, fade, focus ring,
   tap highlight, and compositing hint on the hamburger, theme toggle,
   and floating WhatsApp icons + all their descendants and states. */
.hamburger,
.hamburger *,
.hamburger::before,
.hamburger::after,
.hamburger:hover,
.hamburger:focus,
.hamburger:focus-visible,
.hamburger:active,
.hamburger:hover *,
.hamburger:focus *,
.hamburger:focus-visible *,
.hamburger:active *,
.theme-toggle,
.theme-toggle *,
.theme-toggle::before,
.theme-toggle::after,
.theme-toggle:hover,
.theme-toggle:focus,
.theme-toggle:focus-visible,
.theme-toggle:active,
.theme-toggle:hover *,
.theme-toggle:focus *,
.theme-toggle:focus-visible *,
.theme-toggle:active *,
.wa-float,
.wa-float *,
.wa-float::before,
.wa-float::after,
.wa-float:hover,
.wa-float:focus,
.wa-float:focus-visible,
.wa-float:active,
.wa-float:hover *,
.wa-float:focus *,
.wa-float:focus-visible *,
.wa-float:active * {
  transition: none !important;
  transition-property: none !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
  transition-timing-function: linear !important;
  animation: none !important;
  animation-name: none !important;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  animation-play-state: paused !important;
  transform: none !important;
  will-change: auto !important;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;
  -webkit-transform: none !important;
}

/* Restore a visible keyboard focus ring WITHOUT animation, for accessibility */
.hamburger:focus-visible,
.theme-toggle:focus-visible,
.wa-float:focus-visible {
  outline: 2px solid var(--primary) !important;
  outline-offset: 2px !important;
}

/* Force instant color on the three elements so theme-switch inheritance
   cannot cascade a live color interpolation into their SVGs via currentColor. */
.hamburger span { background-color: var(--fg) !important; }
.theme-toggle { color: var(--fg) !important; }
.theme-toggle svg { color: inherit !important; stroke: currentColor !important; }
.wa-float { color: #ffffff !important; }
.wa-float svg { color: inherit !important; fill: currentColor !important; }
