/* ── HERO ── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  background: var(--bg3); position: relative; overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,113,227,0.05) 0%, transparent 70%);
}
.hero-content { max-width: 700px; }
.hero-headline {
  font-size: clamp(2.2rem, 7vw, 5.8rem); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.02; color: var(--text);
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.1rem; color: var(--text2); line-height: 1.6;
  max-width: 500px; margin: 1.25rem 0 2rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* TWO DOORS */
.hero-doors {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin-top: 4rem; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; background: var(--border);
}
.hero-door {
  background: var(--bg); padding: 1.75rem 2rem; cursor: pointer;
  transition: background 0.2s; display: flex; flex-direction: column; gap: 0.4rem;
}
.hero-door:active { background: rgba(0,113,227,0.04); }
.hero-door-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text3); }
.hero-door-title { font-size: 1.1rem; font-weight: 600; color: var(--text); }
.hero-door-desc { font-size: 0.84rem; color: var(--text2); line-height: 1.5; }
.hero-door-link { font-size: 0.84rem; color: var(--accent); margin-top: 0.5rem; font-weight: 500; }

/* NETWORK */
.network-strip { padding: 5rem 0; }
.network-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.network-card {
  padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.network-card:active { box-shadow: var(--shadow); }
.network-card-num { font-size: 0.72rem; font-weight: 500; color: var(--text3); }
.network-card-name { font-size: 1.2rem; font-weight: 600; color: var(--text); }
.network-card-url { font-size: 0.75rem; color: var(--text3); }
.network-card p { font-size: 0.86rem; color: var(--text2); flex: 1; }
.network-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.network-card-arrow { font-size: 0.82rem; color: var(--accent); font-weight: 500; }

/* SERVICES PREVIEW */
.services-preview { background: var(--bg3); }
.service-pills { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.service-pill {
  background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-pill:active { box-shadow: var(--shadow); }
.service-pill-icon { font-size: 1.5rem; margin-bottom: 0.2rem; }
.service-pill-name { font-size: 0.92rem; font-weight: 600; color: var(--text); }
.service-pill-desc { font-size: 0.78rem; color: var(--text2); line-height: 1.45; }

/* SELL BAND */
.sell-band {
  background: var(--text); color: #fff; padding: 5rem 0; text-align: center;
}
.sell-band h2 { color: #fff; }
.sell-band p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 1rem auto 2.5rem; }
.sell-band-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* DEALER BAND */
.dealer-band { padding: 5rem 0; }
.dealer-band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.dealer-band-stats { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.dealer-stat { padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--border); }
.dealer-stat:last-child { border-bottom: none; }
.dealer-stat-title { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.dealer-stat p { font-size: 0.84rem; margin: 0; }

/* ── TABLET ── */
@media (max-width: 900px) {
  .hero-doors { grid-template-columns: 1fr; }
  .network-cards { grid-template-columns: 1fr; gap: 1rem; }
  .service-pills { grid-template-columns: 1fr 1fr; }
  .dealer-band-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero { padding: 6rem 0 4rem; min-height: unset; }
  .hero-doors { margin-top: 3rem; }
  .hero-door { padding: 1.5rem; }
  .network-strip { padding: 3.5rem 0; }
}

@media (max-width: 560px) {
  .service-pills { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .sell-band-actions { flex-direction: column; align-items: center; }
  .sell-band-actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 400px) {
  .service-pills { grid-template-columns: 1fr; }
}
