/* ============================================
   Meilleur Choix Pro — Minimal Monochrome
   Color System 06 — Minimal Monochrome
   Skeleton 02
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

a:hover,
a:focus {
  color: #555;
}

a:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #111;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.2rem; }
small { font-size: 0.85rem; color: #555; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Notice Strip --- */
.notice-strip {
  background: #111;
  color: #f0f0f0;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.notice-strip p {
  margin: 0;
}

/* --- Header / Nav --- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #111;
  font-size: 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 400;
}

.site-logo:hover {
  color: #111;
}

.site-logo img {
  width: 80px;
  height: 80px;
}

/* --- Main Nav --- */
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list a {
  text-decoration: none;
  color: #333;
  font-size: 0.85rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: #000;
}

/* --- Burger --- */
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 36px;
  height: 36px;
  position: relative;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px 0;
  transition: all 0.3s;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 1rem 1.25rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.6rem 0;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* --- Hero --- */
.hero {
  padding: 3.5rem 1.25rem 3rem;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn--primary {
  background: #1a1a1a;
  color: #fff;
}

.btn--primary:hover {
  background: #333;
}

.btn--ghost {
  border-color: #ccc;
  color: #333;
}

.btn--ghost:hover {
  border-color: #1a1a1a;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* --- Section Shared --- */
.section {
  padding: 3rem 1.25rem;
}

.section--light {
  background: #fff;
}

.section--gray {
  background: #f5f5f5;
}

.section--dark {
  background: #1a1a1a;
  color: #f0f0f0;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section-header {
  max-width: 1120px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header p {
  color: #555;
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-body {
  max-width: 1120px;
  margin: 0 auto;
}

/* --- Section Nav / Orientation --- */
.section-nav {
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 1.25rem;
}

.section-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  justify-content: center;
}

.section-nav-list a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.section-nav-list a:hover {
  color: #000;
  border-bottom-color: #000;
}

/* --- Timeline Flow Sections (Layout 07) --- */
.timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.timeline-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 3px solid #fafafa;
  box-shadow: 0 0 0 1px #1a1a1a;
  flex-shrink: 0;
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: #ccc;
  min-height: 30px;
}

.timeline-step:last-child .timeline-line {
  display: none;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #444;
  font-size: 0.95rem;
}

/* --- Criteria Grid --- */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.criterion-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.criterion-card:hover {
  border-color: #aaa;
}

.criterion-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.criterion-card p {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

/* --- Platform Cards --- */
.platform-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.platform-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.platform-card:hover {
  border-color: #999;
}

.platform-card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.platform-card-header img {
  width: 144px;
  height: 144px;
  object-fit: contain;
}

.platform-meta {
  font-size: 0.75rem;
  color: #777;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.platform-summary {
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 1rem;
  flex: 1;
}

.platform-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.platform-criteria span {
  font-size: 0.7rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #777;
  background: #f5f5f5;
  padding: 0.2rem 0.5rem;
  border: 1px solid #e8e8e8;
}

.platform-note {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-bottom: 1rem;
}

.platform-actions {
  margin-top: auto;
}

/* --- Intro / Text Blocks --- */
.text-block {
  max-width: 780px;
  margin: 0 auto;
}

.text-block p {
  color: #333;
}

/* --- Footer Resource Images --- */
.footer-resources {
  padding: 2rem 1.25rem;
  background: #5a5252;
  border-top: 1px solid #e0e0e0;
}

.resource-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
}

.resource-grid img {
  width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.resource-grid img:hover {
  opacity: 0.9;
}

/* --- Main Footer --- */
.site-footer {
  background: #111;
  color: #bbb;
  padding: 3rem 1.25rem 1.5rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
}

.footer-block h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-block p {
  color: #999;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-block a {
  color: #bbb;
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-block a:hover {
  color: #fff;
}

.footer-disclosure {
  max-width: 1120px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.6;
  text-align: center;
}

.footer-bottom {
  max-width: 1120px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: #666;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #555;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 1rem;
  color: #555;
  font-size: 0.9rem;
}

.faq-answer.open {
  max-height: 500px;
}

/* --- Pre-footer --- */
.pre-footer {
  background: #1a1a1a;
  color: #bbb;
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.pre-footer p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.7;
}

.pre-footer strong {
  color: #fff;
}

/* --- CTA Block --- */
.cta-block {
  text-align: center;
  padding: 3rem 1.25rem;
  background: #fff;
  border-top: 1px solid #e8e8e8;
}

.cta-block h2 {
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* --- Legal Pages --- */
.legal-hero {
  background: #fff;
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid #e8e8e8;
}

.legal-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.legal-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h3 {
  margin-bottom: 0.75rem;
}

.legal-section p,
.legal-section li {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section ul li {
  margin-bottom: 0.3rem;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

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

/* --- Age Gate Popup --- */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.25rem;
}

.age-gate-overlay.hidden {
  display: none;
}

.age-gate-modal {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.age-gate-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.age-gate-modal p {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.age-gate-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 1rem 1.25rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.82rem;
  color: #555;
}

.cookie-banner a {
  color: #1a1a1a;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* --- Thank You --- */
.thank-you-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.thank-you-icon svg {
  width: 64px;
  height: 64px;
}

/* --- Page Header --- */
.page-header {
  background: #fff;
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}

.page-header p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* --- 404 / Empty states --- */
.page-empty {
  text-align: center;
  padding: 4rem 1.25rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .resource-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual svg {
    max-width: 220px;
  }

  .nav-list {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .criteria-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-step {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html { font-size: 15px; }

  .section { padding: 2rem 1rem; }
  .hero { padding: 2rem 1rem; }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .age-gate-actions {
    flex-direction: column;
  }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Print --- */
@media print {
  .site-header { position: static; }
  .age-gate-overlay { display: none !important; }
  .cookie-banner { display: none !important; }
  .footer-resources { display: none; }
  .notice-strip { display: none; }
}
