/* ============================================================
   Inner-page shared styles — imported after landing.css
   ============================================================ */

/* Page hero banner */
.page-hero {
  background: linear-gradient(180deg, #00c7ff 0%, #0090c7 100%);
  padding: 64px 24px 56px;
  text-align: center;
  color: #ffffff;
}
.page-hero-title {
  font-size: 28px; font-weight: 800; margin-bottom: 12px; line-height: 1.2;
}
.page-hero-subtitle { font-size: 14px; opacity: 0.9; }

/* Main content wrapper */
.page-content {
  max-width: 780px; margin: 0 auto; padding: 48px 24px;
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #ffffff; border: 1.5px solid #e8ecf0; border-radius: 16px; padding: 24px;
}
.faq-question { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.faq-answer  { font-size: 13px; color: #64748b; line-height: 1.65; }

/* ---- Contact ---- */
.contact-card {
  background: #ffffff; border: 1.5px solid #e8ecf0; border-radius: 20px; padding: 32px 24px;
}
.contact-card h2 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 24px; }
.contact-field { margin-bottom: 14px; }
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  padding: 12px 16px; font-size: 13.5px; font-family: inherit;
  color: #1a1a2e; background: #f8fafc; outline: none;
  transition: border-color 0.2s;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: #00c7ff; background: #fff; }
.contact-field textarea { resize: vertical; min-height: 120px; }
.contact-or    { text-align: center; font-size: 12.5px; color: #94a3b8; margin: 16px 0 8px; }
.contact-email { text-align: center; font-size: 13px; color: #00c7ff; font-weight: 500; }

/* ---- À propos ---- */
.mission-card {
  background: #f2f8fb; border-radius: 20px; padding: 28px 24px; margin-bottom: 40px;
}
.mission-card h2 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.mission-card p  { font-size: 13.5px; color: #475569; line-height: 1.6; margin-bottom: 16px; }
.mission-meta    { font-size: 11.5px; color: #94a3b8; text-align: center; }

.values-section  { margin-bottom: 40px; }
.values-title    { font-size: 20px; font-weight: 800; text-align: center; color: #1a1a2e; margin-bottom: 24px; }
.values-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-item {
  background: #ffffff; border: 1.5px solid #e8ecf0; border-radius: 16px; padding: 20px;
}
.value-icon  { font-size: 26px; margin-bottom: 10px; }
.value-name  { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.value-desc  { font-size: 12px; color: #64748b; }

.about-stats {
  background: #00c7ff; border-radius: 16px; padding: 28px 20px; margin-bottom: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center;
}
.about-stat-num   { display: block; font-size: 20px; font-weight: 800; color: #ffffff; }
.about-stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.8); margin-top: 4px; }

.about-cta          { text-align: center; padding: 32px 0; }
.about-cta h2       { font-size: 20px; font-weight: 800; color: #1a1a2e; margin-bottom: 20px; }
.about-cta-buttons  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-outline-primary {
  padding: 14px 28px; border-radius: 27px; font-size: 14px; font-weight: 700;
  border: 2px solid #00c7ff; color: #00c7ff; background: transparent;
  cursor: pointer; font-family: inherit; display: inline-flex; align-items: center;
}

/* ---- CGU ---- */
.cgu-alert {
  background: #fef9c3; border: 1.5px solid #fde047; border-radius: 12px;
  padding: 16px 20px; margin-bottom: 32px;
  font-size: 13px; color: #854d0e; font-weight: 500; line-height: 1.5;
}
.cgu-list { display: flex; flex-direction: column; }
.cgu-item { border-bottom: 1px solid #f1f5f9; padding: 24px 0; }
.cgu-item:last-child { border-bottom: none; }
.cgu-item h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.cgu-item p  { font-size: 13px; color: #64748b; line-height: 1.65; }

/* ---- Sécurité ---- */
.security-badge {
  background: #e0f2fe; border: 1.5px solid #7dd3fc; border-radius: 16px;
  padding: 24px; text-align: center; margin-bottom: 32px;
}
.security-badge-title { font-size: 18px; font-weight: 800; color: #0284c7; margin-bottom: 6px; }
.security-badge-sub   { font-size: 12px; color: #0ea5e9; }

.security-list { display: flex; flex-direction: column; gap: 16px; }
.security-item {
  background: #ffffff; border: 1.5px solid #e8ecf0; border-radius: 16px; padding: 24px;
}
.security-item h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.security-item p  { font-size: 13px; color: #64748b; line-height: 1.65; }

/* ---- Responsive ---- */
@media (min-width: 768px) {
  .page-hero         { padding: 80px 24px 72px; }
  .page-hero-title   { font-size: 36px; }
  .page-hero-subtitle{ font-size: 16px; }
  .page-content      { padding: 64px 24px; }
}

@media (min-width: 1024px) {
  .page-hero          { padding: 100px 24px 90px; }
  .page-hero-title    { font-size: 44px; }
  .page-content       { max-width: 900px; }
  .contact-card       { padding: 48px; }
  .values-grid        { grid-template-columns: repeat(4, 1fr); }
}
