/* =========================
   LANDING PAGE THEME
========================= */

:root {
  --dark: #0b0b0b;
  --light: #ffffff;
  --muted: #666;
  --accent: #ffffff;
}

/* Container */
.lp-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   HERO
========================= */
.lp-hero {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #fff;
  padding: 140px 0 160px;
  text-align: center;
}

.lp-badge {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.lp-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.lp-hero p {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 18px;
  opacity: 0.85;
}

.lp-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  background: #fff;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.lp-btn.dark {
  background: #000;
  color: #fff;
}

/* =========================
   STATS
========================= */
.lp-stats {
  background: #fafafa;
  padding: 90px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.lp-stats h3 {
  font-size: 42px;
  margin-bottom: 8px;
}

.lp-stats p {
  color: var(--muted);
  font-size: 15px;
}

/* =========================
   PROCESS
========================= */
.lp-process {
  padding: 110px 0;
}

.lp-process h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-steps div {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  font-weight: 500;
  text-align: center;
}

/* =========================
   CASE STUDY
========================= */
.lp-case {
  background: #111;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.lp-case h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin-bottom: 16px;
}

.lp-case p {
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0.85;
}

.lp-case a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

/* =========================
   FINAL CTA
========================= */
.lp-cta {
  background: #fafafa;
  padding: 120px 0;
  text-align: center;
}

.lp-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 28px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .grid-3,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding: 110px 0 130px;
  }
}
