/* ── Page hero (pages intérieures) ──────────────────────── */
.page-hero {
  padding: 30px 0 60px;
  border-bottom: 1px solid var(--border-dim);
  text-align: center;
}

.page-hero__eyebrow {
  display: inline-flex; align-items: center;
  background: rgba(217,70,239,0.1); border: 1px solid rgba(217,70,239,0.28);
  border-radius: 999px; padding: 5px 16px;
  font-size: 12px; font-weight: var(--fw-bold);
  letter-spacing: 2px; text-transform: uppercase;
  color: #d946ef; margin-bottom: 20px;
  align-self: flex-start; width: fit-content;
}

.page-hero__eyebrow-dot { display: none; }

.page-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--fw-title);
  letter-spacing: -1.2px; line-height: 1.15;
  margin-bottom: 16px; color: var(--text);
}

.page-hero__title em { font-style: normal; color: var(--blue); }

.page-hero__desc {
  font-size: 16px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.75;
  max-width: 520px; margin: 0 auto;
}

/* ── Services grid (pages services) ─────────────────────── */
.services-section { padding: var(--sp-2xl) 0; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 48px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl); overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background .2s;
}

.service-card:hover { background: var(--bg-card-h); }

.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 17px; font-weight: var(--fw-title);
  margin-bottom: 10px; color: var(--text);
}

.service-card p {
  font-size: 14px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.7;
}

/* ── Produits ────────────────────────────────────────────── */
.product-hero {
  padding: var(--sp-2xl) 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.product-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 999px; padding: 5px 14px 5px 10px;
  font-size: 10px; font-weight: var(--fw-bold);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}

.product-hero__title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: var(--fw-title);
  letter-spacing: -1.2px; line-height: 1.1;
  margin-bottom: 16px; color: var(--text);
}

.product-hero__desc {
  font-size: 16px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.75; margin-bottom: 28px;
}

.product-features { list-style: none; margin-bottom: 32px; }

.product-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: var(--fw-ui);
  color: var(--text-dim); margin-bottom: 10px;
}

.product-features li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235b8fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── ArchiveFlow section ─────────────────────────────────── */
.archiveflow-section {
  padding: var(--sp-2xl) 0;
}

.archiveflow-card {
  background: #0d1526;
  border: 1px solid #1a2e48;
  border-radius: var(--radius-2xl);
  padding: 60px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.archiveflow-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 999px; padding: 5px 14px 5px 10px;
  font-size: 10px; font-weight: var(--fw-bold);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}

.archiveflow-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: var(--fw-title);
  letter-spacing: -1.2px; line-height: 1.1;
  margin-bottom: 16px; color: var(--text);
}

.archiveflow-desc {
  font-size: 15px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.8; margin-bottom: 24px;
}

/* ── Page Produits (hub Apps mobiles) — refonte ──────────── */
.apps-hub-section { padding: var(--sp-xl) 0; }
.apps-hub-card {
  background: #0d1526;
  border: 1px solid #1a2e48;
  border-radius: var(--radius-2xl);
  padding: 56px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; overflow: hidden;
  transition: border-color .25s;
}
.apps-hub-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 10%, rgba(91,143,255,0.07), transparent),
    radial-gradient(circle, rgba(91,143,255,0.05) 1px, transparent 1px) 0 0 / 22px 22px;
  pointer-events: none;
}
.apps-hub-card:hover { border-color: var(--blue-border); }
.apps-hub-card > * { position: relative; }
.apps-hub-card__visual { display: flex; justify-content: center; }
.apps-hub-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: -8px 0 24px; }
.apps-hub-meta__chip {
  font-size: 11px; font-weight: var(--fw-semi);
  padding: 4px 12px; border: 1px solid var(--border);
  border-radius: 999px; color: var(--text-muted);
}
.apps-hub-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .apps-hub-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 40px; }
  .apps-hub-card--rev .apps-hub-card__visual { order: -1; }
}

/* ── Dashboard mockup ArchiveFlow ───────────────────────── */
.archiveflow-mockup {
  background:
    linear-gradient(#070d1a, #070d1a) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  animation: pageBorderSpin 8s linear infinite;
  border-radius: var(--radius-xl);
  padding: 24px;
  min-height: 320px;
}

.mockup__topbar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(26,46,72,0.5);
}

.mockup__dot {
  width: 8px; height: 8px; border-radius: 50%;
}

.mockup__dot--red   { background: #ff5f57; }
.mockup__dot--yellow { background: #ffbd2e; }
.mockup__dot--green { background: #28c840; }

.mockup__title {
  font-size: 10px; font-weight: var(--fw-semi);
  color: var(--text-muted); letter-spacing: 1px; margin-left: 4px;
}

.mockup__stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 16px;
}

.mockup__stat {
  background: #0d1526; border: 1px solid #1a2e48;
  border-radius: 8px; padding: 10px 12px; text-align: center;
}

.mockup__stat-val {
  font-size: 18px; font-weight: var(--fw-title);
  color: var(--blue); letter-spacing: -1px; line-height: 1;
  margin-bottom: 3px;
}

.mockup__stat-label {
  font-size: 8px; color: var(--text-muted);
  font-weight: var(--fw-medium); letter-spacing: .5px;
}

.mockup__row {
  display: flex; align-items: center; gap: 10px;
  background: #0d1526; border: 1px solid #1a2e48;
  border-radius: 8px; padding: 10px 12px;
  margin-bottom: 8px;
}

.mockup__row-icon {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}

.mockup__row-name {
  font-size: 10px; font-weight: var(--fw-semi);
  color: var(--text-dim); flex: 1;
}

.mockup__row-badge {
  font-size: 8px; font-weight: var(--fw-bold);
  padding: 2px 7px; border-radius: 4px;
  background: var(--blue-dim); color: var(--blue);
  border: 1px solid var(--blue-border);
}

.apps-placeholder { padding: var(--sp-2xl) 0; }

.placeholder-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; max-width: 640px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg); overflow: hidden;
}

.placeholder-card {
  background: var(--bg-card);
  padding: 40px 28px; text-align: center;
  opacity: .45;
}

.placeholder-card__icon { font-size: 32px; margin-bottom: 12px; }
.placeholder-card h3 { font-size: 16px; font-weight: var(--fw-title); margin-bottom: 6px; color: var(--text); }
.placeholder-card p { font-size: 13px; color: var(--text-muted); }

.badge-soon {
  display: inline-block;
  background: var(--blue-dim); color: var(--blue);
  border: 1px solid var(--blue-border);
  font-size: 9px; font-weight: var(--fw-bold); letter-spacing: 1.5px;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}

/* ── À propos ────────────────────────────────────────────── */
.about-section { padding: var(--sp-2xl) 0; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.about-lead {
  font-size: 18px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.85; margin-bottom: 28px;
}

.about-body {
  font-size: 15px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.8; margin-bottom: 24px;
}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border-dim); border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg); overflow: hidden; }

.value-card {
  background: var(--bg-card); padding: 24px;
  transition: background .2s;
}
.value-card:hover { background: var(--bg-card-h); }

.value-card__icon { color: var(--blue); margin-bottom: 10px; display: block; }
.value-card h4 { font-size: 14px; font-weight: var(--fw-semi); margin-bottom: 6px; color: var(--text); }
.value-card p  { font-size: 12px; font-weight: var(--fw-light); color: var(--text-muted); line-height: 1.6; }

/* ── Contact Hero ────────────────────────────────────────── */
.contact-hero { padding: var(--sp-2xl) 0; border-bottom: 1px solid var(--border-dim); }

.contact-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}

.contact-hero__left { display: flex; flex-direction: column; gap: 20px; }

.contact-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--fw-title);
  letter-spacing: -1.2px; line-height: 1.15;
  color: var(--text);
}
.contact-hero__title em { font-style: normal; color: var(--blue); }

.contact-hero__desc {
  font-size: 16px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.75; max-width: 420px;
}

.contact-hero__stats {
  display: flex; flex-direction: column;
  gap: 12px; align-items: flex-end;
}

.contact-stat-card {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  animation: pageBorderSpin 8s linear infinite;
  border-radius: var(--radius-lg);
  padding: 16px 24px; width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.csc-label {
  font-size: 10px; color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
}
.csc-val {
  font-size: 30px; font-weight: var(--fw-bold);
  color: var(--blue); letter-spacing: -1px; line-height: 1;
}

/* ── Section eyebrow purple-pink (pages intérieures) ─────── */
.section-eyebrow--pp {
  display: inline-flex; align-items: center;
  background: rgba(217,70,239,0.1);
  border: 1px solid rgba(217,70,239,0.28);
  border-radius: 999px; padding: 5px 14px;
  font-size: 10px; font-weight: var(--fw-bold);
  letter-spacing: 2px; text-transform: uppercase;
  color: #d946ef;
  align-self: flex-start; width: fit-content;
}

/* ── Contact main 30/70 ──────────────────────────────────── */
.contact-main { padding: var(--sp-2xl) 0; }

.contact-main__grid {
  display: grid; grid-template-columns: 3fr 7fr;
  gap: 32px; align-items: start;
}

.contact-coords { display: flex; flex-direction: column; gap: 12px; }

.coord-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
}
.coord-card__icon {
  width: 36px; height: 36px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.coord-card__label {
  font-size: 9px; color: var(--text-muted);
  font-weight: var(--fw-semi); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 2px;
}
.coord-card__value { font-size: 12px; font-weight: var(--fw-semi); color: var(--text); }
.coord-card__value a { color: var(--blue); text-decoration: none; }

.coord-sep { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

.coord-guarantees { display: flex; flex-direction: column; gap: 8px; }
.coord-guarantee {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim);
}
.coord-guarantee svg { color: var(--blue); flex-shrink: 0; }

.coord-social__label {
  font-size: 9px; color: var(--text-muted);
  font-weight: var(--fw-bold); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 8px;
}
.coord-social { display: flex; flex-wrap: wrap; gap: 6px; }
.coord-social__link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-dim); color: var(--blue);
  border: 1px solid var(--blue-border);
  padding: 6px 12px; border-radius: 20px;
  font-size: 11px; font-weight: var(--fw-semi);
  text-decoration: none; transition: background .15s;
}
.coord-social__link:hover { background: rgba(26,79,255,0.2); }

/* ── Formulaire — bordure animée bleue ───────────────────── */
@property --page-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes pageBorderSpin { to { --page-angle: 360deg; } }

.contact-form-card {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  padding: 40px;
  animation: pageBorderSpin 8s linear infinite;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px;
  font-weight: var(--fw-semi); margin-bottom: 8px; color: var(--text-dim);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font); font-size: 14px;
  color: var(--text); background: var(--bg-mid);
  transition: border-color .15s; box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
}

/* ── Consentement RGPD ───────────────────────────────────── */
.form-consent {
  margin-bottom: 20px;
}

.consent-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; min-width: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg-mid);
  cursor: pointer;
  margin-top: 2px;
  transition: border-color .15s, background .15s;
  position: relative;
}

.consent-label input[type="checkbox"]:checked {
  background: var(--blue);
  border-color: var(--blue);
}

.consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1,5 4,8 11,1' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.consent-label input[type="checkbox"]:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
}

.consent-text {
  font-size: 13px; color: var(--text-dim); line-height: 1.5;
}

.consent-text a {
  color: var(--blue); text-decoration: underline;
}

/* ── Bouton submit désactivé ─────────────────────────────── */
.btn-svc--blue:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  filter: none;
  transform: none;
  box-shadow: none;
}
.form-group select option { background: var(--bg-mid); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-required { color: #c0392b; }

.form-msg {
  padding: 12px 16px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: var(--fw-medium); margin-bottom: 20px;
}
.form-msg--success { background: var(--blue-dim); color: var(--blue); border: 1px solid var(--blue-border); }
.form-msg--error   { background: rgba(192,57,43,.12); color: #ff6b6b; border: 1px solid rgba(192,57,43,.3); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: var(--sp-2xl) 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.faq-card__q {
  font-size: 15px; font-weight: var(--fw-semi);
  color: var(--text); margin-bottom: 8px;
}
.faq-card__a {
  font-size: 14px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.7;
}

/* ── CTA banner bordure animée (spécificité double classe > .cta-banner seul) */
.cta-banner.cta-banner--animated {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  margin: 0;
  animation: pageBorderSpin 8s linear infinite;
}

/* ── Responsive contact ──────────────────────────────────── */
@media (max-width: 900px) {
  .contact-hero__inner    { grid-template-columns: 1fr; }
  .contact-hero__stats    { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .contact-stat-card      { width: auto; flex: 1 1 calc(50% - 5px); }
  .contact-main__grid     { grid-template-columns: 1fr; }
  .contact-form-card      { padding: 24px; }
}
@media (max-width: 480px) {
  .contact-hero__stats { flex-direction: column; }
  .contact-stat-card   { width: 100%; flex: none; }
}

/* ── Confidentialité ─────────────────────────────────────── */
.legal-section { padding: var(--sp-2xl) 0; max-width: 780px; }

.legal-section h2 {
  font-size: 20px; font-weight: var(--fw-title);
  margin: 40px 0 12px; color: var(--text);
}

.legal-section h3 {
  font-size: 16px; font-weight: var(--fw-semi);
  margin: 24px 0 8px; color: var(--text);
}

.legal-section p {
  font-size: 14px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.8; margin-bottom: 12px;
}

.legal-section ul { margin: 8px 0 16px 20px; }

.legal-section ul li {
  font-size: 14px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.8; margin-bottom: 6px;
}

.legal-date { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }

/* ── Confidentialité — refonte ───────────────────────────── */
.privacy-date-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 7px 16px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 999px;
  font-size: 12px; font-weight: var(--fw-semi); color: var(--blue);
}

.privacy-trust-section { padding: var(--sp-xl) 0 0; }
.privacy-trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  animation: pageBorderSpin 8s linear infinite;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.privacy-trust-item {
  padding: 26px 16px; text-align: center;
  border-right: 1px solid var(--border-dim);
  transition: background .2s;
}
.privacy-trust-item:last-child { border-right: none; }
.privacy-trust-item:hover { background: var(--bg-card-h); }
.privacy-trust-val {
  font-size: 24px; font-weight: var(--fw-bold);
  color: #fff; letter-spacing: -0.5px; margin-bottom: 6px;
}
.privacy-trust-val em { font-style: normal; color: var(--blue); }
.privacy-trust-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--text-muted); font-weight: var(--fw-semi);
}

.privacy-section { padding: var(--sp-xl) 0 var(--sp-2xl); }
.privacy-layout {
  display: grid; grid-template-columns: 230px 1fr;
  gap: 48px; align-items: start;
}
.privacy-toc { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2px; }
.privacy-toc__title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); font-weight: var(--fw-semi); margin-bottom: 10px;
}
.privacy-toc a {
  font-size: 13px; font-weight: var(--fw-light); color: var(--text-muted);
  text-decoration: none; padding: 7px 14px;
  border-left: 2px solid var(--border-dim);
  transition: color .2s, border-color .2s, background .2s;
}
.privacy-toc a:hover { color: var(--blue); border-color: var(--blue); background: rgba(91,143,255,0.05); }

.privacy-cards { display: flex; flex-direction: column; gap: 16px; }
.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 30px;
  scroll-margin-top: 96px;
  transition: border-color .25s;
}
.privacy-card:hover { border-color: var(--blue-border); }
.privacy-card--accent {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  animation: pageBorderSpin 8s linear infinite;
}
.privacy-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.privacy-card__icon {
  width: 40px; height: 40px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 10px; color: var(--blue);
}
.privacy-card__num {
  display: block; font-size: 10px; letter-spacing: 2px;
  color: var(--blue); font-weight: var(--fw-semi); margin-bottom: 3px;
}
.privacy-card h2 { font-size: 17px; font-weight: var(--fw-title); color: var(--text); }
.privacy-card h3 {
  font-size: 14px; font-weight: var(--fw-semi);
  color: var(--text); margin: 16px 0 8px;
}
.privacy-card p {
  font-size: 14px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.75; margin-bottom: 10px;
}
.privacy-card p:last-child { margin-bottom: 0; }
.privacy-card ul { list-style: none; margin: 10px 0 12px; display: flex; flex-direction: column; gap: 8px; }
.privacy-card ul li {
  font-size: 14px; font-weight: var(--fw-light); color: var(--text-dim);
  line-height: 1.65; padding-left: 22px; position: relative;
}
.privacy-card ul li::before {
  content: ''; position: absolute; left: 2px; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid var(--blue);
}
.privacy-card a { color: var(--blue); text-decoration: none; }
.privacy-card a:hover { text-decoration: underline; }
.privacy-card strong { color: var(--text); font-weight: var(--fw-semi); }

@media (max-width: 900px) {
  .privacy-layout { grid-template-columns: 1fr; gap: 28px; }
  .privacy-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .privacy-toc__title { display: none; }
  .privacy-toc a {
    border: 1px solid var(--border); border-left-width: 1px;
    border-radius: 999px; padding: 6px 14px;
  }
  .privacy-trust-bar { grid-template-columns: 1fr 1fr; }
  .privacy-trust-item:nth-child(2n) { border-right: none; }
  .privacy-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border-dim); }
}

/* ── CTA Banner (partagé) ────────────────────────────────── */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px; text-align: center;
  margin: var(--sp-2xl) 0;
  position: relative; overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, var(--blue-dim), transparent);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--text); font-size: clamp(22px, 3vw, 34px);
  font-weight: var(--fw-title); margin-bottom: 14px; position: relative;
}

.cta-banner p {
  color: var(--text-dim); font-size: 16px;
  font-weight: var(--fw-light); margin-bottom: 32px; position: relative;
}

/* ── Boutons pages ───────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #ec4899); color: #fff;
  font-family: var(--font); font-size: 14px; font-weight: var(--fw-bold);
  padding: 13px 26px; border-radius: var(--radius-md);
  border: none; cursor: pointer;
  transition: filter .15s, transform .15s, box-shadow .15s;
  display: inline-flex; align-items: center; text-decoration: none;
}

.btn-primary:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.4);
}

.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.65);
  font-family: var(--font); font-size: 14px; font-weight: var(--fw-ui);
  padding: 13px 26px; border-radius: var(--radius-md);
  border: 1px solid #1a2e48; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  text-decoration: none; display: inline-flex; align-items: center;
}

.btn-secondary:hover {
  background: var(--bg-card-h); border-color: var(--blue-border); color: var(--blue);
}

.btn-cyan {
  background: var(--cyan); color: var(--bg);
  font-family: var(--font); font-size: 14px; font-weight: var(--fw-bold);
  padding: 13px 28px; border-radius: var(--radius-md);
  border: none; cursor: pointer;
  transition: filter .15s, transform .15s, box-shadow .15s;
  display: inline-flex; align-items: center; text-decoration: none;
}

.btn-cyan:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--cyan-glow);
}

/* ── Section eyebrow shared ──────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  font-size: 10px; font-weight: var(--fw-bold);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue);
}

.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 7px var(--blue);
  flex-shrink: 0; display: inline-block;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: var(--fw-title);
  letter-spacing: -1px; margin-bottom: 12px;
  color: var(--text);
}

.section-title em { font-style: normal; color: var(--blue); }

.section-desc {
  font-size: 16px; font-weight: var(--fw-light);
  color: var(--text-dim); max-width: 480px;
  margin: 0 auto 48px; line-height: 1.75;
}

/* ── Divider scan animé (copié de home.css) ──────────────── */
.section-divider {
  height: 1px;
  background: rgba(100, 140, 255, 0.18);
  position: relative; overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute; top: 0; left: -50%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: div-scan 2.2s cubic-bezier(.4,0,.6,1) infinite;
}

@keyframes div-scan {
  0%   { left: -50%; }
  100% { left: 120%; }
}

/* ── Boutons service CTA (copié de home.css) ─────────────── */
.btn-svc {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 13px; font-weight: var(--fw-bold);
  padding: 11px 22px; border-radius: var(--radius-md);
  border: none; cursor: pointer; text-decoration: none;
  transition: filter .15s, transform .15s, box-shadow .15s;
  align-self: flex-start;
}

.btn-svc--pp {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #fff;
}

.btn-svc--pp:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}

.btn-svc--blue {
  background: var(--blue-gradient);
  color: #fff;
}

.btn-svc--blue:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,143,255,0.35);
}

/* ── CTA banner em emphasis ──────────────────────────────── */
.cta-banner h2 em {
  font-style: normal;
  color: var(--blue);
}

/* ── Ticker bande défilante ──────────────────────────────── */
.services-ticker {
  overflow: hidden;
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  padding: 20px 0;
  position: relative;
}

.services-ticker::before,
.services-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.services-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #0d1526, transparent);
}

.services-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #0d1526, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.ticker-item .ticker-sep {
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── À propos — Hero CTA row ─────────────────────────────── */
.page-hero__ctas {
  display: flex; gap: 14px; justify-content: center;
  margin-top: 32px; flex-wrap: wrap;
}

/* ── À propos — Stats (modèle accueil) ──────────────────── */
.about-stats-section { padding: var(--sp-xl) 0; }

.about-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-xl); overflow: hidden;
  animation: pageBorderSpin 8s linear infinite;
}

.about-stat-item {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid var(--border-dim);
  transition: background .2s;
}

.about-stat-item:last-child { border-right: none; }
.about-stat-item:hover { background: var(--bg-card-h); }

.about-stat-number {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: var(--fw-title);
  line-height: 1; letter-spacing: -2px; margin-bottom: 10px;
}

.about-stat-number .stat-num-w { color: #fff; }
.about-stat-number .stat-num-b { color: var(--blue); }

.about-stat-label {
  font-size: 11px; font-weight: var(--fw-ui);
  color: var(--text-muted);
  letter-spacing: 1.5px; text-transform: uppercase;
  line-height: 1.6;
}

/* ── À propos — Mission (carte animée + carousel) ────────── */
.about-mission-section { padding: var(--sp-2xl) 0; }

.about-mission-card {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-2xl);
  padding: 60px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  animation: pageBorderSpin 8s linear infinite;
}

/* ── Carousel paragraphes mission ────────────────────────── */
.about-carousel { display: flex; flex-direction: column; }

.about-carousel__slides { display: grid; }

.about-carousel__slide {
  grid-column: 1; grid-row: 1;
  opacity: 0; transition: opacity .45s ease;
  pointer-events: none;
  background: var(--bg-mid);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}

.about-carousel__slide--active { opacity: 1; pointer-events: auto; }

.about-carousel__slide p {
  font-size: 15px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.8; margin: 0;
}

.about-carousel__nav {
  display: flex; align-items: center; gap: 14px; margin-top: 20px;
}

.about-carousel__arrow {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 50%; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s;
  font-size: 14px; line-height: 1;
}

.about-carousel__arrow:hover { background: rgba(26,79,255,0.22); }

.about-carousel__dots { display: flex; gap: 8px; align-items: center; }

.about-carousel__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-dim); border: none; padding: 0;
  cursor: pointer; transition: background .2s, transform .2s;
}

.about-carousel__dot--active { background: var(--blue); transform: scale(1.4); }

/* ── À propos — Valeurs (carte animée) ───────────────────── */
.about-values-card {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-2xl);
  padding: 60px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  animation: pageBorderSpin 8s linear infinite;
}

.about-values-section { padding: var(--sp-2xl) 0; }

.about-values-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(217,70,239,0.1); border: 1px solid rgba(217,70,239,0.28);
  border-radius: 999px; padding: 5px 16px;
  font-size: 12px; font-weight: var(--fw-bold);
  letter-spacing: 2px; text-transform: uppercase;
  color: #d946ef; margin-bottom: 22px; width: fit-content;
}

/* ── Copié de home.css: mini-grille valeurs ──────────────── */
.about-mini-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg); overflow: hidden;
}

.about-mini-card {
  background: var(--bg-card); padding: 28px 24px;
  transition: background .2s;
}

.about-mini-card:hover { background: var(--bg-card-h); }

.about-mini-card__icon { color: var(--blue); margin-bottom: 12px; display: block; }

.about-mini-card__title {
  font-size: 14px; font-weight: var(--fw-semi);
  color: var(--text); margin-bottom: 4px;
}

.about-mini-card__desc {
  font-size: 11px; font-weight: var(--fw-light);
  color: var(--text-muted); line-height: 1.55;
}

/* ── À propos — Services aperçu (3 col) ─────────────────── */
.about-services-section { padding: var(--sp-2xl) 0; }

.about-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  margin-top: 40px;
}

/* ── Copié de home.css: service-preview-card ─────────────── */
.service-preview-card {
  background-color: var(--bg-card);
  background-image: radial-gradient(circle, rgba(91,143,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 40px 36px;
  transition: background-color .2s;
  display: flex; flex-direction: column;
  position: relative;
}

.service-preview-card:hover { background-color: var(--bg-card-h); }

.service-preview-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 22px;
}

.service-preview-card h3 {
  font-size: 20px; font-weight: var(--fw-title);
  color: var(--text); margin-bottom: 10px;
}

.service-preview-card p {
  font-size: 14px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.7; margin-bottom: 24px;
  flex: 1;
}

/* ── Responsive À propos ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-values-card  { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .about-mission-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .about-services-grid { grid-template-columns: 1fr; }
  .about-stats-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .about-mini-grid { grid-template-columns: 1fr; }
  .about-stat-item { padding: 32px 16px; }
}

/* ═══════════════════════════════════════════════
   PAGES PRODUIT — CleanerApp & ArchiveFlow
═══════════════════════════════════════════════ */

/* ── Hero produit split 50/50 ─────────────────── */
.prod-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0 80px;
}

.prod-hero__text { display: flex; flex-direction: column; align-items: flex-start; }

.prod-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 999px; padding: 5px 16px;
  font-size: 11px; font-weight: var(--fw-ui);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}

.prod-hero__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: var(--fw-title);
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 16px; color: var(--text);
}
.prod-hero__title em { font-style: normal; color: var(--blue); }

.prod-hero__desc {
  font-size: 16px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.75;
  margin-bottom: 20px; max-width: 480px;
}

.prod-hero__badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}

.prod-hero__badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dim);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; font-weight: var(--fw-ui);
  color: var(--text-muted); letter-spacing: .5px;
}

.prod-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.prod-hero__mockup {
  display: flex; justify-content: center; align-items: center;
}

/* ── Mockup iPhone ────────────────────────────── */
.iphone-mockup {
  width: 260px;
  background:
    linear-gradient(#080f1e, #080f1e) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1.5px solid transparent;
  animation: pageBorderSpin 8s linear infinite;
  border-radius: 40px;
  padding: 20px 16px;
  box-shadow:
    0 0 0 1px rgba(91,143,255,0.12),
    0 0 60px rgba(91,143,255,0.22),
    0 0 120px rgba(26,79,255,0.14),
    0 40px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
}

.iphone-mockup::before {
  content: '';
  display: block;
  width: 80px; height: 24px;
  background: #080f1e;
  border: 1.5px solid rgba(91,143,255,0.15);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 16px;
}

.iphone-screen { display: flex; flex-direction: column; gap: 8px; }

.iphone-screen__header {
  font-size: 9px; font-weight: var(--fw-ui);
  letter-spacing: 2px; color: var(--blue);
  text-transform: uppercase; text-align: center;
  margin-bottom: 4px;
}

.iphone-screen__title {
  font-size: 16px; font-weight: var(--fw-title);
  color: var(--text); text-align: center;
  margin-bottom: 2px;
}

.iphone-screen__sub {
  font-size: 11px; color: var(--text-muted);
  text-align: center; margin-bottom: 8px;
}

.iphone-storage-ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 72%, rgba(255,255,255,0.07) 0);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  position: relative;
}
.iphone-storage-ring::after {
  content: '72%';
  position: absolute;
  font-size: 16px; font-weight: var(--fw-title); color: var(--text);
}
.iphone-storage-ring-inner {
  width: 64px; height: 64px; border-radius: 50%;
  background: #080f1e;
}

.iphone-scan-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: 10px; padding: 8px 10px;
}
.iphone-scan-row__icon { font-size: 16px; flex-shrink: 0; }
.iphone-scan-row__label { font-size: 10px; color: var(--text-muted); flex: 1; }
.iphone-scan-row__val { font-size: 10px; font-weight: var(--fw-bold); color: var(--text); }

.iphone-scan-row--total {
  background: rgba(91,143,255,0.1);
  border-color: var(--blue-border);
}
.iphone-scan-row--total .iphone-scan-row__val { color: var(--blue); }

.iphone-btn {
  display: block; width: 100%; margin-top: 8px;
  background: var(--blue-gradient);
  border: none; border-radius: 12px;
  padding: 10px; text-align: center;
  font-size: 11px; font-weight: var(--fw-bold);
  color: #fff; cursor: pointer;
}

/* ── Mockup Dashboard ─────────────────────────── */
.dashboard-mockup {
  width: 420px; max-width: 100%;
  background:
    linear-gradient(#080f1e, #080f1e) padding-box,
    conic-gradient(from var(--page-angle), #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%) border-box;
  border: 1px solid transparent;
  animation: pageBorderSpin 8s linear infinite;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(91,143,255,0.12),
    0 0 60px rgba(91,143,255,0.22),
    0 0 120px rgba(26,79,255,0.14),
    0 40px 80px rgba(0,0,0,.55);
}

.dashboard-topbar {
  background: #0d1526;
  border-bottom: 1px solid var(--border-dim);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
}
.dashboard-topbar__dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dashboard-topbar__dot--r { background: #ff5f57; }
.dashboard-topbar__dot--y { background: #ffbd2e; }
.dashboard-topbar__dot--g { background: #28c840; }
.dashboard-topbar__title {
  font-size: 10px; font-weight: var(--fw-ui);
  letter-spacing: 1.5px; color: var(--text-muted);
  text-transform: uppercase; margin-left: 6px;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 48px 1fr;
}

.dashboard-sidebar {
  background: rgba(0,0,0,0.2);
  border-right: 1px solid var(--border-dim);
  padding: 14px 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.dashboard-sidebar__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.dashboard-sidebar__icon--active {
  background: var(--blue-gradient);
  border-color: transparent;
  color: #fff;
}

.dashboard-content { padding: 14px; }

.dashboard-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 12px;
}
.dashboard-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: 8px; padding: 8px;
  text-align: center;
}
.dashboard-stat__val {
  font-size: 14px; font-weight: var(--fw-title);
  color: var(--blue); line-height: 1;
}
.dashboard-stat__label { font-size: 9px; color: var(--text-muted); margin-top: 3px; }

.dashboard-doc-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px; border-radius: 6px;
  border: 1px solid transparent;
  margin-bottom: 4px; font-size: 10px;
}
.dashboard-doc-row__name { flex: 1; color: var(--text-dim); }
.dashboard-doc-badge {
  padding: 2px 7px; border-radius: 4px;
  font-size: 9px; font-weight: var(--fw-bold);
  letter-spacing: .5px; text-transform: uppercase;
}
.dashboard-doc-badge--indexed  { background: rgba(34,197,94,0.15);  color: #22c55e; }
.dashboard-doc-badge--encrypted { background: var(--blue-dim);       color: var(--blue); }
.dashboard-doc-badge--compliant { background: rgba(217,70,239,0.12); color: #d946ef; }

.dashboard-search {
  margin-top: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: 8px; padding: 7px 10px;
  font-size: 10px; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}

/* ── Comment ça marche (CleanerApp) ──────────────*/
.how-section { padding: var(--sp-2xl) 0; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.how-step {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
  transition: background .2s;
}
.how-step:hover { background: #0e1830; }

.how-step__num {
  font-size: 64px; font-weight: var(--fw-title);
  color: var(--blue-dim);
  line-height: 1; margin-bottom: 20px;
  letter-spacing: -3px;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-step__title {
  font-size: 18px; font-weight: var(--fw-bold);
  color: var(--text); margin-bottom: 10px;
}

.how-step__desc {
  font-size: 14px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.7;
}

.how-step__illus {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  min-height: 60px;
}

/* ── Features grid (3×2 et 3×3) ─────────────────*/
.prod-features-section { padding: var(--sp-2xl) 0; }

.prod-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.prod-feature-card {
  background: var(--bg-card);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: background .2s;
}
.prod-feature-card:hover { background: #0e1830; }

.prod-feature-card__icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}

.prod-feature-card__title {
  font-size: 16px; font-weight: var(--fw-bold);
  color: var(--text); margin-bottom: 8px;
}

.prod-feature-card__desc {
  font-size: 13px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.65;
  flex: 1;
}

.prod-feature-card__illus {
  margin-top: 16px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  min-height: 52px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Card IA mise en avant (ArchiveFlow module 9) */
.prod-feature-card--ai {
  background: rgba(91,143,255,0.06);
  border: 1px solid var(--blue-border);
}
.prod-feature-card--ai:hover { background: rgba(91,143,255,0.1); }

.prod-feature-card__ai-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  border-radius: 999px; padding: 2px 8px;
  font-size: 9px; font-weight: var(--fw-bold);
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  align-self: flex-start;
}

.prod-feature-card__agents {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 10px;
}
.prod-feature-card__agent {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-muted);
}
.prod-feature-card__agent::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}

/* ── Card premium Confidentialité / Conformité ── */
.prod-premium-section { padding: var(--sp-2xl) 0; }

.prod-premium-card {
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--page-angle),
      #1a2e48 0%, #5b8fff 30%, #1a4fff 50%, #5b8fff 70%, #1a2e48 100%
    ) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-2xl);
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  animation: pageBorderSpin 8s linear infinite;
}

.prod-premium-card__eyebrow {
  font-size: 11px; font-weight: var(--fw-ui);
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}

.prod-premium-card__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: var(--fw-title);
  letter-spacing: -1px; line-height: 1.2;
  color: var(--text); margin-bottom: 18px;
}
.prod-premium-card__title em { font-style: normal; color: var(--blue); }

.prod-premium-card__desc {
  font-size: 15px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.75;
  margin-bottom: 28px;
}

.prod-guarantees {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.prod-guarantee {
  background: var(--bg-card);
  padding: 24px 22px;
}

.prod-guarantee__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.prod-guarantee__title {
  font-size: 14px; font-weight: var(--fw-bold);
  color: var(--text); margin-bottom: 5px;
}

.prod-guarantee__desc {
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
}

/* ── Cas d'usage (ArchiveFlow) ───────────────── */
.use-cases-section { padding: var(--sp-2xl) 0; }

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: border-color .2s, background .2s;
}
.use-case-card:hover {
  border-color: var(--blue-border);
  background: #0e1830;
}

.use-case-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-dim); border: 1px solid var(--blue-border);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.use-case-card__label {
  font-size: 10px; font-weight: var(--fw-ui);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}

.use-case-card__title {
  font-size: 18px; font-weight: var(--fw-bold);
  color: var(--text); margin-bottom: 12px;
}

.use-case-card__desc {
  font-size: 14px; font-weight: var(--fw-light);
  color: var(--text-dim); line-height: 1.7;
  margin-bottom: 18px;
}

.use-case-card__points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.use-case-card__points li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}
.use-case-card__points li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  margin-top: 5px;
}

/* ── Responsive produit ──────────────────────── */
@media (max-width: 1024px) {
  .dashboard-mockup { width: 360px; }
}

@media (max-width: 900px) {
  .prod-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .prod-hero__text { align-items: center; }
  .prod-hero__desc { max-width: 100%; }

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

  .prod-features-grid { grid-template-columns: 1fr 1fr; }

  .prod-premium-card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 40px;
  }

  .use-cases-grid { grid-template-columns: 1fr; }

  .iphone-mockup { width: 220px; }
  .dashboard-mockup { width: 100%; max-width: 400px; }
}

@media (max-width: 600px) {
  .prod-features-grid { grid-template-columns: 1fr; }
  .prod-guarantees { grid-template-columns: 1fr; }
}

/* ── Guarantee card hover ────────────────────── */
.prod-guarantee { transition: background .2s; }
.prod-guarantee:hover { background: rgba(91,143,255,0.08); }

/* ── CTA banner title emphasis ───────────────── */
.cta-banner h2 em { font-style: normal; color: var(--blue); }

/* ── btn-svc variants : styles de base autonomes ─ */
.btn-svc--pp,
.btn-svc--blue {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 13px; font-weight: var(--fw-bold);
  padding: 11px 22px; border-radius: var(--radius-md);
  border: none; cursor: pointer; text-decoration: none;
  transition: filter .15s, transform .15s, box-shadow .15s;
  align-self: flex-start;
}

/* ── Use-case points : badges étiquettes ──────── */
.uc-points { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.uc-point {
  display: block; padding: 5px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 400; line-height: 1.4;
}
.uc-point--blue {
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
}
.uc-point--pp {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(217,70,239,0.3);
  color: #d946ef;
}

/* ── AF modules : séparateurs verticaux animés ─── */
@keyframes af-vert-scan {
  0%, 100% { background-position: 50% 0%; }
  50%       { background-position: 50% 100%; }
}

/* ── Section eyebrow centrage wrapper ────────── */
.eyebrow-center { text-align: center; }
