/* ============================================================
   Classement Plus — Main Stylesheet
   High Contrast editorial palette
   ============================================================ */

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #111417;
  background-color: #F6F2E8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover,
a:focus-visible {
  color: #c94434;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: #111417;
}

/* --- Container --- */
.cp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
}

.cp-btn--primary {
  background-color: #F05A47;
  color: #FFFDF8;
  border-color: #F05A47;
}

.cp-btn--primary:hover,
.cp-btn--primary:focus-visible {
  background-color: #c94434;
  border-color: #c94434;
  color: #FFFDF8;
}

.cp-btn--secondary {
  background-color: transparent;
  color: #111417;
  border-color: rgba(17, 20, 23, 0.24);
}

.cp-btn--secondary:hover,
.cp-btn--secondary:focus-visible {
  border-color: #111417;
  background-color: rgba(17, 20, 23, 0.04);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.cp-topbar {
  background-color: #263038;
  color: #F6F2E8;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 8px 20px;
}

.cp-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cp-topbar__text {
  display: block;
}

.cp-topbar__link {
  color: #B9D83E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cp-topbar__link:hover {
  color: #d0ed5a;
}

/* ============================================================
   HEADER
   ============================================================ */
.cp-header {
  background-color: #FFFDF8;
  border-bottom: 1px solid rgba(17, 20, 23, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.cp-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.cp-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111417;
}

.cp-header__logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.cp-header__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111417;
  letter-spacing: -0.3px;
}

.cp-header__nav {
  display: flex;
  align-items: center;
}

.cp-header__nav-list {
  display: flex;
  gap: 4px;
}

.cp-header__nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #263038;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.cp-header__nav-link:hover {
  background-color: rgba(240, 90, 71, 0.08);
  color: #F05A47;
}

/* Burger */
.cp-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.cp-header__burger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #111417;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.cp-header__burger[aria-expanded="true"] .cp-header__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cp-header__burger[aria-expanded="true"] .cp-header__burger-bar:nth-child(2) {
  opacity: 0;
}

.cp-header__burger[aria-expanded="true"] .cp-header__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MAIN
   ============================================================ */
.cp-main {
  min-height: 60vh;
}

/* ============================================================
   HERO
   ============================================================ */
.cp-hero {
  padding: 80px 20px 60px;
  background-color: #F6F2E8;
  border-bottom: 1px solid rgba(17, 20, 23, 0.08);
}

.cp-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.cp-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #667078;
  margin-bottom: 20px;
  padding: 4px 12px;
  border: 1px solid rgba(17, 20, 23, 0.16);
  border-radius: 20px;
}

.cp-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #111417;
  margin-bottom: 24px;
  max-width: 720px;
}

.cp-hero__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #263038;
  margin-bottom: 32px;
  max-width: 680px;
}

.cp-hero__intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #667078;
  margin-bottom: 36px;
  max-width: 660px;
}

.cp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Narrative chips */
.cp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.cp-hero__chip {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8125rem;
  color: #667078;
  border: 1px solid rgba(17, 20, 23, 0.12);
  border-radius: 20px;
  background-color: #FFFDF8;
}

.cp-hero__chip--accent {
  border-color: #B9D83E;
  color: #263038;
}

/* ============================================================
   SECTION — Shared
   ============================================================ */
.cp-section {
  padding: 72px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cp-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #111417;
}

.cp-section__subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #667078;
  margin-bottom: 40px;
  max-width: 680px;
}

.cp-section__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #263038;
  margin-bottom: 20px;
  max-width: 750px;
}

.cp-section--wide {
  max-width: 100%;
  padding: 72px 20px;
}

.cp-section--dark {
  background-color: #111417;
  color: #F6F2E8;
}

.cp-section--dark .cp-section__title,
.cp-section--dark .cp-section__text {
  color: #F6F2E8;
}

.cp-section--dark .cp-section__subtitle {
  color: rgba(246, 242, 232, 0.7);
}

.cp-section--slate {
  background-color: #263038;
  color: #F6F2E8;
}

.cp-section--slate .cp-section__title,
.cp-section--slate .cp-section__text {
  color: #F6F2E8;
}

.cp-section--slate .cp-section__subtitle {
  color: rgba(246, 242, 232, 0.7);
}

/* ============================================================
   PLATFORM CARDS
   ============================================================ */
.cp-cards {
  scroll-margin-top: 80px;
}

.cp-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
  max-width: 720px;
}

.cp-card {
  background-color: #FFFDF8;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.cp-card:hover {
  box-shadow: 0 4px 20px rgba(17, 20, 23, 0.06);
}

.cp-card__image-wrapper {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.cp-card__image-wrapper--tint-coral {
  background-color: #FDE8E4;
}

.cp-card__image-wrapper--tint-lime {
  background-color: #E8F0C8;
}

.cp-card__image-wrapper--tint-taupe {
  background-color: #E2DED2;
}

.cp-card__image-wrapper--tint-slate {
  background-color: #D4D9DE;
}

.cp-card__image-wrapper--tint-rose {
  background-color: #F5E6E3;
}

.cp-card__image {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.cp-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111417;
}

.cp-card__summary {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #263038;
  margin-bottom: 16px;
  flex-grow: 1;
}

.cp-card__meta-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #667078;
  margin-bottom: 4px;
}

.cp-card__meta-value {
  font-size: 0.8125rem;
  color: #111417;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 20, 23, 0.08);
}

.cp-card__criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.cp-card__criterion {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: #667078;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 12px;
}

.cp-card__note {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #667078;
  margin-bottom: 20px;
  padding: 12px;
  background-color: #F6F2E8;
  border-radius: 8px;
}

.cp-card__actions {
  margin-top: auto;
}

.cp-card__btn {
  width: 100%;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.cp-timeline {
  counter-reset: tl-step;
}

.cp-timeline__item {
  counter-increment: tl-step;
  padding-left: 60px;
  position: relative;
  margin-bottom: 36px;
  max-width: 720px;
}

.cp-timeline__item::before {
  content: counter(tl-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #F05A47;
  color: #FFFDF8;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cp-timeline__item::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -40px;
  width: 2px;
  background-color: rgba(240, 90, 71, 0.25);
}

.cp-timeline__item:last-child::after {
  display: none;
}

.cp-timeline__item-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111417;
  margin-bottom: 8px;
}

.cp-timeline__item-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #263038;
}

/* ============================================================
   CRITERIA GRID
   ============================================================ */
.cp-criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.cp-criterion-panel {
  background-color: #FFFDF8;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 12px;
  padding: 24px;
}

.cp-criterion-panel__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111417;
  margin-bottom: 8px;
}

.cp-criterion-panel__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #263038;
}

/* ============================================================
   BANNER CTA
   ============================================================ */
.cp-banner {
  background-color: #111417;
  padding: 72px 20px;
  text-align: center;
}

.cp-banner__inner {
  max-width: 640px;
  margin: 0 auto;
}

.cp-banner__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #F6F2E8;
  margin-bottom: 16px;
}

.cp-banner__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(246, 242, 232, 0.75);
  margin-bottom: 28px;
}

.cp-banner__btn {
  background-color: #F05A47;
  color: #FFFDF8;
  border-color: #F05A47;
}

.cp-banner__btn:hover {
  background-color: #c94434;
  border-color: #c94434;
}

/* ============================================================
   RESPONSIBLE USE SECTION
   ============================================================ */
.cp-responsible {
  background-color: #111417;
  padding: 72px 20px;
}

.cp-responsible__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cp-responsible__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #F6F2E8;
  margin-bottom: 32px;
}

.cp-responsible__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.cp-responsible__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background-color: rgba(246, 242, 232, 0.06);
  border-radius: 10px;
  border-left: 3px solid #B9D83E;
}

.cp-responsible__item-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(246, 242, 232, 0.85);
}

.cp-responsible__actions {
  text-align: center;
}

/* ============================================================
   FAQ (Accordion)
   ============================================================ */
.cp-faq {
  max-width: 780px;
  margin: 0 auto;
}

.cp-faq__item {
  border-bottom: 1px solid rgba(17, 20, 23, 0.1);
}

.cp-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111417;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
}

.cp-faq__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: #667078;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.cp-faq__question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

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

.cp-faq__answer-inner {
  padding-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #263038;
}

.cp-faq__question:focus-visible {
  outline: 2px solid #F05A47;
  outline-offset: -2px;
  border-radius: 4px;
}

/* ============================================================
   CONTACT / CORRECTION
   ============================================================ */
.cp-contact-banner {
  background-color: #263038;
  padding: 60px 20px;
  text-align: center;
}

.cp-contact-banner__inner {
  max-width: 640px;
  margin: 0 auto;
}

.cp-contact-banner__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F6F2E8;
  margin-bottom: 12px;
}

.cp-contact-banner__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(246, 242, 232, 0.75);
  margin-bottom: 24px;
}

/* ============================================================
   PRE-FOOTER
   ============================================================ */
.cp-pre-footer {
  background-color: #F6F2E8;
  border-top: 1px solid rgba(17, 20, 23, 0.1);
  padding: 56px 20px;
}

.cp-pre-footer__inner {
  max-width: 800px;
  margin: 0 auto;
}

.cp-pre-footer__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #263038;
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.cp-footer {
  background-color: #111417;
  color: rgba(246, 242, 232, 0.8);
  font-size: 0.875rem;
}

.cp-footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 32px;
}

.cp-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 500px;
}

.cp-footer__logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 4px;
}

.cp-footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(246, 242, 232, 0.65);
}

.cp-footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.cp-footer__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(246, 242, 232, 0.5);
  margin-bottom: 16px;
}

.cp-footer__list li {
  margin-bottom: 8px;
}

.cp-footer__link {
  color: rgba(246, 242, 232, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.cp-footer__link:hover {
  color: #F05A47;
}

.cp-footer__text {
  font-size: 0.875rem;
  color: rgba(246, 242, 232, 0.6);
}

/* Resources */
.cp-footer__resources {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 40px;
  border-top: 1px solid rgba(246, 242, 232, 0.1);
}

.cp-footer__resources-title {
  font-size: 1rem;
  font-weight: 600;
  color: #F6F2E8;
  margin-bottom: 24px;
  text-align: center;
}

.cp-footer__resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.cp-footer__resource,
.cp-footer__resource-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-footer__resource-img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.cp-footer__resource-link:hover .cp-footer__resource-img {
  opacity: 1;
}

/* Footer bottom */
.cp-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  border-top: 1px solid rgba(246, 242, 232, 0.08);
  text-align: center;
}

.cp-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(246, 242, 232, 0.5);
  margin-bottom: 12px;
}

.cp-footer__disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(246, 242, 232, 0.4);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   AGE POPUP
   ============================================================ */
.cp-age-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cp-age-popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 20, 23, 0.7);
}

.cp-age-popup__content {
  position: relative;
  background-color: #FFFDF8;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.cp-age-popup__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #F05A47;
  color: #FFFDF8;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}

.cp-age-popup__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #263038;
  margin-bottom: 28px;
}

.cp-age-popup__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cp-age-popup[hidden] {
  display: none;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #263038;
  padding: 16px 20px;
  display: none;
}

.cp-cookie-banner.is-visible {
  display: block;
}

.cp-cookie-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cp-cookie-banner__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(246, 242, 232, 0.85);
  flex: 1;
  min-width: 240px;
}

.cp-cookie-banner__link {
  color: #B9D83E;
}

.cp-cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cp-cookie-banner__btn {
  padding: 8px 20px;
  font-size: 0.8125rem;
}



/* ============================================================
   INTERNAL PAGE STYLES
   ============================================================ */
.cp-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.cp-page-content h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 32px;
  color: #111417;
}

.cp-page-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #111417;
}

.cp-page-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #111417;
}

.cp-page-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #263038;
  margin-bottom: 20px;
}

.cp-page-content ul,
.cp-page-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.cp-page-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #263038;
  margin-bottom: 8px;
}

.cp-page-content ul li {
  list-style: disc;
}

.cp-page-content ol li {
  list-style: decimal;
}

/* Contact form */
.cp-form {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.cp-form__group {
  display: grid;
  gap: 6px;
}

.cp-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111417;
}

.cp-form__input,
.cp-form__textarea {
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid rgba(17, 20, 23, 0.2);
  border-radius: 10px;
  background-color: #FFFDF8;
  color: #111417;
  transition: border-color 0.2s;
}

.cp-form__input:focus,
.cp-form__textarea:focus {
  outline: none;
  border-color: #F05A47;
}

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

.cp-form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cp-form__checkbox {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #F05A47;
}

.cp-form__checkbox-label {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #667078;
}

/* Thank-you page */
.cp-thankyou {
  text-align: center;
  padding: 80px 20px;
}

.cp-thankyou__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cp-thankyou__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cp-thankyou__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #667078;
  margin-bottom: 32px;
}

.cp-thankyou__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   FAQ on internal pages
   ============================================================ */
.cp-faq-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}

.cp-faq-page h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .cp-footer__main {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .cp-header__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFDF8;
    z-index: 99;
    flex-direction: column;
    padding: 32px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .cp-header__nav.is-open {
    transform: translateX(0);
  }

  .cp-header__nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .cp-header__nav-link {
    font-size: 1.125rem;
    padding: 14px 16px;
  }

  .cp-header__burger {
    display: flex;
  }

  .cp-cards__grid {
    gap: 20px;
  }

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

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

  .cp-responsible__grid {
    grid-template-columns: 1fr;
  }

  .cp-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cp-hero {
    padding: 48px 20px 40px;
  }

  .cp-section {
    padding: 48px 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cp-cards__grid {
    gap: 16px;
  }

  .cp-footer__main {
    grid-template-columns: 1fr;
  }

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

  .cp-hero__actions {
    flex-direction: column;
  }

  .cp-hero__actions .cp-btn {
    width: 100%;
  }

  .cp-age-popup__content {
    padding: 28px 20px;
  }

  .cp-timeline__item {
    padding-left: 48px;
  }

  .cp-timeline__item::before {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .cp-timeline__item::after {
    left: 15px;
  }

  .cp-banner {
    padding: 48px 20px;
  }

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

  .cp-responsible {
    padding: 48px 20px;
  }
}

/* Prevent body scroll when mobile menu is open / popup is open */
body.cp-nav-open {
  overflow: hidden;
}

body.cp-popup-open {
  overflow: hidden;
}
