/* ════════════════════════════════════════════════════════════════
   Variant C — simplified, conversion-focused landing (borne + caisse)
   A short single-scroll page with one goal: submit the hero lead form.
   Reuses landing.css for the hero, form, cards and CTA; this file only
   adds the caisse hero photo, the centred section headers, and the
   social-proof band. Loaded after landing.css.
════════════════════════════════════════════════════════════════ */

/* ─────────────── Hero photo ─────────────── */
/* Borne-C keeps the default landing.css hero background (borne photo).
   Caisse-C swaps in the caisse photo without pulling in all of caisse.css. */
.hero-bg-caisse {
  background-image:
    linear-gradient(105deg,
      rgba(20,42,32,0.92) 0%,
      rgba(22,46,35,0.80) 42%,
      rgba(6,84,45,0.52) 100%),
    url('/img/hero.webp');
  background-size: cover;
  background-position: center right;
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-bg-caisse {
    background-image:
      linear-gradient(rgba(20,42,32,0.86), rgba(6,84,45,0.90)),
      url('/img/hero.webp');
    background-position: center;
  }
}

/* ─────────────── Centred section header ─────────────── */
.lp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.lp-head .section-sub {
  margin: 0 auto;
}

/* ─────────────── Social-proof band ─────────────── */
.lp-proof {
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
}

.lp-proof-inner {
  max-width: 880px;
  margin: 0 auto;
}

.lp-proof .section-label {
  color: var(--lime);
}

.lp-proof-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 32px;
}

.lp-proof-title span {
  color: var(--lime);
}

/* Reused hero Google block, centred inside the band. */
.lp-proof .hero-google {
  justify-content: center;
  margin: 0 auto 40px;
}

.lp-proof-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.lp-proof-stat .v {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -1px;
}

.lp-proof-stat .l {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
}

/* ─────────────── Secondary (green) button ─────────────── */
.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ─────────────── Cross-sell band (variant C & D) ─────────────── */
/* Promotes the sibling product within the same variant family: the caisse
   page points at the borne page and vice versa, keeping the A/B split intact. */
.lp-cross {
  background: var(--cream);
}

.lp-cross-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 44px rgba(6,84,45,0.06);
}

.lp-cross-text {
  text-align: left;
}

.lp-cross-text .section-label {
  color: var(--green);
}

.lp-cross-text h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: -0.5px;
  margin: 6px 0 8px;
}

.lp-cross-text p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 560px;
}

.lp-cross-card .btn-green {
  flex-shrink: 0;
}

/* Cross-sell card with product previews (borne-c). */
.lp-cross-text .btn-green {
  margin-top: 20px;
}

.lp-cross-visual {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.lp-cross-visual img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(135deg, #f7fcf0 0%, #e9f4d7 100%);
  border: 1px solid rgba(199,255,140,0.5);
  padding: 12px;
}

@media (max-width: 720px) {
  .lp-cross-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .lp-cross-text {
    text-align: center;
  }
  .lp-cross-visual {
    justify-content: center;
  }
  .lp-cross-visual img {
    width: 110px;
    height: 110px;
  }
}

/* ─────────────── Centred final CTA ─────────────── */
.lp-final {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.lp-final .section-sub {
  margin: 0 auto 28px;
}

@media (max-width: 600px) {
  .lp-proof-stats { gap: 32px; }
  .lp-proof-stat .v { font-size: 1.8rem; }
}

/* ─────────────── Pricing (variant D) ─────────────── */
/* Copied from caisse.css so the restaurant variant pages can show the
   pricing card without pulling in the whole caisse stylesheet. */
.pricing-section {
  background: var(--white);
}

.pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.pricing-header .section-sub {
  margin: 0 auto;
}

.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(6,84,45,0.08);
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.price-from {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray);
}

.price-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: -1px;
}

.price-period {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 600;
}

.price-detail {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 18px;
}

.price-addon {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: var(--gray-dark);
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-deep);
  font-size: 0.65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Accepted payment schemes, shown just above the pricing call to action. */
.price-cards {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 26px;
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

.price-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 14px;
}

.price-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 520px) {
  .pricing-card { padding: 32px 24px; }
  .price-value { font-size: 2.4rem; }
}
