/* =========================================================
   guideplatformes.com — Feuille de style unique
   Palette : Acajou riche / Rouge rubis / Crème chiffon /
             Faon doux / Cuivre fané
   ========================================================= */

:root {
  --rich-mahogany: #3f0d12;
  --ruby-red: #a71d31;
  --lemon-chiffon: #f1f0cc;
  --soft-fawn: #d5bf86;
  --faded-copper: #8d775f;

  --bg: #f7f5e8;
  --surface: #ffffff;
  --text: #2a0a0d;
  --muted: #6b5b48;
  --line: rgba(63, 13, 18, 0.12);
  --shadow-sm: 0 1px 2px rgba(63, 13, 18, 0.06), 0 2px 8px rgba(63, 13, 18, 0.04);
  --shadow-md: 0 4px 14px rgba(63, 13, 18, 0.08), 0 8px 28px rgba(63, 13, 18, 0.06);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --ff-display: "Fraunces", "Times New Roman", serif;
  --ff-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --space: 1rem;
  --transition: 220ms ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--ruby-red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--rich-mahogany); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--rich-mahogany);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ruby-red);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--ruby-red);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ============= HEADER ============= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rich-mahogany);
  letter-spacing: -0.01em;
  text-transform: uppercase ;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rich-mahogany), var(--ruby-red));
  color: var(--lemon-chiffon);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  
}

.brand-mark i { width: 20px; height: 20px; }

.brand:hover { color: var(--ruby-red); }

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  color: var(--rich-mahogany);
  font-weight: 500;
  font-size: 0.97rem;
  position: relative;
  padding: 0.4rem 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--ruby-red);
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }

.nav-list a.active { color: var(--ruby-red); }

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--rich-mahogany);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--rich-mahogany);
  align-items: center;
  justify-content: center;
}

.hamburger i { width: 22px; height: 22px; }

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(167, 29, 49, 0.08), transparent 50%),
    radial-gradient(circle at 10% 85%, rgba(213, 191, 134, 0.18), transparent 55%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(167, 29, 49, 0.08);
  color: var(--ruby-red);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero-tag i { width: 14px; height: 14px; }

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--ruby-red);
  font-weight: 500;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text);
  font-size: 0.97rem;
}

.hero-points i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--ruby-red);
  margin-top: 3px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--rich-mahogany), var(--ruby-red) 60%, var(--soft-fawn));
  display: grid;
  place-items: center;
  color: var(--lemon-chiffon);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(241, 240, 204, 0.04) 0 2px, transparent 2px 14px);
}

.hero-visual-inner {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.hero-visual-inner i {
  width: 72px;
  height: 72px;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.hero-visual-inner .label {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hero-visual-inner .sub {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* ============= STATS STRIP ============= */
.stats-strip {
  background: var(--rich-mahogany);
  color: var(--lemon-chiffon);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--soft-fawn);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(241, 240, 204, 0.78);
}

/* ============= OFFER LIST (editorial cards) ============= */
.offers {
  background: var(--bg);
}

.offer-list {
  display: grid;
  gap: 1.5rem;
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px 1fr;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(167, 29, 49, 0.25);
}

.offer-rank {
  background: linear-gradient(180deg, var(--rich-mahogany), var(--ruby-red));
  color: var(--lemon-chiffon);
  font-family: var(--ff-display);
  font-size: 2.5rem;
  display: grid;
  place-items: center;
  position: relative;
}

.offer-rank::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: none;
}

.offer-body {
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1.75rem;
  align-items: center;
}

.offer-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  padding: 0.5rem;
  background: var(--text);
  border-radius: var(--radius-md);
}

.offer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rich-mahogany);
  margin: 0;
}

.offer-score {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.score-bar {
  position: relative;
  width: 160px;
  height: 8px;
  background: rgba(141, 119, 95, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.score-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ruby-red), var(--rich-mahogany));
  border-radius: 999px;
}

.score-value {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--rich-mahogany);
}

.score-value small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
}

.offer-desc {
  color: var(--muted);
  font-size: 0.97rem;
  margin-top: 0.25rem;
}

.offer-strengths {
  list-style: none;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.4rem 1rem;
}

.offer-strengths li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--text);
}

.offer-strengths i {
  width: 14px;
  height: 14px;
  color: var(--ruby-red);
}

.offer-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  min-width: 200px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--rich-mahogany);
  color: var(--lemon-chiffon);
}

.btn-primary:hover {
  background: var(--ruby-red);
  color: var(--lemon-chiffon);
}

.btn-outline {
  background: transparent;
  color: var(--rich-mahogany);
  border: 1.5px solid var(--rich-mahogany);
}

.btn-outline:hover {
  background: var(--rich-mahogany);
  color: var(--lemon-chiffon);
}

.btn i { width: 16px; height: 16px; }

.offer-micro {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
  max-width: 220px;
  line-height: 1.45;
}

/* ============= INFO / FEATURE BLOCKS ============= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(167, 29, 49, 0.1);
  color: var(--ruby-red);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.feature-icon i { width: 26px; height: 26px; }

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============= CRITERIA / METHOD LIST ============= */
.criteria-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.criteria-item {
  display: flex;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ruby-red);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.criteria-item .num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--soft-fawn);
  flex-shrink: 0;
  width: 40px;
}

.criteria-item h4 {
  margin-bottom: 0.35rem;
  color: var(--rich-mahogany);
}

.criteria-item p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ============= PROSE / GENERIC CONTENT ============= */
.prose {
  max-width: 820px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--text);
}

.prose ul, .prose ol {
  margin: 0 0 1rem 1.5rem;
  color: var(--text);
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose .note {
  background: rgba(213, 191, 134, 0.2);
  border-left: 3px solid var(--soft-fawn);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text);
  margin: 1.5rem 0;
}

.prose .updated {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
}

.page-head {
  background:
    radial-gradient(circle at 15% 30%, rgba(167, 29, 49, 0.1), transparent 50%),
    var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.page-head h1 { margin-bottom: 0.75rem; }

.page-head p {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.05rem;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--ruby-red); }

/* ============= CONTACT ============= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(167, 29, 49, 0.1);
  color: var(--ruby-red);
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.contact-item-icon i { width: 22px; height: 22px; }

.contact-item h4 {
  margin-bottom: 0.2rem;
}

.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--muted);
}

.form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--rich-mahogany);
}

.form-control {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--ruby-red);
  box-shadow: 0 0 0 3px rgba(167, 29, 49, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 1rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-check input {
  margin-top: 4px;
  accent-color: var(--ruby-red);
}

.form-error {
  color: var(--ruby-red);
  font-size: 0.82rem;
  margin-top: 0.3rem;
  display: none;
}

.form-control.invalid { border-color: var(--ruby-red); }
.form-control.invalid + .form-error { display: block; }

.form-success {
  display: none;
  background: rgba(167, 29, 49, 0.08);
  border: 1px solid rgba(167, 29, 49, 0.3);
  color: var(--rich-mahogany);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
}

.form-success.show { display: block; }

.btn.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============= RESPONSIBLE / RESOURCES ============= */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.resource-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.resource-card img {
  height: 50px;
  width: auto;
  object-fit: contain;
 background-color: #2a0a0d;
 padding: 5px;
 border-radius: 10px;
}

.resource-card h4 { color: var(--rich-mahogany); }

.resource-card .tel {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--ruby-red);
  margin-top: 0.25rem;
  font-weight: 600;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.resource-card a.link {
  font-size: 0.88rem;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.resource-card a.link i { width: 14px; height: 14px; }

/* ============= DISCLAIMER ============= */
.disclaimer-block {
  background: linear-gradient(180deg, rgba(63, 13, 18, 0.04), transparent);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.disclaimer-inner {
  max-width: 880px;
  margin: 0 auto;
}

.disclaimer-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.disclaimer-inner p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.legal-warning {
  background: var(--rich-mahogany);
  color: var(--lemon-chiffon);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.legal-warning i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--soft-fawn);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--rich-mahogany);
  color: rgba(241, 240, 204, 0.78);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand {
  color: var(--lemon-chiffon);
  margin-bottom: 1rem;
}

.footer-brand .brand-mark {
  background: linear-gradient(135deg, var(--ruby-red), var(--soft-fawn));
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(241, 240, 204, 0.7);
  max-width: 360px;
}

.footer-col h4 {
  color: var(--soft-fawn);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  font-family: var(--ff-body);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(241, 240, 204, 0.78);
  font-size: 0.92rem;
}

.footer-col a:hover { color: var(--lemon-chiffon); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(241, 240, 204, 0.78);
}

.footer-contact span { display: flex; gap: 0.55rem; align-items: flex-start; }
.footer-contact i { width: 16px; height: 16px; color: var(--soft-fawn); flex-shrink: 0; margin-top: 3px; }

.footer-regulators {
  border-top: 1px solid rgba(241, 240, 204, 0.15);
  border-bottom: 1px solid rgba(241, 240, 204, 0.15);
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  align-items: center;
}

.footer-regulators a {
  display: inline-flex;
  align-items: center;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-regulators a:hover { opacity: 1; }

.footer-regulators img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(241, 240, 204, 0.55);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--ruby-red);
  color: var(--lemon-chiffon);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--ff-display);
}

/* ============= AGE POPUP ============= */
.age-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(63, 13, 18, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-popup.show { display: flex; }

.age-popup-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--soft-fawn);
}

.age-popup-card .icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rich-mahogany), var(--ruby-red));
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lemon-chiffon);
}

.age-popup-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.age-popup-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.age-popup-actions {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

/* ============= COOKIE BANNER ============= */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 998;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(63, 13, 18, 0.2);
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cookie-banner h4 i {
  width: 20px;
  height: 20px;
  color: var(--ruby-red);
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-actions .btn { padding: 0.6rem 1rem; font-size: 0.88rem; }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/9; }
  .features-grid, .criteria-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .offer-body { grid-template-columns: 140px 1fr; }
  .offer-cta-wrap { grid-column: 1 / -1; flex-direction: row; align-items: center; min-width: 0; }
  .offer-micro { text-align: left; max-width: none; }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: right 0.35s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--line);
  }

  .nav-list.open { right: 0; }

  .nav-list a { font-size: 1.1rem; }

  .hamburger { display: inline-flex; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid, .criteria-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .offer-card { grid-template-columns: 70px 1fr; }
  .offer-rank { font-size: 2rem; }
  .offer-body {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.25rem;
  }
  .offer-logo { width: 100px; height: 50px; }
  .offer-cta-wrap { flex-direction: column; align-items: stretch; }
  .offer-cta-wrap .btn { justify-content: center; }
  .offer-micro { text-align: left; }

  .form-row { grid-template-columns: 1fr; }

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

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============= UTILITIES ============= */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

[hidden] { display: none !important; }

::selection {
  background: var(--ruby-red);
  color: var(--lemon-chiffon);
}
