/* ===================================================
   Styles — Rodolphe Vandaele iOS Apps
   Apple Design Language 2026
   =================================================== */

/* === TOKENS === */
:root {
  --apps-bg:        #f5f5f7;
  --card-bg:        #ffffff;
  --text-primary:   #1d1d1f;
  --text-secondary: #6e6e73;
  --link-color:     #0066cc;
  --accent-blue:    #0071e3;
  --separator:      rgba(0, 0, 0, 0.09);

  --radius-xl: 20px;
  --radius-m:  12px;

  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --apps-bg:        #111111;
    --card-bg:        #1c1c1e;
    --text-primary:   #f5f5f7;
    --text-secondary: #98989d;
    --link-color:     #2997ff;
    --accent-blue:    #0a84ff;
    --separator:      rgba(255, 255, 255, 0.08);
  }
}

/* === BASE === */
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  background: var(--apps-bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* === ANIMATION === */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes web-float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes web-reveal-soft {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   HERO — fond noir, gradient blanc→bleu→violet
   Style Apple Intelligence / apple.com produit
   =================================================== */
.hero {
  background: #000;
  text-align: center;
  padding: 112px 24px 96px;
  position: relative;
  overflow: hidden;
}

/* Halos de lumière derrière le titre */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0, 113, 227, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 72% 8%,  rgba(191, 90, 242, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2997ff;
  margin: 0 0 20px 0;
  animation: fade-up 0.5s ease both;
}

/* Titre gradient blanc → bleu → violet */
.hero-title {
  /* Mobile : 2 lignes, taille ajustée */
  font-size: clamp(46px, 13vw, 62px);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.0;
  background: linear-gradient(
    150deg,
    #ffffff 0%,
    #ffffff 38%,
    #2997ff 65%,
    #bf5af2 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px 0;
  animation: fade-up 0.5s 0.08s ease both;
}

/* Tablette : 1 ligne */
@media (min-width: 768px) {
  .hero-title { font-size: clamp(52px, 7.5vw, 72px); }
  .hero-title .name-break { display: inline; }
}

/* Desktop : 1 ligne, grand */
@media (min-width: 1024px) {
  .hero-title { font-size: clamp(72px, 7vw, 88px); }
}

/* Mobile (< 768px) : "Vandaele" passe à la ligne */
@media (max-width: 767px) {
  .hero-title .name-break { display: block; }
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  animation: fade-up 0.5s 0.16s ease both;
}

/* ===================================================
   SECTION APPLICATIONS
   =================================================== */
.apps-section {
  background: var(--apps-bg);
  padding: 72px 0 96px;
}

.apps-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  animation: fade-up 0.6s 0.28s ease both;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-blue);
  margin: 0 0 20px 2px;
}

/* ===================================================
   GRILLE & CARTES
   =================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.08),
    0 0 0 0.5px rgba(0, 0, 0, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

@media (prefers-color-scheme: dark) {
  .card {
    box-shadow:
      0 2px 24px rgba(0, 0, 0, 0.50),
      0 0 0 0.5px rgba(255, 255, 255, 0.06);
  }
}

.grid-2 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13), 0 0 0 0.5px rgba(0, 0, 0, 0.04);
}

@media (prefers-color-scheme: dark) {
  .grid-2 .card:hover {
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.60), 0 0 0 0.5px rgba(255, 255, 255, 0.09);
  }
}

.grid-2 .card:hover .app-icon { transform: scale(1.05); }

.card-disabled {
  opacity: 0.36;
  pointer-events: none;
  filter: grayscale(1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  transition: transform 0.24s ease;
}

.app-title {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--accent-blue);
  color: #fff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.app-badge-muted {
  background: var(--separator);
  color: var(--text-secondary);
}

.card-content {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Réduction légère sur mobile */
@media (max-width: 767px) {
  .card               { padding: 20px; }
  .app-icon           { width: 60px; height: 60px; border-radius: 14px; }
  .app-title          { font-size: 18px; }
  .card-content       { font-size: 14px; margin-bottom: 16px; }
  .card-header        { margin-bottom: 14px; gap: 12px; }
  .page-card          { padding: 20px; }
  .page-section h2    { font-size: 15px; }
  .page-section p,
  .faq-a, .faq-q     { font-size: 14px; }
}

/* ===================================================
   LISTE DE LIENS — iOS Settings style (row pleine largeur)
   =================================================== */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-radius: var(--radius-m);
  border: 1px solid var(--separator);
  overflow: hidden;
}

.link-item {
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid var(--separator);
  transition: background 0.12s ease;
}

.link-item:last-child { border-bottom: none; }

.link-item:has(a.link-url):hover { background: rgba(0, 0, 0, 0.04); }

@media (prefers-color-scheme: dark) {
  .link-item:has(a.link-url):hover { background: rgba(255, 255, 255, 0.05); }
}

/* Lien pleine largeur — label à gauche, chevron à droite */
a.link-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
}

a.link-url::after {
  content: '›';
  font-size: 17px;
  line-height: 1;
  color: var(--text-secondary);
  opacity: 0.40;
  flex-shrink: 0;
}

/* Texte désactivé — même padding, sans interaction */
span.link-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-secondary);
  gap: 8px;
}

/* ===================================================
   BOUTONS
   =================================================== */

/* Badge App Store — noir/blanc selon le mode */
.store-link-badge {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 11px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.store-link-badge:hover  { opacity: 0.80; transform: scale(1.02); }
.store-link-badge:active { transform: scale(0.97); }

/* Badge désactivé — apps en cours */
.store-link-disabled {
  background: var(--separator) !important;
  color: var(--text-secondary) !important;
  cursor: default;
  pointer-events: none;
}

/* Carte en cours — teinte réduite */
.card-wip {
  opacity: 0.72;
}

.app-badge-wip {
  background: var(--separator);
  color: var(--text-secondary);
}

.app-icon-wip {
  filter: grayscale(40%);
}

@media (prefers-color-scheme: dark) {
  .store-link-badge { background: #fff; color: #000; }
  .store-link-disabled { background: #3a3a3c !important; color: #8e8e93 !important; }
}

/* Bouton contact email — pill bleu
   Note: color:#fff avec !important pour neutraliser
   tout sélecteur parent qui hérite sa couleur sur les <a> */
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue);
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 980px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.store-link:hover  { filter: brightness(1.12); transform: scale(1.02); }
.store-link:active { transform: scale(0.97); }

.support-mail-card {
  display: grid;
  gap: 12px;
  align-items: start;
}

.support-mail-primary {
  width: fit-content;
}

.support-mail-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.support-mail-fallback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--separator);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.025);
}

.support-mail-fallback code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text-primary);
  font-size: 13px;
}

.support-copy-button {
  border: 1px solid var(--separator);
  border-radius: 999px;
  background: var(--card-bg);
  color: var(--text-primary);
  padding: 8px 12px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.support-copy-button:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

@media (prefers-color-scheme: dark) {
  .support-mail-fallback {
    background: rgba(255, 255, 255, 0.04);
  }
}

@media (max-width: 520px) {
  .support-mail-primary,
  .support-copy-button {
    width: 100%;
  }

  .support-mail-fallback {
    align-items: stretch;
  }
}

/* ===================================================
   SOUS-PAGES — structure & header
   =================================================== */
.page-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.page-header {
  margin-bottom: 36px;
  animation: fade-up 0.5s ease both;
}

.page-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.page-icon-link {
  display: flex;
  flex-shrink: 0;
  border-radius: 15px;
  transition: opacity 0.15s ease;
}

.page-icon-link:hover { opacity: 0.70; }

.page-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
  display: block;
}

.page-title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--text-primary);
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.language-button {
  appearance: none;
  border: 1px solid var(--separator);
  background: var(--card-bg);
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 7px 11px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.language-button:hover { transform: translateY(-1px); }

.language-button.is-active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

.localized-panel { display: none; }
.localized-panel.is-active { display: block; }

.summary-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--separator);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.summary-list li,
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--separator);
}

.summary-list li:last-child,
.feature-item:last-child { border-bottom: none; }

.summary-list p { margin: 0; }

.feature-text { flex: 1; }

.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 2px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.premium-hero {
  text-align: center;
  padding: 24px 8px 6px;
}

.premium-symbol {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(0, 113, 227, 0.10);
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.premium-hero h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.premium-hero p {
  max-width: 460px;
  margin: 0 auto 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 199, 89, 0.12);
  color: #1a8c3a;
  border: 1px solid rgba(52, 199, 89, 0.30);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
}

.premium-page {
  display: grid;
  gap: 18px;
}

.premium-hero-clean {
  padding: 34px 32px;
}

.premium-eyebrow {
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}

.premium-heading {
  color: var(--text-primary);
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1.08;
  margin: 0 0 12px;
}

.premium-lead {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 18px;
}

.premium-note {
  display: inline-flex;
  align-items: center;
  background: rgba(52, 199, 89, 0.10);
  border: 1px solid rgba(52, 199, 89, 0.26);
  color: #1a8c3a;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
}

.premium-section-title {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 14px;
}

.premium-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.premium-feature-card {
  border: 1px solid var(--separator);
  border-radius: var(--radius-m);
  padding: 14px;
  background: rgba(118, 118, 128, 0.06);
}

.premium-feature-card h3 {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 650;
  margin: 0 0 5px;
}

.premium-feature-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.premium-comparison {
  display: grid;
  gap: 8px;
}

.premium-comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px 84px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--separator);
  padding: 10px 0;
  color: var(--text-primary);
  font-size: 14px;
}

.premium-comparison-row:last-child { border-bottom: none; }

.premium-comparison-head {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
}

.premium-state {
  text-align: center;
  color: var(--text-secondary);
  font-weight: 700;
}

.premium-state.is-included { color: #34c759; }
.premium-state.is-premium { color: var(--accent-blue); }

@media (max-width: 640px) {
  .premium-hero-clean { padding: 28px 22px; }
  .premium-feature-grid { grid-template-columns: 1fr; }
  .premium-comparison-row { grid-template-columns: minmax(0, 1fr) 58px 70px; font-size: 13px; }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid var(--separator);
}

.compare-table th {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 13px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.compare-table tr:last-child td { border-bottom: none; }

.check-free { color: #34c759; font-weight: 700; }
.check-pro { color: #ff9500; font-weight: 800; }
.cross { color: var(--text-secondary); opacity: 0.45; }

.cta-block {
  text-align: center;
  padding: 8px 0 4px;
}

.cta-block p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 10px;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 14px;
  text-decoration: none !important;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn-premium:hover { filter: brightness(1.06); transform: scale(1.02); }
.btn-premium:active { transform: scale(0.97); }

@media (prefers-color-scheme: dark) {
  .premium-symbol { color: #ffd60a; }
  .trial-badge { color: #30d158; background: rgba(48, 209, 88, 0.12); border-color: rgba(48, 209, 88, 0.25); }
}

/* ===================================================
   SOUS-PAGES — carte contenu
   =================================================== */
.page-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.07),
    0 0 0 0.5px rgba(0, 0, 0, 0.06);
  animation: fade-up 0.5s 0.12s ease both;
}

@media (prefers-color-scheme: dark) {
  .page-card {
    box-shadow:
      0 2px 24px rgba(0, 0, 0, 0.50),
      0 0 0 0.5px rgba(255, 255, 255, 0.06);
  }
}

.page-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--separator);
}

.page-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.page-section h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
  color: var(--text-primary);
}

.page-section p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 10px 0;
}

.page-section p:last-child { margin-bottom: 0; }

.page-section p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Liens texte dans les sections — exclut les boutons et les lignes support */
.page-section a:not(.store-link):not(.support-item) {
  color: var(--link-color);
  text-decoration: none;
}

.page-section a:not(.store-link):not(.support-item):hover { text-decoration: underline; }

/* FAQ */
.faq-item { margin-bottom: 16px; }
.faq-item:last-child { margin-bottom: 0; }

.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 5px 0;
}

.faq-a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.muted-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 6px;
}

/* ===================================================
   FOOTERS
   =================================================== */
.site-footer {
  background: var(--apps-bg);
  border-top: 1px solid var(--separator);
  padding: 28px 24px 40px;
  color: var(--text-secondary);
  font-size: 12px;
  text-align: center;
  line-height: 2;
}

.site-footer p { margin: 0; }

.site-footer a,
.page-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer a:hover,
.page-footer a:hover { color: var(--text-primary); }

.page-footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--separator);
  color: var(--text-secondary);
  font-size: 12px;
  text-align: center;
  line-height: 2;
}

.page-footer p { margin: 0; }

/* ===================================================
   BOUTON PROFIL TYPE iOS (index page)
   Inspiré du royal blue (#1560BD) des icônes apps
   =================================================== */
.dev-row {
  margin-top: 44px;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 16px 18px;
  text-decoration: none;
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.07),
    0 0 0 0.5px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

@media (prefers-color-scheme: dark) {
  .profile-btn {
    box-shadow:
      0 2px 20px rgba(0, 0, 0, 0.42),
      0 0 0 0.5px rgba(255, 255, 255, 0.06);
  }
}

.profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10), 0 0 0 0.5px rgba(0, 0, 0, 0.04);
}

@media (prefers-color-scheme: dark) {
  .profile-btn:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.52), 0 0 0 0.5px rgba(255, 255, 255, 0.08);
  }
}

.profile-btn-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.profile-btn-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-btn-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.profile-btn-sub {
  font-size: 12px;
  color: var(--text-secondary);
}

.profile-btn-chevron {
  font-size: 22px;
  color: var(--text-secondary);
  opacity: 0.40;
  line-height: 1;
  flex-shrink: 0;
}

.site-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.app-site-shell {
  max-width: 1180px;
  padding: 36px 24px 88px;
}

.app-landing {
  display: grid;
  gap: 30px;
}

.app-landing-hero {
  padding: 4px 0 18px;
}

.app-landing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.app-landing-top .language-switcher {
  margin-top: 0;
  justify-content: flex-end;
}

.app-back-link,
.app-secondary-action {
  color: var(--link-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.app-back-link:hover,
.app-secondary-action:hover {
  text-decoration: underline;
}

.app-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 46px;
}

.app-landing-copy {
  min-width: 0;
}

.app-landing-icon {
  width: 112px;
  height: 112px;
  border-radius: 25px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  margin-bottom: 24px;
}

.app-landing-kicker {
  color: var(--accent-blue);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
}

.app-landing-title {
  color: var(--text-primary);
  font-size: 56px;
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0 0 16px;
}

.app-landing-lead {
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.45;
  max-width: 660px;
  margin: 0;
}

.app-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.app-primary-action {
  margin-top: 0;
}

.app-preview {
  background: var(--card-bg);
  border: 1px solid var(--separator);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.app-preview-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.app-preview-top img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
}

.app-preview-top span {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
}

.app-preview ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.app-preview li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--separator);
  border-radius: 14px;
  background: rgba(118, 118, 128, 0.06);
}

.app-preview li span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-blue);
  margin-top: 6px;
}

.app-preview li p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.app-landing-main {
  display: grid;
  gap: 22px;
}

.app-section-band {
  padding: 30px 0;
  border-top: 1px solid var(--separator);
}

.app-section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.app-section-heading p {
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.app-section-heading h2 {
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
}

.app-feature-grid,
.app-text-grid,
.app-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.app-feature-tile,
.app-text-grid article,
.app-link-card {
  background: var(--card-bg);
  border: 1px solid var(--separator);
  border-radius: 18px;
  padding: 18px;
}

.app-feature-tile p,
.app-text-grid p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.app-text-grid h3 {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.app-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-primary);
  text-decoration: none;
}

.app-link-card span {
  font-size: 15px;
  font-weight: 700;
}

.app-link-card strong {
  color: var(--link-color);
  font-size: 13px;
}

.app-link-card:hover strong {
  text-decoration: underline;
}

.app-legal-note {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  margin: 14px 0 0;
}

@media (prefers-color-scheme: dark) {
  .app-landing-icon,
  .app-preview {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }
}

.site-home-hero,
.site-about-hero {
  margin-bottom: 22px;
}

.site-home-hero .language-switcher,
.site-about-hero .language-switcher {
  margin-top: 22px;
}

.site-page-header {
  margin-bottom: 22px;
}

.site-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.site-app-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-app-card .card-content {
  margin: 0;
}

.site-link-stack {
  display: grid;
  gap: 8px;
}

.site-link-stack .link-url {
  border: 1px solid var(--separator);
  border-radius: var(--radius-m);
  background: rgba(118, 118, 128, 0.06);
}

.site-profile-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.site-profile-photo,
.site-about-photo {
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.site-profile-photo {
  width: 84px;
  height: 84px;
  border-radius: 22px;
}

.site-about-photo {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  margin-bottom: 18px;
}

.site-about-hero {
  text-align: center;
}

.site-about-hero .premium-lead {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .site-shell {
    padding: 28px 16px 64px;
  }

  .app-site-shell {
    padding: 24px 16px 68px;
  }

  .app-landing-top,
  .app-landing-grid {
    grid-template-columns: 1fr;
  }

  .app-landing-top {
    display: grid;
    align-items: start;
  }

  .app-landing-top .language-switcher {
    justify-content: flex-start;
  }

  .app-landing-grid {
    gap: 28px;
  }

  .app-landing-icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }

  .app-landing-title {
    font-size: 40px;
  }

  .app-landing-lead {
    font-size: 18px;
  }

  .app-preview {
    border-radius: 22px;
    padding: 16px;
  }

  .app-feature-grid,
  .app-text-grid,
  .app-link-grid {
    grid-template-columns: 1fr;
  }

  .app-section-heading h2 {
    font-size: 24px;
  }

  .site-app-grid,
  .site-profile-card {
    grid-template-columns: 1fr;
  }

  .site-profile-card {
    text-align: center;
  }

  .site-profile-photo {
    margin: 0 auto;
  }
}

/* ===================================================
   COEUR — tagline style SwiftUI inline
   "Créée avec ♥ par un développeur indépendant"
   =================================================== */
.about-heart {
  /* Réinitialisé : plus de gradient, rouge Apple system */
  display: inline;
  font-size: inherit;
  color: #ff3b30;            /* Apple systemRed — équiv. .foregroundStyle(.red) */
  background: none;
  -webkit-text-fill-color: #ff3b30;
  background-clip: initial;
  margin-top: 0;
  animation: none;
}

.about-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.46);
  margin: 18px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  animation: fade-up 0.45s 0.24s ease both;
}

/* ===================================================
   APPS MINI — lignes avec icônes dans la bio
   =================================================== */
.app-mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.app-mini-row:last-child { margin-bottom: 0; }

.app-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.web-shell {
  max-width: none;
  padding: 0;
}

.web-page {
  --web-bg: #f5f5f7;
  --web-panel: #ffffff;
  --web-panel-soft: rgba(255, 255, 255, 0.72);
  --web-ink: #161617;
  --web-muted: #5f6368;
  --web-line: rgba(22, 22, 23, 0.10);
  --web-shadow-soft: 0 18px 50px rgba(30, 41, 59, 0.07);
  --web-shadow-lift: 0 28px 72px rgba(30, 41, 59, 0.13);
  --web-blue: #006edb;
  --web-green: #12805c;
  --web-red: #c9342b;
  --web-yellow: #9a6700;
  min-height: 100vh;
  background: linear-gradient(180deg, #fbfbfd 0%, var(--web-bg) 34%, #f0f2f5 100%);
  color: var(--web-ink);
}

.web-page a {
  color: inherit;
}

.web-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(245, 245, 247, 0.88);
  border-bottom: 1px solid var(--web-line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 34px rgba(30, 41, 59, 0.045);
}

.web-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--web-ink);
  text-decoration: none;
}

.web-brand span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #161617, #2a2d34);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(22, 22, 23, 0.18);
}

.web-brand strong {
  font-size: 15px;
  font-weight: 750;
}

.web-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.web-nav-links a,
.web-text-link {
  color: var(--web-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.web-nav-links a:hover,
.web-text-link:hover {
  color: var(--web-ink);
}

.web-page main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.web-hero,
.web-product-hero,
.web-contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 56px;
  min-height: 640px;
  padding: 56px 0 40px;
}

.web-hero-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  min-height: 680px;
  gap: 36px;
}

.web-hero-centered .web-hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.web-hero-centered .web-actions {
  justify-content: center;
}

.web-hero-copy,
.web-product-hero > div,
.web-contact-hero > div {
  min-width: 0;
}

.web-kicker {
  color: var(--web-blue);
  font-size: 15px;
  font-weight: 750;
  margin: 0 0 14px;
}

.web-hero h1,
.web-product-hero h1,
.web-contact-hero h1 {
  color: var(--web-ink);
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1.02;
  font-weight: 780;
  letter-spacing: 0;
  margin: 0 0 20px;
}

.web-hero p,
.web-product-hero p,
.web-contact-hero p,
.web-profile p {
  color: var(--web-muted);
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
}

.web-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.web-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.web-pill:hover {
  transform: translateY(-2px);
}

.web-pill:active {
  transform: translateY(0) scale(0.98);
}

.web-pill-dark {
  background: linear-gradient(180deg, #25262b, var(--web-ink));
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(22, 22, 23, 0.18);
}

.web-pill-light {
  background: rgba(0, 110, 219, 0.10);
  color: var(--web-blue) !important;
}

.web-pill-muted {
  background: rgba(95, 99, 104, 0.12);
  color: var(--web-muted) !important;
}

.web-pill-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  position: relative;
  flex-shrink: 0;
}

.web-svg-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.web-svg-shell svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (prefers-reduced-motion: no-preference) {
  .web-motion-target {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s cubic-bezier(.2,.8,.2,1), transform 0.55s cubic-bezier(.2,.8,.2,1);
    transition-delay: var(--web-motion-delay, 0ms);
  }

  .web-motion-target.web-motion-in {
    opacity: 1;
    transform: translateY(0);
  }
}

.web-showcase {
  display: flex;
  justify-content: center;
}

.web-mission-board {
  width: min(100%, 460px);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  background: var(--web-panel-soft);
  padding: 22px;
  box-shadow: 0 34px 90px rgba(30, 41, 59, 0.16);
  backdrop-filter: blur(22px);
}

.web-mission-head span {
  color: var(--web-green);
  font-size: 13px;
  font-weight: 780;
}

.web-mission-head h2 {
  color: var(--web-ink);
  font-size: 30px;
  line-height: 1.08;
  margin: 8px 0 10px;
}

.web-mission-head p {
  color: var(--web-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.web-mission-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.web-mission-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: rgba(95, 99, 104, 0.04);
}

.web-mission-row:hover {
  border-color: rgba(0, 110, 219, 0.35);
  background: rgba(0, 110, 219, 0.06);
}

.web-mission-row img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(30, 41, 59, 0.16);
}

.web-mission-row span {
  display: grid;
  gap: 2px;
}

.web-mission-row strong {
  color: var(--web-ink);
  font-size: 15px;
}

.web-mission-row small {
  color: var(--web-muted);
  font-size: 12px;
}

.web-mission-row em {
  color: var(--web-blue);
  font-style: normal;
  font-weight: 800;
}

.web-mission-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.web-mission-proof strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18, 128, 92, 0.10);
  color: var(--web-green);
  font-size: 12px;
}

.web-section {
  padding: 72px 0;
  border-top: 1px solid var(--web-line);
}

.web-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.web-section-head p {
  color: var(--web-green);
  font-size: 15px;
  font-weight: 750;
  margin: 0 0 8px;
}

.web-section-head h2,
.web-profile h2 {
  color: var(--web-ink);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: 0;
  margin: 0;
}

.web-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.web-app-card,
.web-quality-grid article,
.web-feature-grid article,
.web-info-grid article,
.web-product-panel,
.web-profile {
  min-width: 0;
  background: var(--web-panel);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  box-shadow: var(--web-shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.web-app-card:hover,
.web-quality-grid article:hover,
.web-feature-grid article:hover,
.web-info-grid article:hover,
.web-product-panel:hover,
.web-contact-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 110, 219, 0.24);
  box-shadow: var(--web-shadow-lift);
}

.web-app-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.web-app-card::before,
.web-product-panel::before,
.web-donation-card::before,
.web-premium-activate::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--web-blue), var(--web-green), var(--web-red));
  opacity: 0.72;
}

.web-product-panel,
.web-premium-activate {
  position: relative;
  overflow: hidden;
}

.web-app-card-main {
  display: grid;
  gap: 12px;
  text-decoration: none;
}

.web-app-icon-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.web-app-icon-frame {
  display: inline-flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 247, 0.78));
  border: 1px solid rgba(22, 22, 23, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 18px 42px rgba(30, 41, 59, 0.12);
  padding: 5px;
}

.web-app-icon-frame img,
.web-product-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(30, 41, 59, 0.18);
}

.web-product-icon {
  width: 96px;
  height: 96px;
  border: 6px solid rgba(255, 255, 255, 0.78);
  outline: 1px solid rgba(22, 22, 23, 0.08);
  outline-offset: 0;
}

.web-app-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 110, 219, 0.09);
  color: var(--web-blue);
  font-size: 13px;
  font-weight: 750;
}

.web-app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 16px 9px 14px;
  border-radius: 12px;
  color: #fff !important;
  background: linear-gradient(180deg, #202124 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.web-app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  filter: brightness(1.05);
}

.web-app-store-badge:active {
  transform: translateY(0) scale(0.98);
}

.web-app-store-badge-muted {
  color: var(--web-muted) !important;
  background: rgba(95, 99, 104, 0.10);
  border-color: var(--web-line);
  box-shadow: none;
}

.web-app-store-badge-muted:hover {
  transform: none;
  filter: none;
  box-shadow: none;
}

.web-app-store-symbol {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  color: currentColor;
}

.web-apple-mark svg,
.web-app-store-symbol svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.web-app-store-badge span:last-child {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-align: left;
}

.web-app-store-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.05;
  font-weight: 650;
}

.web-app-store-badge strong {
  display: block;
  color: inherit;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 760;
  letter-spacing: 0;
}

.web-app-store-badge-muted small,
.web-app-store-badge-muted strong {
  color: inherit;
}

.web-app-card-store {
  margin-top: auto;
}

.web-product-store,
.web-premium-store {
  min-height: 62px;
}

.web-product-store strong,
.web-premium-store strong {
  font-size: 21px;
}

.web-app-card-main h2 {
  color: var(--web-ink);
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}

.web-app-card-main p,
.web-quality-grid p,
.web-feature-grid p,
.web-info-grid p,
.web-capability-row,
.web-product-panel p {
  color: var(--web-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.web-app-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.web-card-more,
.web-card-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
}

.web-card-more {
  background: rgba(0, 110, 219, 0.10);
  color: var(--web-blue);
}

.web-card-more span {
  margin-left: 7px;
  transition: transform 0.16s ease;
}

.web-card-more:hover span {
  transform: translateX(3px);
}

.web-card-support {
  color: var(--web-muted);
  border: 1px solid var(--web-line);
}

.web-card-support:hover {
  color: var(--web-ink);
  border-color: rgba(95, 99, 104, 0.25);
}

.web-quality {
  background: rgba(255, 255, 255, 0.58);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-support-band {
  background: rgba(255, 255, 255, 0.72);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.web-support-lead {
  color: var(--web-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.web-support-note {
  color: var(--web-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 16px 0 0;
}

.web-support-grid {
  display: grid;
  gap: 14px;
}

.web-support-grid article {
  background: var(--web-panel);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(30, 41, 59, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.web-support-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 128, 92, 0.24);
  box-shadow: 0 18px 44px rgba(30, 41, 59, 0.10);
}

.web-support-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--web-blue);
  background: rgba(0, 110, 219, 0.10);
  margin-bottom: 14px;
  position: relative;
}

.web-support-icon svg {
  width: 18px;
  height: 18px;
}

.web-support-grid h3 {
  color: var(--web-ink);
  font-size: 17px;
  margin: 0 0 6px;
}

.web-support-grid p {
  color: var(--web-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.web-quality-grid,
.web-feature-grid,
.web-info-grid,
.web-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.web-quality-grid article,
.web-feature-grid article,
.web-info-grid article {
  padding: 20px;
}

.web-quality-grid h3,
.web-info-grid h3,
.web-product-panel h3,
.web-capability-table strong {
  color: var(--web-ink);
}

.web-quality-grid h3,
.web-info-grid h3,
.web-product-panel h3,
.web-feature-grid h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.web-profile {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  margin: 44px 0 80px;
}

.web-profile img,
.web-contact-hero img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.web-profile h2 {
  margin-bottom: 12px;
}

.web-profile .web-text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--web-blue);
}

.web-product-hero {
  min-height: 560px;
}

.web-product-panel {
  padding: 24px;
}

.web-product-panel h2 {
  color: var(--web-ink);
  font-size: 22px;
  margin: 0 0 16px;
}

.web-product-panel ul:not(.web-contact-checklist),
.web-info-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.web-product-panel ul:not(.web-contact-checklist) li,
.web-info-grid li {
  color: var(--web-muted);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.web-product-panel ul:not(.web-contact-checklist) li::before,
.web-info-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--web-blue);
}

.web-data-band {
  background: rgba(255, 255, 255, 0.60);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-offer-band {
  background: rgba(255, 255, 255, 0.72);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-contact-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  background: var(--web-panel);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.web-contact-grid span {
  color: var(--web-ink);
  font-size: 16px;
  font-weight: 750;
}

.web-contact-grid strong {
  color: var(--web-blue);
  font-size: 13px;
}

.web-capability-table {
  display: grid;
  gap: 10px;
}

.web-capability-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 0.34fr) minmax(152px, 0.38fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  background: var(--web-panel);
  box-shadow: 0 10px 28px rgba(30, 41, 59, 0.045);
}

.web-capability-row:not(.web-capability-head):hover {
  border-color: rgba(0, 110, 219, 0.20);
  box-shadow: 0 16px 38px rgba(30, 41, 59, 0.075);
}

.web-capability-row > span {
  color: var(--web-ink);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.42;
}

.web-capability-head {
  color: var(--web-ink);
  font-weight: 750;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0 14px 2px;
}

.web-capability-row strong {
  font-size: 13px;
}

.web-capability-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  width: 100%;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--web-line);
  background: rgba(95, 99, 104, 0.06);
  color: var(--web-ink);
  text-align: center;
  line-height: 1.25;
}

.web-capability-pill.is-included {
  color: var(--web-green);
  background: rgba(18, 128, 92, 0.10);
  border-color: rgba(18, 128, 92, 0.24);
}

.web-capability-pill.is-muted {
  color: var(--web-muted);
}

.web-capability-pill.is-warning {
  color: var(--web-blue);
  background: rgba(0, 110, 219, 0.09);
  border-color: rgba(0, 110, 219, 0.20);
}

.web-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 16px;
}

.web-help-layout > * {
  min-width: 0;
}

.web-product-panel .faq-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--web-line);
}

.web-product-panel .faq-item:last-child {
  border-bottom: none;
}

.web-contact-hero {
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 520px;
}

.web-contact-hero img {
  width: 220px;
  height: 220px;
}

.web-contact-hero .web-pill {
  margin-top: 26px;
}

.web-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 28px 48px;
  border-top: 1px solid var(--web-line);
}

.web-footer strong {
  color: var(--web-ink);
  font-size: 15px;
}

.web-footer p {
  color: var(--web-muted);
  font-size: 13px;
  margin: 6px 0 0;
}

.web-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.web-footer a {
  color: var(--web-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

.web-footer a:hover {
  color: var(--web-ink);
}

@media (prefers-color-scheme: dark) {
  .web-page {
    --web-bg: #0f1115;
    --web-panel: #191c21;
    --web-panel-soft: rgba(25, 28, 33, 0.76);
    --web-ink: #f5f5f7;
    --web-muted: #a1a1aa;
    --web-line: rgba(255, 255, 255, 0.12);
    --web-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.34);
    --web-shadow-lift: 0 28px 72px rgba(0, 0, 0, 0.48);
    background: var(--web-bg);
  }

  .web-nav {
    background: rgba(15, 17, 21, 0.86);
  }

  .web-brand span,
  .web-pill-dark {
    background: #f5f5f7;
    color: #161617 !important;
  }

  .web-premium-badge {
    background: rgba(245, 245, 247, 0.14);
    color: #f5f5f7;
    border-color: rgba(245, 245, 247, 0.22);
  }

  .web-mission-board {
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
  }

  .web-app-icon-frame {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .web-product-icon {
    border-color: rgba(255, 255, 255, 0.14);
    outline-color: rgba(255, 255, 255, 0.08);
  }

  .web-quality,
  .web-data-band,
  .web-support-band,
  .web-guide-band,
  .web-tech-band,
  .web-rgpd-band,
  .web-donation-band,
  .web-offer-band {
    background: rgba(255, 255, 255, 0.035);
  }

  .web-tech-grid,
  .web-resource-grid a {
    background: var(--web-panel);
  }

  .web-tech-grid span {
    background: rgba(10, 132, 255, 0.14);
    border-color: rgba(10, 132, 255, 0.22);
  }

  .web-resource-icon {
    background: rgba(10, 132, 255, 0.14);
  }
}

@media (max-width: 900px) {
  .web-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .web-nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .web-page main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .web-hero,
  .web-product-hero,
  .web-contact-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
    padding-top: 42px;
  }

  .web-hero h1,
  .web-product-hero h1,
  .web-contact-hero h1 {
    font-size: 42px;
  }

  .web-hero p,
  .web-product-hero p,
  .web-contact-hero p,
  .web-profile p {
    font-size: 17px;
  }

  .web-section-head h2,
  .web-profile h2 {
    font-size: 30px;
  }

  .web-app-grid,
  .web-quality-grid,
  .web-feature-grid,
  .web-info-grid,
  .web-contact-grid,
  .web-guide-cards,
  .web-resource-grid,
  .web-help-layout {
    grid-template-columns: 1fr;
  }

  .web-quality,
  .web-data-band,
  .web-support-band,
  .web-guide-band,
  .web-tech-band,
  .web-rgpd-band,
  .web-offer-band {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .web-support-layout {
    grid-template-columns: 1fr;
  }

  .web-profile,
  .web-contact-hero {
    grid-template-columns: 1fr;
  }

  .web-profile img,
  .web-contact-hero img {
    width: 120px;
    height: 120px;
  }

  .web-footer {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .web-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .web-nav {
    padding: 14px 16px;
    gap: 12px;
  }

  .web-brand strong {
    font-size: 13px;
  }

  .web-nav-links {
    gap: 14px;
  }

  .web-nav-links a,
  .web-text-link {
    font-size: 12px;
    white-space: nowrap;
  }

  .web-page main {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 56px;
  }

  .web-section {
    padding: 44px 0;
  }

  .web-section-head {
    margin-bottom: 18px;
  }

  .web-section-head h2,
  .web-profile h2 {
    font-size: 25px;
    line-height: 1.16;
  }

  .web-mission-board {
    padding: 16px;
  }

  .web-app-card,
  .web-product-panel,
  .web-profile {
    padding: 14px;
  }

  .web-help-layout {
    gap: 12px;
  }

  .web-product-panel h3 {
    font-size: 17px;
  }

  .web-product-panel p,
  .web-contact-checklist li,
  .web-product-panel .faq-a,
  .web-product-panel .faq-q {
    font-size: 13px;
  }

  .web-capability-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
  }

  .web-capability-head {
    display: none;
  }

  .web-capability-row > span {
    grid-column: 1 / -1;
    color: var(--web-ink);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
  }

  .web-capability-row strong,
  .web-capability-pill {
    width: 100%;
    min-height: 36px;
    justify-content: flex-start;
    text-align: left;
    border-radius: 8px;
    padding: 7px 9px;
    font-size: 12px;
  }

  .web-capability-pill::before {
    content: attr(data-label);
    color: var(--web-muted);
    font-size: 11px;
    font-weight: 760;
    margin-right: 7px;
    flex-shrink: 0;
  }

  .web-inline-resources .web-resource-grid a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .web-inline-resources .web-resource-grid em {
    grid-column: 2;
    justify-self: start;
  }
}

/* ===================================================
   WEB — GUIDE D'UTILISATION (steps numérotés)
   =================================================== */
.web-steps {
  display: grid;
  gap: 12px;
}

.web-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  background: var(--web-panel);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.05);
}

.web-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--web-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 780;
  flex-shrink: 0;
}

.web-step > div strong {
  display: block;
  color: var(--web-ink);
  font-size: 16px;
  font-weight: 750;
  margin-bottom: 4px;
}

.web-step > div p {
  color: var(--web-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.web-guide-band {
  background: rgba(255, 255, 255, 0.60);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-guide-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.web-guide-card {
  min-height: 118px;
  box-shadow: var(--web-shadow-soft);
}

.web-guide-card .web-step-num {
  background: linear-gradient(180deg, var(--web-blue), #0053a6);
  box-shadow: 0 10px 22px rgba(0, 110, 219, 0.18);
}

.web-tech-band {
  background: rgba(255, 255, 255, 0.58);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  background: var(--web-panel);
  box-shadow: var(--web-shadow-soft);
}

.web-tech-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(0, 110, 219, 0.16);
  border-radius: 999px;
  background: rgba(0, 110, 219, 0.08);
  color: var(--web-ink);
  font-size: 13px;
  font-weight: 760;
}

/* ===================================================
   WEB — SECTION RGPD
   =================================================== */
.web-rgpd-band {
  background: rgba(255, 255, 255, 0.68);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.web-resource-grid a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 20px;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  background: var(--web-panel);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--web-shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.web-resource-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 110, 219, 0.24);
  box-shadow: var(--web-shadow-lift);
}

.web-resource-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--web-blue);
  background: rgba(0, 110, 219, 0.10);
}

.web-resource-icon svg {
  width: 20px;
  height: 20px;
}

.web-resource-grid small {
  display: block;
  color: var(--web-muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
}

.web-resource-grid strong {
  color: var(--web-ink);
  font-size: 17px;
}

.web-resource-grid em {
  color: var(--web-blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.web-inline-resources {
  margin-top: 18px;
}

.web-inline-resources .web-resource-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.web-inline-resources .web-resource-grid a {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  min-height: 70px;
  padding: 14px;
  box-shadow: none;
}

.web-inline-resources .web-resource-icon {
  width: 34px;
  height: 34px;
}

.web-inline-resources .web-resource-icon svg {
  width: 17px;
  height: 17px;
}

.web-inline-resources .web-resource-grid strong {
  font-size: 15px;
}

.web-donation-band {
  background: rgba(255, 255, 255, 0.58);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-donation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: start;
  position: relative;
  overflow: hidden;
  background: var(--web-panel);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(30, 41, 59, 0.07);
}

.web-donation-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--web-blue), var(--web-green), var(--web-red));
  opacity: 0.72;
}

.web-donation-card h3 {
  color: var(--web-ink);
  font-size: 22px;
  margin: 0 0 10px;
}

.web-donation-card p {
  color: var(--web-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.web-trust-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.web-trust-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.web-trust-item:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 110, 219, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(30, 41, 59, 0.07);
}

.web-trust-icon {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 110, 219, 0.10);
  color: var(--web-blue);
  position: relative;
}

.web-trust-icon svg {
  width: 16px;
  height: 16px;
}

.web-icon-lock::before,
.web-icon-lock::after,
.web-icon-mail::before,
.web-icon-mail::after,
.web-icon-shield::before,
.web-icon-restore::before,
.web-icon-restore::after,
.web-icon-check::before,
.web-icon-heart::before,
.web-icon-heart::after,
.web-icon-gear::before,
.web-icon-gear::after,
.web-icon-spark::before,
.web-icon-spark::after {
  content: '';
  position: absolute;
  box-sizing: border-box;
}

.web-icon-lock::before {
  width: 13px;
  height: 10px;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  border: 2px solid currentColor;
  border-radius: 3px;
}

.web-icon-lock::after {
  width: 11px;
  height: 9px;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.web-icon-mail::before {
  width: 16px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid currentColor;
  border-radius: 3px;
}

.web-icon-mail::after {
  width: 11px;
  height: 11px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.web-icon-shield::before {
  width: 15px;
  height: 17px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
  clip-path: polygon(50% 0, 88% 14%, 82% 66%, 50% 100%, 18% 66%, 12% 14%);
}

.web-icon-restore::before {
  width: 16px;
  height: 16px;
  left: 6px;
  top: 6px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
}

.web-icon-restore::after {
  width: 7px;
  height: 7px;
  left: 5px;
  top: 4px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(-18deg);
}

.web-icon-check::before {
  width: 13px;
  height: 8px;
  left: 8px;
  top: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.web-icon-heart::before,
.web-icon-heart::after {
  width: 9px;
  height: 14px;
  top: 7px;
  background: currentColor;
  border-radius: 9px 9px 0 0;
}

.web-icon-heart::before {
  left: 8px;
  transform: rotate(-45deg);
  transform-origin: 50% 100%;
}

.web-icon-heart::after {
  right: 8px;
  transform: rotate(45deg);
  transform-origin: 50% 100%;
}

.web-icon-gear::before {
  width: 16px;
  height: 16px;
  left: 6px;
  top: 6px;
  border: 5px solid currentColor;
  border-radius: 999px;
}

.web-icon-gear::after {
  width: 22px;
  height: 4px;
  left: 3px;
  top: 12px;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 0 currentColor;
  transform: rotate(45deg);
}

.web-icon-spark::before {
  width: 4px;
  height: 18px;
  left: 12px;
  top: 5px;
  background: currentColor;
  border-radius: 999px;
}

.web-icon-spark::after {
  width: 18px;
  height: 4px;
  left: 5px;
  top: 12px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(35deg);
}

.web-trust-item strong {
  color: var(--web-ink);
  font-size: 13px;
}

.web-trust-item small {
  color: var(--web-muted);
  font-size: 12px;
  line-height: 1.35;
}

.web-rgpd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.web-rgpd-grid article {
  background: var(--web-panel);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.05);
}

.web-rgpd-grid h3 {
  color: var(--web-ink);
  font-size: 17px;
  font-weight: 750;
  margin: 0 0 10px;
}

.web-rgpd-grid p {
  color: var(--web-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px;
}

.web-rgpd-grid p:last-child {
  margin-bottom: 0;
}

.web-rgpd-contact {
  font-size: 13px !important;
  color: var(--web-blue) !important;
  font-weight: 650;
}

.web-rgpd-contact a {
  color: var(--web-blue);
  text-decoration: none;
}

.web-rgpd-contact a:hover {
  text-decoration: underline;
}

/* ===================================================
   WEB — PREMIUM ACTIVATE BLOCK
   =================================================== */
.web-premium-activate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: var(--web-panel);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
  box-shadow: 0 18px 50px rgba(30, 41, 59, 0.07);
}

@media (prefers-color-scheme: dark) {
  .web-premium-activate {
    background: var(--web-panel);
  }

  .web-trust-item {
    background: rgba(255, 255, 255, 0.04);
  }
}

.web-premium-activate-inner {
  display: grid;
  gap: 10px;
}

.web-premium-activate-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.web-premium-badge {
  display: inline-flex;
  align-items: center;
  background: var(--web-ink);
  color: var(--web-bg);
  border: 1px solid transparent;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
}

.web-premium-activate-label strong {
  color: var(--web-ink);
  font-size: 18px;
  font-weight: 750;
}

.web-premium-activate-inner > p {
  color: var(--web-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.web-premium-note-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.30);
  color: #1a8c3a;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
}

.web-premium-activate-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 200px;
}

.web-premium-activate > .web-trust-row {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.web-premium-activate-cta > p {
  color: var(--web-muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  text-align: right;
}

/* ===================================================
   WEB — CONTACT SECTION DANS LES PAGES APP
   =================================================== */
.web-contact-checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: grid;
  gap: 8px;
}

.web-contact-checklist li {
  color: var(--web-muted);
  font-size: 14px;
  line-height: 1.5;
  min-height: 22px;
  padding-left: 24px;
  position: relative;
}

.web-contact-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(0, 164, 96, 0.12);
  color: var(--web-green);
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: 11px;
  line-height: 1;
}

.web-contact-action {
  margin-top: 20px;
}

.web-mail-box {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.web-mail-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.web-mail-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--web-blue);
  background: rgba(0, 110, 219, 0.10);
  position: relative;
  flex-shrink: 0;
}

.web-mail-icon svg {
  width: 18px;
  height: 18px;
}

.web-mail-head strong {
  display: block;
  color: var(--web-ink);
  font-size: 15px;
}

.web-mail-head small {
  color: var(--web-muted);
  font-size: 12px;
}

.web-mail-primary {
  width: fit-content;
}

.web-mail-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 12px;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  background: rgba(95, 99, 104, 0.04);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.web-mail-copy:hover {
  border-color: rgba(0, 110, 219, 0.26);
  background: rgba(0, 110, 219, 0.05);
}

.web-mail-copy code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--web-ink);
  font-size: 13px;
}

.web-mail-box p {
  color: var(--web-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.web-write-band {
  background: rgba(255, 255, 255, 0.66);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.web-support-mail-card {
  max-width: 720px;
}

.web-support-mail-card p {
  color: var(--web-muted);
}

.web-support-mail-card .support-mail-primary {
  background: var(--web-ink);
  color: var(--web-bg) !important;
  border-radius: 999px;
}

.web-support-mail-card .support-mail-fallback {
  border-color: var(--web-line);
  background: var(--web-panel);
}

.web-support-mail-card .support-mail-fallback code,
.web-support-mail-card .support-copy-button {
  color: var(--web-ink);
}

.web-support-mail-card .support-copy-button {
  background: transparent;
  border-color: var(--web-line);
}

.web-support-mail-card .support-copy-button:hover {
  color: var(--web-blue);
  border-color: var(--web-blue);
}

@media (prefers-color-scheme: dark) {
  .web-quality,
  .web-support-band,
  .web-data-band,
  .web-offer-band,
  .web-guide-band,
  .web-tech-band,
  .web-write-band,
  .web-rgpd-band,
  .web-donation-band {
    background: rgba(255, 255, 255, 0.035);
  }
}

/* ===================================================
   WEB — CONTACT PAGE
   =================================================== */
.web-contact-active {
  border-color: var(--web-blue) !important;
  box-shadow: 0 0 0 2px rgba(0, 110, 219, 0.18) !important;
}

.web-contact-grid a img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15);
}

.web-contact-grid a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
}

.web-contact-tip {
  color: var(--web-muted);
  font-size: 14px;
  font-style: italic;
  margin: 18px 0 0;
}

@media (max-width: 900px) {
  .web-guide-band,
  .web-tech-band,
  .web-write-band,
  .web-donation-band,
  .web-rgpd-band {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .web-rgpd-grid {
    grid-template-columns: 1fr;
  }

  .web-guide-cards,
  .web-resource-grid {
    grid-template-columns: 1fr;
  }

  .web-donation-card {
    grid-template-columns: 1fr;
  }

  .web-premium-activate {
    grid-template-columns: 1fr;
  }

  .web-premium-activate > .web-trust-row {
    grid-template-columns: 1fr;
  }

  .web-premium-activate-cta {
    align-items: flex-start;
    min-width: 0;
  }

  .web-premium-activate-cta > p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .web-mail-primary,
  .web-mail-copy .support-copy-button {
    width: 100%;
  }
}

html[dir="rtl"] .web-page {
  text-align: right;
}

html[dir="rtl"] .web-nav,
html[dir="rtl"] .web-actions,
html[dir="rtl"] .web-footer,
html[dir="rtl"] .web-mail-head {
  direction: rtl;
}

html[dir="rtl"] .web-product-panel ul:not(.web-contact-checklist) li,
html[dir="rtl"] .web-info-grid li {
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .web-product-panel ul:not(.web-contact-checklist) li::before,
html[dir="rtl"] .web-info-grid li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .web-contact-checklist li {
  padding-left: 0;
  padding-right: 24px;
}

html[dir="rtl"] .web-contact-checklist li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .web-capability-pill::before {
  margin-left: 7px;
  margin-right: 0;
}

/* ===================================================
   FINAL RESPONSIVE POLISH — web and app legal pages
   =================================================== */
.web-page,
.web-page * {
  min-width: 0;
}

.web-page p,
.web-page h1,
.web-page h2,
.web-page h3,
.web-page a,
.web-page strong,
.web-page small,
.page-section,
.page-section p,
.summary-list p,
.faq-q,
.faq-a,
.support-mail-fallback code {
  overflow-wrap: anywhere;
}

.web-nav,
.web-page main,
.web-footer,
.site-shell {
  width: 100%;
}

.web-contact-grid a,
.web-mail-copy,
.support-mail-fallback,
.summary-list,
.feature-list,
.page-card {
  max-width: 100%;
}

.web-contact-grid a strong,
.app-link-card strong,
.web-card-more,
.web-card-support,
.web-pill,
.store-link,
.store-link-badge,
.support-copy-button {
  white-space: normal;
  text-align: center;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .web-nav,
  .web-page main,
  .web-footer {
    max-width: 1040px;
  }

  .web-hero,
  .web-product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 36px;
    min-height: 560px;
  }

  .web-contact-hero {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 34px;
    min-height: 460px;
  }

  .web-contact-hero img {
    width: 180px;
    height: 180px;
  }

  .web-hero h1,
  .web-product-hero h1,
  .web-contact-hero h1 {
    font-size: 50px;
  }

  .web-product-panel,
  .web-donation-card,
  .web-premium-activate {
    padding: 20px;
  }

  .web-premium-activate {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr);
  }

  .web-premium-activate > .web-trust-row {
    grid-column: 1 / -1;
  }

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

@media (min-width: 768px) and (max-width: 1024px) {
  .site-shell:not(.web-shell) {
    max-width: 820px;
    padding: 44px 32px 80px;
  }

  .page-header-inner {
    align-items: flex-start;
  }

  .page-card,
  .premium-hero-clean {
    padding: 30px;
  }

  .page-section p,
  .summary-list p,
  .faq-q,
  .faq-a {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .web-nav {
    position: sticky;
    padding-top: max(14px, env(safe-area-inset-top));
  }

  .web-hero-centered {
    text-align: left;
    justify-items: stretch;
  }

  .web-hero-centered .web-actions {
    justify-content: flex-start;
  }

  .web-showcase,
  .web-mission-board {
    width: 100%;
  }

  .web-contact-grid a {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
  }

  .web-contact-grid a strong {
    grid-column: 2;
    justify-self: start;
  }

  html[dir="rtl"] .web-contact-grid a strong {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .site-shell:not(.web-shell) {
    padding: 28px 16px 64px;
  }

  .page-header-inner {
    align-items: flex-start;
    gap: 12px;
  }

  .page-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .page-title {
    font-size: 24px;
    line-height: 1.12;
  }

  .page-subtitle {
    font-size: 13px;
    line-height: 1.45;
  }

  .page-card,
  .premium-hero-clean {
    border-radius: 16px;
    padding: 20px;
  }

  .premium-heading {
    font-size: 26px;
  }

  .premium-lead {
    font-size: 15px;
  }

  .summary-list li,
  .feature-item {
    padding: 13px 14px;
  }

  .support-mail-fallback {
    padding: 12px;
  }

  .support-mail-primary,
  .support-copy-button,
  .store-link {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .web-hero,
  .web-product-hero,
  .web-contact-hero {
    padding-top: 32px;
    gap: 24px;
  }

  .web-hero h1,
  .web-product-hero h1,
  .web-contact-hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .web-hero p,
  .web-product-hero p,
  .web-contact-hero p,
  .web-support-lead,
  .web-donation-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .web-actions,
  .app-action-row {
    align-items: stretch;
    width: 100%;
  }

  .web-actions .web-pill,
  .app-action-row .store-link-badge,
  .app-action-row .app-secondary-action {
    width: 100%;
  }

  .web-mission-row {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    padding: 10px;
  }

  .web-mission-row img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .web-mission-head h2,
  .web-app-card-main h2,
  .web-donation-card h3 {
    font-size: 23px;
  }

  .web-app-card-actions,
  .web-mail-copy {
    align-items: stretch;
    width: 100%;
  }

  .web-card-more,
  .web-card-support,
  .web-pill,
  .web-mail-copy .support-copy-button {
    width: 100%;
  }

  .web-contact-grid a {
    min-height: 76px;
    padding: 14px;
    gap: 12px;
  }

  .web-contact-grid span {
    font-size: 15px;
  }

  .web-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .web-step-num {
    width: 32px;
    height: 32px;
  }

  .web-premium-activate,
  .web-donation-card {
    padding: 18px;
  }
}

@media (max-width: 380px) {
  .web-nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .web-page main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .web-hero h1,
  .web-product-hero h1,
  .web-contact-hero h1 {
    font-size: 30px;
  }

  .web-section-head h2,
  .web-profile h2 {
    font-size: 22px;
  }

  .web-app-card-main img,
  .web-product-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

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

  .web-capability-row strong,
  .web-capability-pill {
    text-align: start;
  }

  .site-shell:not(.web-shell) {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-card,
  .premium-hero-clean {
    padding: 16px;
  }
}

html[dir="rtl"] .web-hero-centered {
  text-align: right;
}

html[dir="rtl"] .web-app-store-badge span:last-child {
  text-align: right;
}

html[dir="rtl"] .web-hero-centered .web-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  html[dir="rtl"] .web-hero-centered .web-actions {
    justify-content: flex-start;
  }
}

.app-mini-icon.disabled {
  filter: grayscale(1);
  opacity: 0.45;
}

.app-mini-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.app-mini-desc {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 1px;
}

/* ===================================================
   TECH BADGES — stack technique
   =================================================== */
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tech-badge {
  padding: 4px 11px;
  background: var(--apps-bg);
  color: var(--text-secondary);
  border: 1px solid var(--separator);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  font-family: "SF Mono", "Menlo", "Monaco", monospace;
}

/* ===================================================
   SOUTENIR — Bouton partage natif iOS
   =================================================== */
.share-native-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  margin-top: 16px;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-m);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: filter 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.share-native-btn:hover  { filter: brightness(1.10); }
.share-native-btn:active { transform: scale(0.97); }

/* Séparateur "ou" style Apple — ligne + texte + ligne */
.support-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 14px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-divider::before,
.support-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--separator);
}

/* ===================================================
   SOUTENIR — iOS Settings rows
   =================================================== */
.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: var(--radius-m);
  border: 1px solid var(--separator);
  overflow: hidden;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border-bottom: 1px solid var(--separator);
  transition: background 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.support-item:last-child { border-bottom: none; }

.support-item:hover { background: rgba(0, 0, 0, 0.04); }

@media (prefers-color-scheme: dark) {
  .support-item:hover { background: rgba(255, 255, 255, 0.05); }
}

/* Icône carrée arrondie — style iOS */
.support-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.icon-star { background: rgba(255, 204, 0, 0.20); }

.icon-x    { background: #111; color: #fff; }

@media (prefers-color-scheme: dark) {
  .icon-x  { background: #e8e8e8; color: #000; }
}

.icon-fb   { background: #1877F2; color: #fff; }
.icon-li   { background: #0077B5; color: #fff; }

.support-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.support-item-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.support-item-sub {
  font-size: 12px;
  color: var(--text-secondary);
}

.support-item-chevron {
  font-size: 17px;
  color: var(--text-secondary);
  opacity: 0.40;
  line-height: 1;
}

/* ===================================================
   PAGE À PROPOS — Hero (halo aux couleurs des apps)
   =================================================== */
.about-hero {
  background: #000;
  text-align: center;
  padding: 80px 24px 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Royal blue des icônes (#1560BD) + halo violet */
  background:
    radial-gradient(ellipse 70% 60% at 50% 42%, rgba(21, 96, 189, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 75% 8%,  rgba(191, 90, 242, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* Photo avec anneau gradient */
.about-photo-ring {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #2997ff, #bf5af2);
  margin: 0 auto 28px;
  animation: fade-up 0.45s ease both;
}

.about-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #000;
  display: block;
}

.about-name {
  font-size: clamp(30px, 5.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 20px 0;
  animation: fade-up 0.45s 0.08s ease both;
}

/* Badges : 32 ans · Autodidacte · Développeur */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  animation: fade-up 0.45s 0.16s ease both;
}

.about-tag {
  display: inline-flex;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
}

/* ===================================================
   PAGE À PROPOS — Section bio
   =================================================== */
.about-section {
  background: var(--apps-bg);
  padding: 64px 0 80px;
}

.about-container {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
  animation: fade-up 0.5s 0.28s ease both;
}

/* Lien retour discret */
.about-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 32px;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.about-back:hover { opacity: 1; }

.about-back::before {
  content: '‹';
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
}
