/* ═══════════════════════════════════════════
   ORBITA v3 — Premium SaaS Startup Redesign
   Dark + Orange + Clean Minimal
═══════════════════════════════════════════ */

:root {
  --bg: #0a0a0f;
  --bg-2: #0f0f17;
  --surface: #14141d;
  --surface-2: #1a1a26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #f5f5f7;
  --text-dim: #a1a1aa;
  --text-mute: #71717a;

  --orange: #ff6b1a;
  --orange-2: #ff8a3d;
  --orange-glow: rgba(255, 107, 26, 0.35);

  --green: #34d399;
  --red: #f87171;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* ═══════ ATMOSPHERE BG ═══════ */
.atmosphere {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.grad { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5; }
.grad-1 { width: 600px; height: 600px; background: var(--orange); top: -200px; left: -200px; opacity: 0.18; }
.grad-2 { width: 500px; height: 500px; background: #6366f1; bottom: -150px; right: -150px; opacity: 0.12; }
.grad-3 { width: 400px; height: 400px; background: var(--orange-2); top: 40%; left: 50%; transform: translateX(-50%); opacity: 0.08; }
.grid-overlay {
  position: absolute; inset: 0;
  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 30%, transparent 80%);
}
.noise {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; }

/* ─── DROPDOWN NAV ─── */
.nav-dropdown { position: relative; }
.nav-has-dropdown {
  display: inline-flex !important;
  align-items: center;
  gap: 3px;
  cursor: default;
}
.drop-arrow { font-size: 16px !important; transition: transform 0.2s var(--ease); }
.nav-dropdown:hover .drop-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), top 0.18s var(--ease);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
  z-index: 200;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% + 8px);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.dropdown-item:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.dropdown-item .material-symbols-outlined { font-size: 18px; color: var(--orange); flex-shrink: 0; }

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

/* ─── ORBITA WORDMARK ─── */
.brand-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 20px; letter-spacing: 0.18em;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255, 107, 26, 0.35);
  transition: text-shadow 0.3s var(--ease);
}
.brand-mark:hover { text-shadow: 0 0 32px var(--orange); }
.brand-orb {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb37a, var(--orange) 60%, #b03a00 100%);
  box-shadow: 0 0 14px var(--orange-glow), inset 0 0 6px rgba(255,255,255,0.4);
  position: relative; flex-shrink: 0;
}
.brand-orb::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(255, 107, 26, 0.35);
  animation: orbRing 3s ease-in-out infinite;
}
@keyframes orbRing { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.3); opacity: 0; } }
.brand-text {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 60%, var(--orange-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links { list-style: none; display: flex; gap: 6px; align-items: center; }
.nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-dim);
  border-radius: 8px; transition: all 0.2s var(--ease);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn .material-symbols-outlined { font-size: 18px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 15px 24px; font-size: 15px; border-radius: 14px; }

.btn-primary {
  background: var(--orange);
  color: #0a0a0f;
  box-shadow: 0 8px 24px -8px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px var(--orange), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--orange);
  color: var(--orange);
}

/* HAMBURGER */
.hamburger { display: none; width: 38px; height: 38px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 8px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.hamburger span { width: 18px; height: 1.5px; background: var(--text); transition: 0.3s var(--ease); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.hamburger.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 72px; left: 16px; right: 16px;
  background: rgba(20, 20, 29, 0.95); backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: none; flex-direction: column; gap: 4px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.m-link { padding: 14px 16px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--text-dim); transition: 0.2s var(--ease); }
.m-link:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.m-cta { margin-top: 8px; justify-content: center; }

/* ═══════ HERO ═══════ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; padding: 140px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.orb-a { width: 400px; height: 400px; background: var(--orange); opacity: 0.15; top: 10%; left: -100px; animation: floatA 18s ease-in-out infinite; }
.orb-b { width: 350px; height: 350px; background: #6366f1; opacity: 0.12; bottom: 5%; right: -50px; animation: floatB 22s ease-in-out infinite; }
@keyframes floatA { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(40px, -30px); } }
@keyframes floatB { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 30px); } }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { max-width: 600px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.2);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--orange-2);
  margin-bottom: 28px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; box-shadow: 0 0 12px var(--orange); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 50%, #ffb37a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mute); }
.meta-item .material-symbols-outlined { font-size: 18px; color: var(--orange); }
.meta-divider { width: 1px; height: 16px; background: var(--border); }

/* HERO VISUAL — chaos → order */
.hero-visual { position: relative; }
.visual-frame {
  position: relative; aspect-ratio: 1 / 0.9;
  background: linear-gradient(135deg, rgba(20,20,29,0.6), rgba(15,15,23,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid; grid-template-columns: 1fr auto 1.1fr; gap: 16px; align-items: center;
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.frame-glow {
  position: absolute; inset: -1px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent 40%, var(--orange-glow) 100%);
  z-index: -1; opacity: 0.6;
}
.vfx-side { position: relative; height: 100%; display: flex; flex-direction: column; }
.side-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--text-mute);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 16px;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-dot.red { background: var(--red); box-shadow: 0 0 8px var(--red); }
.status-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }

.chaos-stack { position: relative; flex: 1; }
.msg-bubble {
  position: absolute;
  padding: 8px 12px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 12px; color: var(--text-dim);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: chaosFloat 6s ease-in-out infinite;
}
.m1 { top: 4%; left: 0%; animation-delay: 0s; }
.m2 { top: 14%; right: 8%; animation-delay: 0.4s; }
.m3 { top: 28%; left: 12%; animation-delay: 0.8s; }
.m4 { top: 40%; right: 0%; animation-delay: 1.2s; transform: rotate(-2deg); }
.m5 { top: 52%; left: 4%; animation-delay: 1.6s; }
.m6 { top: 64%; right: 14%; animation-delay: 2s; transform: rotate(1.5deg); }
.m7 { top: 76%; left: 8%; animation-delay: 2.4s; }
.m8 { top: 88%; right: 4%; animation-delay: 2.8s; }
@keyframes chaosFloat {
  0%, 100% { transform: translateY(0) rotate(0); opacity: 0.85; }
  50% { transform: translateY(-4px) rotate(-1deg); opacity: 1; }
}
.unread-badge {
  position: absolute; top: -8px; right: -8px;
  background: var(--red); color: white;
  padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  box-shadow: 0 0 24px rgba(248,113,113,0.6);
  animation: shakeBadge 2.5s ease-in-out infinite;
}
@keyframes shakeBadge { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-4deg); } 75% { transform: rotate(4deg); } }

.vfx-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: #0a0a0f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px var(--orange-glow);
  animation: arrowPulse 2s ease-in-out infinite;
}
.vfx-arrow .material-symbols-outlined { font-size: 20px; }
@keyframes arrowPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px var(--orange-glow); }
  50% { transform: scale(1.08); box-shadow: 0 0 36px var(--orange); }
}

.order-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px;
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.oc-search {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; background: rgba(0,0,0,0.3);
  border-radius: 10px; border: 1px solid var(--border);
  font-size: 12px; color: var(--text-dim);
}
.oc-search .material-symbols-outlined { font-size: 16px; color: var(--orange); }
.oc-caret { color: var(--orange); animation: caret 0.8s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }

.oc-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.oc-cat {
  padding: 5px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 11px; color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 4px;
}
.oc-cat.active { background: var(--orange); color: #0a0a0f; border-color: var(--orange); font-weight: 600; }

.oc-list { display: flex; flex-direction: column; gap: 6px; }
.oc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  transition: 0.2s var(--ease);
}
.oc-item:hover { background: rgba(255,255,255,0.06); transform: translateX(2px); }
.oc-avatar { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,107,26,0.1); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.oc-info { flex: 1; min-width: 0; }
.oc-info h6 { font-size: 12px; font-weight: 600; }
.oc-info p { font-size: 10px; color: var(--text-mute); }
.oc-tag { font-size: 9px; padding: 3px 8px; border-radius: 100px; background: rgba(52,211,153,0.12); color: var(--green); font-weight: 600; }

/* ═══════ MARQUEE ═══════ */
.marquee-wrap {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track {
  display: inline-flex; gap: 36px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em; color: var(--text-mute);
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ═══════ SECTIONS ═══════ */
.section { position: relative; z-index: 1; padding: 100px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-dim); }

.mini-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--orange-2);
  margin-bottom: 16px;
}

/* ═══════ PRODUCT MOCKUP ═══════ */
.product-mockup { position: relative; margin-bottom: 60px; perspective: 2000px; }
.mockup-shell {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transform: rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.mockup-shell:hover { transform: rotateX(0deg); }
.mockup-shadow {
  position: absolute; left: 10%; right: 10%; bottom: -40px; height: 80px;
  background: var(--orange); filter: blur(80px); opacity: 0.25; z-index: -1;
}

.mockup-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.dots span:nth-child(1) { background: #ff5f57; }
.dots span:nth-child(2) { background: #febc2e; }
.dots span:nth-child(3) { background: #28c840; }
.url-bar {
  flex: 1; max-width: 360px; margin: 0 auto;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border);
  font-size: 12px; color: var(--text-dim);
  display: flex; align-items: center; gap: 6px; justify-content: center;
}
.url-bar .material-symbols-outlined { font-size: 14px; color: var(--green); }
.bar-actions .material-symbols-outlined { font-size: 18px; color: var(--text-mute); }

.mockup-body { padding: 28px; min-height: 480px; }
.mock-hero {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.mock-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-mute);
  margin-bottom: 8px;
}
.mock-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.mock-hero h3 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }

.mock-search-live {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 12px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-strong);
  min-width: 260px; font-size: 14px; color: var(--text);
}
.mock-search-live .material-symbols-outlined { color: var(--orange); }
.mock-search-live .caret { color: var(--orange); animation: caret 0.8s steps(1) infinite; }

.mock-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.mock-filter {
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 13px; color: var(--text-dim);
  transition: 0.2s var(--ease);
}
.mock-filter:hover { color: var(--text); border-color: var(--border-strong); }
.mock-filter.active { background: var(--orange); color: #0a0a0f; border-color: var(--orange); font-weight: 600; }

.mock-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.mock-card {
  padding: 18px; border-radius: var(--radius); position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  animation: cardIn 0.5s var(--ease) backwards;
}
.mock-card.hidden { display: none; }
.mock-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,26,0.4);
  background: rgba(255,107,26,0.05);
  box-shadow: 0 16px 32px -8px rgba(255,107,26,0.2);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.mc-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,107,26,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.mock-card h5 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.mock-card p { font-size: 12px; color: var(--text-mute); margin-bottom: 12px; }
.mc-pill { font-size: 10px; padding: 3px 8px; border-radius: 100px; background: rgba(52,211,153,0.12); color: var(--green); font-weight: 600; }

/* ═══════ FEATURE MINI ═══════ */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 80px; }
.feature-mini {
  padding: 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  transition: 0.3s var(--ease);
}
.feature-mini:hover { border-color: rgba(255,107,26,0.3); transform: translateY(-2px); }
.fm-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,107,26,0.1); color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-mini h4 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.feature-mini p { font-size: 14px; color: var(--text-dim); }

/* ═══════ SERVICES ═══════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: 0.4s var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,107,26,0.15), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.svc-card:hover {
  border-color: rgba(255,107,26,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,26,0.1) inset;
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #0a0a0f;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 24px -6px var(--orange-glow);
}
.svc-icon .material-symbols-outlined { font-size: 26px; }
.svc-card h3 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.svc-card p { font-size: 15px; color: var(--text-dim); margin-bottom: 20px; }
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.svc-tags span { font-size: 11px; padding: 5px 10px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-mute); }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--orange);
  transition: gap 0.2s var(--ease);
}
.svc-link:hover { gap: 10px; }
.svc-link .material-symbols-outlined { font-size: 16px; }

/* ═══════ ACADEMIA ═══════ */
.academia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.academia-text { max-width: 460px; }
.academia-text .section-sub { margin-bottom: 28px; text-align: left; }
.academia-text .section-title { text-align: left; }
.academia-preview { position: relative; display: grid; gap: 14px; }
.ac-card {
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
  position: relative;
}
.ac-card:nth-child(1) { transform: translateX(-12px); }
.ac-card:nth-child(2) { transform: translateX(12px); }
.ac-card:nth-child(3) { transform: translateX(-6px); }
.ac-card:hover { transform: translateX(0) scale(1.02); border-color: rgba(255,107,26,0.3); }
.ac-num {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--orange); letter-spacing: 0.08em; margin-bottom: 6px;
}
.ac-card h5 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.ac-card p { font-size: 13px; color: var(--text-dim); }

/* ═══════ PRICING ═══════ */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card {
  padding: 36px 28px; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: 0.3s var(--ease);
}
.price-card:hover { border-color: rgba(255,107,26,0.3); transform: translateY(-4px); background: linear-gradient(180deg, rgba(255,107,26,0.04), rgba(255,255,255,0.01)); }
.pc-icon { font-size: 40px; margin-bottom: 16px; }
.price-card h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.price-card p { font-size: 14px; color: var(--text-dim); }

/* ═══════ CTA SECTION ═══════ */
.section-cta { padding: 60px 0 120px; }
.cta-card {
  position: relative; overflow: hidden;
  padding: 80px 40px; text-align: center;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
}
.cta-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: var(--orange); filter: blur(120px); opacity: 0.25; pointer-events: none;
}
.cta-title {
  font-family: 'Sora', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 16px; position: relative;
}
.cta-sub { font-size: 17px; color: var(--text-dim); margin-bottom: 32px; position: relative; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ═══════ FOOTER ═══════ */
.footer { position: relative; z-index: 1; padding: 60px 0 24px; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 60px; margin-bottom: 40px; }
.footer-brand { max-width: 360px; }
.footer-logo { height: 28px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand-mark { margin-bottom: 16px; font-size: 22px; }
.brand-tag { margin-top: 10px; font-size: 13px; color: var(--orange-2); font-weight: 600; letter-spacing: 0.03em; }
.footer-brand p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h6 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-mute); margin-bottom: 14px; text-transform: uppercase; }
.footer-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--text-dim); transition: 0.2s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 13px; color: var(--text-mute); padding-left: 24px; padding-right: 24px; max-width: var(--container); margin: 0 auto; }

/* ═══════ REVEAL ANIMATIONS ═══════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }

  .academia-grid { grid-template-columns: 1fr; gap: 40px; }
  .academia-text .section-title, .academia-text .section-sub { text-align: center; }
  .academia-text { max-width: 100%; margin: 0 auto; text-align: center; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 70px 0; }
  .hero { padding: 100px 0 40px; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-meta { gap: 10px; font-size: 12px; }
  .meta-divider { display: none; }

  .visual-frame { padding: 16px; gap: 10px; }
  .vfx-arrow { width: 28px; height: 28px; }
  .msg-bubble { font-size: 10px; padding: 5px 9px; }

  .section-title { font-size: 30px; }
  .section-sub { font-size: 15px; }

  .mock-hero { flex-direction: column; align-items: stretch; }
  .mock-search-live { min-width: auto; }
  .mock-grid { grid-template-columns: 1fr; }
  .mockup-body { padding: 18px; }

  .cta-card { padding: 50px 24px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ═══════════════════════════════════════════
   SECTION DIVIDERS
═══════════════════════════════════════════ */
.section-divider {
  position: relative; z-index: 1;
  padding: 8px 0 0;
}
.section-divider .container {
  display: flex; align-items: center; gap: 18px;
  max-width: 900px;
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.divider-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--orange-2); text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.2);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255,255,255,0.1) inset;
  z-index: 90;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: floatBounce 4s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}
.float-wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (max-width: 600px) {
  .float-wa { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .section-divider .divider-label { font-size: 10px; padding: 5px 10px; letter-spacing: 0.16em; }
  .section-divider .container { gap: 10px; }
}

/* ═══════════════════════════════════════════
   ACADEMIA CARDS AS LINKS
═══════════════════════════════════════════ */
.ac-card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.ac-card:hover h5 { color: var(--orange-2); }

/* ═══════════════════════════════════════════
   SECCIÓN INFERIOR — FONDO MÁS CLARO
   A partir de la sección de servicios el fondo
   cambia a dark-navy para generar contraste
═══════════════════════════════════════════ */
:root { --bg-alt: #0d1629; }

.section-services,
.section-pricing,
.academia,
.section-cta,
.footer {
  background: var(--bg-alt);
  position: relative;
}

.section-services::before,
.academia::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 26, 0.25), transparent);
}

/* ═══════════════════════════════════════════
   SHARED NAV — para páginas secundarias
═══════════════════════════════════════════ */
.page-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  min-height: 100vh;
}

