:root {
  --green-deep:   #1A5C1A;
  --green-mid:    #2B7A2B;
  --green-bright: #52A83C;
  --green-light:  #A3D97A;
  --green-pale:   #EBF6E3;
  --charcoal:     #242424;
  --charcoal-2:   #2E2E2E;
  --grey:         #666;
  --grey-light:   #EFEFEC;
  --white:        #FAFAF7;
  --cream:        #F4F1EA;
  --radius:       18px;
  --radius-sm:    10px;
  --radius-pill:  100px;
  --t:            0.2s ease;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.12);
  --shadow-green: 0 6px 24px rgba(43,122,43,0.30);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }

/* ── TYPO ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; }
p  { line-height: 1.7; color: var(--grey); }
em { font-style: italic; color: var(--green-mid); }

/* ── LAYOUT ─────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* ── BOUTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px; border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-mid); color: white;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-deep);
  box-shadow: 0 10px 32px rgba(43,122,43,0.4);
}
.btn-ghost {
  background: transparent; color: var(--green-mid);
  padding-left: 0; box-shadow: none;
}
.btn-ghost:hover { transform: translateX(6px); }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── NAV ────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  height: 66px; display: flex; align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center;
}
.logo-img {
  height: 60px; width: auto; display: block;
}
.logo-img--footer {
  height: 40px;
  filter: brightness(0) invert(1);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--grey);
  transition: color var(--t); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--green-bright); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ── NAV BURGER ─────────────────────────── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: var(--green-pale); border: 1.5px solid rgba(43,122,43,0.2);
  border-radius: var(--radius-sm); cursor: pointer;
  padding: 8px 9px; width: 42px; height: 42px;
}
.nav-burger span {
  width: 22px; height: 2.5px; background: var(--green-deep);
  border-radius: 2px; transition: all 0.3s ease; display: block;
}
.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.nav-burger.active span:nth-child(2) {
  opacity: 0;
}
.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ── HERO ───────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 86vh; overflow: hidden;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 56px 80px 40px;
  max-width: 620px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--green-deep);
  background: var(--green-pale); padding: 6px 16px;
  border-radius: var(--radius-pill); margin-bottom: 28px;
  width: fit-content;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--grey);
  line-height: 1.65; max-width: 440px; margin-bottom: 42px;
}
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Hero visuel */
.hero-visual {
  background: linear-gradient(145deg, var(--green-pale) 0%, #C9EAB0 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(43,122,43,0.12);
  pointer-events: none;
}
.hero-ring--lg {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(82,168,60,0.10) 0%, transparent 70%);
}
.hero-ring--md {
  width: 320px; height: 320px;
  border-color: rgba(43,122,43,0.18);
}

.hero-bubble {
  position: absolute; background: white; z-index: 3;
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-bubble--top {
  top: 14%; left: 5%;
  gap: 12px;
}
.hero-bubble--bot {
  bottom: 14%; right: 6%;
  animation-delay: 2s;
}

.hero-center-card {
  position: relative; z-index: 2;
  background: white;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-lg);
  width: 240px;
  animation: float 5s ease-in-out infinite;
}
.hcc-title {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.hcc-list {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 14px;
}
.hcc-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
}
.hcc-list li:last-child { border-bottom: none; }
.hcc-name  { color: var(--grey); font-weight: 400; }
.hcc-amount {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 14px;
  color: var(--green-mid);
}
.hcc-total {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px; font-weight: 700;
  color: var(--green-deep);
}
.hcc-total-val {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  color: var(--green-mid);
}


.bubble-big   { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 700; color: var(--green-mid); line-height: 1; }
.bubble-sub   { font-size: 11px; color: var(--grey); margin-top: 4px; }

/* ── SECTIONS COMMUNES ──────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--charcoal-2); }
.section-head { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: var(--radius-pill); margin-bottom: 16px;
}
.section-dark .section-label { background: rgba(82,168,60,0.14); color: var(--green-light); }
.section:not(.section-dark) .section-label { background: var(--green-pale); color: var(--green-deep); }
.section-dark h2 { color: white; }
.section-dark h2 em, h2 em { color: var(--green-bright); }
.section-sub { font-size: 16px; font-weight: 300; max-width: 480px; margin: 0 auto; line-height: 1.7; }
.section-dark .section-sub { color: rgba(255,255,255,0.5); }

/* ── AIDES GRID ─────────────────────────────── */
.helps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.help-card {
  display: block; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 28px 24px;
  text-decoration: none; position: relative; overflow: hidden;
  transition: background var(--t), transform var(--t), border-color var(--t);
}
.help-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green-bright);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.help-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); border-color: rgba(82,168,60,0.3); }
.help-card:hover::after { transform: scaleX(1); }

.help-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.help-arrow { font-size: 16px; color: rgba(255,255,255,0.18); transition: color var(--t), transform var(--t); }
.help-card:hover .help-arrow { color: var(--green-bright); transform: translate(3px,-3px); }
.help-amount { font-family: 'Fraunces', serif; font-size: 38px; font-weight: 700; color: var(--green-bright); line-height: 1; margin-bottom: 8px; }
.help-title  { font-size: 15px; font-weight: 700; color: white; margin-bottom: 10px; }
.help-desc   { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; margin-bottom: 18px; }
.help-cta    { font-size: 13px; font-weight: 700; color: var(--green-light); }

/* ── ARTICLES (posts) ───────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}
.post-card {
  display: block; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07); background: white;
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform var(--t), box-shadow var(--t);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card--big { grid-row: span 2; }

.post-body   { padding: 22px; }
.post-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.7px; text-transform: uppercase;
  background: var(--green-pale); color: var(--green-deep);
  padding: 3px 10px; border-radius: var(--radius-pill); margin-bottom: 12px;
}
.post-body h3 {
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700;
  color: var(--charcoal); line-height: 1.3; margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.post-card--big .post-body h3 { font-size: 22px; }
.post-body p { font-size: 13px; color: var(--grey); line-height: 1.65; }
.post-meta {
  display: flex; gap: 14px; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 12px; color: var(--grey);
}

/* ── ARTICLE SINGLE (guide/blog) ───────────── */
.article-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px; padding-top: 56px; padding-bottom: 80px;
  align-items: start;
}
.article-single {
  min-width: 0;
}
.article-single-header {
  margin-bottom: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.article-single-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.article-single-header h1 {
  font-size: clamp(24px, 4vw, 38px); margin-bottom: 14px;
}
.article-single-body {
  margin-bottom: 48px;
}
.article-single-footer {
  padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.08);
}

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb {
  background: var(--grey-light); padding: 10px 0;
  font-size: 13px; color: var(--grey);
}
.breadcrumb .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--green-mid); }
.breadcrumb span:not(:last-child) { opacity: 0.4; }

/* ── ARTICLE PAGE ───────────────────────────── */
.article-wrap {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 56px; padding-top: 56px; padding-bottom: 80px;
  align-items: start;
}
.article-header {
  margin-bottom: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.article-amount {
  font-family: 'Fraunces', serif; font-size: 56px; font-weight: 700;
  color: var(--green-mid); line-height: 1; margin-bottom: 12px;
}
.article-header h1 { font-size: clamp(24px, 4vw, 38px); margin-bottom: 14px; }
.article-desc { font-size: 17px; font-weight: 300; line-height: 1.65; margin-bottom: 18px; }
.article-meta { display: flex; gap: 20px; font-size: 13px; color: var(--grey); }

/* ── PROSE (contenu Markdown rendu) ────────── */
.prose { font-size: 15px; line-height: 1.8; color: #444; }
.prose h2 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--charcoal); margin: 36px 0 14px; }
.prose h3 { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--charcoal); margin: 28px 0 10px; }
.prose p  { margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose ul li { list-style: disc; margin-bottom: 8px; }
.prose ol li { list-style: decimal; margin-bottom: 8px; }
.prose li::marker { color: var(--green-mid); }
.prose strong { font-weight: 700; color: var(--charcoal); }
.prose a { color: var(--green-mid); text-decoration: underline; text-decoration-color: rgba(43,122,43,0.35); }
.prose a:hover { text-decoration-color: var(--green-mid); }
.prose blockquote {
  border-left: 4px solid var(--green-bright);
  background: var(--green-pale);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0; font-style: italic; color: var(--green-deep);
}
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.prose th { background: var(--charcoal); color: white; padding: 12px 16px; text-align: left; font-weight: 700; }
.prose th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.prose th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.prose td { padding: 11px 16px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.prose tr:nth-child(even) td { background: var(--grey-light); }
.prose hr { border: none; border-top: 1px solid rgba(0,0,0,0.08); margin: 36px 0; }

/* ── SIDEBAR ────────────────────────────────── */
.article-aside { position: sticky; top: 80px; }
.aside-box {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 22px; margin-bottom: 16px;
}
.aside-box--green  { background: var(--green-pale); border-color: rgba(43,122,43,0.15); }
.aside-box--cta    { background: var(--charcoal); border-color: transparent; }
.aside-box--cta .aside-box-title { color: white; }
.aside-box--cta p  { color: rgba(255,255,255,0.5); }
.aside-box-title   { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.aside-amount { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700; color: var(--green-mid); line-height: 1; margin-bottom: 8px; }
.aside-links   { display: flex; flex-direction: column; gap: 0; }
.aside-links li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--grey); padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color var(--t);
}
.aside-links li:last-child a { border-bottom: none; }
.aside-links li a:hover { color: var(--green-mid); }

/* ── FOOTER ─────────────────────────────────── */
.footer { background: var(--charcoal); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-brand .logo-img--footer { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.68); line-height: 1.65; max-width: 240px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: contents; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a { font-size: 14px; color: rgba(255,255,255,0.68); transition: color var(--t); }
.footer-links ul a:hover { color: var(--green-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.60); gap: 24px; flex-wrap: wrap; }

.hero-center-card {
  position: relative; z-index: 2;
  background: white;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-lg);
  width: 240px;
  animation: float 5s ease-in-out infinite;
}
.hcc-title {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.hcc-list {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 14px;
}
.hcc-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
}
.hcc-list li:last-child { border-bottom: none; }
.hcc-name  { color: var(--grey); font-weight: 400; }
.hcc-amount {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 14px;
  color: var(--green-mid);
}
.hcc-total {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px; font-weight: 700;
  color: var(--green-deep);
}
.hcc-total-val {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  color: var(--green-mid);
}

/* ── STATS BAND ─────────────────────────────── */
.stats-band {
  background: var(--green-deep);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  line-height: 1.4;
}

/* ── AVANTAGES ──────────────────────────────── */
.section-avantages { background: var(--cream); }
.section-avantages em { color: var(--green-deep); }
.section-avantages .section-sub { color: #555; font-weight: 400; }
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.avantage-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--t), box-shadow var(--t);
}
.avantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.avantage-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.avantage-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.avantage-card p { font-size: 14px; line-height: 1.75; }
.avantage-card p strong { color: var(--green-mid); font-weight: 700; }

/* ── 404 ─────────────────────────────────────── */
.section-outer {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0;
}
.section-inner { text-align: center; }
.not-found-code {
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 700; line-height: 1;
  color: var(--green-light);
  margin-bottom: 16px;
}
.section-outer h1 { margin-bottom: 14px; }
.section-outer p { font-size: 17px; margin-bottom: 36px; }
.not-found-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }

/* ── CONTACT ─────────────────────────────────── */
.contact-email {
  font-size: 1.25rem; font-weight: 600; margin: 16px 0;
}
.contact-email a { color: var(--green-mid); }
.contact-email a:hover { text-decoration: underline; }
.contact-note {
  font-size: 0.95rem; color: var(--grey);
}
.contact-links {
  margin-top: 32px;
}
/* ── ANIMATIONS ─────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .container, .nav-inner { padding: 0 24px; }
  .section { padding: 72px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 64px 24px; max-width: 100%; }
  .hero-visual { display: none; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .post-card--big { grid-row: auto; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-with-sidebar { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.12); border-top: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .avantages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-burger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-top: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(even) { border-right: none; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 16px 24px; gap: 0;
    z-index: 99;
  }
  .nav-links.active { display: flex; }
  .nav-links a {
    padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 15px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .helps-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.about h2 {
  margin-bottom: 24px;
  margin-top: 24px;
}