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

:root {
  --bg: #050714;
  --bg2: #080d20;
  --blue: #00c8ff;
  --violet: #7c3aed;
  --violet2: #a855f7;
  --cyan: #06b6d4;
  --text: #f0f4ff;
  --muted: #6b7a9e;
  --card: rgba(255,255,255,0.035);
  --card-border: rgba(255,255,255,0.08);
  --glow-blue: rgba(0,200,255,0.18);
  --glow-violet: rgba(124,58,237,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILS ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.22);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}

.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,200,255,0.3); border-radius: 4px; }

/* ===== NAV ===== */
nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(5,7,20,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--card-border);
  transition: background .3s;
}

.nav-logo img {
  height: 52px; width: auto;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a {
  font-size: 0.87rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-btn {
  font-size: 0.84rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff !important; padding: 9px 22px; border-radius: 100px;
  transition: opacity .2s, transform .2s;
}
.nav-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  text-align: center;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.15) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
  animation: float1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.18) 0%, transparent 70%);
  bottom: 0; right: -100px;
  animation: float2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.1) 0%, transparent 70%);
  bottom: 100px; left: -80px;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-30px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-40px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(30px)} }

/* Grid lines */
.hero-grid {
  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: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted); max-width: 540px;
  margin: 0 auto 44px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff; font-weight: 700; font-size: 0.93rem;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(0,200,255,0.25);
  transition: transform .25s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(0,200,255,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-weight: 600; font-size: 0.93rem;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; border: 1px solid var(--card-border);
  transition: color .2s, border-color .2s, background .2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

/* Hero visual mockup */
.hero-visual {
  position: relative; z-index: 1;
  margin-top: 72px;
  display: flex; justify-content: center;
}

.mockup-window {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  width: 100%; max-width: 860px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.08);
}

.mockup-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-body {
  padding: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}

.mockup-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px;
}

.mockup-label { font-size: 0.7rem; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.mockup-value { font-size: 1.4rem; font-weight: 800; }
.mockup-value.blue { background: linear-gradient(135deg, var(--blue), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mockup-value.violet { background: linear-gradient(135deg, var(--violet), var(--violet2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mockup-value.green { background: linear-gradient(135deg, #10b981, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.mockup-bar-chart {
  grid-column: span 2;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px;
}
.mockup-bar-chart .mc-title { font-size: 0.75rem; color: var(--muted); margin-bottom: 14px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 52px; }
.bar { flex: 1; border-radius: 4px 4px 0 0; opacity: 0.8; }
.bar:nth-child(1) { height: 40%; background: var(--violet); }
.bar:nth-child(2) { height: 65%; background: var(--violet2); }
.bar:nth-child(3) { height: 50%; background: var(--blue); }
.bar:nth-child(4) { height: 80%; background: var(--blue); }
.bar:nth-child(5) { height: 60%; background: var(--violet2); }
.bar:nth-child(6) { height: 95%; background: linear-gradient(to top, var(--blue), var(--violet2)); }
.bar:nth-child(7) { height: 75%; background: var(--blue); }

.mockup-okr {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 18px;
}
.okr-item { margin-bottom: 10px; }
.okr-item:last-child { margin-bottom: 0; }
.okr-label { font-size: 0.68rem; color: var(--muted); margin-bottom: 5px; }
.okr-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.okr-fill { height: 100%; border-radius: 10px; }
.okr-fill.f1 { width: 78%; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.okr-fill.f2 { width: 54%; background: linear-gradient(90deg, var(--violet), var(--violet2)); }
.okr-fill.f3 { width: 91%; background: linear-gradient(90deg, #10b981, #34d399); }

/* ===== LOGOS BAR ===== */
.logos-bar {
  padding: 48px 24px;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(255,255,255,0.01);
  text-align: center;
}

.logos-bar .label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }

.logos-track {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px 48px;
}

.logo-item {
  font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color .3s;
}
.logo-item:hover { color: rgba(255,255,255,0.5); }

/* ===== BENTO GRID ===== */
.bento { padding: 100px 24px; }

.bento-header { text-align: center; margin-bottom: 60px; }
.bento-header h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.bento-header p { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  max-width: 1160px; margin: 0 auto;
}

/* Bento card base */
.bc {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 36px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.bc:hover { border-color: rgba(0,200,255,0.25); transform: translateY(-3px); }

/* Glow on hover */
.bc::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at var(--mx,50%) var(--my,50%), rgba(0,200,255,0.06) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.bc:hover::before { opacity: 1; }

/* Grid placements */
.bc-1 { grid-column: span 7; }
.bc-2 { grid-column: span 5; }
.bc-3 { grid-column: span 4; }
.bc-4 { grid-column: span 4; }
.bc-5 { grid-column: span 4; }
.bc-6 { grid-column: span 5; }
.bc-7 { grid-column: span 7; }

.bc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  border: 1px solid var(--card-border);
}
.bc-icon.blue { background: rgba(0,200,255,0.08); border-color: rgba(0,200,255,0.2); }
.bc-icon.violet { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.25); }
.bc-icon.green { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }

.bc h3 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.bc p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

.bc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.bc-tag {
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.04em;
}
.bc-tag.blue { color: var(--blue); background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.18); }
.bc-tag.violet { color: var(--violet2); background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.18); }

/* Strategy card visual */
.strategy-visual {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
}

.sv-step {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
}

.sv-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 900; flex-shrink: 0; color: #fff;
}

.sv-step span { color: var(--muted); flex: 1; }

.sv-step .sv-status {
  font-size: 0.68rem; font-weight: 700; padding: 2px 8px;
  border-radius: 100px;
}
.sv-status.done { color: #34d399; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.2); }
.sv-status.active { color: var(--blue); background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.2); animation: blink 2s infinite; }
.sv-status.pending { color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }

/* Loterica card visual */
.loterica-visual {
  margin-top: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}

.lv-card {
  padding: 14px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}

.lv-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.lv-value { font-size: 1rem; font-weight: 800; }
.lv-value.b { background: linear-gradient(135deg, var(--blue), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lv-value.v { background: linear-gradient(135deg, var(--violet), var(--violet2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lv-value.g { background: linear-gradient(135deg, #10b981, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lv-value.o { background: linear-gradient(135deg, #f59e0b, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* App cards mini visuals */
.app-preview {
  margin-top: 20px; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}

.ap-header {
  padding: 10px 14px; font-size: 0.7rem; color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 6px;
}

.ap-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; }

.ap-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem;
}
.ap-row span:first-child { color: var(--muted); }
.ap-row .ap-val { font-weight: 700; font-size: 0.8rem; }
.ap-val.low { color: #f87171; }
.ap-val.ok { color: #34d399; }
.ap-val.warn { color: #fbbf24; }

/* ===== LOTERICA SECTION ===== */
.loterica-section {
  padding: 100px 24px;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.loterica-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1160px; margin: 0 auto;
}

.loterica-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.loterica-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 36px; }

.feature-list { display: flex; flex-direction: column; gap: 14px; }

.fl-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--card-border);
  transition: border-color .2s;
}
.fl-item:hover { border-color: rgba(0,200,255,0.25); }

.fl-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.fl-item h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.fl-item p { font-size: 0.8rem; color: var(--muted); }

/* Dashboard mockup */
.dashboard-mock {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 80px rgba(0,200,255,0.06);
}

.dm-header {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; color: var(--muted);
}
.dm-logo { font-weight: 900; font-size: 0.85rem; color: var(--text); }

.dm-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.dm-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.dm-metric {
  padding: 14px 16px; border-radius: 11px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
}
.dm-metric .dml { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.dm-metric .dmv { font-size: 1.1rem; font-weight: 900; }

.dm-chart {
  padding: 16px; border-radius: 11px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
}
.dm-chart-label { font-size: 0.7rem; color: var(--muted); margin-bottom: 12px; }
.dm-bars { display: flex; align-items: flex-end; gap: 5px; height: 48px; }
.dm-bar { flex: 1; border-radius: 3px 3px 0 0; }
.dm-bar:nth-child(1) { height: 45%; background: rgba(124,58,237,0.6); }
.dm-bar:nth-child(2) { height: 70%; background: rgba(124,58,237,0.7); }
.dm-bar:nth-child(3) { height: 55%; background: rgba(0,200,255,0.6); }
.dm-bar:nth-child(4) { height: 85%; background: rgba(0,200,255,0.75); }
.dm-bar:nth-child(5) { height: 65%; background: rgba(168,85,247,0.65); }
.dm-bar:nth-child(6) { height: 100%; background: linear-gradient(to top, var(--blue), var(--violet2)); }
.dm-bar:nth-child(7) { height: 78%; background: rgba(0,200,255,0.6); }

.dm-footer { display: flex; gap: 8px; }
.dm-btn {
  flex: 1; padding: 11px; border-radius: 9px; border: none;
  font-size: 0.75rem; font-weight: 700; cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
}
.dm-btn.ghost { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--card-border); }

/* ===== PROCESS ===== */
.process-section { padding: 100px 24px; }

.process-header { text-align: center; margin-bottom: 72px; }
.process-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.process-header p { color: var(--muted); font-size: 0.95rem; }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; max-width: 1160px; margin: 0 auto;
  position: relative;
}

.process-grid::after {
  content: '';
  position: absolute;
  top: 44px; left: calc(12.5% + 22px); right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--violet2));
}

.p-step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }

.p-circle {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 24px;
  background: var(--bg2);
  border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 0 8px var(--bg), 0 0 32px rgba(0,200,255,0.1);
  position: relative;
}
.p-circle::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  z-index: -1; opacity: 0.4;
}

.p-step h4 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.p-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 24px;
  text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,200,255,0.07) 0%, transparent 70%);
  border-top: 1px solid var(--card-border);
}

.cta-section h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-section p { color: var(--muted); font-size: 1.05rem; margin-bottom: 44px; max-width: 440px; margin-left: auto; margin-right: auto; }

.cta-card {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 24px; padding: 48px 56px;
  background: var(--card); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  box-shadow: 0 0 80px rgba(0,200,255,0.06);
}

.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.contact-options { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.co {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--muted);
}
.co strong { color: var(--text); font-weight: 600; }

/* ===== FOOTER ===== */
footer {
  padding: 64px 24px 40px;
  border-top: 1px solid var(--card-border);
}

.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1160px; margin: 0 auto 48px;
}

.fb-logo img { height: 48px; margin-bottom: 14px; }
.fb-logo p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; max-width: 240px; }

.fc h5 {
  font-size: 0.73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px;
}

.fc a {
  display: block; font-size: 0.86rem; color: rgba(255,255,255,0.45);
  text-decoration: none; margin-bottom: 10px; transition: color .2s;
}
.fc a:hover { color: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1160px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid var(--card-border);
  font-size: 0.8rem; color: rgba(255,255,255,0.25);
  flex-wrap: wrap; gap: 12px;
}

.socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; text-decoration: none; color: var(--muted);
  transition: border-color .2s, color .2s;
}
.social-btn:hover { border-color: rgba(0,200,255,0.4); color: var(--blue); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ===== MOBILE ===== */
.mobile-menu {
  display: none; position: fixed;
  inset: 72px 0 0;
  background: rgba(5,7,20,0.98); backdrop-filter: blur(24px);
  z-index: 99; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.3rem; font-weight: 700; color: var(--muted); text-decoration: none; }
.mobile-menu a:hover { color: var(--text); }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(6, 1fr); }
  .bc-1 { grid-column: span 6; }
  .bc-2 { grid-column: span 6; }
  .bc-3,.bc-4,.bc-5 { grid-column: span 6; }
  .bc-6 { grid-column: span 6; }
  .bc-7 { grid-column: span 6; }
  .highlight-card { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::after { display: none; }
  .p-step { padding-bottom: 32px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .loterica-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .mockup-body { grid-template-columns: 1fr 1fr; }
  .mockup-bar-chart { grid-column: span 2; }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dm-row { grid-template-columns: 1fr; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-bar-chart { grid-column: span 1; }
}
