/* ==========================================================================
   Choix Référence — Main Stylesheet
   Color System: Soft Gradient #4 (lavender / sage / ink / cream)
   Skeleton: #2 Includes
   ========================================================================== */

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

:root {
  /* Colors */
  --ink: #1a1a2e;
  --ink-light: #3d3d56;
  --ink-muted: #6b6b82;
  --cream: #faf8f5;
  --cream-dark: #f0ece6;
  --lavender-light: #e8e2f0;
  --lavender: #d5cfe1;
  --lavender-mid: #b8aed0;
  --sage-light: #d4dfce;
  --sage: #b8c9b0;
  --sage-mid: #9db393;
  --warm-accent: #c9a88d;
  --warm-light: #e0cdbc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26,26,46,0.06);
  --shadow-md: 0 4px 16px rgba(26,26,46,0.08);
  --shadow-lg: 0 8px 32px rgba(26,26,46,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --max-width: 1200px;
  --content-width: 760px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--lavender-mid); }
p { margin-bottom: 1.2em; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.3; color: var(--ink); }
h1 { font-size: 2.4rem; margin-bottom: 0.6em; }
h2 { font-size: 1.8rem; margin-bottom: 0.5em; }
h3 { font-size: 1.3rem; margin-bottom: 0.4em; }
ul, ol { margin-bottom: 1.2em; padding-left: 1.5em; }
li { margin-bottom: 0.4em; }

/* --- Background --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--lavender-light) 40%, var(--sage-light) 70%, var(--cream) 100%);
  z-index: -2;
}

/* ==========================================================================
   Header
   ========================================================================== */
.cr-header {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(213,207,225,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.cr-header__top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  position: relative;
}

.cr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
}

.cr-logo { display: block; line-height: 0; }

.cr-logo__img { width: 200px; height: auto; }

/* --- Burger --- */
.cr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--lavender);
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  transition: background 0.2s;
}

.cr-burger:hover { background: var(--lavender-light); }

.cr-burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.cr-burger.is-active .cr-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cr-burger.is-active .cr-burger__line:nth-child(2) { opacity: 0; }
.cr-burger.is-active .cr-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Nav --- */
.cr-nav {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(213,207,225,0.2);
  padding: 0.6rem 1.5rem;
}

.cr-nav__list {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cr-nav__link {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.cr-nav__link:hover,
.cr-nav__link:focus {
  color: var(--ink);
  background: rgba(213,207,225,0.3);
}

/* --- Category Pills --- */
.cr-pills {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem 0.8rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-top: 1px solid rgba(213,207,225,0.15);
}

.cr-pills::-webkit-scrollbar { display: none; }

.cr-pill {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--lavender);
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
}

.cr-pill:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--lavender-mid);
}

/* ==========================================================================
   Hero #7 — Category Showcase
   ========================================================================== */
.cr-hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cr-hero__h1 {
  font-size: 2.2rem;
  max-width: 860px;
  margin: 0 auto 0.8em;
}

.cr-hero__lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cr-hero__tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.cr-hero__tile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--lavender);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: all 0.2s;
}

.cr-hero__tile-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--lavender-mid);
}

.cr-hero__tile:hover {
  background: var(--white);
  border-color: var(--lavender-mid);
  color: var(--ink);
}

.cr-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.cr-btn:hover {
  background: var(--ink-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cr-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--lavender);
}

.cr-btn--outline:hover {
  background: rgba(255,255,255,0.8);
  border-color: var(--lavender-mid);
  color: var(--ink);
}

.cr-btn--small {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   Section Layout
   ========================================================================== */
.cr-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.cr-section--narrow {
  max-width: var(--content-width);
}

.cr-section__title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cr-section__subtitle {
  text-align: center;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.cr-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender-mid), var(--sage));
  border-radius: 3px;
  margin: 0.5rem auto 1.5rem;
}

/* ==========================================================================
   Platform Cards
   ========================================================================== */
.cr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.cr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(213,207,225,0.25);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.cr-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cr-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 600px;
  justify-self: center;
}

.cr-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 0.5rem;
  text-align: center;
}

.cr-card__logo {
  width: 128px;
  height: 128px;
  border-radius: var(--radius-md);
  object-fit: contain;
  padding: 0.6rem;
}

.cr-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.cr-card__meta {
  font-size: 0.78rem;
  color: var(--ink-muted);
  padding: 0 1.5rem 0.5rem;
  font-style: italic;
  border-bottom: 1px solid rgba(213,207,225,0.2);
}

.cr-card__body {
  padding: 1rem 1.5rem;
  flex: 1;
}

.cr-card__summary {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-light);
  margin-bottom: 1.2rem;
}

.cr-card__criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.cr-card__criterion {
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  background: var(--lavender-light);
  color: var(--ink-muted);
  border-radius: 50px;
  font-weight: 500;
}

.cr-card__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-style: italic;
  padding: 0.8rem 1rem;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.cr-card__actions {
  padding: 0 1.5rem 1.5rem;
}

.cr-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.25s;
  text-decoration: none;
}

.cr-card__cta:hover {
  background: var(--ink-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* ==========================================================================
   Editorial Content
   ========================================================================== */
.cr-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.cr-content p, .cr-content li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-light);
}

.cr-content h2 {
  margin-top: 2rem;
}

.cr-content h3 {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.cr-content__intro {
  font-size: 1.1rem;
  color: var(--ink-muted);
  border-left: 3px solid var(--lavender-mid);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Criteria Cards (on homepage)
   ========================================================================== */
.cr-criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cr-criterion-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(213,207,225,0.25);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.cr-criterion-card:hover { box-shadow: var(--shadow-md); }

.cr-criterion-card__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.cr-criterion-card__text {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.cr-faq {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cr-faq__item {
  border-bottom: 1px solid rgba(213,207,225,0.3);
  padding: 1rem 0;
}

.cr-faq__q {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
}

.cr-faq__q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--lavender-mid);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.cr-faq__item.is-open .cr-faq__q::after {
  content: '−';
}

.cr-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cr-faq__item.is-open .cr-faq__a {
  max-height: 500px;
  padding: 0.5rem 0 1rem;
}

/* ==========================================================================
   Disclaimer / Transparency
   ========================================================================== */
.cr-disclaimer {
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--warm-light);
  max-width: var(--content-width);
  margin: 2rem auto;
}

.cr-disclaimer__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

/* ==========================================================================
   Pre-footer / Responsible Block
   ========================================================================== */
.cr-responsible-block {
  background: linear-gradient(135deg, rgba(181,201,176,0.15), rgba(213,207,225,0.15));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto 2rem;
}

.cr-responsible-block__text {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==========================================================================
   CTA Block (Contact)
   ========================================================================== */
.cr-cta-block {
  text-align: center;
  padding: 3rem 1.5rem;
  background: rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  max-width: var(--content-width);
  margin: 2rem auto;
  border: 1px solid rgba(213,207,225,0.3);
}

.cr-cta-block__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cr-cta-block__text {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.cr-footer {
  background: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(213,207,225,0.3);
  padding: 3rem 1.5rem 2rem;
  margin-top: 3rem;
}

.cr-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cr-footer__brand {
  text-align: center;
  margin-bottom: 2rem;
}

.cr-footer__logo { margin: 0 auto 0.8rem; }

.cr-footer__tagline {
  font-size: 0.9rem;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 auto;
}

.cr-footer__resources {
  margin-bottom: 2rem;
}

.cr-footer__resources-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.cr-footer__resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.cr-footer__resource {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f99500;
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  border: 1px solid rgba(213,207,225,0.2);
  transition: all 0.2s;
  min-height: 70px;
}

.cr-footer__resource:hover {
  border-color: var(--lavender);
}

.cr-footer__resource a {
  display: block;
  line-height: 0;
}

.cr-footer__resource-img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
}

.cr-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
}

.cr-footer__link {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.cr-footer__link:hover { color: var(--ink); }

.cr-footer__responsible {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.cr-footer__responsible p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-style: italic;
}

.cr-footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(213,207,225,0.2);
  padding-top: 1.5rem;
}

.cr-footer__copy {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.cr-footer__disclaimer {
  font-size: 0.78rem;
  color: var(--ink-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   Legal / Inner Pages
   ========================================================================== */
.cr-page-hero {
  text-align: center;
  padding: 3rem 1.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cr-page-hero__h1 {
  font-size: 2rem;
}

.cr-page-hero__lead {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0.5rem auto 0;
}

.cr-summary-box {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.cr-summary-box__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.cr-form {
  max-width: 600px;
  margin: 0 auto;
}

.cr-form__group {
  margin-bottom: 1.2rem;
}

.cr-form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.cr-form__input,
.cr-form__textarea,
.cr-form__select {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1.5px solid var(--lavender);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
}

.cr-form__input:focus,
.cr-form__textarea:focus {
  outline: none;
  border-color: var(--lavender-mid);
}

.cr-form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* ==========================================================================
   Age Gate Popup
   ========================================================================== */
.cr-agegate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,46,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cr-agegate.is-visible {
  opacity: 1;
  visibility: visible;
}

.cr-agegate__modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cr-agegate__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cr-agegate__text {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cr-agegate__actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cr-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--lavender);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -4px 16px rgba(26,26,46,0.08);
  display: none;
}

.cr-cookie.is-visible {
  display: block;
}

.cr-cookie__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cr-cookie__text {
  font-size: 0.88rem;
  color: var(--ink-muted);
  flex: 1;
  min-width: 240px;
  margin: 0;
}

.cr-cookie__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cr-btn--sm {
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
}

.cr-btn--ghost {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid var(--lavender);
}

.cr-btn--ghost:hover {
  background: var(--lavender-light);
  color: var(--ink);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .cr-hero__h1 { font-size: 1.9rem; }
  .cr-cards { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}

/* Mobile large */
@media (max-width: 768px) {
  .cr-header {
    position: static;
  }

  .cr-header__top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(213,207,225,0.3);
    box-shadow: var(--shadow-sm);
  }

  body {
    padding-top: 72px;
  }

  .cr-burger { display: flex; }

  .cr-nav {
    display: none;
    border-top: none;
    padding: 0;
  }

  .cr-nav.is-open {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(213,207,225,0.3);
    box-shadow: var(--shadow-md);
    z-index: 99;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .cr-nav__list {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  .cr-nav__link {
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(213,207,225,0.1);
  }

  .cr-pills {
    justify-content: flex-start;
    padding: 0.6rem 1rem;
    gap: 0.4rem;
  }

  .cr-hero { padding: 2.5rem 1.2rem 2rem; }
  .cr-hero__h1 { font-size: 1.5rem; }
  .cr-hero__lead { font-size: 0.95rem; }
  .cr-hero__tile { font-size: 0.82rem; padding: 0.5rem 1rem; }

  .cr-cards {
    grid-template-columns: 1fr;
    padding: 0 1.2rem 2rem;
    gap: 1rem;
  }

  .cr-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .cr-section { padding: 2rem 1.2rem; }
  .cr-criteria-grid { grid-template-columns: 1fr; }
  .cr-footer__resources-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-page-hero__h1 { font-size: 1.6rem; }
  .cr-content { padding: 1.5rem 1.2rem 2rem; }
}

/* Mobile small */
@media (max-width: 430px) {
  .cr-hero__h1 { font-size: 1.3rem; }
  .cr-hero__actions { flex-direction: column; align-items: center; }
  .cr-footer__resources-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .cr-footer__resource-img { max-height: 35px; }
  .cr-agegate__modal { padding: 1.8rem; }
  .cr-cookie__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 360px) {
  .cr-hero__h1 { font-size: 1.15rem; }
  .cr-card__header { flex-direction: column; text-align: center; }
  .cr-card__logo { width: 96px; height: 96px; }
}

/* Prevent horizontal scroll */
body, html { overflow-x: hidden; }
