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

:root {
  --blue:    #1a56db;
  --blue-lt: #3b82f6;
  --accent:  #06b6d4;
  --gold:    #f59e0b;
  --green:   #10b981;
  --bg:      #070b13;
  --bg2:     #0b1120;
  --card:    rgba(255,255,255,0.04);
  --border:  rgba(255,255,255,0.08);
  --text:    #f1f5f9;
  --muted:   rgba(255,255,255,0.45);
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: white; padding: 15px 30px; border-radius: 50px;
  font-weight: 700; font-size: 15px; transition: 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 24px rgba(26,86,219,0.45); position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(26,86,219,0.55); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); color: var(--text);
  padding: 15px 30px; border-radius: 50px; font-weight: 600; font-size: 15px;
  border: 1px solid var(--border); transition: 0.3s; backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; color: var(--muted); padding: 10px 20px; border-radius: 50px; font-weight: 500; font-size: 14px; transition: 0.2s; }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.btn-solid { display: inline-flex; align-items: center; background: var(--blue); color: white; padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 14px; transition: 0.2s; }
.btn-solid:hover { background: #1e429f; transform: translateY(-1px); }
.btn-ghost-white { display: inline-flex; align-items: center; color: rgba(255,255,255,0.7); padding: 15px 30px; border-radius: 50px; font-weight: 600; font-size: 15px; border: 1.5px solid rgba(255,255,255,0.2); transition: 0.3s; }
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); color: white; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,11,19,0.94); backdrop-filter: blur(20px);
  border-color: var(--border); box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; gap: 36px;
}
.nav-logo { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: white; flex-shrink: 0; letter-spacing: -0.5px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; flex: 1; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; margin-left: auto; color: var(--text); }
.mobile-menu { display: none; flex-direction: column; padding: 16px 28px 24px; gap: 14px; background: rgba(7,11,19,0.98); backdrop-filter: blur(20px); border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.mobile-menu a:hover { color: white; }
@media (max-width: 768px) { .nav-links, .nav-actions { display: none; } .hamburger { display: block; } }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); }
.blob-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(26,86,219,0.28), rgba(6,182,212,0.12)); top: -200px; right: -100px; animation: blobFloat 10s ease-in-out infinite; }
.blob-2 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(6,182,212,0.16), rgba(139,92,246,0.08)); bottom: 60px; left: -100px; animation: blobFloat 13s ease-in-out infinite reverse; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(20px,-30px) scale(1.05)} 66%{transform:translate(-15px,15px) scale(0.97)} }

/* Animated grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 20s linear infinite;
}
@keyframes gridScroll { from{background-position:0 0} to{background-position:60px 60px} }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto;
  padding: 80px 28px 130px;
  display: flex; align-items: center; gap: 60px;
}
.hero-text { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,86,219,0.15); border: 1px solid rgba(26,86,219,0.3);
  border-radius: 50px; padding: 6px 18px;
  font-size: 12px; font-weight: 700; color: var(--accent);
  margin-bottom: 28px; letter-spacing: 1px; text-transform: uppercase;
  animation: fadeSlideUp 0.6s ease both;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 800; line-height: 1.0; letter-spacing: -3px;
  color: white; margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease 0.1s both;
}
.highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--blue-lt), var(--accent));
  -webkit-background-clip: text; background-clip: text;
}
/* Typewriter word cycle */
.type-cycle { display: inline-block; min-width: 280px; }
.type-cycle .word { display: none; }
.type-cycle .word.active { display: inline; }

.hero-desc {
  font-size: 17px; color: var(--muted); line-height: 1.8;
  max-width: 500px; margin-bottom: 38px; font-weight: 400;
  animation: fadeSlideUp 0.6s ease 0.2s both;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; animation: fadeSlideUp 0.6s ease 0.3s both; }
.hero-stats { display: flex; align-items: center; gap: 28px; animation: fadeSlideUp 0.6s ease 0.4s both; }
.stat { text-align: left; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: white; line-height: 1; }
.stat span { font-size: 22px; font-weight: 700; color: var(--accent); }
.stat p { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 3px; letter-spacing: 0.3px; }
.stat-div { width: 1px; height: 44px; background: var(--border); }

/* ── PHONE MOCKUP ── */
.hero-visual { flex-shrink: 0; display: flex; justify-content: center; position: relative; animation: fadeSlideUp 0.8s ease 0.2s both; }
.phone-mockup { position: relative; animation: phoneFloat 6s ease-in-out infinite; }
@keyframes phoneFloat { 0%,100%{transform:translateY(0) rotate(0.5deg)} 50%{transform:translateY(-18px) rotate(-0.5deg)} }
.phone-screen {
  width: 280px; background: #0b1120; border-radius: 38px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 40px 80px rgba(0,0,0,0.6), 0 0 100px rgba(26,86,219,0.25);
  overflow: hidden; border: 2px solid rgba(255,255,255,0.08);
}
.phone-topbar { background: linear-gradient(135deg, var(--blue), #1e429f); padding: 16px 16px 14px; display: flex; justify-content: space-between; align-items: center; }
.phone-logo { color: white; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -0.5px; }
.phone-notif { font-size: 16px; }
.phone-search { margin: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 10px 12px; font-size: 12px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px; }
.phone-cards { padding: 0 12px 8px; display: flex; flex-direction: column; gap: 8px; }
.phone-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 10px; display: flex; align-items: center; gap: 10px; }
.phone-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.phone-info { flex: 1; min-width: 0; }
.phone-info strong { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); }
.phone-info span { font-size: 10px; color: rgba(255,255,255,0.4); }
.phone-stars { font-size: 10px; color: var(--gold); flex-shrink: 0; }
.phone-cta { margin: 12px; background: linear-gradient(135deg, var(--blue), var(--accent)); color: white; text-align: center; padding: 11px; border-radius: 12px; font-size: 13px; font-weight: 700; }

/* Floating badges */
.float-badge { position: absolute; background: rgba(11,17,32,0.92); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(12px); border-radius: 50px; padding: 9px 18px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.88); box-shadow: 0 8px 28px rgba(0,0,0,0.45); white-space: nowrap; }
.float-badge-1 { top: 14px; right: -90px; animation: badgePop 4s ease-in-out infinite; }
.float-badge-2 { bottom: 90px; right: -100px; animation: badgePop 4s ease-in-out infinite 1.3s; }
.float-badge-3 { bottom: 18px; left: -90px; animation: badgePop 4s ease-in-out infinite 2.6s; }
@keyframes badgePop { 0%,100%{transform:scale(1) translateY(0)} 50%{transform:scale(1.06) translateY(-4px)} }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

@keyframes fadeSlideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── SCROLL TICKER ── */
.ticker-wrap {
  background: var(--blue); overflow: hidden;
  padding: 13px 0; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-inner { display: inline-flex; animation: tickerScroll 30s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 40px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85); letter-spacing: 0.3px;
}
.ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SOCIAL PROOF / TRUST BAR ── */
.trust-bar {
  background: var(--bg2); padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar .section-label { text-align: center; margin-bottom: 36px; }
.trust-numbers {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.trust-num-item {
  text-align: center; padding: 16px 52px;
  border-right: 1px solid var(--border);
}
.trust-num-item:last-child { border-right: none; }
.trust-big { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; line-height: 1; }
.trust-big.blue { color: var(--blue-lt); }
.trust-big.cyan { color: var(--accent); }
.trust-big.gold { color: var(--gold); }
.trust-big.green { color: var(--green); }
.trust-label { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 6px; letter-spacing: 0.3px; }

/* ── CATEGORIES ── */
.categories { background: var(--bg2); padding: 56px 0; border-bottom: 1px solid var(--border); }
.categories .section-label { text-align: center; margin-bottom: 28px; }
.cat-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.cat-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border); border-radius: 50px;
  padding: 11px 22px; font-size: 13px; font-weight: 600;
  cursor: pointer; color: var(--muted); transition: 0.25s;
}
.cat-item:hover { border-color: var(--accent); color: var(--accent); background: rgba(6,182,212,0.08); transform: translateY(-2px); }
.cat-icon { font-size: 18px; }

/* ── VISUAL SHOWCASE ── */
.showcase {
  padding: 110px 0; background: var(--bg); position: relative; overflow: hidden;
}
.showcase-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 64px;
}
.showcase-main {
  grid-row: span 2;
  border-radius: 24px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #0d1a35 0%, #091525 100%);
  border: 1px solid var(--border); min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.showcase-main:hover { transform: scale(1.01); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.showcase-main .bg-visual {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 400px 400px at 60% 30%, rgba(26,86,219,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 20% 70%, rgba(6,182,212,0.2) 0%, transparent 70%);
}
.showcase-worker-cards {
  position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 10px; width: 85%;
}
.sw-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(8px); transition: 0.3s;
}
.sw-card:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.sw-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: white; flex-shrink: 0;
}
.sw-info { flex: 1; }
.sw-info strong { display: block; font-size: 13px; font-weight: 600; color: white; }
.sw-info span { font-size: 11px; color: rgba(255,255,255,0.4); }
.sw-rating { font-size: 11px; color: var(--gold); white-space: nowrap; }
.sw-badge { font-size: 10px; background: rgba(16,185,129,0.2); color: var(--green); border-radius: 20px; padding: 2px 8px; font-weight: 600; }
.showcase-label {
  position: relative; z-index: 2;
}
.showcase-label h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: white; margin-bottom: 8px; letter-spacing: -0.5px; }
.showcase-label p { font-size: 14px; color: var(--muted); }

.showcase-small {
  border-radius: 24px; overflow: hidden; position: relative;
  border: 1px solid var(--border); padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 210px; transition: transform 0.4s, box-shadow 0.4s;
}
.showcase-small:hover { transform: scale(1.01); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.sc-dark { background: linear-gradient(135deg, #0d1a2e, #0a1422); }
.sc-teal { background: linear-gradient(135deg, #041d26, #062030); }
.sc-accent { position: absolute; inset: 0; pointer-events: none; }
.sc-icon { font-size: 40px; margin-bottom: 12px; }
.sc-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: white; margin-bottom: 6px; }
.sc-sub { font-size: 13px; color: var(--muted); line-height: 1.6; }
.sc-stat { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--accent); }
.sc-stat-label { font-size: 12px; color: var(--muted); }

/* Mini activity feed */
.mini-feed { display: flex; flex-direction: column; gap: 8px; }
.mini-feed-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.6); }
.mini-feed-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── HOW IT WORKS - Visual ── */
.how {
  background: var(--bg2); padding: 110px 0; position: relative;
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.how-bg { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 40px 40px; }
.how-inner { position: relative; z-index: 1; }
.steps { display: flex; align-items: stretch; gap: 0; margin-bottom: 56px; }
.step {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 0;
  padding: 36px 30px; flex: 1; min-width: 200px;
  transition: transform 0.3s, background 0.3s; position: relative; overflow: hidden;
}
.step:first-child { border-radius: 20px 0 0 20px; }
.step:last-child { border-radius: 0 20px 20px 0; }
.step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--accent)); opacity: 0; transition: opacity 0.3s; }
.step:hover { background: rgba(255,255,255,0.06); transform: translateY(-5px); }
.step:hover::before { opacity: 1; }
.step-num { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: rgba(255,255,255,0.06); margin-bottom: 16px; line-height: 1; }
.step-icon { font-size: 32px; margin-bottom: 14px; }
.step-body h3 { font-size: 18px; color: white; margin-bottom: 10px; font-family: 'Syne', sans-serif; font-weight: 700; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.step-connector { width: 0; position: relative; display: flex; align-items: center; z-index: 2; }
.step-connector::after { content: '→'; position: absolute; left: -18px; font-size: 28px; color: rgba(255,255,255,0.12); font-family: 'Syne', sans-serif; }
.how-cta { text-align: center; }

/* ── FEATURES ── */
.features { padding: 110px 0; background: var(--bg); position: relative; }
.features::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 800px 600px at 50% 50%, rgba(26,86,219,0.05) 0%, transparent 70%); pointer-events: none; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, border-color 0.35s;
  position: relative; overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.35); border-color: rgba(26,86,219,0.4); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,0.08); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: white; font-family: 'Syne', sans-serif; letter-spacing: -0.3px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── WORKER SHOWCASE STRIP ── */
.workers-strip { padding: 100px 0; background: var(--bg2); overflow: hidden; border-top: 1px solid var(--border); }
.workers-carousel { margin-top: 52px; overflow: hidden; position: relative; }
.workers-carousel::before, .workers-carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.workers-carousel::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.workers-carousel::after  { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
.workers-track { display: flex; gap: 20px; animation: carouselScroll 32s linear infinite; width: max-content; }
.workers-track:hover { animation-play-state: paused; }
@keyframes carouselScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.wc-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 20px; padding: 24px; width: 220px; flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.wc-card:hover { transform: translateY(-6px); border-color: rgba(26,86,219,0.4); background: rgba(26,86,219,0.06); }
.wc-av { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.wc-name { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.wc-role { font-size: 12px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.wc-loc { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.wc-stars { font-size: 12px; color: var(--gold); margin-bottom: 4px; }
.wc-reviews { font-size: 11px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 110px 0; background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden;
}
.testi-card::before { content: '"'; position: absolute; top: 16px; right: 20px; font-family: 'Syne', sans-serif; font-size: 80px; color: rgba(26,86,219,0.12); line-height: 1; }
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(0,0,0,0.35); }
.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.85; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; font-weight: 600; color: white; }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ── VIDEO / IMMERSIVE SECTION ── */
.immersive {
  position: relative; padding: 120px 0; background: var(--bg);
  border-top: 1px solid var(--border); overflow: hidden;
}
.immersive-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 0% 50%, rgba(26,86,219,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 100% 50%, rgba(6,182,212,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.immersive-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 80px; }
.immersive-text { flex: 1; }
.immersive-text h2 { font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 50px); font-weight: 800; letter-spacing: -2px; color: white; line-height: 1.1; margin-bottom: 20px; }
.immersive-text p { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }
.immersive-checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.check-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; color: var(--green); margin-top: 0px; }
.immersive-visual { flex-shrink: 0; width: 480px; }
.dashboard-mockup {
  background: #0b1120; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 80px rgba(26,86,219,0.15);
}
.dash-topbar { background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border); padding: 14px 18px; display: flex; align-items: center; gap: 8px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ef4444; }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.green { background: #10b981; }
.dash-title { font-size: 12px; color: var(--muted); margin-left: 8px; font-weight: 500; }
.dash-body { padding: 20px; }
.dash-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.dash-stat { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-align: center; }
.dash-stat .num { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; }
.dash-stat .num.b { color: var(--blue-lt); }
.dash-stat .num.c { color: var(--accent); }
.dash-stat .num.g { color: var(--green); }
.dash-stat .lbl { font-size: 10px; color: var(--muted); margin-top: 3px; }
.dash-workers-label { font-size: 11px; color: var(--muted); margin-bottom: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-worker-row { display: flex; align-items: center; gap: 10px; padding: 10px; background: rgba(255,255,255,0.03); border-radius: 10px; margin-bottom: 8px; border: 1px solid var(--border); }
.dash-wr-av { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: white; flex-shrink: 0; }
.dash-wr-name { font-size: 12px; font-weight: 600; color: white; }
.dash-wr-role { font-size: 10px; color: var(--muted); }
.dash-wr-stars { font-size: 10px; color: var(--gold); margin-left: auto; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, #07101e, #0b1527); padding: 100px 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 700px 500px at 30% 50%, rgba(26,86,219,0.2) 0%, transparent 70%), radial-gradient(ellipse 500px 400px at 80% 50%, rgba(6,182,212,0.12) 0%, transparent 70%); pointer-events: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-text h2 { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4vw, 44px); color: white; margin-bottom: 10px; font-weight: 800; letter-spacing: -1.5px; }
.cta-text p { font-size: 16px; color: var(--muted); }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Animated counter */
.cta-mini-stats { display: flex; gap: 36px; margin-top: 28px; }
.cta-mini-stat .num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--accent); }
.cta-mini-stat .lbl { font-size: 12px; color: var(--muted); }

/* ── FOOTER ── */
.footer { background: #030507; padding: 64px 0 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; gap: 64px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand { flex: 1.5; min-width: 200px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: white; margin-bottom: 14px; letter-spacing: -0.5px; }
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.85; max-width: 250px; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { text-align: center; padding: 22px; font-size: 13px; color: rgba(255,255,255,0.2); }

/* ── SECTION LABELS ── */
.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; color: white; }
.section-head { text-align: center; margin-bottom: 60px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .immersive-inner { flex-direction: column; }
  .immersive-visual { width: 100%; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-main { grid-row: auto; }
}
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; padding: 80px 28px 130px; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 24px; }
  .float-badge-1 { right: -24px; top: 10px; font-size: 11px; }
  .float-badge-2 { right: -24px; }
  .float-badge-3 { left: -24px; }
  .steps { flex-direction: column; }
  .step:first-child { border-radius: 20px 20px 0 0; }
  .step:last-child { border-radius: 0 0 20px 20px; }
  .step-connector { display: none; }
  .cta-inner { text-align: center; justify-content: center; }
  .trust-numbers { flex-wrap: wrap; gap: 0; }
  .trust-num-item { padding: 16px 28px; }
}
@media (max-width: 600px) {
  .hero-title { letter-spacing: -1px; }
  .phone-mockup { transform: scale(0.88); transform-origin: center top; }
  .float-badge { display: none; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-links { gap: 28px; }
  .trust-num-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 24px; }
}
