/* ============================================================
   MEILLEURDEFROISSEUR.FR — Design System Premium
   Concept : Vapeur & Élégance — Éditorial magazine
   ============================================================ */

/* --- Variables --- */
:root {
  --bg:          #F7F4EF;
  --surface:     #FFFFFF;
  --surface-alt: #EBF4F8;
  --navy:        #1A2744;
  --navy-light:  #2E3F6B;
  --steam:       #3D8FA6;
  --steam-light: #C8E8F2;
  --steam-xlight:#EBF7FB;
  --gold:        #C8902A;
  --gold-light:  #FDF3E3;
  --green:       #16663A;
  --green-hover: #0F4D2A;
  --green-light: #E8F5EE;
  --red-light:   #FEF0F0;
  --red:         #C0392B;
  --text:        #1E2A35;
  --text-muted:  #5F6B7A;
  --text-light:  #8A97A4;
  --border:      #DDD8D0;
  --border-light:#EDEAE4;
  --radius:      14px;
  --radius-sm:   8px;
  --radius-xs:   5px;
  --shadow:      0 2px 16px rgba(26,39,68,0.07);
  --shadow-md:   0 4px 28px rgba(26,39,68,0.11);
  --shadow-lg:   0 8px 48px rgba(26,39,68,0.16);
  --ff-heading:  'DM Serif Display', Georgia, 'Times New Roman', serif;
  --ff-body:     'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1180px;
  --section-py:  80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--steam); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* --- Fonts (self-hosted) --- */
@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/DMSerifDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/DMSerifDisplay-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin-bottom: .6rem; }
h4 { font-size: 1.1rem; font-family: var(--ff-body); font-weight: 700; }
p  { margin-bottom: 1.1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--surface-alt); }
.section--white { background: var(--surface); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2 { color: #fff; }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 12px rgba(26,39,68,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 24px;
}
.logo {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--steam); }
.logo-icon { width: 32px; height: 32px; flex-shrink: 0; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  transition: all .2s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--steam); background: var(--steam-xlight); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  border-radius: 20px;
  padding: 7px 16px !important;
}
.nav-cta:hover { background: var(--steam) !important; color: #fff !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--navy);
}

/* --- Mobile Nav --- */
.mobile-nav { display: none; }
@media (max-width: 767px) {
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    z-index: 90;
    justify-content: space-around;
    padding: 8px 0 12px;
  }
  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .68rem;
    color: var(--text-muted);
    gap: 3px;
    font-weight: 500;
  }
  .mobile-nav a.active { color: var(--steam); }
  .mobile-nav svg { width: 20px; height: 20px; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: block; }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2A3F7A 60%, #1A5568 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,143,166,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61,143,166,0.25);
  border: 1px solid rgba(61,143,166,0.4);
  color: var(--steam-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 em { color: var(--steam-light); font-style: italic; }
.hero-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: .82rem;
  color: rgba(255,255,255,0.65);
}
.hero-meta span { display: flex; align-items: center; gap: 5px; }
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .hero { padding: 48px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-img-wrap { aspect-ratio: 16/9; }
}

/* --- Breadcrumb --- */
.breadcrumb {
  background: rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
}
.breadcrumb ol {
  display: flex;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li::after { content: '›'; opacity: .5; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #fff; }

/* For pages on white bg */
.breadcrumb--light {
  background: var(--border-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb--light ol { color: var(--text-muted); }
.breadcrumb--light a { color: var(--steam); }
.breadcrumb--light li::after { content: '›'; opacity: .5; color: var(--text-muted); }

/* --- Stat Banner --- */
.stat-banner {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
}
.stat-banner-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  color: var(--steam);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 600px) {
  .stat-banner-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border-light); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: .92rem;
  transition: all .22s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 14px rgba(22,102,58,0.3);
}
.btn-primary:hover {
  background: var(--green-hover);
  color: #fff;
  box-shadow: 0 5px 20px rgba(22,102,58,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-steam {
  background: var(--steam);
  color: #fff;
  box-shadow: 0 3px 14px rgba(61,143,166,0.3);
}
.btn-steam:hover {
  background: #2d7a93;
  color: #fff;
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 18px; font-size: .84rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* --- Verdict Callout --- */
.verdict-box {
  background: linear-gradient(135deg, var(--green-light), #d4eedd);
  border: 2px solid #85c9a0;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.verdict-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.2rem;
}
.verdict-content strong {
  display: block;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 4px;
}
.verdict-content p { font-size: .95rem; color: #1a4a2e; margin: 0; }

/* --- Disclosure --- */
.disclosure {
  background: var(--gold-light);
  border: 1px solid #E8C97A;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: .82rem;
  color: #7A5A1A;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.disclosure svg { flex-shrink: 0; margin-top: 1px; }

/* --- Product Cards --- */
.products-grid { display: flex; flex-direction: column; gap: 32px; }

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-card--featured {
  border: 2px solid var(--steam);
  box-shadow: 0 4px 32px rgba(61,143,166,0.15);
}

.product-card-ribbon {
  background: var(--steam);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}
@media (max-width: 600px) {
  .product-card-inner { grid-template-columns: 1fr; }
}

.product-img-wrap {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--border-light);
}
.product-img-wrap img { width: 140px; height: 140px; object-fit: contain; }

.product-body { padding: 24px 28px; }

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.product-rank {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.product-rank--gold { background: var(--gold); }

.product-title-wrap h3 { margin: 0; font-size: 1.25rem; }
.product-tagline { font-size: .85rem; color: var(--text-muted); margin-top: 2px; }

.product-score {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.score-num {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--steam);
  line-height: 1;
}
.score-bars { display: flex; flex-direction: column; gap: 3px; }
.score-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  color: var(--text-muted);
}
.score-bar-track {
  width: 70px;
  height: 5px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: var(--steam);
  border-radius: 3px;
  transition: width .6s ease;
}

.product-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.spec-tag {
  background: var(--steam-xlight);
  color: var(--steam);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .product-pros-cons { grid-template-columns: 1fr; }
}
.pros, .cons {
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.cons { background: var(--red-light); }
.pros-title, .cons-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.pros-title { color: var(--green); }
.cons-title { color: var(--red); }
.pros li, .cons li {
  font-size: .82rem;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 4px;
  color: var(--text);
}
.pros li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.pour-qui {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.pour-qui-item {
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: .8rem;
}
.pour-qui-item--yes { background: var(--green-light); border-left: 3px solid var(--green); }
.pour-qui-item--no  { background: var(--red-light);   border-left: 3px solid var(--red); }
.pour-qui-title {
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}
.pour-qui-item--yes .pour-qui-title { color: var(--green); }
.pour-qui-item--no  .pour-qui-title { color: var(--red); }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.product-price {
  display: flex;
  flex-direction: column;
}
.price-num {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}
.price-label { font-size: .75rem; color: var(--text-muted); }

/* --- Callout Boxes --- */
.callout {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.callout--info {
  background: var(--steam-xlight);
  border-left: 4px solid var(--steam);
}
.callout--warning {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
}
.callout--success {
  background: var(--green-light);
  border-left: 4px solid var(--green);
}
.callout--error {
  background: var(--red-light);
  border-left: 4px solid var(--red);
}
.callout-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.callout-body strong {
  display: block;
  margin-bottom: 4px;
  font-size: .92rem;
}
.callout-body p, .callout-body ul {
  font-size: .88rem;
  margin: 0;
}
.callout-body ul { padding-left: 18px; list-style: disc; }
.callout-body li { margin-bottom: 3px; }

/* --- Saviez-vous --- */
.saviez-vous {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: #fff;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.saviez-vous-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.saviez-vous strong {
  display: block;
  color: var(--steam-light);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}
.saviez-vous p { color: rgba(255,255,255,0.88); margin: 0; font-size: .93rem; }

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 680px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: box-shadow .2s;
}
.feature-item:hover { box-shadow: var(--shadow); }
.feature-item-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.feature-item h4 { font-size: .9rem; margin-bottom: 5px; }
.feature-item p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* --- Comparison Table --- */
.table-wrap { overflow-x: auto; margin-bottom: 32px; border-radius: var(--radius); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 16px;
  font-size: .82rem;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.comparison-table td {
  padding: 12px 16px;
  font-size: .85rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg); }
.comparison-table td:first-child { font-weight: 600; }
.table-check { color: var(--green); font-size: 1.1rem; }
.table-cross { color: var(--red); font-size: 1.1rem; }

/* --- Highlight Box --- */
.highlight-box {
  background: linear-gradient(135deg, var(--steam-xlight), #d9f0f8);
  border: 1px solid var(--steam-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.highlight-box h3 { color: var(--steam); margin-bottom: 12px; }

/* --- Expert Quote --- */
.expert-quote {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.expert-quote-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--steam-light);
}
blockquote {
  font-family: var(--ff-heading);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}
blockquote::before { content: '\201C'; font-size: 2rem; color: var(--steam); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
blockquote::after  { content: '\201D'; font-size: 2rem; color: var(--steam); line-height: 0; vertical-align: -0.4em; margin-left: 4px; }
.quote-author strong { font-size: .88rem; display: block; color: var(--navy); }
.quote-author span  { font-size: .78rem; color: var(--text-muted); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
  color: var(--navy);
}
.faq-item summary:hover { background: var(--steam-xlight); }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--steam);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px 16px;
  font-size: .9rem;
  color: var(--text);
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}
.faq-answer p { font-size: .9rem; }

/* --- Author Box --- */
.author-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  box-shadow: var(--shadow);
  margin-top: 48px;
}
.author-img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--steam-light);
}
.author-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--steam);
  margin-bottom: 2px;
}
.author-name { font-family: var(--ff-heading); font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.author-title { font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; }
.author-bio { font-size: .86rem; color: var(--text); margin: 0; }

/* --- Numbered Steps --- */
.steps-list { counter-reset: step; display: flex; flex-direction: column; gap: 18px; }
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border: 1px solid var(--border-light);
}
.step-num {
  width: 38px;
  height: 38px;
  background: var(--steam);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
}
.step-body h4 { font-size: .95rem; margin-bottom: 3px; }
.step-body p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* --- Icon List --- */
.icon-list { display: flex; flex-direction: column; gap: 10px; }
.icon-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .9rem;
}
.icon-list-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}
.icon-list-icon--steam { background: var(--steam-xlight); color: var(--steam); }
.icon-list-icon--green { background: var(--green-light); color: var(--green); }
.icon-list-icon--gold  { background: var(--gold-light);  color: var(--gold); }

/* --- Closing CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #243870 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { }
.footer-logo {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--steam); }
.footer-desc { font-size: .82rem; line-height: 1.65; margin-bottom: 0; }
.footer-col h5 {
  color: #fff;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col a {
  font-size: .82rem;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}
.footer-col a:hover { color: var(--steam-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .77rem; margin: 0; }
.footer-disclosure {
  font-size: .75rem;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
}

/* --- Section Titles --- */
.section-header { margin-bottom: 40px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--steam);
  margin-bottom: 6px;
}
.section-header h2 { margin-bottom: 8px; }
.section-header p { color: var(--text-muted); font-size: .95rem; max-width: 580px; }

/* --- Update date --- */
.update-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--border-light);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* --- Subpage Hero --- */
.page-hero {
  background: var(--navy);
  padding: 48px 0 0;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 640px; }
.page-hero-img {
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
  display: block;
  margin-top: 32px;
}

/* --- Rating stars --- */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

/* --- Misc utilities --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  :root { --section-py: 56px; }
  .stat-banner-inner { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .expert-quote { flex-direction: column; align-items: center; text-align: center; }
  .product-card-inner { grid-template-columns: 1fr; }
  .product-img-wrap { border-right: none; border-bottom: 1px solid var(--border-light); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pour-qui { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { padding-bottom: 56px; }
  .stat-banner-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
