/* web/drivers.css */

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(228,255,84,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(163,141,250,0.10) 0%, transparent 45%),
    var(--ink);
  padding: 96px 48px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(228,255,84,0.06) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(228,255,84,0.1); color: var(--yellow);
  border: 1px solid rgba(228,255,84,0.2);
  padding: 6px 14px; border-radius: var(--r-btn); margin-bottom: 28px;
}
.hero-badge .pulse { background: var(--yellow); }

.hero-h1 {
  font-size: 64px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 0.95;
  color: white; margin-bottom: 24px;
}
.hero-h1 .acc { color: var(--yellow); }

.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.5);
  line-height: 1.55; margin-bottom: 40px; font-weight: 400;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 20px;
}
.hero-note {
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,0.2); letter-spacing: 0.05em;
}

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step-card {
  background: var(--bg-card); border-radius: var(--r-card); padding: 32px 24px;
  box-shadow: var(--sh-card); text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.step-num {
  width: 36px; height: 36px; background: var(--yellow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: var(--yellow-txt); margin-bottom: 16px;
}
.step-icon  { font-size: 32px; margin-bottom: 14px; }
.step-title { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
.step-desc  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── SCREENSHOTS ── */
.screenshots {
  background: var(--ink); padding: 80px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.screenshots-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(228,255,84,0.04) 0%, transparent 70%);
}
.screens-wrap {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 16px; position: relative; z-index: 1; margin-top: 48px;
}
.phone {
  background: #1a1a1a; border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--sh-hero); overflow: hidden;
}
.phone.center { width: 200px; height: 400px; transform: scale(1.08); }
.phone.side   { width: 170px; height: 340px; opacity: 0.55; }
.phone-screen {
  width: 100%; height: 100%; background: var(--bg);
  padding: 14px; display: flex; flex-direction: column; gap: 8px;
}
.phone-island {
  width: 70px; height: 20px; background: var(--ink);
  border-radius: var(--r-btn); margin: 0 auto 8px;
}
.phone-bar {
  background: white; border-radius: 10px; padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.phone-bar-icon {
  width: 28px; height: 28px; background: var(--yellow);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 12px; flex-shrink: 0;
}
.phone-map {
  background: linear-gradient(160deg, #d4e8c4 0%, #c8ddb8 100%);
  border-radius: 10px; flex: 1; position: relative; min-height: 80px;
}
.phone-map-pin { position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); font-size: 20px; }
.phone-map-price {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--ink); font-size: 10px;
  font-weight: 800; padding: 4px 10px; border-radius: var(--r-btn); white-space: nowrap;
}
.phone-booking {
  background: white; border-radius: 10px; padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.phone-time-row { display: flex; gap: 4px; margin-top: 4px; }
.phone-time {
  background: var(--bg-chip); border-radius: 6px;
  padding: 4px 8px; font-size: 9px; font-weight: 700; color: var(--ink);
}
.phone-time.sel { background: var(--ink); color: white; }
.phone-cta { background: var(--ink); border-radius: 10px; padding: 11px; text-align: center; }
.phone-session { background: var(--ink); border-radius: 12px; padding: 14px; margin-bottom: 8px; }
.phone-open-btn {
  background: var(--yellow); border-radius: 10px; padding: 12px; text-align: center;
  font-size: 11px; font-weight: 800; color: var(--ink);
}

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feat-card {
  background: var(--bg-card); border-radius: var(--r-card); padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(10,10,10,0.05);
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.feat-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feat-icon.yellow { background: var(--yellow); }
.feat-icon.purple { background: var(--purple-s); }
.feat-icon.dark   { background: var(--ink); }
.feat-title { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
.feat-desc  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── STATS ── */
.stats-bar {
  background: var(--ink); padding: 72px 48px;
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(228,255,84,0.04) 0%, transparent 60%);
}
.stat { padding: 0 32px; position: relative; z-index: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.stat:last-child { border-right: none; }
.stat .num { font-size: 48px; font-weight: 900; letter-spacing: -0.04em; color: white; line-height: 1; }
.stat .num .acc { color: var(--yellow); }
.stat .lbl { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 10px; }

/* ── FINAL CTA (yellow) ── */
.cta-yellow { background: var(--yellow); padding: 80px 48px; text-align: center; }
.cta-yellow h2 { font-size: 52px; font-weight: 900; letter-spacing: -0.04em; color: var(--ink); line-height: 1; margin-bottom: 16px; }
.cta-yellow .sub { font-size: 17px; color: rgba(10,10,10,0.5); margin-bottom: 36px; font-weight: 500; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── RESPONSIVE DRIVERS ── */
@media (max-width: 768px) {
  .hero-h1   { font-size: 40px; }
  .hero-sub  { font-size: 15px; }
  .steps-grid    { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .screens-wrap  { flex-direction: column; align-items: center; gap: 12px; }
  .phone.side    { opacity: 1; }
  .phone.center  { transform: none; }
  .stats-bar     { grid-template-columns: 1fr 1fr; gap: 20px; padding: 48px 20px; }
  .stat          { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 20px; }
  .stat:nth-child(even):last-child,
  .stat:last-child { border-bottom: none; }
  .stat .num     { font-size: 36px; }
  .cta-yellow h2 { font-size: 36px; }
}
