/* ─────────────────────────────────────────────
   CrowdForge — Premium Landing Page Stylesheet
   Author: Antigravity / Google DeepMind
   ───────────────────────────────────────────── */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&display=swap');

/* ── Design Tokens ── */
:root {
  --bg-darkest:   #0d1117;
  --bg-dark:      #13191f;
  --bg-card:      #1a2230;
  --bg-card-2:    #1e2a3a;

  --accent-orange:     #f5801e;
  --accent-orange-lt:  #ffa94d;
  --accent-orange-dk:  #c95f00;
  --accent-blue:       #2196f3;
  --accent-blue-lt:    #64b5f6;
  --accent-green:      #43c464;
  --accent-green-lt:   #81e09b;

  --text-primary:   #f0f4f8;
  --text-secondary: #8fa3b8;
  --text-muted:     #4f6272;

  --gradient-hero:   linear-gradient(135deg, #0d1117 0%, #13253a 55%, #0d1117 100%);
  --gradient-orange: linear-gradient(135deg, var(--accent-orange-dk), var(--accent-orange-lt));
  --gradient-blue:   linear-gradient(135deg, #1565c0, var(--accent-blue-lt));
  --gradient-green:  linear-gradient(135deg, #1b7f3b, var(--accent-green-lt));

  --border-subtle: rgba(255,255,255,0.06);
  --glass-bg:      rgba(255,255,255,0.04);
  --glass-border:  rgba(255,255,255,0.09);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-glow-orange: 0 0 32px rgba(245,128,30,0.22);
  --shadow-glow-blue:   0 0 32px rgba(33,150,243,0.22);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-darkest);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(245,128,30,0.1);
  border: 1px solid rgba(245,128,30,0.25);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.section-title span { color: var(--accent-orange); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-top: 12px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: var(--shadow-glow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 40px rgba(245,128,30,0.4); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--glass-border);
}
.btn-outline:hover { border-color: var(--accent-orange); color: var(--accent-orange); transform: translateY(-2px); }

.btn-blue {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 6px 40px rgba(33,150,243,0.4); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent-orange);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-menu a:hover { color: var(--text-primary); }
.nav-menu a:hover::after { left: 14px; right: 14px; }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Drawer */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 90vw);
    height: 100dvh;
    background: #141c26;
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 88px 28px 40px;
    transform: translateX(110%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -12px 0 40px rgba(0,0,0,0.5);
    z-index: 1050;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a {
    width: 100%;
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 0;
  }
  .nav-menu a::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 24px; width: 100%; text-align: center; justify-content: center; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1040;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.open { display: block; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 72px;
}

/* Decorative BG orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,128,30,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(33,150,243,0.15) 0%, transparent 70%);
  bottom: -120px; left: -80px;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(67,196,100,0.12) 0%, transparent 70%);
  top: 40%; left: 38%;
}

/* Mesh grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 65% 60% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,128,30,0.12);
  border: 1px solid rgba(245,128,30,0.3);
  border-radius: 50px;
  padding: 6px 14px 6px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-orange-lt);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-title .highlight-orange { color: var(--accent-orange); }
.hero-title .highlight-blue   { color: var(--accent-blue-lt); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: -8px;
  color: #fff;
}
.hero-avatars span:nth-child(1) { background: #2196f3; margin-left: 0; }
.hero-avatars span:nth-child(2) { background: #43c464; }
.hero-avatars span:nth-child(3) { background: #f5801e; }
.hero-avatars span:nth-child(4) { background: #ab47bc; }
.hero-avatars span:nth-child(5) { background: #ef5350; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card), var(--shadow-glow-orange);
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(10px);
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(67,196,100,0.1);
  border: 1px solid rgba(67,196,100,0.25);
  border-radius: 50px;
  padding: 3px 10px;
}
.dash-live-dot {
  width: 6px; height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.dash-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.dash-stat {
  background: var(--bg-card-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.dash-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.dash-stat-val.orange { color: var(--accent-orange); }
.dash-stat-val.blue   { color: var(--accent-blue-lt); }
.dash-stat-val.green  { color: var(--accent-green); }
.dash-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.dash-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.dash-bar-track {
  height: 6px;
  background: var(--bg-card-2);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.dash-bar-fill {
  height: 100%;
  border-radius: 6px;
  animation: barGrow 2s ease-out forwards;
}
@keyframes barGrow {
  from { width: 0; }
}
.dash-bar-fill.orange { background: var(--gradient-orange); width: 78%; }
.dash-bar-fill.blue   { background: var(--gradient-blue);   width: 61%; }
.dash-bar-fill.green  { background: var(--gradient-green);  width: 89%; }

/* Floating badge */
.hero-float-badge {
  position: absolute;
  bottom: -20px; left: -30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  animation: floatY 4s ease-in-out 1s infinite;
  backdrop-filter: blur(10px);
}
.hero-float-icon {
  width: 36px; height: 36px;
  background: rgba(67,196,100,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero-float-text strong { display: block; font-weight: 700; font-size: 0.9rem; }
.hero-float-text span   { color: var(--text-muted); font-size: 0.72rem; }

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust  { justify-content: center; }
  .hero-visual { display: none; }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent-orange);
  line-height: 1;
}
.stat-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
}
@media (max-width: 640px) {
  .stat-divider { display: none; }
}

/* ── Section Shared ── */
section.section-pad {
  padding: 100px 0;
}

/* ── How It Works ── */
.how-it-works { background: var(--bg-dark); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(33.33% - 0px);
  width: 33.33%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue-lt));
  pointer-events: none;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.how-card:hover {
  border-color: rgba(245,128,30,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow-orange);
}
.how-step-num {
  width: 52px; height: 52px;
  background: var(--gradient-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-glow-orange);
}
.how-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.how-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
}

/* ── For Businesses ── */
.for-business { background: var(--bg-darkest); }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fi-orange { background: rgba(245,128,30,0.12); border: 1px solid rgba(245,128,30,0.2); }
.fi-blue   { background: rgba(33,150,243,0.12); border: 1px solid rgba(33,150,243,0.2); }
.fi-green  { background: rgba(67,196,100,0.12); border: 1px solid rgba(67,196,100,0.2); }

.feature-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.feature-item p  { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.6; }

.split-visual {
  position: relative;
}
.split-mockup {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.mockup-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.mockup-tab {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-card-2);
  color: var(--text-secondary);
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.mockup-tab.active {
  background: rgba(245,128,30,0.15);
  color: var(--accent-orange);
  border-color: rgba(245,128,30,0.3);
}
.mockup-task {
  background: var(--bg-card-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.task-info { display: flex; align-items: center; gap: 12px; }
.task-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.task-name { font-size: 0.85rem; font-weight: 600; }
.task-type { font-size: 0.72rem; color: var(--text-muted); }
.task-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.pill-done    { background: rgba(67,196,100,0.15); color: var(--accent-green); border: 1px solid rgba(67,196,100,0.25); }
.pill-running { background: rgba(245,128,30,0.15); color: var(--accent-orange); border: 1px solid rgba(245,128,30,0.25); }
.pill-queued  { background: rgba(33,150,243,0.15); color: var(--accent-blue-lt); border: 1px solid rgba(33,150,243,0.25); }

@media (max-width: 900px) {
  .split-layout, .split-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ── Earn Money ── */
.earn-section { background: var(--bg-dark); }
.earn-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.earn-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.earn-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.earn-card:nth-child(1)::before { background: var(--gradient-orange); }
.earn-card:nth-child(2)::before { background: var(--gradient-blue); }
.earn-card:nth-child(3)::before { background: var(--gradient-green); }
.earn-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255,255,255,0.12);
}
.earn-emoji { font-size: 2.2rem; margin-bottom: 16px; }
.earn-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.earn-card p  { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; }

.earn-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 52px;
  max-width: 640px;
  margin-inline: auto;
}
.earn-step {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: var(--transition);
}
.earn-step:hover {
  border-color: rgba(245,128,30,0.25);
  transform: translateX(6px);
}
.earn-step-num {
  width: 36px; height: 36px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.earn-step p { font-size: 0.9rem; }
.earn-step p strong { font-weight: 700; display: block; margin-bottom: 2px; }
.earn-step p span   { color: var(--text-secondary); font-size: 0.82rem; }

@media (max-width: 768px) {
  .earn-cards { grid-template-columns: 1fr; }
}

/* ── Services / Use Cases ── */
.use-cases { background: var(--bg-darkest); }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.use-case-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(245,128,30,0.07), transparent 65%);
  opacity: 0;
  transition: opacity var(--transition);
}
.use-case-card:hover::after  { opacity: 1; }
.use-case-card:hover {
  border-color: rgba(245,128,30,0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.use-case-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.use-case-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.use-case-card p  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Testimonials ── */
.testimonials { background: var(--bg-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(245,128,30,0.22);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.testi-stars { color: var(--accent-orange); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card blockquote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-card blockquote::before { content: '"'; font-size: 1.8rem; color: var(--accent-orange); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name  { font-size: 0.88rem; font-weight: 700; }
.testi-role  { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── Pricing ── */
.pricing { background: var(--bg-darkest); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured {
  background: linear-gradient(160deg, #1a2842, #0f1d2f);
  border-color: rgba(245,128,30,0.4);
  box-shadow: var(--shadow-glow-orange), var(--shadow-card);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; }
.plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.plan-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.plan-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 24px;
}
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.plan-feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.check-yes { background: rgba(67,196,100,0.15); color: var(--accent-green); border: 1px solid rgba(67,196,100,0.25); }
.check-no  { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border-subtle); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .pricing-card.featured { transform: scale(1); }
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0d1a2a 0%, #1a0f05 50%, #0d1a2a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,128,30,0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section .section-title { font-size: clamp(2rem, 5vw, 3.2rem); max-width: 600px; margin-inline: auto; }
.cta-section .section-sub   { max-width: 520px; margin-inline: auto; margin-top: 16px; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
}
.cta-note a { color: var(--accent-orange); }

/* ── Footer ── */
.footer {
  background: #0a0e14;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: rgba(245,128,30,0.15);
  border-color: rgba(245,128,30,0.3);
  color: var(--accent-orange);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-orange); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent-orange); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll-reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: #2a3545; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-orange); }

/* ── Selection ── */
::selection { background: rgba(245,128,30,0.25); color: var(--text-primary); }