/* ===== PAGE KIT ===== */

.kit-page {
  background: #1f2126;
  color: #f3eee6;
}

/* Conteneur général */
.kit-page .container {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

/* ===== HERO ===== */

.kit-hero {
  position: relative;
  padding: 120px 0 90px;
  background:
    linear-gradient(rgba(10, 12, 18, 0.68), rgba(10, 12, 18, 0.78)),
    url("../../images/cave-essentielle.png") center/cover no-repeat;
}

.kit-hero-content {
  max-width: 760px;
}

.kit-eyebrow {
  margin: 0 0 18px;
  color: #e0c15a;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kit-hero h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  max-width: 620px;
}

.kit-hero p {
  max-width: 680px;
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(243, 238, 230, 0.88);
}

.kit-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BOUTONS ===== */

.kit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s ease;
}

.kit-btn-primary {
  background: transparent;
  border: 1px solid #e0c15a;
  color: #e0c15a;
}

.kit-btn-primary:hover {
  background: #e0c15a;
  color: #1c1d21;
  transform: translateY(-2px);
}

.kit-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border: 1px solid #d2ae4b;
  color: #f3eee6;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s ease;
}

.kit-btn-outline:hover {
  background: #d2ae4b;
  color: #15171b;
  border-color: #d2ae4b;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* ===== SECTION BASE ===== */

.kit-section {
  padding: 110px 0;
}

.kit-section + .kit-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kit-section-header {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}

.kit-section-header .kit-eyebrow {
  margin-bottom: 14px;
}

.kit-section-header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f5efe6;
}

.kit-section-header p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(243, 238, 230, 0.82);
}

/* ===== GRID 2 CARTES ===== */

.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* ===== CARTES KIT ===== */

.kit-card {
  width: 100%;
  overflow: hidden;
  background: #23262c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.kit-card:hover {
  transform: translateY(-8px);
  border-color: #d2ae4b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.kit-card-body {
  height: 100%;
  padding: 34px 32px 32px;
}

.kit-card h3 {
  margin: 0 0 22px;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 800;
  color: #d2ae4b;
}

.kit-card p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(243, 238, 230, 0.82);
}

.kit-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.kit-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(243, 238, 230, 0.85);
}

.kit-card ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d2ae4b;
}

.kit-card .kit-btn {
  margin-top: 10px;
}

/* ===== CTA FINAL ===== */

.kit-cta {
  padding: 95px 0 110px;
}

.kit-cta-box {
  padding: 54px 42px;
  border-radius: 26px;
  background: linear-gradient(
    90deg,
    rgba(15, 18, 24, 0.68) 0%,
    rgba(15, 18, 24, 0.18) 18%,
    rgba(15, 18, 24, 0) 38%
  );
  border: 1px solid rgba(210, 174, 75, 0.18);
  text-align: center;
}

.kit-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: #f5efe6;
}

.kit-cta-box p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(243, 238, 230, 0.82);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {
  .kit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .kit-page .container {
    width: min(100% - 32px, 1200px);
  }

  .kit-hero {
    padding: 90px 0 70px;
  }

  .kit-hero-content {
    margin-top: -40px;
  }

  .kit-eyebrow {
    font-size: 18px;
  }

  .kit-hero h1 {
    font-size: 32px;
  }

  .kit-hero p,
  .kit-section-header p,
  .kit-card p,
  .kit-cta-box p {
    font-size: 16px;
  }

  .kit-section-header h2 {
    font-size: 32px;
  }

  .kit-card-body {
    padding: 26px 22px 24px;
  }

  .kit-card h3 {
    font-size: 24px;
  }

  .kit-card ul li {
    font-size: 16px;
  }

  .kit-cta-box {
    padding: 38px 24px;
  }
}