/* Landing — aperçu app, teaser promo, FAQ */
.app-preview {
  padding: 3.5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--warm-white, #fffbf5);
  border-top: 1px solid rgba(57, 40, 0, 0.06);
}

.app-preview__inner {
  max-width: var(--site-max-width, 1200px);
  margin: 0 auto;
}

.app-preview__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.app-preview__header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary, #392800);
}

.app-preview__header p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted, #6b5d4a);
  font-size: 1rem;
  line-height: 1.6;
}

.app-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.app-preview__device {
  margin: 0;
  text-align: center;
}

.app-preview__frame {
  position: relative;
  margin: 0 auto 1rem;
  max-width: 220px;
  min-height: 450px;
  padding: 0.65rem;
  border-radius: 28px;
  background: linear-gradient(145deg, #392800 0%, #5a3d00 100%);
  box-shadow: 0 16px 40px rgba(44, 36, 22, 0.18);
}

.app-preview__frame::before {
  content: '';
  position: absolute;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 1;
}

.app-preview__frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 450px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
  background: #fff;
}

.app-preview__device figcaption h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--primary, #392800);
}

.app-preview__device figcaption p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted, #6b5d4a);
  line-height: 1.5;
}

.app-preview__cta {
  margin: 2rem 0 0;
  text-align: center;
}

.app-preview__cta a {
  font-weight: 700;
  color: var(--primary-light, #aa6900);
}

.promo-teaser {
  padding: 3.5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #392800 0%, #5a3d00 55%, #aa6900 120%);
  color: #fff;
}

.promo-teaser__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: center;
  max-width: var(--site-max-width, 1200px);
  margin: 0 auto;
}

.promo-teaser__badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 174, 0, 0.2);
  border: 1px solid rgba(255, 174, 0, 0.45);
  color: #ffe8b0;
}

.promo-teaser__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
  color: #fff;
}

.promo-teaser__lead {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.promo-teaser__highlights {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.promo-teaser__highlights li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
}

.promo-teaser__highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent, #ffae00);
  font-weight: 800;
}

.promo-teaser__link {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  background: #fff;
  color: var(--primary, #392800);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.promo-teaser__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: var(--primary, #392800);
}

.promo-teaser__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(4rem, 10vw, 6rem);
  line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.landing-faq {
  padding: 3.5rem 1.5rem 4rem;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-top: 1px solid rgba(57, 40, 0, 0.06);
}

.landing-faq__inner {
  max-width: var(--site-max-width, 1200px);
  margin: 0 auto;
}

.landing-faq__header {
  text-align: center;
  margin-bottom: 2rem;
}

.landing-faq__header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary, #392800);
}

.landing-faq__header p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted, #6b5d4a);
  font-size: 1rem;
}

.landing-faq .site-faq-answer a {
  font-weight: 600;
  color: var(--primary-light, #aa6900);
}

.partners-banner {
  padding: 3.5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #fdf8f0 0%, #fffbf5 100%);
  border-top: 1px solid rgba(57, 40, 0, 0.06);
}

.partners-banner__inner {
  max-width: var(--site-max-width, 1200px);
  margin: 0 auto;
}

.partners-banner__header {
  text-align: center;
  margin-bottom: 2rem;
}

.partners-banner__header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary, #392800);
}

.partners-banner__header p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted, #6b5d4a);
  font-size: 1rem;
  line-height: 1.6;
}

.partners-banner__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.partners-banner__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(57, 40, 0, 0.08);
  box-shadow: 0 4px 20px rgba(57, 40, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partners-banner__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 174, 0, 0.45);
  box-shadow: 0 12px 32px rgba(57, 40, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.partners-banner__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent, #ffae00), var(--primary-light, #aa6900));
  color: #fff;
  font-size: 1.25rem;
}

.partners-banner__card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary, #392800);
}

.partners-banner__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted, #6b5d4a);
}

.partners-banner__cta-wrap {
  text-align: center;
}

.partners-banner__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.35rem;
  border-radius: 10px;
  background: var(--primary, #392800);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.partners-banner__cta:hover {
  background: #4a3500;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.landing-insights {
  padding: 3.5rem 1.5rem 4rem;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-top: 1px solid rgba(57, 40, 0, 0.06);
}

.landing-insights__inner {
  max-width: var(--site-max-width, 1200px);
  margin: 0 auto;
}

.landing-insights__header {
  text-align: center;
  margin-bottom: 2rem;
}

.landing-insights__header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary, #392800);
}

.landing-insights__header p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted, #6b5d4a);
  font-size: 1rem;
}

.landing-insights__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.landing-insights__panel {
  padding: 1.35rem;
  border-radius: 16px;
  background: var(--warm-white, #fffbf5);
  border: 1px solid rgba(57, 40, 0, 0.08);
}

.landing-insights__panel h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--primary, #392800);
}

.landing-blog-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.landing-blog-list a {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(57, 40, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.landing-blog-list a:hover {
  border-color: rgba(255, 174, 0, 0.45);
  box-shadow: 0 4px 16px rgba(57, 40, 0, 0.06);
  text-decoration: none;
  color: inherit;
}

.landing-blog-list__title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary, #392800);
  margin-bottom: 0.25rem;
}

.landing-blog-list__date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted, #6b5d4a);
}

.landing-insights__note {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted, #6b5d4a);
}

.landing-insights__link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary-light, #aa6900);
}

.landing-status-summary {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(57, 40, 0, 0.08);
  margin-bottom: 0.85rem;
}

.landing-status-summary.is-all-ok {
  border-color: rgba(46, 125, 50, 0.25);
  background: rgba(46, 125, 50, 0.06);
}

.landing-status-summary.is-partial {
  border-color: rgba(255, 174, 0, 0.35);
  background: rgba(255, 174, 0, 0.08);
}

.landing-status-summary.is-down {
  border-color: rgba(198, 76, 40, 0.35);
  background: rgba(198, 76, 40, 0.08);
}

.landing-status-summary.is-checking {
  border-color: rgba(57, 40, 0, 0.12);
}

.landing-status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: #9e9e9e;
}

.landing-status-summary.is-all-ok .landing-status-dot {
  background: #2e7d32;
}

.landing-status-summary.is-partial .landing-status-dot {
  background: #ffae00;
}

.landing-status-summary.is-down .landing-status-dot {
  background: #c84c28;
}

.landing-status-summary p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary, #392800);
}

.landing-status-services {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.landing-status-services li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(57, 40, 0, 0.06);
  font-size: 0.8125rem;
}

.landing-status-services span:first-child {
  color: var(--text, #2c2416);
  font-weight: 600;
}

.landing-status-pill {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.landing-status-pill--ok {
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
}

.landing-status-pill--down {
  background: rgba(198, 76, 40, 0.12);
  color: #c84c28;
}

.landing-status-pill--checking {
  background: rgba(57, 40, 0, 0.08);
  color: var(--text-muted, #6b5d4a);
}

@media (max-width: 900px) {
  .app-preview__grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .promo-teaser__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-teaser__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .promo-teaser__highlights {
    text-align: left;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .partners-banner__grid {
    grid-template-columns: 1fr;
  }

  .landing-insights__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .app-preview__grid {
    max-width: none;
  }

  .app-preview__frame {
    max-width: 200px;
  }
}
