/* Styles partagés par les pages intérieures */
.page-hero {
  padding: 92px 0 54px;
  text-align: center;

}

.page-hero h1 {
  max-width: 780px;
  margin: 14px auto;
  font-size: clamp(39px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -.06em;

}

.page-hero p {
  max-width: 630px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;

}

.page-section {
  padding: 62px 0 100px;

}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;

}

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;

}

.detail-card:hover, .review:hover, .price:hover, .contact-aside:hover, .form-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,.38);
  box-shadow: var(--shadow);

}

.detail-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -.04em;

}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;

}

.detail-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 12px;

}

.detail-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green);
  font-weight: 800;

}

.callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border: 1px solid rgba(56, 189, 248, .25);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(37, 99, 235, .15), transparent 55%), var(--surface);

}

.callout h2 {
  margin: 8px 0;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -.05em;

}

.callout p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;

}

.faq {
  max-width: 800px;
  margin: 0 auto;

}

.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);

}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;

}

.faq summary::after {
  content: "+";
  color: var(--blue);
  font-size: 21px;
  font-weight: 400;

}

.faq details[open] summary::after {
  content: "−";

}

.faq p {
  max-width: 670px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;

}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;

}

.review {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;

}

.stars {
  color: #facc15;
  letter-spacing: .1em;
  font-size: 13px;

}

.review blockquote {
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.7;

}

.review cite {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;

}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  align-items: start;

}

.contact-aside {
  padding: 30px;
  border-radius: 20px;
  background: var(--surface-2);
  transition: transform .3s ease, box-shadow .3s ease;

}

.contact-aside h2 {
  margin-top: 0;
  letter-spacing: -.04em;

}

.contact-aside p {
  color: var(--muted);
  font-size: 13px;

}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  font-size: 13px;

}

.contact-item b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: rgba(56,189,248,.12);
  color: var(--blue);

}

.form-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;

}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;

}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;

}

.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  color: var(--text);
  background: var(--bg);
  font: inherit;
  font-size: 13px;

}

.form-card textarea {
  min-height: 120px;
  resize: vertical;

}

.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56,189,248,.12);

}

.form-card .cta {
  margin-top: 18px;

}

.form-success {
  display: none;
  margin-top: 14px;
  color: #a7f3d0;
  font-size: 12px;

}

.form-success.show {
  display: block;

}

.form-error {
  display: none;
  margin-top: 14px;
  color: #fda4af;
  font-size: 12px;

}

.form-error.show {
  display: block;

}

.form-privacy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;

}

.form-privacy a {
  color: var(--blue);

}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);

}

.legal {
  max-width: 820px;
  margin: auto;
  color: var(--muted);
  font-size: 13px;

}

.legal h2 {
  margin: 34px 0 8px;
  color: var(--text);
  font-size: 19px;

}

.legal p {
  margin: 0;

}

.legal a {
  color: var(--blue);

}

@media (max-width: 760px) {
  .page-hero {
  padding: 65px 0 36px;

}

.page-grid, .testimonials, .contact-layout {
  grid-template-columns: 1fr;

}

.callout {
  grid-template-columns: 1fr;
  padding: 26px;

}

.form-grid {
  grid-template-columns: 1fr;

}

.page-section {
  padding-bottom: 70px;

}

}
