/* ================================================================
   LOKATE.AFRICA v2 — style.css
   Investor-Ready · Brand Compliant · Space Grotesk
   ================================================================ */

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

:root {
  --yellow:     #FFBF21;
  --blue:       #008CCF;
  --green:      #33AB69;
  --orange:     #F05429;
  --light-blue: #E4F4FC;
  --navy:       #192358;
  --bright:     #0464F4;
  --soft-blue:  #BCE4FC;
  --aqua:       #55E3F9;
  --white:      #ffffff;
  --off:        #F7FAFF;
  --text:       #1E2B45;
  --text-dim:   #5A6E8C;
  --border:     #DDE8F5;
  --font:       'Space Grotesk', system-ui, sans-serif;
  --r:          14px;
  --r-sm:       8px;
  --t:          0.3s cubic-bezier(0.4,0,0.2,1);
  --sh:         0 2px 20px rgba(25,35,88,0.07);
  --sh-md:      0 6px 36px rgba(25,35,88,0.11);
  --sh-lg:      0 16px 56px rgba(25,35,88,0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--t); }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }

h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--navy);
}
h3 { font-weight: 600; color: var(--navy); line-height: 1.3; font-size: 1.1rem; }
h4 { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
p { line-height: 1.75; }

.sec-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bright);
  border: 1.5px solid rgba(4,100,244,0.2);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.sec-title { margin-bottom: 16px; }
.accent-blue { color: var(--bright); }
.sec-sub { font-size: 1.02rem; color: var(--text-dim); max-width: 540px; margin-bottom: 56px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(255,191,33,0.3);
}
.btn-yellow:hover {
  background: #ffd44f;
  box-shadow: 0 8px 22px rgba(255,191,33,0.4);
  transform: translateY(-1px);
  color: var(--navy);
}
.btn-outline-blue {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline-blue:hover {
  border-color: var(--bright);
  color: var(--bright);
  background: rgba(4,100,244,0.04);
}
.btn-nav-ghost { background: transparent; color: var(--text-dim); padding: 9px 16px; font-size: 0.83rem; }
.btn-nav-ghost:hover { color: var(--navy); }
.btn-nav-primary {
  background: var(--bright);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.83rem;
  box-shadow: 0 3px 12px rgba(4,100,244,0.28);
}
.btn-nav-primary:hover { background: #0352cc; color:#fff; transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }
.btn-fcta-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-fcta-outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); color: #fff; }

/* ================================================================ NAVBAR ================================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--t);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--sh);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.logo-img {
    width: 30px;   /* Adjust to desired size */
    height: auto;   /* Keeps proportions */
}

.anb-logo {
    width: 15px;   /* Adjust to desired size */
    height: auto;   /* Keeps proportions */
}

/* Logo icon container - blue bg */
.nav-logo .logo-icon, .footer-logo .logo-icon {
  background: var(--bright);
  border-radius: 8px;
  padding: 4px;
}

.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.84rem; font-weight: 500; color: var(--text-dim); transition: color var(--t); }
.nav-links a:hover { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--t); }

/* ================================================================ HERO ================================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--off); overflow: hidden; padding-top: 78px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 44px 44px; opacity: 0.6;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.45;
}
.g1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(4,100,244,0.18), transparent 70%); top: -100px; right: -80px; }
.g2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,191,33,0.18), transparent 70%); bottom: 60px; left: -60px; }

.hero-wrap {
  flex: 1; display: grid; grid-template-columns: 1fr 440px;
  gap: 60px; align-items: center;
  padding-top: 56px; padding-bottom: 56px;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 40px; padding: 6px 16px;
  font-size: 0.76rem; font-weight: 500; color: var(--text-dim);
  margin-bottom: 24px; box-shadow: var(--sh);
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(51,171,105,0.2);
  animation: pd 2s ease-in-out infinite;
}
@keyframes pd { 0%,100% { box-shadow: 0 0 0 3px rgba(51,171,105,0.2); } 50% { box-shadow: 0 0 0 6px rgba(51,171,105,0); } }

.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.04;
  color: var(--navy); margin-bottom: 22px;
}
.h1-accent { color: var(--bright); }

.hero-sub { font-size: 1.05rem; color: var(--text-dim); line-height: 1.75; max-width: 500px; margin-bottom: 28px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero-tags span {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 40px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 500; color: var(--text-dim);
  box-shadow: var(--sh);
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 28px; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 1.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.trust-item span { font-size: 0.72rem; color: var(--text-dim); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* Phone Mockup */
.hero-right { position: relative; }
.phone-mockup { position: relative; display: flex; justify-content: center; }
.phone-frame {
  width: 280px; background: #fff;
  border-radius: 36px;
  box-shadow: var(--sh-lg), 0 0 0 8px rgba(25,35,88,0.04);
  overflow: hidden;
  border: 1px solid var(--border);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.phone-notch {
  width: 80px; height: 20px;
  background: var(--navy); border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
}
.phone-screen { padding: 0 12px 16px; }
.app-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.app-greeting { font-size: 0.72rem; font-weight: 600; color: var(--navy); }
.app-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--bright), var(--aqua)); }
.app-search {
  display: flex; align-items: center; gap: 6px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 10px; margin-bottom: 14px;
}
.app-search span { font-size: 0.7rem; color: var(--text-dim); }
.app-section-label { font-size: 0.7rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.app-events { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.app-event-card {
  border-radius: 10px; overflow: hidden; height: 100px;
  position: relative; display: flex; align-items: flex-end;
}
.e1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.e2 { background: linear-gradient(135deg, #2d1b00, #4a2c00); }
.event-overlay {
  padding: 6px 8px; display: flex; flex-direction: column; gap: 1px; width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}
.event-cat {
  font-size: 0.55rem; font-weight: 700; background: var(--bright); color: #fff;
  padding: 1px 5px; border-radius: 3px; align-self: flex-start;
}
.event-cat.restaurant { background: var(--orange); }
.event-overlay strong { font-size: 0.62rem; color: #fff; line-height: 1.2; }
.event-loc { font-size: 0.56rem; color: rgba(255,255,255,0.7); }
.event-price { font-size: 0.58rem; background: rgba(0,0,0,0.4); color: #fff; padding: 1px 5px; border-radius: 3px; align-self: flex-start; }

.app-paye-bubble {
  display: flex; align-items: center; gap: 7px;
  background: rgba(4,100,244,0.06); border: 1px solid rgba(4,100,244,0.15);
  border-radius: 8px; padding: 8px 10px; margin-bottom: 10px;
}
.paye-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bright);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.app-paye-bubble span { font-size: 0.65rem; color: var(--navy); line-height: 1.3; }
.app-paye-bubble strong { color: var(--bright); }

.app-nav-bar {
  display: flex; justify-content: space-around; align-items: center;
  border-top: 1px solid var(--border); padding-top: 8px;
}
.anb-item { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--text-dim); }
.anb-item.active { color: var(--bright); }
.anb-item span { font-size: 0.52rem; font-weight: 500; }
.anb-paye {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bright);
  display: flex; align-items: center; justify-content: center;
  margin-top: -14px;
  box-shadow: 0 4px 12px rgba(4,100,244,0.4);
}

.float-badge {
  position: absolute;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--sh-md);
  font-size: 0.72rem;
}
.float-badge .fb-icon { font-size: 1.2rem; }
.float-badge div { display: flex; flex-direction: column; gap: 1px; }
.float-badge strong { font-weight: 700; color: var(--navy); font-size: 0.72rem; }
.float-badge span { color: var(--text-dim); font-size: 0.65rem; }
.fb1 { top: 20px; left: -60px; }
.fb2 { top: 140px; right: -55px; }
.fb3 { bottom: 80px; left: -50px; }

/* Ticker */
.markets-ticker { background: var(--navy); padding: 12px 0; overflow: hidden; position: relative; z-index: 1; }
.ticker-inner {
  display: inline-flex; gap: 24px; white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 0.76rem; font-weight: 500;
}
.ticker-inner span { color: rgba(255,255,255,0.5); }
.t-dot { color: var(--yellow) !important; opacity: 0.6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================================ PROBLEM ================================================================ */
#problem { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.problem-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); padding: 30px 24px;
  position: relative; transition: all var(--t);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(4,100,244,0.15); }
.prob-num {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--border); margin-bottom: 16px;
}
.prob-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.problem-card h3 { margin-bottom: 10px; font-size: 0.95rem; }
.problem-card p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.7; }

/* ================================================================ SOLUTION ================================================================ */
#solution { position: relative; padding: 96px 0; }
.solution-bg-wrap {
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding: 96px 0 130px;
}
.solution-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.sol-pillar {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 32px 24px;
  transition: all var(--t);
}
.sol-pillar:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.sol-pill-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sol-pillar h3 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
.sol-pillar p { color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.7; }

/* ================================================================ FEATURES ================================================================ */
#features { background: var(--off); }
.features-bento {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.feat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
  transition: all var(--t); position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--bright), var(--aqua));
  opacity: 0; transition: opacity var(--t);
}
.feat-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }

.feat-large { grid-column: span 2; }
.feat-medium { grid-column: span 2; }

.feat-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(4,100,244,0.08); color: var(--bright);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 14px;
}
.feat-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-card h3 { margin-bottom: 10px; }
.feat-card p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.72; }

.feat-demo-bar { margin-top: 18px; }
.paye-demo {
  display: flex; align-items: center; gap: 8px;
  background: rgba(4,100,244,0.04); border: 1px solid rgba(4,100,244,0.12);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 6px;
  font-size: 0.78rem; color: var(--text-dim);
}
.paye-mic { font-size: 1rem; }
.paye-response {
  font-size: 0.73rem; color: var(--green); font-weight: 600;
  padding-left: 14px;
}
.feat-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.feat-pills span {
  font-size: 0.72rem; background: rgba(240,84,41,0.06);
  border: 1px solid rgba(240,84,41,0.15); color: var(--orange);
  padding: 3px 10px; border-radius: 20px; font-weight: 500;
}

/* ================================================================ HOW IT WORKS ================================================================ */
#how { background: var(--white); }
.how-steps {
  display: flex; gap: 0; align-items: flex-start;
  justify-content: space-between; position: relative;
}
.how-steps::before {
  content: '';
  position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, var(--bright), var(--yellow), var(--green), var(--orange), var(--aqua));
  z-index: 0;
}
.how-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
  flex: 1; padding: 0 12px;
}
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: var(--sh-md); flex-shrink: 0;
}
.paye-circle { background:  #0464F4; }
.step-label { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 8px; }
.how-step p { font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; }

/* ================================================================ MARKET ================================================================ */
#market { position: relative; padding: 0; }
.market-bg-wrap {
  background: var(--navy);
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  padding: 120px 0 140px;
}
.market-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px; }
.market-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); overflow: hidden; transition: all var(--t);
}
.market-stat:hover { transform: translateY(-3px); background: rgba(255,255,255,0.09); }
.mstat-top { padding: 24px 20px; text-align: center; }
.mstat-num { display: block; font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
.mstat-seg {
  font-size: 0.68rem; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7);
  padding: 2px 8px; border-radius: 20px; font-weight: 600;
}
.mstat-body { padding: 16px 20px; }
.mstat-body h4 { color: #fff; margin-bottom: 6px; font-size: 0.85rem; }
.mstat-body p { color: rgba(255,255,255,0.45); font-size: 0.75rem; line-height: 1.5; }

.market-combined {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); padding: 36px;
  display: grid; grid-template-columns: 1fr 200px; gap: 40px; align-items: center;
}
.mc-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--aqua); margin-bottom: 8px; display: block; }
.mc-total { font-size: 3rem; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 14px; }
.mc-left p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }
.mc-bar-chart { display: flex; gap: 6px; align-items: flex-end; height: 120px; }
.mc-bar {
  flex: 1; border-radius: 6px 6px 0 0; position: relative;
  transition: height 1s ease; display: flex; align-items: flex-start; justify-content: center; padding-top: 6px;
}
.mc-bar span { font-size: 0.55rem; color: rgba(255,255,255,0.6); writing-mode: vertical-lr; transform: rotate(180deg); }

/* ================================================================ BUSINESS MODEL ================================================================ */
#business { background: var(--off); }
.biz-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.biz-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px; transition: all var(--t);
}
.biz-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.biz-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.biz-card h4 { margin-bottom: 8px; font-size: 0.95rem; }
.biz-card p { font-size: 0.81rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 12px; }
.biz-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; background: rgba(4,100,244,0.08); color: var(--bright);
  padding: 3px 10px; border-radius: 20px;
}
.biz-highlight {
  grid-column: span 3; background: var(--navy); border-radius: var(--r);
  padding: 36px 32px; color: #fff;
}
.bh-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--aqua); margin-bottom: 8px; }
.bh-total { font-size: 2.8rem; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 10px; }
.biz-highlight p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 24px; }
.bh-bars { display: flex; flex-direction: column; gap: 10px; max-width: 500px; }
.bh-bar-row { display: flex; align-items: center; gap: 12px; }
.bh-bar-row span { font-size: 0.75rem; color: rgba(255,255,255,0.6); min-width: 120px; }
.bh-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.bh-bar-fill { height: 100%; border-radius: 3px; }

/* ================================================================ COMPETITIVE ================================================================ */
#competitive { background: var(--white); }
.comp-table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--border); }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td {
  padding: 14px 20px; text-align: center; font-size: 0.83rem;
  border-bottom: 1px solid var(--border);
}
.comp-table th {
  background: var(--off); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.05em; color: var(--text-dim); text-transform: uppercase;
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--off); }
.comp-table td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
.lokate-col { background: rgba(4,100,244,0.04) !important; }
.lokate-th {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--bright); font-weight: 700;
}
.check { color: var(--green); font-size: 1.1rem; font-weight: 700; }
.cross { color: #CBD5E1; font-size: 1rem; }
.partial { color: var(--yellow); font-size: 1rem; }

/* ================================================================ AUDIENCE ================================================================ */
#audience { background: var(--off); }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 36px; }
.aud-card {
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid transparent; border-radius: var(--r);
  padding: 28px 22px; transition: all var(--t);
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.aud-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.aud-card h3 { margin-bottom: 8px; font-size: 0.95rem; }
.aud-card p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 14px; }
.aud-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }

.geo-banner {
  background: var(--navy); border-radius: var(--r); padding: 28px 32px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.geo-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--aqua); white-space: nowrap; }
.geo-phases { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; flex: 1; }
.geo-phase { display: flex; align-items: center; gap: 8px; }
.geo-phase div { display: flex; flex-direction: column; }
.geo-phase strong { font-size: 0.75rem; font-weight: 700; color: #fff; }
.geo-phase span { font-size: 0.68rem; color: rgba(255,255,255,0.45); }
.gp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bright); flex-shrink: 0; }
.active-phase .gp-dot { background: var(--green); box-shadow: 0 0 0 3px rgba(51,171,105,0.3); animation: pd 2s ease-in-out infinite; }
.geo-arrow { color: rgba(255,255,255,0.25); font-size: 1rem; }

/* ================================================================ ROADMAP ================================================================ */
#roadmap { position: relative; padding: 0; }
.roadmap-bg-wrap {
  background: var(--navy);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: 120px 0 140px;
}
.traction-bar {
  display: flex; gap: 0; margin-bottom: 56px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); overflow: hidden;
}
.traction-item {
  flex: 1; padding: 24px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.traction-item:last-child { border-right: none; }
.tr-num { display: block; font-size: 1.4rem; font-weight: 700; color: var(--yellow); margin-bottom: 4px; }
.tr-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--bright), var(--yellow), var(--green), var(--orange), rgba(255,255,255,0.1));
}
.tl-item { position: relative; padding: 0 0 36px 32px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -22px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.2);
}
.tl-dot.done { background: var(--green); border-color: var(--green); }
.tl-dot.active { background: var(--yellow); border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,191,33,0.2); }
.tl-period { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); display: block; margin-bottom: 6px; }
.tl-content h4 { color: #fff; margin-bottom: 6px; font-size: 1rem; }
.tl-content p { color: rgba(255,255,255,0.5); font-size: 0.84rem; line-height: 1.65; }

/* ================================================================ FUNDING ================================================================ */
#funding { background: var(--off); }
.funding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }

.funding-ask { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 36px 32px; }
.fa-amount { font-size: 2.4rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.fa-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bright); margin: 6px 0 16px; display: block; }
.funding-ask > p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 28px; }

.fa-breakdown { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.fa-row { display: flex; flex-direction: column; gap: 5px; }
.fa-bar-label { display: flex; justify-content: space-between; font-size: 0.78rem; }
.fa-bar-label span { color: var(--text-dim); }
.fa-bar-label strong { color: var(--navy); font-weight: 700; }
.fa-track { height: 7px; background: var(--off); border-radius: 4px; }
.fa-fill { height: 100%; border-radius: 4px; }
.fa-amount-sm { font-size: 0.7rem; color: var(--text-dim); align-self: flex-end; }
.fa-roi {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 18px; margin-top: 4px;
}
.roi-label { font-size: 0.72rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.roi-val { font-size: 1.2rem; font-weight: 700; color: var(--green); }

.team-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 32px 28px; }
.team-panel h3 { margin-bottom: 6px; }
.team-desc { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 24px; }
.team-grid { display: flex; flex-direction: column; gap: 0; }
.team-member {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.team-member:last-child { border-bottom: none; }
.tm-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--border);
}
.tm1 { background: linear-gradient(135deg,var(--bright),var(--aqua)); }
.tm2 { background: linear-gradient(135deg,var(--navy),var(--bright)); }
.tm3 { background: linear-gradient(135deg,var(--green),var(--aqua)); }
.tm4 { background: linear-gradient(135deg,var(--orange),var(--yellow)); }
.tm5 { background: linear-gradient(135deg,var(--yellow),var(--orange)); }
.tm6 { background: linear-gradient(135deg,var(--aqua),var(--blue)); }
.team-member div { display: flex; flex-direction: column; gap: 1px; }
.team-member strong { font-weight: 700; color: var(--navy); font-size: 0.85rem; }
.team-member span { font-size: 0.72rem; color: var(--text-dim); }
.tm-note { color: var(--text-dim); opacity: 0.7; font-size: 0.66rem !important; }

/* ================================================================ FINAL CTA ================================================================ */
#final-cta { position: relative; padding: 110px 0; overflow: hidden; }
.fcta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1240 0%, var(--navy) 50%, #0c2864 100%);
}
#final-cta::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: -150px; right: -100px;
}
.fcta-wrap {
  position: relative; z-index: 1;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.fcta-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(255,255,255,0.15);
}
.fcta-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 20px;
}
.fcta-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; }
.fcta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================================================================ CONTACT ================================================================ */
#contact { background: var(--off); }
.contact-wrap { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.contact-info p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 28px; }
.ci-rows { display: flex; flex-direction: column; gap: 12px; }
.ci-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text);
}
.ci-row a { color: var(--navy); font-weight: 500; }
.ci-row a:hover { color: var(--bright); }

.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 32px; box-shadow: var(--sh);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.fg label { font-size: 0.75rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.fg input, .fg select, .fg textarea {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 11px 14px;
  font-family: var(--font); font-size: 0.87rem; color: var(--text);
  outline: none; transition: all var(--t); resize: vertical;
  appearance: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--bright); box-shadow: 0 0 0 4px rgba(4,100,244,0.07); background: #fff;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-dim); }
.fg select { color: var(--text-dim); cursor: pointer; }

/* ================================================================ FOOTER ================================================================ */
footer { background: var(--navy); padding: 68px 0 36px; }
.footer-top {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px;
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-logo .logo-text { color: #fff; }
.footer-brand > p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: all var(--t);
}
.footer-socials a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.footer-links-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer-hashtag { color: rgba(255,191,33,0.5) !important; font-weight: 700; }

/* ================================================================ REVEAL ANIMATIONS ================================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.72s cubic-bezier(0.4,0,0.2,1), transform 0.72s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.problem-grid .problem-card:nth-child(2) { transition-delay: 0.07s; }
.problem-grid .problem-card:nth-child(3) { transition-delay: 0.14s; }
.problem-grid .problem-card:nth-child(4) { transition-delay: 0.21s; }
.solution-pillars .sol-pillar:nth-child(2) { transition-delay: 0.08s; }
.solution-pillars .sol-pillar:nth-child(3) { transition-delay: 0.16s; }
.solution-pillars .sol-pillar:nth-child(4) { transition-delay: 0.24s; }
.features-bento .feat-card:nth-child(2) { transition-delay: 0.08s; }
.features-bento .feat-card:nth-child(3) { transition-delay: 0.16s; }
.features-bento .feat-card:nth-child(4) { transition-delay: 0.08s; }
.features-bento .feat-card:nth-child(5) { transition-delay: 0.16s; }
.features-bento .feat-card:nth-child(6) { transition-delay: 0.24s; }
.how-step:nth-child(2) { transition-delay: 0.1s; }
.how-step:nth-child(3) { transition-delay: 0.2s; }
.how-step:nth-child(4) { transition-delay: 0.3s; }
.how-step:nth-child(5) { transition-delay: 0.4s; }
.market-grid .market-stat:nth-child(2) { transition-delay: 0.08s; }
.market-grid .market-stat:nth-child(3) { transition-delay: 0.16s; }
.market-grid .market-stat:nth-child(4) { transition-delay: 0.24s; }
.audience-grid .aud-card:nth-child(2) { transition-delay: 0.08s; }
.audience-grid .aud-card:nth-child(3) { transition-delay: 0.16s; }
.audience-grid .aud-card:nth-child(4) { transition-delay: 0.24s; }
.tl-item:nth-child(2) { transition-delay: 0.08s; }
.tl-item:nth-child(3) { transition-delay: 0.16s; }
.tl-item:nth-child(4) { transition-delay: 0.24s; }
.tl-item:nth-child(5) { transition-delay: 0.32s; }
.biz-grid .biz-card:nth-child(2) { transition-delay: 0.07s; }
.biz-grid .biz-card:nth-child(3) { transition-delay: 0.14s; }
.biz-grid .biz-card:nth-child(4) { transition-delay: 0.07s; }
.biz-grid .biz-card:nth-child(5) { transition-delay: 0.14s; }

/* ================================================================ RESPONSIVE ================================================================ */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-right { max-width: 360px; margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .solution-pillars { grid-template-columns: 1fr 1fr; }
  .features-bento { grid-template-columns: 1fr 1fr; }
  .feat-large, .feat-medium { grid-column: span 2; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .market-combined { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr 1fr; }
  .biz-highlight { grid-column: span 2; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .funding-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    height: 100vh; background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column; justify-content: center;
    gap: 0; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links a { display: block; padding: 18px 32px; font-size: 1rem; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .hero-h1 { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .fb1, .fb2, .fb3 { display: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .solution-pillars { grid-template-columns: 1fr; }
  .features-bento { grid-template-columns: 1fr; }
  .feat-large, .feat-medium { grid-column: span 1; }
  .how-steps { flex-direction: column; gap: 24px; align-items: flex-start; }
  .how-steps::before { display: none; }
  .how-step { flex-direction: row; text-align: left; gap: 16px; }
  .how-step p { max-width: 300px; }
  .market-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .biz-highlight { grid-column: span 1; }
  .audience-grid { grid-template-columns: 1fr; }
  .comp-table th, .comp-table td { padding: 10px 12px; font-size: 0.74rem; }
  .traction-bar { flex-direction: column; }
  .traction-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .traction-item:last-child { border-bottom: none; }
  .geo-banner { flex-direction: column; align-items: flex-start; }
  .geo-phases { flex-direction: column; }
  .fcta-actions { flex-direction: column; align-items: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: 16px; }
  .footer-links-grid { grid-template-columns: 1fr; }
}
