/* Landing page — neutralize globals.css .hero (dashboard marketing layout)
   so the public homepage hero pattern works correctly. */

.landing-page .hero {
  align-items: stretch;
  display: block;
  gap: 0;
  grid-template-columns: none;
  margin: 0;
  max-width: none;
  min-height: 0;
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, var(--color-bg-warm, #faf9f7) 0%, var(--color-bg, #fff) 100%);
  overflow: hidden;
}

.landing-page .hero .container {
  max-width: 1140px;
}

.landing-page .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.landing-page .hero-content {
  min-width: 0;
}

.landing-page .hero-content h1,
.landing-page .hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  max-width: none;
}

.landing-page .hero p,
.landing-page .hero .hero-subtitle,
.landing-page .hero .hero-trust-line,
.landing-page .hero .section-label {
  max-width: none;
}

.landing-page .hero .hero-subtitle {
  color: var(--color-text-muted, #4a5568);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 1.15rem;
}

.landing-page .hero .hero-trust-line {
  color: var(--color-text, #1a1f2e);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 1.75rem;
}

.landing-page .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.landing-page .hero-image-wrap {
  position: relative;
  min-width: 0;
  justify-self: end;
  width: 100%;
  max-width: 480px;
}

.landing-page .hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -8% -6% -8% 10%;
  background: linear-gradient(135deg, var(--color-accent-soft, #fef3e6) 0%, transparent 70%);
  border-radius: var(--radius-lg, 20px);
  z-index: 0;
  pointer-events: none;
}

.landing-page .hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg, 20px);
  box-shadow: var(--shadow-lg, 0 12px 40px rgba(15, 20, 25, 0.1));
  object-fit: cover;
}

.landing-page .landing-section-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-page .landing-section-list li {
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-md, 14px);
  padding: 1.15rem 1.25rem;
}

.landing-page .landing-section-list h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.landing-page .landing-section-list p {
  color: var(--color-text-muted, #4a5568);
  margin: 0;
  line-height: 1.55;
}

.landing-page .landing-faq {
  display: grid;
  gap: 1rem;
}

.landing-page .landing-faq details {
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-md, 14px);
  padding: 1rem 1.15rem;
}

.landing-page .landing-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.landing-page .landing-faq p {
  color: var(--color-text-muted, #4a5568);
  margin: 0.75rem 0 0;
  line-height: 1.55;
}

.landing-page .landing-related {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.landing-page .landing-related a {
  color: var(--color-accent-dark, #c96a14);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-page .areas-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-page .final-cta .hero-cta-group {
  justify-content: center;
}

@media (min-width: 768px) {
  .landing-page .landing-section-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .landing-page .hero {
    padding: 2rem 0 2.5rem;
  }

  .landing-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .landing-page .hero-image-wrap {
    order: -1;
    justify-self: center;
    max-width: 400px;
  }
}
