.marketing-page {
  padding-top: 48px;
  overflow: hidden;
  background: var(--color-background-tertiary);
}

.section-spacing {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.marketing-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.marketing-section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.marketing-section-header p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-primary);
}

/* ========================================
   HERO
======================================== */

.hero-section {
  position: relative;
  padding: 7rem 2rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  height: 500px;
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.9),
      rgba(255,255,255,0.7)
    );
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: auto
}

.hero-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.18;
}

.blur-1 {
  width: 320px;
  height: 320px;
  background: var(--color-accent-dark);
  top: -60px;
  left: -60px;
}

.blur-2 {
  width: 420px;
  height: 420px;
  background: var(--color-blue);
  right: -120px;
  bottom: -120px;
}

/* ========================================
   FEATURES
======================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  padding: 2rem;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(156,121,69,0.3);
}

.feature-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      var(--color-primary-dark),
      var(--color-primary)
    );
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon span {
  color: var(--color-white);
  font-size: 40px;
}

/* ========================================
   SHOWCASE
======================================== */

.showcase-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.showcase-copy p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.showcase-list {
  padding: 0;
  margin: 0;
}

.showcase-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ========================================
   STATS
======================================== */

.stats-section {
  padding: 2rem;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--color-background-secondary);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-card .material-icons {
  color: var(--color-primary-dark);
  font-size: 70px;
}

/* ========================================
   CALL TO ACTION
======================================== */

.cta-section {
  padding: 7rem 2rem;
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.95),
      rgba(255,255,255,0.75)
    );
  border-radius: 32px;
  padding: 5rem 3rem;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* ========================================
   FOOTER
======================================== */

.marketing-footer {
  margin-top: 4rem;
  background: var(--color-primary-dark);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.footer-brand {
  max-width: 350px;
}
.footer-brand p {
  color: var(--color-background-tertiary);
  line-height: 1.7;
}
.footer-brand a {
  color: var(--color-background-tertiary);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: var(--color-primary);
}

.footer-column a {
  text-decoration: none;
  color: var(--color-background-tertiary);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-primary);
}

.footer-column p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--color-primary);
  line-height: 1.5;
}

.footer-column .material-icons {
  font-size: 1.1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  padding: 1.5rem 2rem;
}

.footer-bottom a {
  color: var(--color-primary);
}

.footer-bottom p {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* ========================================
   BUTTONS
======================================== */

.btn-learn-more {
  width: 100%;
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.btn-learn-more:hover {
  background: white;
  transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
======================================== */

.fade-up {
  animation: fadeUp 0.9s ease both;
}

.fade-left {
  animation: fadeLeft 1s ease both;
}

.fade-right {
  animation: fadeRight 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 980px) {
  .hero-content,
  .showcase-section,
  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-description {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    height: 500px;
  }
}

@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-image {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .section-spacing,
  .showcase-section,
  .cta-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }
}
