/* ===== PingHive Landing Page — Dark + Amber Theme ===== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #0c0a09;
  color: #e7e5e4;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #fafaf9;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); letter-spacing: -0.01em; }

p { color: #a8a29e; }

.text-amber { color: #f59e0b; }
.text-amber-light { color: #fbbf24; }

/* ---------- Layout Containers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ---------- Section Headers ---------- */
.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #a8a29e;
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 64px;
}

/* ---------- Atmospheric Glows ---------- */
.glow-top {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-left {
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-right {
  position: absolute;
  top: 30%;
  right: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .glow-top {
  top: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content h1 .text-amber {
  display: inline;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #a8a29e;
  line-height: 1.75;
  max-width: 480px;
}

/* Hero Stat Cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.8), rgba(28, 25, 23, 0.4));
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.stat-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #a8a29e;
  line-height: 1.4;
}

.stat-card.wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  border-color: rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 28px;
}

.stat-card.wide .stat-number {
  font-size: 2.75rem;
  white-space: nowrap;
}

.stat-card.wide .stat-label {
  font-size: 1rem;
  color: #d6d3d1;
}

/* ===== VERTICALS SECTION ===== */
.verticals {
  padding: 80px 0;
  position: relative;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.vertical-card {
  background: rgba(28, 25, 23, 0.5);
  border: 1px solid rgba(68, 64, 60, 0.3);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.vertical-card:hover {
  background: rgba(28, 25, 23, 0.8);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vertical-card--featured {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(28, 25, 23, 0.7);
}

.vertical-card--featured:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.1);
}

.vertical-card-subtitle {
  font-size: 0.8rem;
  color: #78716c;
  margin-top: 4px;
}

.vertical-icon {
  font-size: 2.25rem;
  margin-bottom: 12px;
  display: block;
}

.vertical-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #e7e5e4;
}

/* 7 items: 4 on first row, 3 centered on second */
.verticals-grid .vertical-card:nth-child(n+5) {
  /* Second row cards */
}

.verticals-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verticals-row {
  display: grid;
  gap: 16px;
}

.verticals-row.top {
  grid-template-columns: repeat(4, 1fr);
}

.verticals-row.bottom {
  grid-template-columns: repeat(3, 1fr);
  max-width: 75%;
  margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.6), rgba(28, 25, 23, 0.3));
  border: 1px solid rgba(68, 64, 60, 0.3);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
  transition: all 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(245, 158, 11, 0.03);
}

.feature-card:hover::after {
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.35), transparent);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fafaf9;
}

.feature-card p {
  font-size: 0.95rem;
  color: #a8a29e;
  line-height: 1.65;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  padding: 100px 0;
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.step {
  position: relative;
  padding: 48px 28px 36px;
  background: rgba(28, 25, 23, 0.4);
  border: 1px solid rgba(68, 64, 60, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.07);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fafaf9;
  position: relative;
}

.step p {
  font-size: 0.95rem;
  color: #a8a29e;
  line-height: 1.65;
  position: relative;
}

/* ===== CLOSING SECTION ===== */
.closing {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing .glow-top {
  top: -100px;
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 65%);
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 24px;
  line-height: 1.25;
}

.closing h2 .text-amber {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing p {
  font-size: 1.15rem;
  color: #a8a29e;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(68, 64, 60, 0.25);
  text-align: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fafaf9;
  margin-bottom: 8px;
}

.footer-brand .text-amber {
  color: #f59e0b;
}

.footer-note {
  font-size: 0.85rem;
  color: #78716c;
}

/* ===== DIVIDER ===== */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(68, 64, 60, 0.4), transparent);
  border: none;
  margin: 0;
}

/* ===== BARBERSHOPS SECTION ===== */
.barbershops {
  padding: 80px 0;
  position: relative;
}

.barbershops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.barbershops-card {
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.7), rgba(28, 25, 23, 0.35));
  border: 1px solid rgba(68, 64, 60, 0.35);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.barbershops-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
}

.barbershops-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(245, 158, 11, 0.04);
}

.barbershops-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
}

.barbershops-card-icon {
  font-size: 2.25rem;
  margin-bottom: 16px;
  display: block;
}

.barbershops-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #fafaf9;
}

.barbershops-card p {
  font-size: 0.95rem;
  color: #a8a29e;
  line-height: 1.7;
}

.barbershops-cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(28, 25, 23, 0.4);
}

.barbershops-cta-stat {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid rgba(245, 158, 11, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.barbershops-cta-stat:last-child {
  border-right: none;
}

.barbershops-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.barbershops-stat-label {
  font-size: 0.85rem;
  color: #a8a29e;
  line-height: 1.5;
}

/* ===== DEALERSHIPS SECTION ===== */
.dealerships {
  padding: 80px 0;
  position: relative;
}

.dealership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.dealership-card {
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.7), rgba(28, 25, 23, 0.35));
  border: 1px solid rgba(68, 64, 60, 0.35);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.dealership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
}

.dealership-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(245, 158, 11, 0.04);
}

.dealership-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
}

.dealership-card-icon {
  font-size: 2.25rem;
  margin-bottom: 16px;
  display: block;
}

.dealership-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #fafaf9;
}

.dealership-card p {
  font-size: 0.95rem;
  color: #a8a29e;
  line-height: 1.7;
}

.dealership-cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(28, 25, 23, 0.4);
}

.dealership-cta-stat {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid rgba(245, 158, 11, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dealership-cta-stat:last-child {
  border-right: none;
}

.dealership-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.dealership-stat-label {
  font-size: 0.85rem;
  color: #a8a29e;
  line-height: 1.5;
}
@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding: 80px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-subtext {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-stats {
    max-width: 480px;
    margin: 0 auto;
  }

  .verticals-row.top {
    grid-template-columns: repeat(2, 1fr);
  }

  .verticals-row.bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .dealership-grid,
  .barbershops-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dealership-cta,
  .barbershops-cta {
    grid-template-columns: 1fr;
  }

  .dealership-cta-stat,
  .barbershops-cta-stat {
    border-right: none;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  }

  .dealership-cta-stat:last-child,
  .barbershops-cta-stat:last-child {
    border-bottom: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .closing {
    padding: 80px 0;
  }

  .section-header-centered {
    margin-bottom: 48px;
  }
}

/* ===== RESPONSIVE — Mobile (480px) ===== */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card.wide {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .verticals-row.top,
  .verticals-row.bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 28px 22px;
  }

  .dealership-cta,
  .barbershops-cta {
    grid-template-columns: 1fr;
  }

  .dealership-cta-stat,
  .barbershops-cta-stat {
    border-right: none;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  }

  .dealership-cta-stat:last-child,
  .barbershops-cta-stat:last-child {
    border-bottom: none;
  }

  .dealership-stat-number,
  .barbershops-stat-number {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-card.wide .stat-number {
    font-size: 2.25rem;
  }

  .step-number {
    font-size: 4rem;
  }

  .closing h2 {
    font-size: 1.5rem;
  }

  .closing p {
    font-size: 1rem;
  }
}