/* ── Design Tokens ── */
:root {
  --bg: #03030a;
  --surface: #090910;
  --primary: #1a6cff;
  --accent: #00d4ff;
  --green: #22cc88;
  --text: #f0f0f8;
  --muted: #7a7a90;
  --border: rgba(255,255,255,0.07);
  --glass: rgba(10,10,20,0.55);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
}

/* ── Intro Splash ── */
#intro-splash {
  position: fixed; inset: 0; z-index: 9999;
  background: #03030a;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#intro-splash.hide {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.intro-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,108,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,108,255,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: intro-grid-in 1s ease forwards;
  opacity: 0;
}
@keyframes intro-grid-in { to { opacity: 1; } }
.intro-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,108,255,0.18) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: intro-glow-pulse 2s ease infinite alternate;
}
@keyframes intro-glow-pulse {
  from { transform: translate(-50%,-50%) scale(0.9); opacity: 0.7; }
  to   { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}
.intro-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.intro-letters {
  display: flex; align-items: baseline; gap: 0.05em;
  font-family: 'Outfit', sans-serif; font-weight: 900;
  font-size: clamp(4rem, 15vw, 10rem);
  line-height: 1; letter-spacing: -0.04em;
  user-select: none;
}
.intro-space { width: 0.35em; }
.il {
  display: inline-block;
  color: #fff;
  opacity: 0;
  transform: translateY(-80px) rotate(-8deg);
  transition: none;
  text-shadow: 0 0 40px rgba(26,108,255,0.4);
}
.il.landed {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  transition: transform 0.5s cubic-bezier(0.22,1.6,0.36,1), opacity 0.3s ease;
}
.il.glow {
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent), 0 0 60px var(--primary);
  transition: color 0.15s, text-shadow 0.15s;
}
.il.settle {
  color: #fff;
  text-shadow: 0 0 40px rgba(26,108,255,0.3);
  transition: color 0.3s, text-shadow 0.3s;
}
/* The TECH letters get the gradient */
.il.gradient-letter {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--muted); letter-spacing: 0.05em;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.intro-sub.show { opacity: 1; transform: translateY(0); }
.intro-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
  opacity: 0; transition: opacity 0.3s ease;
}
.intro-bar.show { opacity: 1; }
.intro-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Utility ── */
.glass-panel {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-anim 2s infinite;
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.35); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.875rem;
  transition: all 0.2s ease; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.8rem; }

/* ── Navigation ── */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(3,3,10,0.8);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.brand {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 1.3rem; letter-spacing: -0.01em; color: #fff;
}
.brand span { color: var(--primary); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.btn-nav-cta {
  background: rgba(26,108,255,0.12);
  border: 1px solid rgba(26,108,255,0.35);
  color: var(--accent);
  padding: 0.5rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  transition: all 0.2s;
}
.btn-nav-cta:hover {
  background: rgba(26,108,255,0.25);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero-section {
  min-height: 100vh; padding: 9rem 3rem 5rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,108,255,0.12) 0%, transparent 65%);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; z-index: 0;
}
.hero-glow-1 {
  width: 600px; height: 600px; top: -200px; left: -150px;
  background: rgba(26,108,255,0.08);
}
.hero-glow-2 {
  width: 500px; height: 500px; top: -100px; right: -100px;
  background: rgba(0,212,255,0.06);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(26,108,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,108,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 80%);
}
.hero-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(34,204,136,0.08); border: 1px solid rgba(34,204,136,0.25);
  border-radius: 50px; padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 600; color: var(--green);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-title {
  position: relative; z-index: 1;
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05; letter-spacing: -0.03em; color: #fff;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  position: relative; z-index: 1;
  max-width: 600px; font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-actions {
  position: relative; z-index: 1;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 4rem;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #25d366, #1aaa54);
  color: #fff; padding: 1rem 2rem; border-radius: 14px;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  transition: all 0.25s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.4); }
.btn-hero-ghost {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--muted); padding: 1rem 2rem; border-radius: 14px; font-size: 1rem;
  transition: all 0.25s;
}
.btn-hero-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

/* ── Hero Stats ── */
.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 0; align-items: center; flex-wrap: wrap; justify-content: center;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; backdrop-filter: blur(20px);
  padding: 1.5rem 2rem; max-width: 800px; width: 100%;
}
.hero-stat { text-align: center; padding: 0 2rem; }
.hero-stat-num {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 2.2rem; color: #fff; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-sym {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  display: block; font-size: 0.72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.2rem;
}
.hero-stat-divider {
  width: 1px; height: 40px; background: var(--border);
}

/* ── Marquee ── */
.marquee-section {
  overflow: hidden; padding: 1.5rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  white-space: nowrap; transition: color 0.2s;
}
.marquee-item i { color: var(--primary); }

/* ── Section Shared ── */
.ecosystem-section, .projects-section, .services-section, .process-section {
  padding: 4rem 3rem;
  max-width: 1200px; margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted); font-size: 1rem; line-height: 1.7;
  max-width: 540px; margin: 0 auto;
}

/* ── Ecosystem ── */
.ecosystem-wrapper {
  padding: 2rem; position: relative; overflow: hidden;
  background: rgba(8,8,16,0.6);
}
.ecosystem-top-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.eco-status { display: flex; align-items: center; gap: 0.5rem; color: var(--green); }
.eco-hint { display: flex; align-items: center; gap: 0.4rem; }
.eco-drawer {
  margin-top: 1.5rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  border-color: rgba(26,108,255,0.2);
  background: rgba(5,5,15,0.7);
}
.eco-drawer-header { display: flex; justify-content: space-between; align-items: flex-start; }
.eco-drawer-type { font-size: 0.7rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.eco-drawer-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: #fff; }
.eco-drawer-metric { text-align: right; }
.eco-metric-val {
  display: block; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.eco-metric-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; }
.eco-drawer-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.eco-drawer-actions { margin-top: 0.25rem; }

/* ── Projects Grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.project-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  background: rgba(8,8,18,0.7);
  padding: 0;
}
.project-card:hover {
  border-color: rgba(26,108,255,0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(26,108,255,0.15);
}
.project-card.featured { border-color: rgba(0,212,255,0.3); }
.project-card.featured:hover { border-color: rgba(0,212,255,0.6); }

/* ── Card Preview (browser mockup) ── */
.card-preview {
  position: relative; background: #0a0a12;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.browser-bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  background: #0d0d18; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.browser-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  margin-left: 0.4rem; font-size: 0.67rem; color: var(--muted);
  font-family: monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  background: rgba(255,255,255,0.05); padding: 0.2rem 0.6rem; border-radius: 4px;
  flex: 1;
}
.preview-frame {
  position: relative; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, #0a0a18, #0d0d20);
}
/* Skeleton shimmer while image loads */
.preview-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.preview-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block; transition: transform 0.5s ease, opacity 0.6s ease;
  position: relative; z-index: 2;
  opacity: 0;
}
.preview-img.loaded { opacity: 1; }
/* If JS fails, still show image after 3s via animation fallback */
.preview-img { animation: img-reveal 0.6s 3s forwards; }
@keyframes img-reveal { to { opacity: 1; } }
.preview-img.loaded { animation: none; opacity: 1; }
.project-card:hover .preview-img { transform: scale(1.04); }

/* Hover reveal overlay with CTA */
.preview-hover-cta {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(3,3,10,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
}
.project-card:hover .preview-hover-cta { opacity: 1; }
.preview-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; padding: 0.65rem 1.4rem; border-radius: 10px;
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  transform: translateY(6px); transition: transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(26,108,255,0.4);
}
.project-card:hover .preview-cta-btn { transform: translateY(0); }

.preview-fallback {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--muted); font-size: 0.8rem;
  background: linear-gradient(135deg, rgba(26,108,255,0.06), rgba(0,212,255,0.03));
  position: absolute; inset: 0;
}
.preview-fallback i { font-size: 2.5rem; color: var(--primary); opacity: 0.4; }
.preview-overlay {
  position: absolute; top: 0.6rem; right: 0.6rem; z-index: 4;
}
.preview-live-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(3,3,10,0.85); border: 1px solid rgba(34,204,136,0.4);
  color: var(--green); font-size: 0.65rem; font-weight: 700;
  padding: 0.25rem 0.55rem; border-radius: 50px;
  letter-spacing: 0.05em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ── Card Body ── */
.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem; flex: 1;
}
.project-card-top { display: flex; align-items: center; justify-content: space-between; }
.project-icon-wrap {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid transparent; font-size: 1rem; flex-shrink: 0;
}
.project-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 0.2rem 0.55rem; border-radius: 5px;
}
.project-name {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: #fff;
}
.project-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; flex: 1; }
.card-footer-row {
  display: flex; align-items: center; justify-content: flex-end;
  margin-top: auto; padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.card-footer-row .btn { width: 100%; justify-content: center; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem;
  transition: border-color 0.25s, transform 0.25s;
  background: rgba(8,8,18,0.5);
}
.service-card:hover { border-color: rgba(26,108,255,0.3); transform: translateY(-3px); }
.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,108,255,0.15), rgba(0,212,255,0.1));
  border: 1px solid rgba(26,108,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #fff;
}
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── Process ── */
.process-section { padding: 5rem 3rem; background: rgba(26,108,255,0.02); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-card {
  padding: 2rem 1.5rem;
  background: rgba(8,8,18,0.7);
  border-radius: 0;
  border-right: none;
  position: relative;
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: transform 0.25s, background 0.25s;
}
.process-card:first-child { border-radius: 20px 0 0 20px; }
.process-card:last-child  { border-radius: 0 20px 20px 0; border-right: 1px solid var(--border); }
.process-card:hover { background: rgba(12,12,26,0.95); transform: translateY(-4px); z-index: 1; }

/* per-card accent colors */
.pc-1 { border-top: 2px solid #22cc88; }
.pc-2 { border-top: 2px solid #1a6cff; }
.pc-3 { border-top: 2px solid #00d4ff; }
.pc-4 { border-top: 2px solid #a855f7; }

.pc-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.25rem;
}
.pc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.pc-1 .pc-icon { background: rgba(34,204,136,0.12); color: #22cc88; border: 1px solid rgba(34,204,136,0.25); }
.pc-2 .pc-icon { background: rgba(26,108,255,0.12); color: #5b9aff; border: 1px solid rgba(26,108,255,0.25); }
.pc-3 .pc-icon { background: rgba(0,212,255,0.12);  color: #00d4ff; border: 1px solid rgba(0,212,255,0.25); }
.pc-4 .pc-icon { background: rgba(168,85,247,0.12); color: #c084fc; border: 1px solid rgba(168,85,247,0.25); }

.pc-num {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 2.8rem; line-height: 1; letter-spacing: -0.04em;
  opacity: 0.12; color: #fff;
}

.pc-time-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 20px; padding: 0.2rem 0.65rem;
  align-self: flex-start;
}
.pc-time-badge i { font-size: 0.6rem; }
.pc-badge-live {
  background: rgba(34,204,136,0.1); border-color: rgba(34,204,136,0.3);
  color: #22cc88;
}

.process-card h4 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #fff;
}
.process-card p {
  font-size: 0.82rem; color: var(--muted); line-height: 1.6;
}

.pc-checks {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.45rem;
  margin-top: auto; padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.pc-checks li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; color: var(--muted);
}
.pc-1 .pc-checks li i { color: #22cc88; font-size: 0.65rem; }
.pc-2 .pc-checks li i { color: #5b9aff; font-size: 0.65rem; }
.pc-3 .pc-checks li i { color: #00d4ff; font-size: 0.65rem; }
.pc-4 .pc-checks li i { color: #c084fc; font-size: 0.65rem; }

/* arrow connector between cards */
.pc-connector {
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--muted);
  z-index: 2;
}

/* Mobile: 2 cols then 1 col */
@media (max-width: 900px) {
  .process-section { padding: 3rem 1.5rem; }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
  }
  .process-card {
    border-radius: 0 !important;
    border-right: none;
    border-top-width: 2px;
    border-top-style: solid;
  }
  .pc-1 { border-top-color: #22cc88; }
  .pc-2 { border-top-color: #1a6cff; }
  .pc-3 { border-top-color: #00d4ff; }
  .pc-4 { border-top-color: #a855f7; }
  .pc-connector { display: none; }
}
@media (max-width: 500px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Final CTA ── */
.final-cta-section {
  padding: 6rem 3rem; position: relative; overflow: hidden;
}
.final-cta-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,108,255,0.12) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.final-cta-content {
  max-width: 700px; margin: 0 auto; padding: 4rem 3rem;
  text-align: center; position: relative; z-index: 1;
  border-color: rgba(26,108,255,0.25);
  background: rgba(5,5,15,0.8);
}
.final-cta-title {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem); color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0.5rem 0 1.25rem;
}
.final-cta-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-cta-big {
  background: linear-gradient(135deg, #25d366, #1aaa54);
  color: #fff; padding: 1.1rem 2.5rem; border-radius: 14px;
  font-size: 1.05rem; font-weight: 700;
  box-shadow: 0 10px 40px rgba(37,211,102,0.3);
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-cta-big:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(37,211,102,0.4); }
.final-cta-note { margin-top: 1.25rem; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.02em; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
  background: rgba(3,3,10,0.8);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center;
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── Demo Modal ── */
.demo-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.demo-modal.open { display: flex; }
.demo-modal-inner {
  width: 90vw; max-width: 1100px; height: 85vh;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; overflow: hidden; position: relative;
}
.demo-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.demo-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: #fff; }
.demo-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.demo-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.demo-overlay {
  position: absolute; inset: 50px 0 0 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: var(--surface); z-index: 2; color: var(--muted); font-size: 0.85rem;
}
.demo-loading { display: none; }
.demo-spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border); border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#demoIframe { flex: 1; border: none; width: 100%; background: #fff; }
.hidden { display: none !important; }

/* ── Offer Banner ── */
.offer-fire { font-size: 1.1rem; }
.offer-text {
  font-size: 0.82rem; color: #e0e0ff;
  text-align: center;
}
.offer-text strong { color: #fff; }
.offer-timer {
  display: flex; align-items: center; gap: 0.2rem;
  background: rgba(255,255,255,0.08); border-radius: 8px;
  padding: 0.25rem 0.6rem;
}
.timer-unit {
  display: flex; align-items: baseline; gap: 0.1rem;
  font-family: var(--font-heading); font-weight: 900;
  font-size: 0.85rem; color: var(--accent);
}
.timer-unit small { font-size: 0.55rem; color: var(--muted); font-weight: 600; }
.timer-sep { color: var(--accent); font-weight: 900; font-size: 0.8rem; }
.offer-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; padding: 0.4rem 1rem; border-radius: 8px;
  font-size: 0.78rem; font-weight: 700; white-space: nowrap;
  text-decoration: none; transition: opacity 0.2s;
}
.offer-cta:hover { opacity: 0.85; }
.offer-close {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 0.85rem; padding: 0.2rem 0.4rem;
  position: absolute; right: 1rem;
  transition: color 0.2s;
}
.offer-close:hover { color: #fff; }

/* ── Antes / Después ── */
.ba-section {
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Outer wrapper with dramatic glow */
.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 3rem;
  border-radius: 28px;
  overflow: visible;
  position: relative;
}
/* Red glow behind before panel */
.ba-wrapper::before {
  content: '';
  position: absolute;
  left: -60px; top: 50%;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,60,60,0.18) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
/* Blue glow behind after panel */
.ba-wrapper::after {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,108,255,0.2) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* Panels */
.ba-panel {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
.ba-before {
  background: linear-gradient(160deg, rgba(255,45,45,0.13) 0%, rgba(8,8,18,0.98) 55%);
  border: 1px solid rgba(255,60,60,0.28);
  border-right: none;
  border-radius: 28px 0 0 28px;
  box-shadow: inset 0 0 80px rgba(255,40,40,0.04), -8px 0 40px rgba(255,40,40,0.06);
}
.ba-after {
  background: linear-gradient(160deg, rgba(26,108,255,0.15) 0%, rgba(8,8,18,0.98) 55%);
  border: 1px solid rgba(26,108,255,0.3);
  border-left: none;
  border-radius: 0 28px 28px 0;
  box-shadow: inset 0 0 80px rgba(26,108,255,0.05), 8px 0 40px rgba(26,108,255,0.08);
}

/* Panel header */
.ba-panel-header {
  margin-bottom: 1.75rem;
}
.ba-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 0.5rem 1.1rem; border-radius: 30px;
  text-transform: uppercase;
}
.ba-badge-red {
  background: rgba(255,60,60,0.18);
  border: 1px solid rgba(255,60,60,0.4);
  color: #ff7070;
  box-shadow: 0 0 20px rgba(255,60,60,0.15);
}
.ba-badge-blue {
  background: rgba(26,108,255,0.18);
  border: 1px solid rgba(26,108,255,0.45);
  color: #5b9aff;
  box-shadow: 0 0 20px rgba(26,108,255,0.2);
}

/* List */
.ba-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.ba-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.ba-item:last-child { border-bottom: none; }
.ba-before .ba-item:hover { background: rgba(255,60,60,0.04); border-radius: 10px; padding-left: 0.4rem; }
.ba-after  .ba-item:hover { background: rgba(26,108,255,0.05); border-radius: 10px; padding-left: 0.4rem; }

.ba-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s;
}
.ba-item:hover .ba-icon { transform: scale(1.12); }
.ba-icon-red {
  background: rgba(255,60,60,0.14);
  color: #ff7070;
  border: 1px solid rgba(255,60,60,0.28);
}
.ba-icon-blue {
  background: rgba(26,108,255,0.14);
  color: #5b9aff;
  border: 1px solid rgba(26,108,255,0.3);
}
.ba-item div { display: flex; flex-direction: column; gap: 0.18rem; }
.ba-item strong { font-size: 0.88rem; font-weight: 700; color: #fff; line-height: 1.3; }
.ba-item span { font-size: 0.76rem; color: var(--muted); line-height: 1.45; }

/* Result bar */
.ba-result {
  margin-top: 1.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.82rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}
.ba-result-bad {
  background: rgba(255,40,40,0.12);
  border: 1px solid rgba(255,40,40,0.3);
  color: #ff7070;
  box-shadow: 0 4px 20px rgba(255,40,40,0.1);
}
.ba-result-good {
  background: rgba(26,208,100,0.12);
  border: 1px solid rgba(26,208,100,0.3);
  color: #2de387;
  box-shadow: 0 4px 20px rgba(26,208,100,0.12);
}

/* VS Divider — thick glowing center bar */
.ba-divider {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0;
  width: 60px;
  background: linear-gradient(to bottom,
    rgba(255,60,60,0.06) 0%,
    rgba(8,8,18,0.98) 40%,
    rgba(8,8,18,0.98) 60%,
    rgba(26,108,255,0.08) 100%
  );
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}
.ba-divider-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(255,60,60,0.5),
    rgba(255,255,255,0.08),
    rgba(26,108,255,0.5)
  );
  min-height: 60px;
}
.ba-vs-badge {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #1a6cff, #00d4ff);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 900; color: #fff;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 6px rgba(26,108,255,0.12), 0 0 30px rgba(26,108,255,0.6);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
/* Pulse ring on VS badge */
.ba-vs-badge::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0,212,255,0.4);
  animation: vs-pulse 2.5s ease-in-out infinite;
}
@keyframes vs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.3); }
}

/* CTA below */
.ba-cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.ba-cta-note {
  font-size: 0.78rem; color: var(--muted);
}

/* Tablet & mobile — siempre izquierda/derecha, solo se achica */
@media (max-width: 900px) {
  .ba-section { padding: 3rem 1rem; }

  .ba-wrapper {
    grid-template-columns: 1fr 36px 1fr;  /* divider más delgado */
    border-radius: 18px;
  }
  .ba-wrapper::before,
  .ba-wrapper::after { display: none; }

  .ba-before {
    border-radius: 18px 0 0 18px;
    box-shadow: none;
  }
  .ba-after {
    border-radius: 0 18px 18px 0;
    box-shadow: none;
  }

  .ba-panel { padding: 1.25rem 0.85rem 1.25rem; }
  .ba-panel-header { margin-bottom: 1rem; }

  .ba-badge {
    font-size: 0.62rem;
    padding: 0.35rem 0.7rem;
    letter-spacing: 0.02em;
  }

  .ba-item {
    gap: 0.55rem;
    padding: 0.6rem 0;
  }

  .ba-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .ba-item strong { font-size: 0.72rem; }
  .ba-item span   { font-size: 0.62rem; line-height: 1.35; }

  .ba-result {
    margin-top: 1rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.66rem;
    gap: 0.4rem;
    border-radius: 9px;
  }

  /* VS divider compacto */
  .ba-divider {
    width: 36px;
  }
  .ba-vs-badge {
    width: 34px; height: 34px;
    font-size: 0.58rem;
    box-shadow: 0 0 0 4px rgba(26,108,255,0.12), 0 0 16px rgba(26,108,255,0.5);
  }
  .ba-divider-line { min-height: 30px; }
}


/* ── Offer Popup (chat-style) ── */
.offer-popup {
  position: fixed; bottom: 5.5rem; right: 1.25rem; z-index: 998;
  width: 230px;
  background: rgba(10,10,20,0.97);
  border: 1px solid rgba(26,108,255,0.3);
  border-radius: 16px; padding: 0.9rem 1rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(26,108,255,0.1);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; gap: 0.55rem; align-items: flex-start;
  transform: translateY(16px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  pointer-events: none;
}
.offer-popup.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.offer-popup.hide { transform: translateY(10px) scale(0.95); opacity: 0; pointer-events: none; }
.offer-bubble-arrow {
  position: absolute;
  bottom: -7px;
  right: 20px;
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(10,10,20,0.97);
  z-index: 999;
}
.offer-popup-tag {
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent);
  background: rgba(26,108,255,0.12); border: 1px solid rgba(26,108,255,0.25);
  border-radius: 6px; padding: 0.2rem 0.5rem;
}
.offer-popup-close {
  position: absolute; top: 0.6rem; right: 0.75rem;
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 0.8rem; line-height: 1;
  padding: 0.2rem; transition: color 0.15s;
}
.offer-popup-close:hover { color: #fff; }
.offer-popup-avatar {
  position: relative; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900; font-size: 0.85rem; color: #fff;
}
.offer-popup-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--green); border: 2px solid #0a0a14;
}
.offer-popup-body { flex: 1; min-width: 0; }
.offer-popup-name {
  font-size: 0.8rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.4rem;
}
.offer-popup-badge {
  font-size: 0.6rem; background: rgba(26,108,255,0.2);
  border: 1px solid rgba(26,108,255,0.35); color: var(--accent);
  padding: 0.1rem 0.4rem; border-radius: 4px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.offer-popup-msg {
  font-size: 0.78rem; color: var(--muted); line-height: 1.5; margin-bottom: 0;
}
.offer-popup-msg strong { color: #fff; font-size: 0.9rem; }
.offer-popup-timer {
  font-size: 0.68rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap;
}
.offer-timer-inline { color: var(--accent); font-weight: 700; font-family: monospace; }
.offer-popup-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.6rem 1rem;
  background: linear-gradient(135deg, #25d366, #1aaa54);
  color: #fff; border-radius: 10px; font-size: 0.82rem; font-weight: 700;
  text-decoration: none; transition: opacity 0.2s, transform 0.2s;
}
.offer-popup-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff; text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.7);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }
.wa-float-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(10px);
  background: rgba(5,5,15,0.95); border: 1px solid rgba(37,211,102,0.3);
  color: #fff; padding: 0.5rem 0.9rem; border-radius: 10px;
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.wa-float-ping {
  position: absolute; top: 0; right: 0;
  width: 16px; height: 16px; border-radius: 50%;
  background: #ff4444;
  border: 2px solid var(--bg);
  animation: wa-ping 2s infinite;
}
@keyframes wa-ping {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ── Tech Section ── */
.tech-section {
  padding: 4rem 3rem; max-width: 1200px; margin: 0 auto;
}
.tech-grid {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  max-width: 900px; margin: 0 auto;
}
.tech-item {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.65rem 1.2rem;
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  transition: all 0.2s ease;
}
.tech-item:hover {
  border-color: rgba(26,108,255,0.35);
  color: #fff; background: rgba(26,108,255,0.08);
  transform: translateY(-2px);
}
.tech-item i { font-size: 1.1rem; color: var(--primary); }

/* ── Testimonials ── */
.testimonials-section {
  padding: 4rem 3rem; max-width: 1200px; margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
  background: rgba(8,8,18,0.7);
  transition: border-color 0.25s, transform 0.25s;
  position: relative; overflow: hidden;
}
.testimonial-card:hover { border-color: rgba(26,108,255,0.3); transform: translateY(-3px); }
.testimonial-card.featured-testimonial {
  border-color: rgba(0,212,255,0.25);
  background: linear-gradient(135deg, rgba(26,108,255,0.07), rgba(0,212,255,0.03));
}
.testimonial-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
  font-style: italic; flex: 1;
}
.testimonial-text::before { content: '"'; color: var(--primary); font-size: 1.5rem; font-style: normal; }
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: #fff; }
.testimonial-author span { font-size: 0.72rem; color: var(--muted); }
.testimonial-metric {
  display: inline-flex; align-self: flex-start;
  background: linear-gradient(135deg, rgba(26,108,255,0.15), rgba(0,212,255,0.1));
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent); font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.65rem; border-radius: 20px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── Cost Section ── */
.cost-section { padding: 4rem 3rem; max-width: 1200px; margin: 0 auto; }
.cost-inner {
  padding: 3.5rem; text-align: center;
  background: rgba(5,5,15,0.8);
  border-color: rgba(255,80,80,0.2);
}
.cost-header { margin-bottom: 3rem; }
.cost-header .section-eyebrow { color: #ff6060; }
.cost-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem; margin-bottom: 2.5rem; text-align: left;
}
.cost-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,80,80,0.05); border: 1px solid rgba(255,80,80,0.12);
  border-radius: 14px; padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.cost-item:hover { border-color: rgba(255,80,80,0.3); transform: translateY(-2px); }
.cost-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #ff6060;
}
.cost-content { display: flex; flex-direction: column; gap: 0.3rem; }
.cost-num {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 900; color: #fff;
}
.cost-label { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.cost-cta { margin-top: 1rem; }


.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; width: 36px; height: 36px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px;
  transition: all 0.25s ease; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }
.mobile-nav {
  display: none; position: fixed; top: 61px; left: 0; right: 0; z-index: 999;
  background: rgba(3,3,10,0.98); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px); padding: 1rem 1.5rem 1.5rem;
  flex-direction: column; gap: 0.25rem;
  transform: translateY(-8px); opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-nav.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-nav-link {
  padding: 0.85rem 1rem; border-radius: 10px; font-size: 0.95rem;
  font-weight: 600; color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-nav-cta {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #25d366, #1aaa54) !important;
  color: #fff !important; text-align: center; border-radius: 12px;
  padding: 0.9rem 1rem; font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .top-nav { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: 1fr; }
  .cost-inner { padding: 2rem 1.5rem; }
  .tech-section { padding: 3rem 1.5rem; }
  .testimonials-section { padding: 3rem 1.5rem; }
  .cost-section { padding: 3rem 1.5rem; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; font-size: 1.5rem; }
  .hero-section { padding: 8rem 1.5rem 4rem; }
  .hero-stats { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .hero-stat-divider { width: 80%; height: 1px; }
  .hero-stat { padding: 0; }
  .ecosystem-section, .projects-section, .services-section { padding: 4rem 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .final-cta-section { padding: 4rem 1.5rem; }
  .final-cta-content { padding: 2.5rem 1.5rem; }
  .site-footer { padding: 2rem 1.5rem; }
  .btn-cta-big { width: 100%; justify-content: center; }
  .preview-frame { height: 160px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .card-footer-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .card-footer-row .btn { width: 100%; justify-content: center; }
}

/* ── Hero live count ── */
.hero-badge-sep {
  color: rgba(34,204,136,0.4);
  font-weight: 300;
}
.hero-live-count {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: #fff; font-weight: 700;
}
.hero-live-count::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 6px #ff4444;
  animation: pulse-anim 1.2s infinite;
}
#live-count {
  transition: transform 0.18s ease, color 0.18s ease;
  display: inline-block;
}

/* ── Timeline Section ── */
.timeline-section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
/* horizontal line behind everything */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 28px; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg,
    #22cc88, rgba(26,108,255,0.6), rgba(26,108,255,0.6), #1a6cff
  );
  z-index: 0;
}
.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  border: 2px solid transparent;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s;
}
.timeline-item:hover .timeline-dot { transform: scale(1.12); }
.tl-dot-1 {
  background: linear-gradient(135deg, rgba(34,204,136,0.2), rgba(0,212,255,0.15));
  border-color: rgba(34,204,136,0.5);
  color: #22cc88;
  box-shadow: 0 0 20px rgba(34,204,136,0.25);
}
.tl-dot-2, .tl-dot-3 {
  background: linear-gradient(135deg, rgba(26,108,255,0.2), rgba(0,212,255,0.1));
  border-color: rgba(26,108,255,0.5);
  color: #5b9aff;
  box-shadow: 0 0 20px rgba(26,108,255,0.2);
}
.tl-dot-4 {
  background: linear-gradient(135deg, rgba(26,108,255,0.25), rgba(0,212,255,0.2));
  border-color: rgba(0,212,255,0.6);
  color: #00d4ff;
  box-shadow: 0 0 28px rgba(0,212,255,0.35);
}
.timeline-card {
  width: 100%;
  padding: 1.4rem 1.25rem;
  background: rgba(8,8,18,0.8);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: border-color 0.25s, transform 0.25s;
  text-align: center;
}
.timeline-item:hover .timeline-card {
  border-color: rgba(26,108,255,0.35);
  transform: translateY(-4px);
}
.tl-card-glow {
  border-color: rgba(0,212,255,0.3) !important;
  box-shadow: 0 0 30px rgba(0,212,255,0.08);
}
.timeline-day {
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
}
.timeline-card h4 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: #fff;
  line-height: 1.2;
}
.timeline-card p {
  font-size: 0.78rem; color: var(--muted); line-height: 1.55;
}
.timeline-tag {
  display: inline-flex; align-self: center;
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.2rem 0.65rem; border-radius: 20px;
  margin-top: 0.25rem;
}
.tl-tag-green {
  background: rgba(34,204,136,0.12);
  border: 1px solid rgba(34,204,136,0.35);
  color: #22cc88;
}
.tl-tag-blue {
  background: rgba(26,108,255,0.12);
  border: 1px solid rgba(26,108,255,0.35);
  color: #5b9aff;
}
.timeline-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Timeline mobile — vertical */
@media (max-width: 900px) {
  .timeline-section { padding: 3rem 1.5rem; }
  .timeline-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .timeline-track::before {
    top: 28px; bottom: 28px;
    left: 27px; right: auto;
    width: 2px; height: auto;
    background: linear-gradient(to bottom, #22cc88, rgba(26,108,255,0.6), #00d4ff);
  }
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-card { text-align: left; }
  .timeline-tag { align-self: flex-start; }
  .timeline-dot { flex-shrink: 0; }
}
/* ── Founder Section ── */
.founder-section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.founder-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 3.5rem;
  background: rgba(8,8,18,0.8);
  border-color: rgba(26,108,255,0.2);
  position: relative;
  overflow: hidden;
}
.founder-inner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,108,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.founder-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.founder-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 24px;
  border: 2px solid rgba(26,108,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(26,108,255,0.1);
  display: block;
  object-fit: cover;
}
.founder-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(34,204,136,0.1); border: 1px solid rgba(34,204,136,0.3);
  color: #22cc88; font-size: 0.72rem; font-weight: 700;
  padding: 0.35rem 0.85rem; border-radius: 20px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.founder-content {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.founder-title {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0;
}
.founder-bio {
  font-size: 0.95rem; color: var(--muted); line-height: 1.75;
  margin: 0;
}
.founder-stats {
  display: flex; gap: 2rem; flex-wrap: wrap; flex-direction: row;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.founder-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.founder-stat-num {
  font-family: var(--font-heading); font-weight: 900; font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.founder-stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.founder-cta { align-self: flex-start; }

@media (max-width: 900px) {
  .founder-section { padding: 3rem 1.5rem; }
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .founder-photo-wrap { align-items: center; }
  .founder-photo { max-width: 200px; }
  .founder-stats { justify-content: center; gap: 1.5rem; }
  .founder-cta { align-self: center; width: 100%; justify-content: center; }
}

/* ── FAQ Section ── */
.faq-section {
  padding: 5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-list {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 3rem;
}
.faq-item {
  background: rgba(8,8,18,0.7);
  border-radius: 16px !important;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: rgba(26,108,255,0.35);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem; font-weight: 700; color: #fff;
  cursor: pointer; list-style: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q i {
  font-size: 0.75rem; color: var(--muted); flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
}
.faq-item[open] .faq-q { color: var(--accent); }
.faq-item[open] .faq-q i { transform: rotate(180deg); color: var(--accent); }
.faq-q:hover { color: var(--accent); }
.faq-a {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-a p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.75;
  padding-top: 1rem; margin: 0;
}

@media (max-width: 900px) {
  .faq-section { padding: 3rem 1.5rem; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fade-up 0.5s ease both; }
.hero-title { animation: fade-up 0.6s 0.1s ease both; }
.hero-subtitle { animation: fade-up 0.6s 0.2s ease both; }
.hero-actions { animation: fade-up 0.6s 0.3s ease both; }
.hero-stats { animation: fade-up 0.6s 0.4s ease both; }

/* ── Accessibility: reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #intro-splash { display: none !important; }
  .marquee-content { animation: none; }
}
