:root {
  color-scheme: light;
  --ink: #14231a;
  --ink-soft: #2c3a31;
  --muted: #4d5a51;
  --muted-2: #717d74;
  --line: #d8e2da;
  --line-soft: #e9efe9;
  --surface: #ffffff;
  --surface-soft: #f4f8f3;
  --surface-mute: #eef3ec;
  --leaf: #e6f3e7;
  --leaf-strong: #d4ebd5;

  --primary: #2d7a3a;
  --primary-strong: #1f5e2c;
  --primary-soft: #4caf50;
  --accent: #66bb6a;

  --warning: #a73a00;
  --warning-bg: #fff3e0;
  --warning-line: #ffd9bf;
  --danger: #ba1a1a;
  --danger-bg: #ffe5e1;

  --shadow-xs: 0 1px 2px rgba(20, 35, 26, 0.06);
  --shadow-sm: 0 6px 18px rgba(20, 50, 28, 0.07);
  --shadow-md: 0 18px 40px rgba(20, 60, 30, 0.12);
  --shadow-lg: 0 30px 70px rgba(16, 50, 26, 0.18);
  --shadow-phone: 0 34px 70px -18px rgba(16, 45, 24, 0.45), 0 8px 24px rgba(16, 45, 24, 0.18);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-2xl: 40px;

  --maxw: 1180px;
  --gutter: 1.4rem;

  --grad-primary: linear-gradient(135deg, #2d7a3a 0%, #43a047 55%, #66bb6a 100%);
  --grad-soft: linear-gradient(180deg, #f3f9f2 0%, #ffffff 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

::selection {
  background: var(--leaf-strong);
  color: var(--primary-strong);
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -4rem;
  z-index: 40;
  background: #fff;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ---------------------------------------------------------- Header */
.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(216, 226, 218, 0.7);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0.7rem var(--gutter);
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  height: 52px;
  width: auto;
}

.nav-toggle {
  align-items: center;
  appearance: none;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  position: relative;
  z-index: 45;
  width: 44px;
}

.nav-toggle span {
  background: var(--primary);
  border-radius: 999px;
  display: block;
  height: 2.5px;
  left: 12px;
  position: absolute;
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
  width: 20px;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.main-nav {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.15rem;
  justify-content: flex-end;
}

.main-nav a,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  min-height: 42px;
  padding: 0.5rem 0.68rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.main-nav a:hover {
  background: var(--leaf);
  color: var(--primary-strong);
}

.main-nav a.nav-cta {
  background: var(--primary);
  color: #fff;
  padding-inline: 1rem;
  box-shadow: 0 6px 16px rgba(45, 122, 58, 0.28);
}

.main-nav a.nav-cta:hover {
  background: var(--primary-strong);
  transform: translateY(-1px);
}

.site-search {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  display: flex;
  flex: 0 1 172px;
  margin-left: 0.15rem;
  min-height: 42px;
  overflow: hidden;
  padding: 0.2rem;
  box-shadow: var(--shadow-xs);
}

.site-search input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  min-width: 0;
  outline: none;
  padding: 0.45rem 0.35rem 0.45rem 0.75rem;
  width: 100%;
}

.site-search input::placeholder {
  color: var(--muted-2);
}

.site-search button {
  background: var(--leaf);
  border: 0;
  border-radius: 999px;
  color: var(--primary-strong);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
}

.site-search button:hover {
  background: var(--leaf-strong);
}

/* Sélecteur de langue compact (menu déroulant : langue courante + ▾) */
.lang-switch {
  position: relative;
  display: inline-block;
  margin: 0 0.65rem;
}
.lang-switch > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  min-height: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted-2);
  box-shadow: var(--shadow-xs);
}
.lang-switch > summary::-webkit-details-marker { display: none; }
.lang-switch > summary::marker { content: ""; }
.lang-switch > summary::after { content: "\25BE"; font-size: 0.7em; opacity: 0.7; }
.lang-switch[open] > summary { color: var(--primary-strong); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.3rem);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 0.6rem;
  box-shadow: var(--shadow-sm);
  padding: 0.3rem;
  min-width: 8rem;
  z-index: 60;
}
.main-nav .lang-menu a {
  border-radius: 0.4rem;
  color: var(--muted-2);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  width: auto;
}
.main-nav .lang-menu a:hover {
  background: var(--leaf);
  color: var(--primary-strong);
}
.main-nav .lang-menu a.is-active {
  background: var(--primary);
  color: #fff;
}

/* Bannière de suggestion de langue (non-intrusive, SEO-safe) */
.lang-suggest {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  font-size: 0.9rem;
  max-width: 92vw;
}
.lang-suggest-go {
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}
.lang-suggest-go:hover { background: var(--primary-strong); }
.lang-suggest-x {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-2);
  font-size: 0.85rem;
  padding: 0.2rem 0.4rem;
}

/* ---------------------------------------------------------- Buttons */
.button {
  border: 1px solid var(--line);
  color: var(--ink);
  gap: 0.45rem;
  background: #fff;
  font-size: 0.98rem;
  padding: 0.7rem 1.25rem;
  box-shadow: var(--shadow-xs);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.button.primary {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 26px rgba(45, 122, 58, 0.32);
}

.button.primary:hover {
  box-shadow: 0 16px 32px rgba(45, 122, 58, 0.4);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  border-color: rgba(20, 35, 26, 0.18);
}

/* App store style badges */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.store-badge {
  align-items: center;
  background: var(--ink);
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0.5rem 1.1rem 0.5rem 0.95rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-sm);
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-badge svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: #fff;
}

.store-badge .store-text {
  display: grid;
  line-height: 1.15;
}

.store-badge .store-text small {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  opacity: 0.82;
  text-transform: uppercase;
}

.store-badge .store-text strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.store-badge.is-soon {
  background: #fff;
  border: 1px dashed var(--line);
  color: var(--muted);
}

.store-badge.is-soon svg {
  fill: var(--primary);
}

.store-badge.is-soon .store-text small {
  color: var(--primary);
  opacity: 1;
}

.store-badge.is-soon .store-text strong {
  color: var(--ink);
}

/* ---------------------------------------------------------- Headings */
h1,
h2,
h3,
h4 {
  color: inherit;
  line-height: 1.08;
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: 1.18rem;
}

.eyebrow {
  align-items: center;
  color: var(--primary-strong);
  display: inline-flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-soft);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  margin: 1.1rem 0 0;
  max-width: 60ch;
  overflow-wrap: break-word;
}

/* ---------------------------------------------------------- Home hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(102, 187, 106, 0.22), transparent 60%),
    radial-gradient(900px 480px at 8% 8%, rgba(76, 175, 80, 0.12), transparent 55%),
    linear-gradient(180deg, #f3f9f2 0%, #ffffff 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(45, 122, 58, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(1000px 600px at 75% 10%, #000 0%, transparent 70%);
  mask-image: radial-gradient(1000px 600px at 75% 10%, #000 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(2.6rem, 5vw, 4.6rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: none;
  white-space: pre-line;
  font-size: clamp(1.4rem, 0.65rem + 2.5vw, 2.2rem);
  line-height: 1.13;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero-copy h1 .hl {
  color: var(--primary);
  position: relative;
  background-image: linear-gradient(90deg, var(--primary-soft), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% 0.16em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  margin-top: 1.8rem;
}

.trust-item {
  align-items: center;
  color: var(--ink-soft);
  display: inline-flex;
  font-size: 0.92rem;
  gap: 0.5rem;
}

.trust-item::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    var(--leaf-strong)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f5e2c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

.trust-item strong {
  font-weight: 700;
}

/* Hero visual / phones */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 0;
  min-width: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 48%;
  width: 84%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 187, 106, 0.28) 0%, rgba(102, 187, 106, 0.08) 45%, transparent 70%);
  z-index: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 70%;
  height: 32px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(16, 45, 24, 0.28);
  filter: blur(26px);
  z-index: 0;
}

.hero-visual .phone-main {
  width: min(290px, 78%);
  z-index: 2;
}

.hero-visual .phone-aside {
  position: absolute;
  width: min(186px, 50%);
  right: -2%;
  bottom: 8%;
  z-index: 3;
  transform: rotate(4deg);
}

.hero-visual .float-card {
  position: absolute;
  left: -4%;
  top: 16%;
  z-index: 4;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 220px;
}

.hero-visual .float-card .dot {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--danger-bg);
  color: var(--danger);
  font-weight: 800;
  font-size: 0.95rem;
}

.hero-visual .float-card.is-ok .dot {
  background: var(--leaf-strong);
  color: var(--primary-strong);
}

.hero-visual .float-card strong {
  display: block;
  font-size: 0.92rem;
}

.hero-visual .float-card span {
  color: var(--muted-2);
  font-size: 0.78rem;
}

/* ---------------------------------------------------------- Phone mockup */
.phone {
  position: relative;
  aspect-ratio: 720 / 1462;
  background: #0c0f0d;
  border-radius: 13% / 6%;
  padding: 1.3%;
  box-shadow: var(--shadow-phone);
}

.phone::before {
  content: none;
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12% / 5.3%;
}

/* ---------------------------------------------------------- Page hero (interior) */
.page-hero {
  background:
    radial-gradient(700px 320px at 92% -20%, rgba(102, 187, 106, 0.2), transparent 60%),
    var(--grad-soft);
  border-bottom: 1px solid var(--line-soft);
}

.page-hero .inner {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(2.2rem, 4vw, 3.6rem) var(--gutter);
  width: 100%;
}

.page-hero.has-photo .inner {
  align-items: center;
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  grid-template-columns: 1.2fr 0.8fr;
}

.page-hero-text {
  min-width: 0;
}

.page-hero-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
}

.page-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-photo-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.hero-photo-badge.is-danger {
  background: var(--danger);
  color: #fff;
}

.hero-photo-badge.is-warning {
  background: var(--warning);
  color: #fff;
}

.hero-photo-badge.is-ok {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 760px) {
  .page-hero.has-photo .inner {
    grid-template-columns: 1fr;
  }

  .page-hero-photo {
    order: -1;
  }
}

.breadcrumbs {
  color: var(--muted-2);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.breadcrumbs a {
  color: inherit;
}

/* ---------------------------------------------------------- Generic layout */
.content-wrap {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 4.5rem;
  width: 100%;
}

.section {
  margin-top: 3.4rem;
  min-width: 0;
}

.section:first-child {
  margin-top: 0;
}

.section > p,
.section li,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.section > p {
  max-width: 74ch;
  overflow-wrap: anywhere;
}

.section h2 {
  max-width: 26ch;
}

/* Cards grid */
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  display: block;
  min-width: 0;
  padding: 1.4rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card-link {
  color: var(--ink);
  text-decoration: none;
}

.card-link:hover {
  border-color: var(--leaf-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.card-image {
  aspect-ratio: 1;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
  padding: 0.25rem;
  width: 100%;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------------------------------------------------------- Showcase blocks (home / app) */
.block {
  margin: 0 auto;
  max-width: var(--maxw);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.block-soft {
  background: var(--surface-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.block-head {
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  padding-top: clamp(3rem, 5vw, 4.4rem);
}

.block-head .eyebrow {
  justify-content: center;
}

.block-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1rem auto 0;
  max-width: 60ch;
}

/* Screenshot strip */
.strip {
  padding: clamp(2.4rem, 4vw, 3.4rem) 0 clamp(2.8rem, 5vw, 4rem);
  position: relative;
}

.strip-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.6rem var(--gutter) 1.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.strip-track::-webkit-scrollbar {
  height: 8px;
}

.strip-track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.strip-item {
  flex: 0 0 auto;
  width: 192px;
  scroll-snap-align: center;
}

.strip-item .phone {
  width: 100%;
}

.strip-item figcaption {
  color: var(--muted-2);
  font-size: 0.84rem;
  margin-top: 0.7rem;
  text-align: center;
}

/* Feature showcase rows */
.feature {
  align-items: center;
  display: grid;
  gap: clamp(1.6rem, 5vw, 4rem);
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(2.8rem, 5vw, 4.8rem) var(--gutter);
  position: relative;
}

/* Full-bleed tinted band behind a centered feature, for rhythm */
.feature.tinted::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f1f7f0 0%, #f6faf5 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  z-index: -2;
}

.feature.reverse .feature-media {
  order: 2;
}

.feature-copy h2 {
  margin-bottom: 0.4rem;
  max-width: 18ch;
}

.feature-copy p {
  color: var(--muted);
  margin: 0.9rem 0 0;
  max-width: 52ch;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.feature-list li {
  align-items: flex-start;
  color: var(--ink-soft);
  display: flex;
  gap: 0.65rem;
  font-size: 0.98rem;
}

.feature-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 7px;
  background:
    var(--leaf)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d7a3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}

.feature-media {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 0;
}

.feature-copy {
  min-width: 0;
}

.feature-media .phone {
  width: min(290px, 76%);
}

.feature-media.duo {
  align-items: flex-end;
  min-height: 0;
}

.feature-media.duo .phone {
  width: min(230px, 56%);
}

.feature-media.duo .phone:first-child {
  transform: translateY(-6%) rotate(-4deg);
  z-index: 1;
}

.feature-media.duo .phone:last-child {
  margin-left: -16%;
  transform: rotate(4deg);
  z-index: 2;
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: 2% 8% 8%;
  z-index: -2;
  border-radius: 36px;
  background: linear-gradient(155deg, var(--leaf) 0%, rgba(255, 255, 255, 0.4) 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.feature.tinted .feature-media::before {
  background: linear-gradient(155deg, #ffffff 0%, rgba(214, 235, 213, 0.55) 100%);
}

.feature-media::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 62%;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(16, 45, 24, 0.22);
  filter: blur(20px);
  z-index: -2;
}

.feature-media .glow {
  position: absolute;
  inset: 6% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 187, 106, 0.4), transparent 66%);
  filter: blur(20px);
}

/* Feature icon grid */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.2rem auto clamp(3rem, 5vw, 4.4rem);
  max-width: var(--maxw);
  padding: 0 var(--gutter);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: 1.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--leaf-strong);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .ico {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(150deg, var(--primary-soft), var(--accent));
  color: #fff;
  box-shadow: 0 8px 18px rgba(45, 122, 58, 0.28);
}

.feature-card .ico svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
}

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

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.2rem auto clamp(3rem, 5vw, 4.4rem);
  max-width: var(--maxw);
  padding: 0 var(--gutter);
  counter-reset: step;
}

.step {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: 1.6rem 1.4rem 1.4rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 1.4rem;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(45, 122, 58, 0.32);
}

.step h3 {
  margin: 0.7rem 0 0.4rem;
}

.step p {
  color: var(--muted);
  margin: 0;
  font-size: 0.96rem;
}

/* Stat band */
.stat-band {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(2.2rem, 4vw, 3.2rem) var(--gutter);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--primary-strong);
  letter-spacing: -0.02em;
}

.stat span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Lifestyle banner */
.lifestyle {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(2.4rem, 4vw, 3.6rem) var(--gutter);
}

.lifestyle-inner {
  align-items: center;
  border-radius: var(--radius-2xl);
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: linear-gradient(120deg, #163a20 0%, #225d31 60%, #2d7a3a 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.lifestyle-inner .copy {
  padding: clamp(1.8rem, 4vw, 3rem);
}

.lifestyle-inner .copy h2 {
  color: #fff;
  max-width: 16ch;
}

.lifestyle-inner .copy p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 0.9rem;
  max-width: 46ch;
}

.lifestyle-inner .copy .eyebrow {
  color: #bfe6c4;
}

.lifestyle-inner .copy .eyebrow::before {
  background: #bfe6c4;
}

.lifestyle-inner .photo {
  align-self: stretch;
  min-height: 100%;
}

.lifestyle-inner .photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* CTA band */
.cta-band {
  margin: clamp(3rem, 5vw, 4.6rem) auto;
  max-width: var(--maxw);
  padding: 0 var(--gutter);
}

.cta-inner {
  background: var(--grad-primary);
  border-radius: var(--radius-2xl);
  color: #fff;
  overflow: hidden;
  padding: clamp(2.4rem, 5vw, 3.8rem);
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 75%);
}

.cta-inner > * {
  position: relative;
}

.cta-inner h2 {
  color: #fff;
  margin: 0 auto;
  max-width: 20ch;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 1rem auto 0;
  max-width: 52ch;
}

.cta-inner .actions {
  justify-content: center;
}

.cta-inner .button.secondary {
  background: rgba(255, 255, 255, 0.95);
  border-color: transparent;
  color: var(--primary-strong);
}

.cta-inner .button.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.cta-inner .store-row {
  justify-content: center;
}

/* Full-bleed cinematic banner */
.banner {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(380px, 56vh, 560px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.banner.is-compact {
  min-height: clamp(300px, 42vh, 420px);
}

.banner-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 18s ease-in-out infinite alternate;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 28, 17, 0.32) 0%, rgba(12, 28, 17, 0.55) 100%);
}

.banner.is-left::after {
  background: linear-gradient(90deg, rgba(11, 26, 16, 0.82) 0%, rgba(11, 26, 16, 0.5) 45%, rgba(11, 26, 16, 0.08) 100%);
}

.banner-copy {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(2.4rem, 5vw, 4rem) var(--gutter);
  text-align: center;
  width: 100%;
}

.banner.is-left .banner-copy {
  text-align: left;
}

.banner-copy h2 {
  color: #fff;
  margin: 0 auto;
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.banner.is-left .banner-copy h2 {
  margin-inline: 0;
}

.banner-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  margin: 1rem auto 0;
  max-width: 56ch;
}

.banner.is-left .banner-copy p {
  margin-inline: 0;
}

.banner-copy .eyebrow {
  color: #cdeccf;
}

.banner-copy .eyebrow::before {
  background: #cdeccf;
}

.banner.is-left .banner-copy .actions {
  justify-content: flex-start;
}

.banner-copy .actions {
  justify-content: center;
}

.banner-copy .button.secondary {
  background: #fff;
  border-color: transparent;
  color: var(--primary-strong);
}

.banner-copy .button.ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}

@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.5%, -1.5%); }
}

/* ---------------------------------------------------------- Media panel (used by deep pages) */
.media-panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 1.6rem 0 0;
  max-width: 760px;
  overflow: hidden;
}

.media-panel.is-compact {
  max-width: 360px;
}

.media-panel.is-cover {
  max-width: 880px;
}

.media-panel img {
  background: var(--surface-soft);
  display: block;
  max-height: 620px;
  object-fit: contain;
  width: 100%;
}

.media-panel.is-cover img {
  aspect-ratio: 16 / 10;
  max-height: none;
  object-fit: cover;
}

.media-panel figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  padding: 0.75rem 1rem 1rem;
}

/* Photo grid (plant gallery) */
.photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.photo-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.photo-card img {
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
  display: block;
  object-fit: cover;
  width: 100%;
}

.photo-card figcaption {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem;
}

.photo-card span,
.photo-card small {
  color: var(--muted);
}

/* Listing */
.listing {
  display: grid;
  gap: 0 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.3rem;
}

.listing a {
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  display: block;
  font-weight: 700;
  padding: 0.85rem 1.8rem 0.85rem 0;
  position: relative;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.listing a::after {
  color: var(--primary);
  content: "→";
  font-weight: 800;
  position: absolute;
  right: 0;
  top: 0.85rem;
  transition: transform 0.18s ease;
}

.listing a:hover {
  border-color: var(--primary-soft);
  color: var(--primary-strong);
  padding-left: 0.25rem;
}

.listing a:hover::after {
  transform: translateX(4px);
}

.listing span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.2rem;
}

/* Index navigation */
.index-panel {
  border-top: 1px solid var(--line-soft);
  padding-top: 2rem;
}

.index-panel h2 {
  color: var(--primary-strong);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.index-panel > p {
  font-size: 1rem;
  max-width: 72ch;
}

.index-list {
  column-gap: 2.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
  max-width: 100%;
  min-width: 0;
}

.index-list a {
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  display: block;
  min-width: 0;
  padding: 0.9rem 2rem 0.95rem 0;
  position: relative;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.index-list a::after {
  color: var(--primary);
  content: "→";
  font-weight: 800;
  position: absolute;
  right: 0;
  top: 0.9rem;
  transition: transform 0.18s ease;
}

.index-list a:hover {
  border-color: var(--primary-soft);
  color: var(--primary-strong);
  padding-left: 0.25rem;
}

.index-list a:hover::after {
  transform: translateX(4px);
}

.index-title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.index-desc {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 0.25rem;
  overflow-wrap: anywhere;
}

/* ---------------------------------------------------------- Site search */
.search-page {
  max-width: 900px;
}

.search-panel {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding: 0.75rem;
}

.search-panel input {
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--ink);
  flex: 1 1 auto;
  font: inherit;
  min-height: 48px;
  min-width: 0;
  outline: none;
  padding: 0.75rem 1rem;
}

.search-panel input:focus,
.site-search input:focus {
  box-shadow: 0 0 0 3px rgba(45, 122, 58, 0.12);
}

.search-help,
.search-status {
  color: var(--muted);
}

.search-help {
  font-size: 0.94rem;
  margin-top: 0.9rem;
}

.search-status {
  font-weight: 700;
  margin-top: 1.4rem;
}

.search-results {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.search-result {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  color: inherit;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.search-result:hover {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.search-result-meta {
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.search-result span:last-child {
  color: var(--muted);
}

/* Callout */
.callout {
  background: var(--warning-bg);
  border: 1px solid var(--warning-line);
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-md);
  margin: 2rem 0;
  padding: 1.1rem 1.3rem;
}

.callout strong {
  color: var(--warning);
}

.callout p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

/* FAQ */
.faq {
  margin-top: 3.6rem;
}

.faq details,
.section-faq details {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  margin-top: 0.7rem;
  padding: 1rem 1.2rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq details[open],
.section-faq details[open] {
  border-color: var(--leaf-strong);
  box-shadow: var(--shadow-xs);
}

.faq summary,
.section-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}

.faq summary::-webkit-details-marker,
.section-faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after,
.section-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  transition: transform 0.18s ease;
}

details[open] > summary::after {
  transform: rotate(45deg);
}

.faq details p,
.section-faq details p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Legal / article body */
.legal-content {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: min(5vw, 2.2rem);
  box-shadow: var(--shadow-xs);
}

.legal-content h2 {
  border-bottom: 1px solid var(--line-soft);
  color: var(--primary-strong);
  font-size: 1.4rem;
  margin-top: 2rem;
  padding-bottom: 0.45rem;
}

.legal-version {
  color: var(--muted-2);
  font-size: 0.92rem;
}

table {
  border-collapse: collapse;
  margin: 1rem 0;
  width: 100%;
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-soft);
}

/* ---------------------------------------------------------- Footer */
.site-footer {
  background: #122318;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4rem;
}

.site-footer img {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.55rem;
  width: 188px;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 3.2rem var(--gutter) 2.4rem;
}

.footer-inner > div:first-child p {
  margin-top: 1rem;
  max-width: 38ch;
  font-size: 0.94rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-links strong {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 1.2rem var(--gutter) 1.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------------------------------------------------------- Motion & animation */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(20, 50, 28, 0.09);
}

/* Reveal on scroll */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* Hero entrance */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(34px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.js .hero .anim {
  opacity: 0;
  animation: heroIn 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.js .hero-copy .anim:nth-child(1) { animation-delay: 0.05s; }
.js .hero-copy .anim:nth-child(2) { animation-delay: 0.14s; }
.js .hero-copy .anim:nth-child(3) { animation-delay: 0.23s; }
.js .hero-copy .anim:nth-child(4) { animation-delay: 0.32s; }
.js .hero-copy .anim:nth-child(5) { animation-delay: 0.41s; }
.js .hero-copy .anim:nth-child(6) { animation-delay: 0.5s; }

.js .hero-visual {
  animation: heroVisualIn 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.18s both;
}

/* Animated underline on the highlighted word */
@keyframes hlUnderline {
  from { background-size: 0% 0.16em; }
  to { background-size: 100% 0.16em; }
}

.js .hero-copy h1 .hl {
  background-size: 0% 0.16em;
  animation: hlUnderline 0.9s 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

/* Hero phone idle motion + parallax */
.hero-visual .phone-main {
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: transform 0.35s ease-out;
}

@keyframes floatAside {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-14px); }
}

.hero-visual .phone-aside {
  animation: floatAside 6.5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero-visual .float-card {
  animation: floaty 5s ease-in-out infinite;
}

.hero-visual .float-card:nth-of-type(1) {
  left: -7%;
  top: 6%;
}

.hero-visual .float-card:nth-of-type(2) {
  left: -5%;
  top: auto;
  bottom: 7%;
  animation-delay: -2.4s;
}

/* Decorative blobs + leaves */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  z-index: 0;
  pointer-events: none;
}

.hero-blob.b1 {
  width: 400px;
  height: 400px;
  top: -130px;
  right: -70px;
  background: radial-gradient(circle, rgba(102, 187, 106, 0.5), transparent 70%);
  animation: blob 17s ease-in-out infinite;
}

.hero-blob.b2 {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -90px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.32), transparent 70%);
  animation: blob 21s ease-in-out infinite reverse;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(26px, -22px) scale(1.08); }
  66% { transform: translate(-20px, 18px) scale(0.95); }
}

.hero-leaf {
  position: absolute;
  z-index: 0;
  color: rgba(45, 122, 58, 0.16);
  pointer-events: none;
}

.hero-leaf svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.hero-leaf.l1 { top: 13%; left: 5%; width: 40px; animation: leafFloat 9s ease-in-out infinite; }
.hero-leaf.l2 { bottom: 16%; left: 44%; width: 30px; animation: leafFloat 11s ease-in-out infinite 1s; }
.hero-leaf.l3 { top: 26%; right: 47%; width: 26px; animation: leafFloat 13s ease-in-out infinite 0.5s; }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(45, 122, 58, 0.35);
  border-radius: 14px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding-top: 7px;
  z-index: 2;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--primary);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(13px); }
}

/* Marquee strip */
.strip-rail {
  overflow: hidden;
  padding: 0.6rem 0 1.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.strip-track.marquee {
  width: max-content;
  overflow: visible;
  flex-wrap: nowrap;
  padding-inline: 0;
  scroll-snap-type: none;
  animation: marquee 64s linear infinite;
}

.strip-track.marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.55rem)); }
}

@media (hover: none) {
  .scroll-cue { display: none; }
}

/* ---------------------------------------------------------- Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .eyebrow,
  .trust-row,
  .actions,
  .store-row {
    justify-content: center;
  }

  .lead {
    margin-inline: auto;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .hero-visual .phone-main {
    width: min(260px, 64%);
  }

  .feature,
  .lifestyle-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature.reverse .feature-media {
    order: 0;
  }

  .feature-copy h2,
  .feature-copy p {
    max-width: none;
    margin-inline: auto;
  }

  .feature-list {
    max-width: 30rem;
    margin-inline: auto;
    text-align: left;
  }

  .feature-media .phone {
    width: min(260px, 60%);
  }

  .lifestyle-inner .photo {
    order: -1;
  }
}

@media (max-width: 1040px) {
  .site-header {
    overflow: visible;
    width: 100%;
  }

  .nav-wrap {
    flex-wrap: nowrap;
    gap: 0.75rem;
    justify-content: flex-start;
    margin: 0;
    min-height: 52px;
    max-width: 100%;
    position: relative;
    width: 100%;
  }

  .nav-toggle {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(45, 122, 58, 0.22);
    display: inline-flex !important;
    opacity: 1 !important;
    margin-left: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    visibility: visible !important;
  }

  .nav-toggle span {
    background: #fff;
  }

  .main-nav {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 0.15rem;
    left: var(--gutter);
    max-height: calc(100vh - 96px);
    min-width: 0;
    opacity: 0;
    overflow-y: auto;
    padding: 0.7rem;
    pointer-events: none;
    position: fixed;
    right: var(--gutter);
    top: 4.25rem;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: auto;
    z-index: 40;
  }

  .main-nav a {
    flex: 0 0 auto;
    justify-content: flex-start;
    min-height: 44px;
    padding-inline: 0.95rem;
    width: 100%;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-search {
    flex: 0 0 auto;
    margin: 0.35rem 0;
    width: 100%;
  }

  .lang-switch {
    align-self: center;
    margin: 0.35rem 0;
  }

  .main-nav a.nav-cta {
    justify-content: center;
  }

  .grid,
  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1rem;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing,
  .index-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1.1rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  .page-hero h1 {
    max-width: 100%;
  }

  .lead,
  .section > p,
  .index-title,
  .index-desc {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .hero-visual .float-card {
    left: 0;
    max-width: 190px;
  }

  .strip-item {
    width: 168px;
  }

  .brand img {
    height: 46px;
    width: auto;
  }
}

/* ============================================================
   Hero — 4 grandes cartes "fonctions" (remplacent la trust-row)
   ============================================================ */
/* Apparition échelonnée façon "pop" des 4 cartes quick */
@keyframes cardPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.js .hero-quick-cards .hero-quick-card {
  animation: cardPop 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(0.4s + var(--i) * 0.1s);
}

/* ============================================================
   Hero — écran "plante toxique" reconstruit en HTML/CSS
   (occupe le slot .phone-aside, à droite du scan)
   ============================================================ */
.phone-plant {
  container-type: inline-size;
}

.phone-plant .pscreen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12% / 5.3%;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf4 100%);
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.phone-plant .pscreen-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 2.6cqw;
  padding: 6cqw 4.5cqw 3cqw;
}

.phone-plant .pscreen-back {
  font-size: 6.5cqw;
  line-height: 1;
  color: var(--muted-2);
  font-weight: 600;
}

.phone-plant .pscreen-titles {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  min-width: 0;
}

.phone-plant .pscreen-titles strong {
  font-size: 4.4cqw;
  font-weight: 800;
}

.phone-plant .pscreen-titles span {
  font-size: 3.3cqw;
  color: var(--muted-2);
}

.phone-plant .pscreen-photo {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 4.5cqw;
  border-radius: 5cqw;
  overflow: hidden;
}

.phone-plant .pscreen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5cqw;
  display: block;
}

/* Ligne de scan IA qui balaie la photo */
.phone-plant .pscreen-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: -28%;
  height: 26cqw;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(102, 187, 106, 0) 0%,
    rgba(102, 187, 106, 0.28) 65%,
    rgba(214, 240, 200, 0.85) 100%
  );
  box-shadow: 0 1cqw 3cqw rgba(102, 187, 106, 0.55);
  animation: plantScan 3s cubic-bezier(0.45, 0, 0.55, 1) infinite 0.6s;
}

@keyframes plantScan {
  0% {
    top: -28%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Carte d'alerte rouge, qui chevauche le bas de la photo */
.phone-plant .pscreen-alert {
  position: relative;
  z-index: 2;
  margin: -9cqw 4.5cqw 0;
  background: #fff;
  border-radius: 5cqw;
  padding: 3.8cqw;
  box-shadow: 0 5cqw 12cqw -4cqw rgba(186, 26, 26, 0.4), 0 0 0 1cqw rgba(186, 26, 26, 0.08);
  animation: alertRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.95s both;
}

@keyframes alertRise {
  from {
    opacity: 0;
    transform: translateY(7cqw);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.phone-plant .pscreen-alert-top {
  display: flex;
  align-items: flex-start;
  gap: 2.8cqw;
}

.phone-plant .pscreen-alert-ico {
  flex: 0 0 auto;
  width: 7.6cqw;
  height: 7.6cqw;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-weight: 900;
  font-size: 5cqw;
  display: grid;
  place-items: center;
  animation: alertPulse 2.4s ease-in-out infinite 1.8s;
}

@keyframes alertPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(186, 26, 26, 0.5);
  }
  50% {
    box-shadow: 0 0 0 2.8cqw rgba(186, 26, 26, 0);
  }
}

.phone-plant .pscreen-alert-head {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  min-width: 0;
}

.phone-plant .pscreen-alert-head strong {
  color: var(--danger);
  font-size: 3.9cqw;
  font-weight: 800;
}

.phone-plant .pscreen-name {
  font-size: 5.6cqw;
  font-weight: 800;
  margin-top: 0.6cqw;
}

.phone-plant .pscreen-alert-head em {
  font-size: 3.5cqw;
  color: var(--muted-2);
  font-style: italic;
}

.phone-plant .pscreen-alert-risk {
  margin-top: 3cqw;
  padding-top: 3cqw;
  border-top: 0.5cqw solid var(--danger-bg);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.phone-plant .pscreen-alert-risk span {
  color: var(--danger);
  font-weight: 800;
  font-size: 3.9cqw;
}

.phone-plant .pscreen-alert-risk small {
  color: var(--muted);
  font-size: 3.4cqw;
  margin-top: 0.4cqw;
}

.phone-plant .pscreen-foot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 2.2cqw;
  margin: 3cqw 4.5cqw 5cqw;
  font-size: 3.5cqw;
  font-weight: 700;
  color: var(--primary-strong);
}

.phone-plant .pscreen-check {
  flex: 0 0 auto;
  width: 5.4cqw;
  height: 5.4cqw;
  border-radius: 50%;
  background: var(--leaf-strong);
  color: var(--primary-strong);
  font-size: 3.4cqw;
  font-weight: 900;
  display: grid;
  place-items: center;
}

/* ============================================================
   HOME HERO — composition finale (désencombrée + animée)
   Source unique : remplace l'ancien bloc "target composition".
   ============================================================ */
.hero-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  max-width: 1240px;
  align-items: center;
  padding-top: clamp(1.4rem, 3vw, 2.6rem);
  padding-bottom: clamp(1.6rem, 3vw, 3rem);
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.hero-copy h1 {
  font-size: clamp(1.95rem, 1.2rem + 1.6vw, 2.9rem);
  line-height: 1.08;
}

.hero-copy .lead {
  margin-top: 0.85rem;
  max-width: 46ch;
}

/* --- 4 cartes "quick" sous le titre --- */
.hero-quick-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 1.6rem;
  max-width: 560px;
}

.hero-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1rem 0.5rem 0.85rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.hero-quick-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.hero-quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--leaf-strong);
}

.hero-quick-card:hover::after {
  transform: translateX(120%);
}

.hero-quick-ico {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 32%, #ffffff 0%, var(--leaf) 70%, var(--leaf-strong) 100%);
  box-shadow: inset 0 0 0 1px rgba(45, 122, 58, 0.08);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-quick-card:hover .hero-quick-ico {
  transform: scale(1.09) rotate(-4deg);
}

.hero-quick-ico img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero-quick-label {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* --- Visuel : téléphone scan + téléphone plante + 1 carte score --- */
.hero-visual {
  align-items: center;
  isolation: isolate;
  min-height: 0;
}

.hero-visual::before {
  left: 56%;
  top: 46%;
  width: min(620px, 102%);
}

.hero-visual::after {
  bottom: 4%;
  width: min(440px, 80%);
  opacity: 0.6;
}

/* Conteneur des 2 téléphones : sert de repère de position au mockup plante.
   Pleine largeur du visuel -> desktop strictement identique ; permet le
   passage en colonne (téléphones puis carte score) en mobile. */
.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

.hero-visual .phone {
  box-shadow:
    0 36px 72px -26px rgba(16, 45, 24, 0.5),
    0 12px 26px rgba(16, 45, 24, 0.16);
}

.hero-visual .phone-main {
  width: min(286px, 44vw);
  z-index: 3;
}

.hero-visual .phone-aside {
  width: min(210px, 32vw);
  right: -2%;
  bottom: 11%;
  z-index: 4;
}

/* Carte flottante "Analyse selon votre cheval" (score) */
.hero-visual .float-card.float-card-horse {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(223, 232, 222, 0.86);
  border-radius: 24px;
  box-shadow:
    0 28px 60px -36px rgba(20, 50, 28, 0.42),
    0 12px 30px rgba(31, 55, 39, 0.1);
  backdrop-filter: blur(16px);
  display: block;
  padding: 1rem;
  width: 236px;
  left: -3%;
  top: auto;
  bottom: 17%;
  z-index: 6;
  animation: floaty 6s ease-in-out infinite;
}

.hero-visual .float-card .dot {
  display: none;
}

.float-card-title {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.float-card-title strong {
  color: #223326;
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.float-ico {
  align-items: center;
  background: #e7f5e7;
  border-radius: 14px;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  width: 50px;
  flex: 0 0 auto;
}

.float-ico img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.float-horse-row {
  align-items: center;
  border-bottom: 1px solid #e5e9e5;
  display: flex;
  gap: 0.75rem;
  margin-top: 0.95rem;
  padding-bottom: 0.85rem;
}

.float-horse-row img {
  border-radius: 14px;
  height: 54px;
  object-fit: cover;
  width: 54px;
  flex: 0 0 auto;
}

.float-horse-row span,
.float-result {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.float-horse-row strong {
  color: #2f3b32;
  font-size: 0.9rem;
}

.float-horse-row small,
.float-result small {
  color: #79827b;
  font-size: 0.74rem;
  line-height: 1.28;
}

.float-score-row {
  align-items: center;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 64px 1fr;
  margin-top: 0.85rem;
}

.float-score {
  align-items: baseline;
  aspect-ratio: 1;
  border: 6px solid #45b657;
  border-left-color: #dfeee0;
  border-radius: 50%;
  color: #39a84c;
  display: flex;
  justify-content: center;
  padding-top: 19px;
}

.float-score strong {
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 800;
}

.float-score small {
  color: #5a7661;
  font-size: 0.58rem;
}

.float-result strong {
  color: #39a84c;
  font-size: 0.96rem;
}

.float-link {
  color: #48ad58;
  display: block;
  font-size: 0.83rem;
  font-weight: 800;
  margin-top: 0.9rem;
  text-align: right;
}

/* ============================================================
   BANDE CONFIANCE — pleine largeur, sous le hero (reveal au scroll)
   ============================================================ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 2vw, 1.8rem);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.6rem) var(--gutter) clamp(2.4rem, 4vw, 3.6rem);
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  padding: 0 0.6rem;
}

.trust-card:not(:last-child) {
  border-right: 1px solid var(--line-soft);
}

.trust-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 32%, #ffffff 0%, var(--leaf) 72%, var(--leaf-strong) 100%);
  box-shadow: inset 0 0 0 1px rgba(45, 122, 58, 0.08);
}

.trust-ico img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.trust-card strong {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-card span {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.35;
  max-width: 20ch;
}

/* ===================== Responsive hero ===================== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
    max-width: 44rem;
  }

  .hero-copy .lead {
    margin-inline: auto;
  }

  .eyebrow,
  .actions,
  .store-row,
  .hero-quick-cards {
    justify-content: center;
  }

  .hero-quick-cards {
    margin-inline: auto;
  }

  .hero-visual {
    margin-top: 1.4rem;
    min-height: 0;
  }

  .hero-visual .phone-main {
    width: min(258px, 58%);
  }

  .hero-visual .phone-aside {
    width: min(196px, 44%);
    right: 3%;
    bottom: 11%;
  }

  .hero-visual .float-card.float-card-horse {
    left: 0;
    bottom: 12%;
    transform: scale(0.94);
    transform-origin: left bottom;
  }
}

@media (max-width: 760px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 0.6rem;
  }

  .trust-card:not(:last-child) {
    border-right: 0;
  }

  .trust-card:nth-child(odd) {
    border-right: 1px solid var(--line-soft);
  }
}

@media (max-width: 560px) {
  .hero-quick-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    max-width: 360px;
  }

  /* Téléphones nets en haut, puis carte score en dessous (en flux) */
  .hero-visual {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 0.6rem;
  }

  .hero-phones {
    width: 100%;
    min-height: 0;
  }

  .hero-visual .phone-main {
    width: min(248px, 70%);
  }

  .hero-visual .phone-aside {
    width: min(170px, 48%);
    right: 0;
    bottom: 12%;
  }

  .hero-visual .float-card.float-card-horse {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(330px, 92%);
    margin: 1.3rem auto 0;
    animation: none;
  }

  .trust-card span {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .js .reveal,
  .js .hero .anim {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Byline (date + auteur sur les guides) ── */
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.byline-author {
  font-weight: 600;
  color: #374151;
}
.byline time {
  color: inherit;
}

/* ── Sources (références en bas de guide) ── */
.sources {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-left: 3px solid #2D7A3A;
  border-radius: 0 0.5rem 0.5rem 0;
}
.sources h2 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #374151;
  margin: 0 0 0.75rem;
}
.sources ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sources li {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.5;
}
.sources li a {
  color: #2D7A3A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sources li a:hover {
  color: #1a5c2a;
}
@media (prefers-reduced-motion: reduce) {

  .js .hero-copy h1 .hl {
    background-size: 100% 0.16em !important;
  }

  .js .hero-quick-cards .hero-quick-card,
  .trust-card,
  .phone-plant .pscreen-alert {
    opacity: 1 !important;
    transform: none !important;
  }

  .phone-plant .pscreen-scan {
    display: none !important;
  }

  .banner-media img {
    transform: none !important;
  }
}

/* --- Bandeau de consentement cookies (RGPD / Consent Mode v2) --- */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(960px, calc(100% - 24px));
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 20px;
}
.cookie-consent-text {
  margin: 0;
  flex: 1 1 320px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #eaf2ea;
}
.cookie-consent-text strong { color: #fff; }
.cookie-consent-text a { color: var(--accent); text-decoration: underline; }
.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-btn {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 9px;
  padding: 10px 18px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cookie-btn-accept {
  background: var(--primary-soft);
  color: #fff;
}
.cookie-btn-accept:hover { background: var(--accent); }
.cookie-btn-reject {
  background: transparent;
  color: #eaf2ea;
  border-color: rgba(255, 255, 255, 0.35);
}
.cookie-btn-reject:hover { border-color: #fff; }
@media (max-width: 560px) {
  .cookie-consent-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}
