/* ============================================
   LANDING PAGE STYLES (DjiPrint SEO landings)
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  position: relative;
  display: block;
  padding: 1rem 5rem;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
  margin-top: 70px; /* compense le nav fixe */
}
body.has-banner .breadcrumb { margin-top: 114px; }
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--text); opacity: .5; margin: 0 .4rem; }
.breadcrumb span:last-child { color: var(--text); font-weight: 500; opacity: 1; margin-left: 0; }

@media (max-width: 900px) {
  .breadcrumb { padding: .8rem 1.5rem; font-size: .76rem; margin-top: 64px; }
  body.has-banner .breadcrumb { margin-top: 102px; }
}

/* HERO landing */
.lp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.3) 80%, rgba(255,255,255,0) 100%);
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 5rem 5rem;
  max-width: 700px;
}
.lp-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 1px;
  line-height: .95;
  color: var(--text);
  margin: .6rem 0 1.2rem;
}
.lp-hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 560px;
}
.lp-hero-sub strong { color: var(--text); font-weight: 600; }
.lp-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.lp-hero-trust {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .lp-hero { min-height: 60vh; }
  .lp-hero-content { padding: 3rem 1.5rem 3rem; }
  .lp-hero-sub { font-size: 1rem; }
  .lp-hero-cta { flex-direction: column; }
  .lp-hero-cta .btn-red, .lp-hero-cta .btn-outline { text-align: center; }
  .lp-hero-trust { font-size: .76rem; }
}

/* Sections génériques landing */
.lp-section { padding: 6rem 5rem; }
@media (max-width: 900px) {
  .lp-section { padding: 4rem 1.5rem; }
}

/* BENEFITS grid */
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.lp-benefit {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem 1.8rem;
  border-radius: 6px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.lp-benefit:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.lp-benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #fafafa;
  border-radius: 8px;
}
.lp-benefit h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--text);
}
.lp-benefit p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .lp-benefits { grid-template-columns: 1fr; }
}

/* PROCESS steps */
.lp-process { background: #fafafa; }
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.lp-step {
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  position: relative;
}
.lp-step-num {
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.lp-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.lp-step p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .lp-step { padding: 1.5rem; }
}
@media (max-width: 500px) {
  .lp-steps { grid-template-columns: 1fr; }
}

/* PROMO section */
.lp-promo {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  text-align: center;
}
.lp-promo-inner {
  max-width: 700px;
  margin: 0 auto;
}
.lp-promo-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: .4rem 1.1rem;
  border-radius: 3px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}
.lp-promo-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: .95;
  margin-bottom: 1.2rem;
  color: #fff;
}
.lp-promo-title sup { font-size: .5em; }
.lp-promo-text {
  font-size: 1rem;
  opacity: .85;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.lp-promo-text strong { color: #fff; }
.lp-promo-b2b {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .88rem;
  opacity: .8;
}
.lp-promo-b2b a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--red);
}
.lp-promo-b2b strong { color: #fff; }

/* FAQ details/summary */
.lp-faq { background: #fafafa; }
.lp-faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.lp-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.lp-faq-item[open] {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.lp-faq-item summary {
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: .98rem;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: color .2s;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  transition: transform .3s;
}
.lp-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-faq-item summary:hover { color: var(--red); }
.lp-faq-item p {
  padding: 0 1.5rem 1.4rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.lp-faq-item p a { color: var(--red); text-decoration: none; font-weight: 500; }
.lp-faq-item p a:hover { border-bottom: 1px solid var(--red); }

/* RELATED services */
.lp-related { background: #fafafa; }
.lp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.lp-related-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: block;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.lp-related-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.lp-related-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #fafafa;
  border-radius: 8px;
}
.lp-related-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.lp-related-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .lp-related-grid { grid-template-columns: 1fr; }
}
