/* Troupeasy — Landing page
   ------------------------------------------------------------------
   Design system: tokens couleur/typo/spacing repris de la maquette
   Claude Design (Direction A, "Le carnet"). Une seule police (Mulish,
   variable, sous-ensemble latin) + icônes SVG inline (pas de police
   d'icônes). */

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/mulish-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Color tokens ---- */
:root {
  --linen: #EDE5D8;
  --linen-soft: #F5EFE6;
  --paper: #FEFDFC;
  --white: #FFFFFF;

  --navy: #0A0C20;
  --deep-blue: #0D213E;

  --blue: #5F8198;
  --blue-700: #4A6678;
  --blue-100: #DCE6EC;

  --green: #4C8364;
  --green-700: #3F6A52;
  --green-100: #DEEDE2;

  --amber: #EAB64C;

  --gray-900: #1A1C2A;
  --gray-500: #6B7280;
  --gray-400: #9AA0AC;
  --gray-300: #CBD0D8;
  --gray-200: #E4E7EC;
  --gray-100: #F1F2F5;
  --gray-50: #F8F9FA;

  --text-strong: var(--navy);
  --text-body: var(--gray-900);
  --text-muted: var(--gray-500);
  --text-faint: var(--gray-400);
  --text-accent: var(--green-700);
  --text-link: var(--blue);

  --surface-page: var(--paper);
  --surface-sunken: var(--gray-50);

  --border-subtle: var(--gray-200);
  --border-strong: var(--gray-300);

  --action: var(--blue);
  --action-hover: var(--blue-700);
  --action-soft: var(--blue-100);
  --focus-ring: color-mix(in srgb, var(--blue) 45%, transparent);

  --shadow-xs: 0 1px 2px rgba(10, 12, 32, 0.06);
  --shadow-sm: 0 2px 6px rgba(10, 12, 32, 0.07);
  --shadow-md: 0 6px 18px rgba(10, 12, 32, 0.09);
  --shadow-lg: 0 14px 40px rgba(10, 12, 32, 0.12);

  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --font-sans: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---- Base ---- */
* , *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; color: var(--text-strong); }
p { margin: 0; }
a { color: var(--text-link); text-decoration: none; }
img { max-width: 100%; height: auto; }

.icon { display: inline-block; flex: none; fill: currentColor; }

:where(button, a, input, select, [tabindex]):focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.container { width: min(1180px, 100%); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.container-narrow { width: min(1000px, 100%); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-row {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 13px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { border-radius: 9px; display: block; }
.nav-brand span { font-weight: 800; font-size: 20px; color: var(--navy); letter-spacing: -0.02em; }

.nav-desktop { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-link { font-weight: 600; font-size: 14.5px; color: var(--text-body); padding: 8px 12px; border-radius: 8px; }
.nav-link:hover { background: var(--gray-100); }
.nav-desktop .nav-link:nth-last-child(2) { margin-right: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 17px;
  background: var(--action);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  white-space: nowrap;
  cursor: pointer;
  transition: filter .12s, transform .12s;
}
.btn:hover { filter: brightness(0.94); }
.btn:active { transform: scale(0.97); }
.btn-lg { height: 54px; padding: 0 28px; font-size: clamp(16px, 1.7vw, 18px); box-shadow: 0 6px 18px rgba(95, 129, 152, 0.28); }
.btn-soft { background: var(--action-soft); color: var(--deep-blue); height: 48px; padding: 0 22px; font-size: 15px; }
.btn-soft:hover { filter: brightness(0.96); }

.nav-toggle {
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--navy);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle .icon { width: 26px; height: 26px; }

.nav-menu {
  display: none;
  border-top: 1px solid var(--border-subtle);
  padding: 10px clamp(20px, 5vw, 40px) 16px;
  flex-direction: column;
  gap: 6px;
}
.nav-menu .nav-link { font-size: 16px; padding: 13px 12px; border-radius: 10px; }
.nav-menu .btn { height: 52px; margin-top: 4px; font-size: 16px; }

@media (max-width: 759px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-menu { display: flex; }
}

/* ---- Hero ---- */
.hero { padding: clamp(52px, 7vw, 104px) clamp(20px, 5vw, 40px) clamp(44px, 6vw, 80px); }
.hero-inner { width: min(880px, 100%); margin: 0 auto; text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  margin-bottom: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-accent);
}

.eyebrow {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: clamp(14px, 1.8vw, 20px);
}
.eyebrow-sm { font-size: 13px; margin-bottom: 14px; }

.hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 6.1vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 auto;
  max-width: 14ch;
  text-wrap: balance;
}
.hero p {
  font-weight: 400;
  font-size: clamp(16px, 1.75vw, 19.5px);
  line-height: 1.6;
  color: var(--text-muted);
  margin: clamp(20px, 2.4vw, 28px) auto 0;
  max-width: 56ch;
  text-wrap: pretty;
}
.hero-cta { margin-top: clamp(26px, 3.2vw, 40px); display: flex; justify-content: center; }
.hero-image {
  width: min(1000px, 100%);
  margin: clamp(38px, 5vw, 64px) auto 0;
  border-radius: clamp(16px, 2.4vw, 30px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid color-mix(in srgb, var(--navy) 8%, transparent);
}
.hero-image img { width: 100%; height: auto; display: block; }

/* ---- Section shells ---- */
.section { padding: clamp(60px, 9vw, 116px) clamp(20px, 5vw, 40px); }
.section-border { border-top: 1px solid var(--border-subtle); }
.bg-paper { background: var(--paper); }
.bg-linen { background: var(--linen); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto; }
.section-head h2, h2.section-title {
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}

/* ---- Problème ---- */
.problem-grid {
  margin-top: clamp(36px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface-sunken);
  border-radius: var(--radius-lg);
}
.problem-item .icon { width: 26px; height: 26px; color: var(--blue); margin-top: 1px; }
.problem-item span { font-size: clamp(15px, 1.55vw, 17px); line-height: 1.5; color: var(--text-body); }

/* ---- Solution ---- */
.solution { text-align: center; }
.solution-inner { width: min(760px, 100%); margin: 0 auto; }
.solution-icon {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-pill);
  background: var(--green-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.solution-icon .icon { width: 44px; height: 44px; color: var(--green); }
.solution p {
  font-weight: 400;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  color: var(--text-body);
  margin-top: 22px;
  text-wrap: pretty;
}

/* ---- Fondateur ---- */
.founder-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.founder-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  justify-self: center;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-text h2 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.1; letter-spacing: -0.02em; }
.founder-text p {
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 17.5px);
  line-height: 1.65;
  color: var(--text-body);
  margin-top: 20px;
  text-wrap: pretty;
}
.founder-text .btn-soft { margin-top: 26px; }
.founder-text .btn-soft .icon { width: 20px; height: 20px; }

/* ---- Bénéfices ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}
.benefit-card {
  text-align: center;
  padding: clamp(28px, 3vw, 40px) 24px;
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.benefit-icon .icon { width: 40px; height: 40px; color: #fff; }
.benefit-card h3 { font-weight: 800; font-size: clamp(18px, 2vw, 21px); line-height: 1.2; letter-spacing: -0.01em; }
.benefit-card p { font-size: clamp(14.5px, 1.5vw, 16px); line-height: 1.6; color: var(--text-muted); margin-top: 12px; }

/* ---- Tarifs ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}
.price-card { padding: 28px 24px; background: var(--surface-sunken); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); }
.price-card.featured { background: var(--white); border: 2px solid var(--action); box-shadow: var(--shadow-sm); }
.price-card .label { font-weight: 600; font-size: 14.5px; color: var(--text-muted); }
.price-card .price { margin-top: 14px; display: flex; align-items: baseline; gap: 2px; }
.price-card .amount { font-weight: 800; font-size: clamp(30px, 3.4vw, 40px); letter-spacing: -0.02em; color: var(--navy); }
.price-card .period { font-size: 15px; color: var(--text-muted); font-weight: 600; }
.price-card .contact { margin-top: 14px; font-weight: 800; font-size: clamp(22px, 2.4vw, 27px); letter-spacing: -0.01em; color: var(--navy); }

.reassurance { margin-top: clamp(28px, 3vw, 38px); display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; }
.reassurance span { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--text-body); }
.reassurance .icon { width: 20px; height: 20px; color: var(--green); }

.cta-center { margin-top: clamp(30px, 3.4vw, 44px); display: flex; justify-content: center; }

/* ---- Programme pilote ---- */
.pilot-box {
  width: min(920px, 100%);
  margin: 0 auto;
  background: var(--linen-soft);
  border: 1px solid color-mix(in srgb, var(--green) 22%, transparent);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4.5vw, 56px);
}
.pilot-head { text-align: center; max-width: 420px; margin: 0 auto clamp(30px, 3.6vw, 44px); }
.pilot-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: var(--green-100);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--green-700);
}
.pilot-tag .icon { width: 18px; height: 18px; }
.pilot-head h2 { font-size: clamp(24px, 3.5vw, 36px); line-height: 1.14; letter-spacing: -0.02em; }
.pilot-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.pilot-step { display: flex; align-items: flex-start; gap: 16px; padding: 22px 24px; background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); }
.pilot-step-num {
  flex: none; width: 38px; height: 38px; border-radius: var(--radius-pill);
  background: var(--action); color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.pilot-step div:last-child { font-size: 16px; line-height: 1.5; color: var(--text-body); font-weight: 600; padding-top: 6px; }

/* ---- CTA final / Formulaire ---- */
.final-cta { width: min(640px, 100%); margin: 0 auto; text-align: center; }
.final-cta h2 { font-size: clamp(28px, 4.2vw, 44px); line-height: 1.1; letter-spacing: -0.025em; }
.final-cta p { font-weight: 400; font-size: clamp(15px, 1.6vw, 17.5px); line-height: 1.65; color: var(--text-muted); margin-top: 20px; text-wrap: pretty; }

.contact-form { margin-top: clamp(28px, 3vw, 36px); display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.contact-form input, .contact-form select {
  height: 54px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-body);
}
.contact-form input:focus, .contact-form select:focus {
  border-color: var(--action);
  box-shadow: 0 0 0 3px var(--focus-ring);
  outline: none;
}
.field-name, .field-email { flex: 1; min-width: 220px; max-width: 320px; }
.field-taille { flex: 1; min-width: 200px; max-width: 260px; }
.contact-form .btn { flex: none; width: 100%; }
.form-note { margin-top: 16px; font-size: 13px; color: var(--text-faint); }
.form-error { display: none; margin-top: 14px; font-size: 14px; color: #B3261E; }

/* ---- Footer ---- */
.footer { background: var(--navy); color: color-mix(in srgb, var(--white) 74%, transparent); padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 40px) clamp(28px, 3vw, 40px); }
.footer-grid { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(28px, 4vw, 56px); }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand-name { font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.footer-brand-sub { font-weight: 600; font-size: 12.5px; color: var(--green-300, #8FB89F); margin-top: 3px; }
.footer p { font-size: 13.5px; line-height: 1.6; margin-top: 18px; max-width: 34ch; color: color-mix(in srgb, var(--white) 60%, transparent); }
.footer-heading { font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--white) 55%, transparent); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: color-mix(in srgb, var(--white) 78%, transparent); font-size: 14.5px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: clamp(32px, 4vw, 52px); padding-top: 22px; border-top: 1px solid color-mix(in srgb, var(--white) 12%, transparent); font-size: 13px; color: color-mix(in srgb, var(--white) 50%, transparent); width: min(1120px, 100%); margin-left: auto; margin-right: auto; }

/* ---- Pages simples (merci, légal) ---- */
.simple-page { padding: clamp(60px, 9vw, 100px) clamp(20px, 5vw, 40px); min-height: 60vh; }
.simple-page .container-narrow { text-align: center; }
.simple-page h1 { font-weight: 800; font-size: clamp(28px, 4.2vw, 44px); letter-spacing: -0.025em; }
.simple-page p { font-size: clamp(15px, 1.6vw, 17.5px); line-height: 1.65; color: var(--text-body); margin-top: 20px; max-width: 60ch; margin-left: auto; margin-right: auto; }
.legal-page { padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 40px); }
.legal-page .container-narrow { text-align: left; width: min(760px, 100%); }
.legal-page h1 { font-weight: 800; font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -0.02em; margin-bottom: 28px; }
.legal-page h2 { font-size: 19px; margin-top: 36px; margin-bottom: 10px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.65; color: var(--text-body); margin-top: 8px; }
.legal-page ul { margin-top: 8px; padding-left: 20px; }
.legal-page a.back { display: inline-block; margin-bottom: 24px; font-weight: 600; }

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 560px;
  margin: 0 auto;
  background: var(--navy);
  color: color-mix(in srgb, var(--white) 90%, transparent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
}
.cookie-banner p { font-size: 13.5px; line-height: 1.5; }
.cookie-banner-actions { margin-top: 14px; display: flex; gap: 10px; justify-content: flex-end; }
.cookie-banner .btn-soft { background: color-mix(in srgb, var(--white) 14%, transparent); color: #fff; height: 40px; padding: 0 16px; font-size: 14px; }
.cookie-banner .btn { height: 40px; padding: 0 16px; font-size: 14px; }

/* ---- Article page (pages SEO type "logiciel-elevage-...") ---- */
.container-article { width: min(720px, 100%); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.back-link:hover { color: var(--text-link); text-decoration: none; }
.back-link .icon { width: 18px; height: 18px; }

.article-header { padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 40px) clamp(32px, 4.5vw, 48px); }
.article-header h1 { font-weight: 800; font-size: clamp(28px, 4.6vw, 44px); line-height: 1.12; letter-spacing: -0.02em; color: var(--navy); text-wrap: balance; }
.article-header .lead { font-weight: 400; font-size: clamp(17px, 1.9vw, 19px); line-height: 1.65; color: var(--text-body); margin-top: 22px; text-wrap: pretty; }
.article-header .sub { font-weight: 400; font-size: clamp(16px, 1.7vw, 17.5px); line-height: 1.6; color: var(--text-muted); margin-top: 16px; text-wrap: pretty; }

.toc-box { margin-top: clamp(28px, 3.6vw, 40px); background: var(--surface-sunken); border-radius: var(--radius-lg); padding: 20px 22px; }
.toc-box .toc-label { font-weight: 700; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 4px 20px; }
.toc-grid a { font-size: 14.5px; font-weight: 600; color: var(--text-link); padding: 5px 0; }

.article-section { padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 40px); border-top: 1px solid var(--border-subtle); }
.article-section.bg-sunken { background: var(--surface-sunken); }
.article-section-head { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.article-section-head .icon { width: 22px; height: 22px; color: var(--text-muted); }
.article-section-head h2 { font-weight: 800; font-size: clamp(22px, 3vw, 29px); line-height: 1.2; letter-spacing: -0.015em; color: var(--navy); text-wrap: balance; }
.article-section > .container-article > p { font-size: 16.5px; line-height: 1.65; color: var(--text-body); text-wrap: pretty; }
.article-section > .container-article > p + p { margin-top: 16px; }
.article-section .intro { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 0 0 22px; }

.icon-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.icon-list li { display: flex; align-items: flex-start; gap: 14px; }
.icon-list .icon { width: 21px; height: 21px; flex: none; margin-top: 2px; }
.icon-list span.text { font-size: 16.5px; line-height: 1.6; color: var(--text-body); }
.icon-list span.text strong { color: var(--navy); }

.device-badges { display: flex; gap: clamp(20px, 4vw, 40px); flex-wrap: wrap; }
.device-badges div { display: flex; align-items: center; gap: 10px; }
.device-badges .icon { width: 24px; height: 24px; color: var(--blue); }
.device-badges span { font-size: 15px; font-weight: 600; color: var(--text-body); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 4px 20px; }
.faq-item summary { cursor: pointer; padding: 16px 0; list-style: revert; }
.faq-item summary h3 { display: inline; font-weight: 700; font-size: 17px; line-height: 1.4; color: var(--navy); }
.faq-item p { font-size: 15.5px; line-height: 1.6; color: var(--text-body); margin: 0 0 18px; }

.article-cta { text-align: center; padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 40px); border-top: 1px solid var(--border-subtle); }
.article-cta-inner { width: min(640px, 100%); margin: 0 auto; }
.article-cta .icon { width: 22px; height: 22px; color: var(--green-700); margin-bottom: 14px; }
.article-cta h2 { font-weight: 800; font-size: clamp(24px, 3.4vw, 32px); line-height: 1.2; letter-spacing: -0.02em; color: var(--navy); text-wrap: balance; }
.article-cta p { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.65; color: var(--text-body); margin-top: 18px; text-wrap: pretty; }
