.page {
  padding: 0 20px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

/* HERO */
.hero {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* MINIATURES */
.thumbs {
  display: flex;
  gap: 12px;
  padding: 0 24px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
  overflow-x: auto;
}

.thumb {
  width: 190px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  border: 4px solid white;
  box-shadow: 0 10px 20px rgba(20, 38, 63, 0.12);
  flex: 0 0 auto;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENU */
.content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 360px;
  gap: 40px;
  padding: 36px 28px 12px;
  align-items: start;
}

.main-content h1 {
  font-size: 60px;
  line-height: 0.95;
  margin-bottom: 22px;
  color: #203761;
}

.subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: #465a78;
  margin-bottom: 28px;
}

.main-content h2 {
  font-size: 25px;
  margin-top: 28px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8ebf0;
}

.main-content ul {
  padding-left: 24px;
  color: #314963;
}

.main-content li {
  margin: 12px 0;
  font-size: 18px;
  line-height: 1.5;
}

/* CARD PRIX */
.price-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(17, 38, 67, 0.08);
  padding: 28px;
  border: 1px solid #f0f1f4;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.price {
  font-size: 20px;
  margin-bottom: 22px;
  color: #314760;
}

/* BOUTONS */
.cta-main {
  width: 100%;
  border: none;
  background: var(--accent);
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: 0.2s;
}

.cta-main:hover {
  background: var(--accent-hover);
}

.cta-secondary {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  margin: 12px 0 14px;
}

.cta-secondary:hover {
  text-decoration: underline;
}

.cta-whatsapp {
  display: block;
  text-align: center;
  background: var(--whatsapp);
  color: white;
  text-decoration: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.2s;
}

.cta-whatsapp:hover {
  background: var(--whatsapp-hover);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 260px;
  }

  .thumbs {
    padding: 0 14px;
    margin-top: -24px;
  }

  .thumb {
    width: 150px;
    height: 72px;
  }

  .content {
    padding: 24px 18px 8px;
    gap: 24px;
  }

  .main-content h1 {
    font-size: 42px;
  }

  .subtitle {
    font-size: 17px;
  }

  .main-content h2 {
    font-size: 23px;
  }

  .main-content li {
    font-size: 17px;
  }

  .price-card {
    padding: 22px;
  }
}

.field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #314760;
  margin-bottom: 8px;
  margin-top: 14px;
}

.field-input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  color: #183153;
  background: white;
  margin-bottom: 6px;
}

.field-input:focus {
  outline: none;
  border-color: var(--accent);
}

.field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #314760;
  margin-bottom: 8px;
  margin-top: 14px;
}

.field-input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  color: #183153;
  background: white;
  margin-bottom: 6px;
  font-family: inherit;
}

.field-input:focus {
  outline: none;
  border-color: var(--accent);
}

.field-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #314760;
  margin-bottom: 8px;
  margin-top: 14px;
}

.field-input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  color: #183153;
  background: white;
  margin-bottom: 6px;
  font-family: inherit;
}

.field-input:focus {
  outline: none;
  border-color: var(--accent);
}

.whatsapp-btn {
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
}