/* ============================================
   CoCo Dakar 2026 — Formulaire de Satisfaction
   Mobile-first · Ultra Premium
   ============================================ */

/* ── DESIGN TOKENS ── */
:root {
  --gold:         #c8a96e;
  --gold-dark:    #a8894e;
  --gold-light:   #e8c98e;
  --navy:         #1a2744;
  --navy-light:   #253561;
  --navy-deep:    #111b33;
  --green:        #2d7a4f;
  --green-light:  #38a169;
  --red:          #c0392b;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-300:     #d1d5db;
  --gray-400:     #9ca3af;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-800:     #1f2937;
  --white:        #ffffff;
  --shadow-xs:    0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:    0 1px 4px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-gold:  0 4px 20px rgba(200,169,110,.35);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-xs:    8px;
  --transition:   .22s cubic-bezier(.4,0,.2,1);

  /* iPhone safe areas */
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

/* Bannière photo — pleine largeur, pas de recadrage */
.hero-banner {
  width: 100%;
  line-height: 0;
  position: relative;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}

/* Overlay subtil sous la bannière */
.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--navy-deep));
  pointer-events: none;
}

/* Contenu hero */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 1rem 1.25rem 1.75rem;
}

/* Logos */
.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25), 0 0 0 2px rgba(200,169,110,.3);
  flex-shrink: 0;
}
.hero-logo-leo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25), 0 0 0 2px rgba(200,169,110,.3);
  flex-shrink: 0;
}
.hero-logo-coco {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.4));
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(1.45rem, 5.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .45rem;
  letter-spacing: -.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.hero-sub {
  font-size: clamp(.82rem, 3vw, 1rem);
  color: rgba(255,255,255,.82);
  font-weight: 500;
  margin-bottom: .35rem;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  color: var(--gold-light);
  font-weight: 600;
  background: rgba(200,169,110,.12);
  padding: .28rem .75rem;
  border-radius: 50px;
  border: 1px solid rgba(200,169,110,.25);
}
.hero-location i { font-size: .75rem; }

/* ══════════════════════════════════════════
   INTRO BAND
══════════════════════════════════════════ */
.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: .85rem 1.25rem;
  text-align: center;
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.intro-band i { color: var(--gold); margin-right: .35rem; }

/* ══════════════════════════════════════════
   PROGRESS BAR (sticky)
══════════════════════════════════════════ */
.progress-wrapper {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding: .65rem 1.25rem;
  padding-top: calc(.65rem + var(--safe-top));
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
}
.progress-inner {
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 800px;
  margin: 0 auto;
}
.progress-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  min-width: 80px;
  letter-spacing: .01em;
}
.progress-track {
  flex: 1;
  height: 5px;
  background: var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: 10px;
  transition: width .55s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 8px rgba(200,169,110,.5);
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.form-container {
  padding-top: 1.5rem;
  padding-bottom: calc(5rem + var(--safe-bottom));
}

/* ══════════════════════════════════════════
   FORM SECTIONS
══════════════════════════════════════════ */
.form-section {
  display: none;
  animation: fadeSlide .32s cubic-bezier(.4,0,.2,1);
}
.form-section.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Section header */
.section-header {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.section-number {
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(200,169,110,.4);
}
.section-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .18rem;
  letter-spacing: -.01em;
}
.section-header p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   RATING SCALE LEGEND
══════════════════════════════════════════ */
.rating-scale-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: .9rem;
  font-size: .72rem;
  color: var(--gray-600);
}
.rating-scale-legend span {
  background: var(--gray-100);
  padding: .2rem .55rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   RATING TABLE
══════════════════════════════════════════ */
.rating-table {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: .6rem;
}

.rating-row {
  display: flex;
  align-items: center;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  gap: .75rem;
  transition: background var(--transition);
  min-height: 56px;
}
.rating-row:last-child { border-bottom: none; }
.rating-row:not(.header-row):active { background: var(--gray-50); }

/* Sur mobile : empilement vertical */
.rating-row:not(.header-row) {
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
  padding: .9rem 1rem;
}

.header-row {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: .55rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  flex-direction: row !important;
  align-items: center !important;
  gap: .75rem !important;
  min-height: unset !important;
}

.rating-label {
  flex: 1;
  font-size: .9rem;
  color: var(--gray-800);
  font-weight: 600;
  line-height: 1.35;
}
.rating-label i {
  color: var(--gold);
  margin-right: .45rem;
  width: 16px;
  text-align: center;
}

.rating-stars-header {
  display: flex;
  gap: 0;
  min-width: 180px;
  justify-content: space-around;
  color: var(--gold-light);
  font-weight: 700;
  font-size: .8rem;
}
.rating-stars-header span {
  min-width: 40px;
  text-align: center;
}

/* ── STAR BUTTONS (touch-optimized) ── */
.rating-stars {
  display: flex;
  gap: 6px;
  width: 100%;
  justify-content: flex-start;
}

.star-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-400);
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Touch target minimum 44px */
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}
.star-btn:hover  { border-color: var(--gold); color: var(--gold); background: rgba(200,169,110,.1); }
.star-btn:active { transform: scale(.9); }
.star-btn.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 2px 10px rgba(200,169,110,.5);
  transform: scale(1.05);
}
.star-btn.filled {
  border-color: var(--gold-dark);
  background: rgba(200,169,110,.15);
  color: var(--gold-dark);
}

/* ══════════════════════════════════════════
   CHAMPS DE SAISIE
══════════════════════════════════════════ */
.field-group {
  margin-bottom: 1.1rem;
}
.field-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: .42rem;
  letter-spacing: .005em;
}
.field-group label i { color: var(--gold); margin-right: .38rem; }

.required { color: var(--red); margin-left: .18rem; }
.optional  { color: var(--gray-400); font-weight: 400; font-size: .78rem; }

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: .82rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem; /* 16px — évite le zoom auto sur iOS */
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.6rem;
  cursor: pointer;
  resize: none;
}
select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c8a96e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3.5px rgba(200,169,110,.18);
}
input.error, textarea.error, select.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.14);
}
.radio-group.group-error .radio-card {
  border-color: rgba(192,57,43,.6);
}
.radio-group.group-error {
  border-radius: var(--radius-sm);
  outline: 2px solid rgba(192,57,43,.2);
  outline-offset: 3px;
}

/* Field grid : 1 colonne sur mobile */
.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin-bottom: 1.1rem;
}

/* ══════════════════════════════════════════
   RADIO CARDS (touch-optimized)
══════════════════════════════════════════ */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.radio-card {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.1rem;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
  background: var(--white);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  min-height: 44px; /* touch target */
}
.radio-card input { display: none; }
.radio-card i {
  color: var(--gray-400);
  transition: color var(--transition);
  font-size: .9rem;
}
.radio-card:active { transform: scale(.97); }
.radio-card:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(200,169,110,.1), rgba(200,169,110,.06));
  color: var(--gold-dark);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(200,169,110,.2);
}
.radio-card:has(input:checked) i { color: var(--gold); }

/* ══════════════════════════════════════════
   GLOBAL STAR RATING
══════════════════════════════════════════ */
.global-rating-box {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.global-rating-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,169,110,.12) 0%, transparent 70%);
  pointer-events: none;
}
.global-label {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  display: block;
  color: rgba(255,255,255,.92);
  letter-spacing: .01em;
}
.global-label .required { color: var(--gold-light); }
.star-rating-global {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-bottom: .65rem;
}
.star-rating-global i {
  font-size: 2.6rem;
  color: rgba(255,255,255,.18);
  cursor: pointer;
  transition: all var(--transition);
  touch-action: manipulation;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.2));
}
.star-rating-global i:active { transform: scale(.85); }
.star-rating-global i.active {
  color: var(--gold);
  transform: scale(1.18);
  filter: drop-shadow(0 2px 8px rgba(200,169,110,.6));
}
.global-rating-text {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  min-height: 1.4em;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   NAVIGATION BUTTONS
══════════════════════════════════════════ */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  gap: .75rem;
  position: sticky;
  bottom: 0;
  background: rgba(249,250,251,.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  padding: .85rem 0 calc(.85rem + var(--safe-bottom));
  border-top: 1px solid var(--gray-200);
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  z-index: 50;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .82rem 1.6rem;
  border-radius: 50px;
  border: none;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px; /* touch target */
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  letter-spacing: .01em;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn:active:not(:disabled) { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
  flex: 1;
}
.btn-primary:active { box-shadow: 0 2px 8px rgba(200,169,110,.3); }

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
  min-width: 110px;
}
.btn-secondary:active { background: var(--gray-50); }

.btn-success {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,122,79,.35);
  flex: 1;
}

/* ══════════════════════════════════════════
   SUCCESS MESSAGE
══════════════════════════════════════════ */
.success-message {
  text-align: center;
  padding: 2rem 1.25rem calc(2.5rem + var(--safe-bottom));
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
  overflow: hidden;
  animation: fadeSlide .4s cubic-bezier(.4,0,.2,1);
}
.success-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.success-logos img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  padding: 4px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.success-icon i {
  font-size: 4rem;
  color: var(--green);
  display: block;
  margin-bottom: .9rem;
  filter: drop-shadow(0 3px 12px rgba(45,122,79,.3));
}
.success-message h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .7rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.success-message p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: .4rem;
  line-height: 1.55;
}
.success-banner {
  margin: 1.4rem -1.25rem;
  line-height: 0;
  position: relative;
}
.success-banner > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}
.success-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.15);
}
.success-banner-coco {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,.5));
}
.success-sub {
  margin-top: 1.1rem;
  font-weight: 800;
  font-size: .9rem;
  color: var(--gold-dark) !important;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 1.3rem 1.25rem;
  padding-bottom: calc(1.3rem + var(--safe-bottom));
  font-size: .78rem;
}
.site-footer p + p { margin-top: .3rem; }
.admin-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: .8rem;
}
.admin-link:hover { text-decoration: underline; }
.admin-link i { margin-right: .3rem; }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.mt-4 { margin-top: 1.1rem; }

/* ══════════════════════════════════════════
   VALIDATION ERRORS
══════════════════════════════════════════ */
.error-msg {
  display: none;
  color: var(--red);
  font-size: .78rem;
  margin-top: .3rem;
  font-weight: 500;
}
.error-msg.visible { display: block; }

.section-error {
  display: none;
  background: linear-gradient(135deg, #fff5f5, #fff0f0);
  border: 1px solid #fecaca;
  border-left: 4px solid var(--red);
  color: #991b1b;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeSlide .25s ease;
}
.section-error.visible { display: block; }

/* ══════════════════════════════════════════
   TABLET (≥ 640px)
══════════════════════════════════════════ */
@media (min-width: 640px) {
  .hero-content { padding: 1.25rem 2rem 2rem; }
  .hero-logos { gap: 1.3rem; }
  .hero-logo, .hero-logo-leo { height: 50px; width: 50px; }
  .hero-logo-coco { height: 72px; }

  .container { padding: 0 1.5rem; }
  .form-container { padding-top: 2rem; padding-bottom: 5rem; }

  .rating-row:not(.header-row) {
    flex-direction: row;
    align-items: center;
    padding: .8rem 1.2rem;
  }

  .rating-stars {
    min-width: 210px;
    width: auto;
    justify-content: space-around;
  }

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

  .form-nav {
    position: static;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: .85rem;
  }

  .btn-primary, .btn-success { flex: unset; padding: .82rem 2rem; }

  .success-banner { margin: 1.4rem -2rem; }
  .success-banner-coco { height: 120px; }
  .success-message { padding: 2.5rem 2rem 3rem; }
}

/* ══════════════════════════════════════════
   DESKTOP (≥ 900px)
══════════════════════════════════════════ */
@media (min-width: 900px) {
  .section-header { padding: 1.4rem 1.6rem; }
  .section-header h2 { font-size: 1.25rem; }
  .star-btn { width: 38px; height: 38px; }
  .star-btn:hover { transform: scale(1.12); }
}
