/* ============================================================
   Siguranță pe două roți — Stylesheet
   Aesthetic: Moto-editorial / Bold Impact
   ============================================================ */

/* --- 1. Custom Properties --- */
:root {
  --yellow: #F7C709;
  --yellow-dark: #d4a907;
  --blue: #0188CD;
  --blue-dark: #016fa6;
  --magenta: #D9005C;
  --black: #000000;
  --dark: #323231;
  --white: #FFFFFF;
  --light: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-400: #9E9E9E;

  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
  --container-max: 1200px;
  --container-pad: 24px;
  --section-pad: 100px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --shadow-nav: 0 2px 20px rgba(0,0,0,.08);

  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--magenta); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--yellow); color: var(--black); }
.hero ::selection, .hero::selection { background: var(--black); color: var(--yellow); }

/* --- 3. Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1, h2 { text-transform: uppercase; }

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { max-width: 70ch; }

.section-label {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 48px;
}

/* --- 4. Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--light);
}

/* --- 5. Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--white);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow .3s var(--ease-out), background .3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-nav);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.navbar-brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
  letter-spacing: .01em;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width .3s var(--ease-out);
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 8px 22px !important;
  border-radius: 60px;
  font-weight: 700 !important;
  transition: background .2s, transform .2s var(--ease-spring) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --- 6. Hero --- */
.hero {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 0;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding-bottom: 80px;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--dark);
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 28px;
  opacity: .9;
  line-height: 1.75;
}

.hero-motto {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 28px;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
  border-left: 5px solid var(--black);
}

.hero-motto-sub {
  display: block;
  font-weight: 400;
  font-size: .55em;
  margin-bottom: 4px;
  letter-spacing: .02em;
}

.hero-context {
  font-size: .97rem;
  color: var(--dark);
  margin-bottom: 32px;
  opacity: .85;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: 60px;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  color: var(--white);
}

.hero-cta svg {
  width: 18px; height: 18px;
  transition: transform .3s var(--ease-out);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  opacity: .15;
  z-index: 0;
}

/* Geometric decoration */
.hero-decor {
  position: absolute;
  top: 50%;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 3px solid rgba(0,0,0,.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* --- 7. Obiective --- */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.objective-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.objective-card img {
  width: 100%;
  height: auto;
  max-width: 180px;
  margin: 0 auto 24px;
  border-radius: var(--radius-sm);
}

.objective-card h3 {
  margin-bottom: 14px;
  color: var(--black);
}

.objective-card p {
  font-size: .94rem;
  color: var(--dark);
  opacity: .8;
  line-height: 1.75;
}

/* --- 8. Audienta --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.audience-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  transition: transform .4s var(--ease-out), background .3s;
}

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

.audience-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 24px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.audience-card h3 {
  margin-bottom: 12px;
  color: var(--black);
}

.audience-card p {
  font-size: .9rem;
  color: var(--dark);
  opacity: .8;
  line-height: 1.7;
  margin: 0 auto;
}

/* --- 9. Parteneri --- */
.partners-tiers-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.partners-tiers-grid > :nth-child(1) { grid-column: 2 / 12; }
.partners-tiers-grid > :nth-child(2) { grid-column: 2 / 6; }
.partners-tiers-grid > :nth-child(3) { grid-column: 6 / 9; }
.partners-tiers-grid > :nth-child(4) { grid-column: 9 / 12; }
.partners-tiers-grid > :nth-child(5) { grid-column: 2 / 12; }

.partners-tier {
  margin-bottom: 0;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
}

.partners-tier:last-child { margin-bottom: 0; }

.partners-tier-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.partners-tier-label::before,
.partners-tier-label::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gray-200);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  filter: grayscale(40%);
  opacity: .8;
  transition: filter .3s, opacity .3s, transform .3s var(--ease-out);
}

.partner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--dark);
  text-align: center;
  line-height: 1.35;
  margin-bottom: 10px;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.partner-logo img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.partner-logo--lg img { height: 80px; max-width: 200px; }
.partner-logo--xl img { height: 70px; max-width: 220px; }
.partner-logo--sm img { height: 50px; max-width: 130px; }

/* --- 10. Evenimente / Timeline --- */
.timeline {
  position: relative;
  padding-left: 60px;
  max-width: 800px;
}

/* Road line */
.timeline::before {
  content: '';
  position: absolute;
  left: 23px; top: 0; bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gray-200) 0px,
    var(--gray-200) 16px,
    transparent 16px,
    transparent 28px
  );
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -60px; top: 2px;
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  color: var(--black);
  box-shadow: 0 0 0 6px var(--white), var(--shadow-sm);
  z-index: 1;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px var(--white), var(--shadow-md);
}

.timeline-content h3 {
  margin-bottom: 4px;
}

.timeline-date {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--blue);
  margin-bottom: 10px;
  display: inline-block;
}

.timeline-content p {
  font-size: .93rem;
  color: var(--dark);
  opacity: .8;
  line-height: 1.75;
}

.timeline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  transition: color .2s;
}

.timeline-link svg {
  fill: currentColor;
  flex-shrink: 0;
}

.timeline-link:hover {
  color: var(--magenta);
}

/* --- 10b. Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  border: 1px solid var(--gray-200);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: var(--black);
}

.contact-card > a {
  font-size: .92rem;
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  transition: background .3s, transform .3s var(--ease-spring);
}

.contact-social a:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.contact-social svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-social a:hover svg {
  stroke: var(--black);
}

/* --- 11. FAQ --- */
.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}

.faq-question:hover { color: var(--blue); }

.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease-out), background .3s;
}

.faq-chevron svg {
  width: 14px; height: 14px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--yellow);
}

.faq-item.active .faq-question { color: var(--blue); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out), padding .35s;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: .94rem;
  color: var(--dark);
  opacity: .8;
  line-height: 1.8;
}

/* --- 12. Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .03em;
}

.footer a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color .2s;
}

.footer a:hover { color: var(--yellow); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .3s, transform .3s var(--ease-spring);
}

.footer-social a:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.footer-social a:hover svg { stroke: var(--black); }

.footer-social svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,.7);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-hashtag {
  padding: 6px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--yellow);
  letter-spacing: .02em;
}

.footer-motto {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}

.footer-bottom a { font-size: .82rem; }

/* --- 13. Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(50,50,49,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
  border-top: 3px solid var(--yellow);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  line-height: 1.6;
  flex: 1;
}

.cookie-text strong { color: var(--white); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  transition: all .25s var(--ease-out);
}

.cookie-btn--accept {
  background: var(--yellow);
  color: var(--black);
}

.cookie-btn--accept:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.2);
}

.cookie-btn--reject:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

.cookie-btn--customize {
  background: transparent;
  color: rgba(255,255,255,.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 10px 12px;
}

.cookie-btn--customize:hover { color: var(--white); }

/* Customize panel */
.cookie-customize {
  max-width: var(--container-max);
  margin: 0 auto;
  display: none;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 16px;
}

.cookie-customize.visible { display: block; }

.cookie-options {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.cookie-option input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.cookie-option label { cursor: pointer; }
.cookie-option .locked { color: rgba(255,255,255,.4); font-size: .75rem; }

.cookie-btn--save {
  background: var(--blue);
  color: var(--white);
}

.cookie-btn--save:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* --- 14. Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .35s; }

/* Staggered card reveals */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: .1s; }
.stagger > .reveal:nth-child(3) { transition-delay: .2s; }
.stagger > .reveal:nth-child(4) { transition-delay: .3s; }

/* --- 15. Legal pages --- */
.legal-page {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 80px;
  min-height: calc(100vh - 200px);
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page .legal-updated {
  font-size: .88rem;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-page h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page p {
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: .94rem;
  line-height: 1.7;
}

/* --- 16. Responsive --- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-text { padding-bottom: 32px; }
  .hero-image { justify-content: center; }
  .hero-image img { max-width: 400px; }
  .hero-image::before { display: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --container-pad: 20px;
    --nav-height: 64px;
  }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--light);
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    border-bottom: none !important;
  }

  .contact-card { padding: 28px 20px; }

  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-height) + 24px); }
  .hero::after { height: 40px; }
  .hero-motto { font-size: 1.8rem; }

  .objectives-grid { grid-template-columns: 1fr; gap: 20px; }
  .objective-card { padding: 28px 24px; }

  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
  .audience-card { padding: 28px 16px; }

  .partners-tiers-grid { grid-template-columns: 1fr; }
  .partners-tiers-grid > * { grid-column: span 1 !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { flex-wrap: wrap; justify-content: center; }
  .cookie-options { flex-direction: column; gap: 16px; }

  .timeline { padding-left: 50px; }
  .timeline-marker { left: -50px; width: 38px; height: 38px; font-size: .82rem; }
  .timeline::before { left: 18px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-motto { font-size: 1.55rem; }
  .hero-cta { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .partners-grid { gap: 20px; }
  .partner-logo img { height: 44px; }
  .partner-logo--lg img { height: 56px; }
}

/* Mobile nav overlay backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s;
}

.nav-backdrop.visible {
  display: block;
  opacity: 1;
}
