/* ============================================================
   Price Pulse — global styles
   Palette: warm coral + cream + deep navy + soft accents
   ============================================================ */

:root {
  --bg:        #FFF8F3;
  --bg-soft:   #FFEFE3;
  --bg-warm:   #FFE3D1;
  --ink:       #1B1F2A;
  --ink-soft:  #4B5161;
  --ink-mute:  #8A8F9C;
  --line:      #F1E3D4;
  --line-soft: #F7ECDF;
  --card:      #FFFFFF;

  --coral:     #FF6B4A;
  --coral-dk:  #E84F2C;
  --coral-lt:  #FFE0D4;
  --gold:      #F5A623;
  --pink:      #FF4D6D;
  --navy:      #1B1F2A;

  --grad-coral: linear-gradient(135deg, #FF8A5C 0%, #FF4D6D 100%);
  --grad-warm:  linear-gradient(180deg, #FFF8F3 0%, #FFE9D8 100%);

  --shadow-sm: 0 1px 2px rgba(27,31,42,.06), 0 1px 1px rgba(27,31,42,.04);
  --shadow-md: 0 8px 24px -8px rgba(232,79,44,.18), 0 2px 6px rgba(27,31,42,.06);
  --shadow-lg: 0 24px 60px -20px rgba(232,79,44,.28), 0 8px 18px rgba(27,31,42,.08);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

em { font-style: normal; }

h1, h2, h3, h4, h5 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }
p  { margin: 0; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral-dk);
  background: var(--coral-lt);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: .92rem; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-coral);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--bg-warm); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255,248,243,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.logo-mark { width: 34px; height: 34px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.logo-text { font-size: 1.18rem; letter-spacing: -.02em; color: var(--ink); }
.logo-text em { font-family: var(--font-serif); font-weight: 400; font-size: 1.28rem; color: var(--coral-dk); margin-left: 2px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: .96rem; font-weight: 500; color: var(--ink-soft); transition: color .15s ease; }
.nav a:hover { color: var(--ink); }
.nav .btn { color: #fff; }

@media (max-width: 760px) {
  .nav a:not(.btn) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px) clamp(48px, 7vw, 80px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 60% at 12% 10%, #FFD7BD 0%, transparent 60%),
    radial-gradient(50% 60% at 92% 8%, #FFC9D1 0%, transparent 55%),
    radial-gradient(80% 80% at 50% 110%, #FFE9D8 0%, transparent 70%),
    var(--bg);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-soft);
  font-size: .88rem; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255,107,74,.5);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,74,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,107,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,74,0); }
}

.hero-title { color: var(--navy); }
.hero-title em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  background: var(--grad-coral);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 22px; font-size: 1.12rem; color: var(--ink-soft); max-width: 600px;
}
.hero-cta {
  display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap;
}

.hero-proof {
  display: flex; align-items: center; gap: 14px;
  margin-top: 38px;
}
.hero-proof p { font-size: .92rem; color: var(--ink-soft); }
.hero-proof strong { color: var(--ink); }
.avatars { display: flex; }
.avatar {
  display: inline-block;
  width: 32px; height: 32px; border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -10px;
  background: var(--coral-lt);
}
.avatars .avatar:first-child { margin-left: 0; }
.avatar.a1 { background: linear-gradient(135deg,#FFB199,#FF6B4A); }
.avatar.a2 { background: linear-gradient(135deg,#FFE3A6,#F5A623); }
.avatar.a3 { background: linear-gradient(135deg,#C8B6FF,#7C5BFF); }
.avatar.a4 { background: linear-gradient(135deg,#A6E8C9,#22B07D); }

/* Hero card stack */
.hero-card-stack {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  top: 50%;
  transform: translateY(-46%);
  width: min(360px, 32vw);
  z-index: 1;
  pointer-events: none;
}
.deal-card {
  position: absolute;
  width: 100%;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.deal-card--1 { top: 0;   transform: rotate(-3deg); z-index: 3; }
.deal-card--2 { top: 100px; right: -40px; transform: rotate(4deg); z-index: 2; opacity: .96; }
.deal-card--3 { top: 200px; left: -30px; transform: rotate(-5deg); z-index: 1; opacity: .85; }
.deal-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.deal-tag {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  color: #fff;
  background: var(--grad-coral);
  padding: 4px 10px; border-radius: 100px;
}
.deal-brand { font-size: .82rem; font-weight: 600; color: var(--ink-mute); }
.deal-title { font-size: .98rem; font-weight: 600; color: var(--ink); margin: 4px 0 10px; }
.deal-prices { display: flex; align-items: baseline; gap: 10px; }
.deal-price-old { color: var(--ink-mute); text-decoration: line-through; font-size: .9rem; }
.deal-price-new { color: var(--coral-dk); font-weight: 800; font-size: 1.22rem; letter-spacing: -.01em; }
.deal-pulse {
  display: flex; align-items: center; gap: 4px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.deal-pulse span {
  flex: 1; height: 3px; border-radius: 2px;
  background: var(--coral-lt);
}
.deal-pulse span:nth-child(2) { background: var(--coral); animation: pulseBar 1.4s ease-in-out infinite; }
@keyframes pulseBar {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%     { opacity: .6; transform: scaleY(1.8); }
}

@media (max-width: 1080px) {
  .hero-card-stack { display: none; }
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { color: var(--navy); }

/* ---------- How it works ---------- */
.how { padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 64px); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.how-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.how-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  background: var(--grad-coral);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  line-height: 1;
}
.how-card h3 { color: var(--navy); margin-bottom: 8px; }

/* ---------- Categories ---------- */
.categories {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--c);
  opacity: 0; transition: opacity .25s ease;
}
.cat-card > * { position: relative; z-index: 1; transition: color .25s ease; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card:hover::before { opacity: .08; }
.cat-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c) 14%, white);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.cat-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.cat-card p { font-size: .88rem; color: var(--ink-mute); }

/* ---------- Brand marquee ---------- */
.brands { padding: clamp(56px, 8vw, 110px) 0; overflow: hidden; }
.brands .section-head { padding: 0 clamp(20px, 5vw, 64px); }
.brand-marquee { display: flex; flex-direction: column; gap: 18px; }
.brand-row {
  display: flex; gap: 14px;
  animation: scroll-x 38s linear infinite;
  width: max-content;
}
.brand-row--reverse { animation-direction: reverse; }
.brand-row span {
  display: inline-flex; align-items: center;
  padding: 14px 26px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
@keyframes scroll-x {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Testimonials ---------- */
.testimonials { padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 64px); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px; margin: 0 auto;
}
.testi {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 0;
  position: relative;
}
.testi::before {
  content: "“";
  position: absolute;
  top: 0; left: 22px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--coral-lt);
}
.testi p { font-size: 1.05rem; color: var(--ink); position: relative; z-index: 1; }
.testi footer { margin-top: 18px; font-size: .92rem; color: var(--ink-mute); }
.testi footer strong { color: var(--ink); }

/* ---------- Final CTA ---------- */
.cta-final { padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 64px); }
.cta-inner {
  max-width: 880px; margin: 0 auto;
  background: var(--grad-coral);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before, .cta-inner::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.cta-inner::before { width: 240px; height: 240px; top: -80px; right: -60px; }
.cta-inner::after  { width: 180px; height: 180px; bottom: -60px; left: -40px; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.9); margin: 14px 0 30px; font-size: 1.05rem; }
.cta-inner .btn-primary {
  background: #fff; color: var(--coral-dk);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.25);
}
.cta-inner .btn-primary:hover { background: var(--bg); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 60px clamp(20px, 5vw, 64px) 28px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px; margin: 0 auto 36px;
}
.footer-brand p { margin-top: 12px; color: var(--ink-mute); font-size: .92rem; max-width: 260px; }
.footer-cols h5 { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer-cols a {
  display: block;
  color: var(--ink-soft); font-size: .94rem;
  padding: 5px 0;
  transition: color .15s ease;
}
.footer-cols a:hover { color: var(--coral-dk); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  font-size: .88rem;
  color: var(--ink-mute);
  text-align: center;
}

@media (max-width: 760px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

.site-footer--slim {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px clamp(20px, 5vw, 64px);
  font-size: .9rem; color: var(--ink-mute);
}
.site-footer--slim a { color: var(--ink-soft); }
.site-footer--slim a:hover { color: var(--coral-dk); }

/* ============================================================
   SIGNUP PAGE
   ============================================================ */

.page-signup { background: var(--bg); }

.signup-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}

@media (max-width: 940px) {
  .signup-main { grid-template-columns: 1fr; }
}

.signup-left {
  background:
    radial-gradient(80% 80% at 0% 0%, #FFD7BD 0%, transparent 55%),
    radial-gradient(80% 80% at 100% 100%, #FFC9D1 0%, transparent 60%),
    var(--bg-soft);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
  display: flex; align-items: center;
}
.signup-left-inner { max-width: 480px; }
.signup-left h1 { color: var(--navy); margin-bottom: 18px; font-size: clamp(2.1rem, 4vw, 3rem); }
.signup-left h1 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  background: var(--grad-coral);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.signup-lede { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 28px; }

.signup-bullets { list-style: none; padding: 0; margin: 0 0 36px; }
.signup-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  color: var(--ink);
  font-size: .98rem;
}
.signup-bullets em { color: var(--coral-dk); font-style: italic; font-family: var(--font-serif); font-size: 1.02em; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-coral);
  color: #fff; font-size: .78rem; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

.signup-quote {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.signup-quote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.4;
}
.signup-quote footer {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  font-size: .9rem;
  color: var(--ink-mute);
}
.signup-quote footer strong { color: var(--ink); }
.signup-quote footer .avatar { margin-left: 0; }

/* Signup right / form */
.signup-right {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px);
  display: flex; align-items: center; justify-content: center;
}
.signup-card {
  width: 100%; max-width: 480px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.signup-card h2 { color: var(--navy); margin-bottom: 6px; font-size: 1.7rem; }
.signup-card-sub { color: var(--ink-mute); margin-bottom: 24px; font-size: .96rem; }

.form-row { margin-bottom: 16px; }
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0;
}

.field { display: block; margin-bottom: 16px; }
.field > span,
.field-group legend {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field .optional { color: var(--ink-mute); font-weight: 400; font-style: italic; font-family: var(--font-serif); }

.field input[type="text"],
.field input[type="email"],
.field input[type="password"] {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--ink-mute); }
.field input:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,74,.12);
}

.field-group { border: none; padding: 0; margin: 0 0 20px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 9px 14px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: var(--bg);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .15s ease;
}
.chip:hover span { border-color: var(--coral-lt); background: #fff; }
.chip input:checked + span {
  background: var(--coral-lt);
  border-color: var(--coral);
  color: var(--coral-dk);
}

.field-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--ink-soft);
  margin: 4px 0 22px;
  cursor: pointer;
}
.field-check input { margin-top: 3px; accent-color: var(--coral); flex-shrink: 0; }
.field-check a { color: var(--coral-dk); text-decoration: underline; }

.signup-foot {
  text-align: center;
  margin-top: 18px;
  font-size: .92rem;
  color: var(--ink-mute);
}
.signup-foot a { color: var(--coral-dk); font-weight: 600; }
.signup-foot a:hover { text-decoration: underline; }

/* Success state */
.signup-success {
  width: 100%; max-width: 480px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 48px clamp(28px,4vw,40px);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.signup-success .success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--coral-lt);
  color: var(--coral-dk);
  margin-bottom: 22px;
}
.signup-success h2 { color: var(--navy); margin-bottom: 10px; }
.signup-success p { margin-bottom: 26px; }

/* ============================================================
   LEGAL PAGES (mentions, confidentialité, CGU)
   ============================================================ */

.legal {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
  background:
    radial-gradient(60% 50% at 100% 0%, #FFD7BD 0%, transparent 55%),
    radial-gradient(50% 50% at 0% 100%, #FFC9D1 0%, transparent 60%),
    var(--bg);
}

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}

.legal h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.legal-lede {
  color: var(--ink-mute);
  font-size: .92rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}

.legal-intro {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 36px;
}

.legal section {
  margin-bottom: 36px;
}
.legal section:last-of-type { margin-bottom: 0; }

.legal h2 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 14px;
  letter-spacing: -.015em;
}

.legal p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal p:last-child { margin-bottom: 0; }

.legal a {
  color: var(--coral-dk);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
.legal a:hover { color: var(--pink); }

.legal-list {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--ink-soft);
}
.legal-list li {
  padding: 5px 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: .94rem;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.legal-table th {
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-soft);
}
.legal-table td { color: var(--ink-soft); }

.legal-note {
  background: var(--bg-soft);
  border-left: 3px solid var(--coral);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: .95rem;
  color: var(--ink);
  margin-top: 8px;
}

.legal-foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: .94rem;
  color: var(--ink-mute);
}

/* ============================================================
   PARTNERS PAGE (extra components)
   ============================================================ */

.hero--partners { padding-bottom: clamp(40px, 6vw, 70px); }
.hero-inner--wide { max-width: 820px; }

/* KPIs strip */
.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.kpi {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.kpi-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  background: var(--grad-coral);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}
.kpi-lbl {
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Audience grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.aud-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.aud-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.aud-card p {
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.aud-card strong { color: var(--coral-dk); font-weight: 700; }

/* Engagement list */
.commit-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: grid;
  gap: 12px;
}
.commit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}
.commit-list li strong { color: var(--ink); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(880px, calc(100% - 32px));
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  animation: cookieSlide .35s cubic-bezier(.2,.9,.3,1.1) both;
}
@keyframes cookieSlide {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.cookie-banner--hide {
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .25s ease;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1 1 320px;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cookie-banner-text strong { color: var(--ink); }
.cookie-banner-text a { color: var(--coral-dk); text-decoration: underline; }

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

@media (max-width: 540px) {
  .cookie-banner { bottom: 10px; padding: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}
