@charset "UTF-8";

:root {
  --primary: rgb(196, 30, 42);
  --primary-dark: rgb(154, 24, 34);
  --accent: rgb(230, 118, 42);
  --accent-soft: rgb(255, 248, 235);
  --navy: rgb(11, 18, 32);
  --navy-mid: rgb(21, 34, 56);
  --bg: rgb(238, 242, 247);
  --card: rgb(255, 255, 255);
  --text: rgb(15, 23, 42);
  --muted: rgb(92, 107, 126);
  --border: rgb(216, 224, 234);
  --success: rgb(15, 118, 110);
  --radius: 14px;
  --shadow: 0 8px 32px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 18, 32, 0.12);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --fc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.sevy-facture-ch-page {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.sevy-facture-ch-page .sevy-facture-ch-wrap h1,
body.sevy-facture-ch-page .sevy-facture-ch-wrap h2,
body.sevy-facture-ch-page .sevy-facture-ch-wrap h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.phone-mock {
  background: var(--card);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.phone-mock .screen {
  background: var(--bg);
  border-radius: 16px;
  padding: 1.25rem;
  min-height: 280px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

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

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: #fef2f2;
  color: var(--primary);
}

.badge-paid {
  background: #f0fdf4;
  color: var(--success);
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  text-align: center;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.section .sub {
  text-align: center;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

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

.card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .plans {
    grid-template-columns: 1fr;
  }
}

.plan-pro {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(185, 28, 28, 0.12);
}

.plan-pro .plan-label {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  counter-reset: step;
  max-width: 560px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Ancien page-hero remplacé par fc-page-hero */

.prose {
  padding: 2rem 0 3rem;
  max-width: 720px;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--text);
}

.prose ul {
  color: var(--muted);
}

.form-card {
  max-width: 520px;
  margin: 2rem auto 3rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-check input {
  margin-top: 0.25rem;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-success {
  background: #f0fdf4;
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: var(--primary);
  border: 1px solid #fecaca;
}

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.site-footer a {
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer .brand {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #334155;
  font-size: 0.85rem;
}

/* ——— Intégration Astra (sevy-creations.net) ——— */
body.sevy-facture-ch-page .sevy-facture-ch-wrap .ast-container,
body.sevy-facture-ch-page .sevy-facture-ch-wrap {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

body.sevy-facture-ch-page .site-content > .ast-container {
  max-width: 100%;
  padding: 0;
}

.sevy-facture-ch-wrap .site-main {
  margin: 0;
}

.fc-subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.fc-subnav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.fc-subnav-logo:hover {
  text-decoration: none;
  color: var(--primary);
}

.fc-subnav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.fc-subnav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.fc-subnav-links a:hover,
.fc-subnav-links a[aria-current='page'] {
  color: var(--primary);
}

.fc-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.fc-site-contact-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.fc-form-title {
  text-align: center;
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

.fc-subnav-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.fc-lang-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.fc-lang-switch a {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.fc-lang-switch a:hover {
  color: var(--primary);
  text-decoration: none;
}

.fc-lang-switch a.is-active {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 768px) {
  .fc-subnav {
    flex-direction: column;
    align-items: stretch;
  }

  .fc-subnav-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ——— Mobile & tablette ——— */
@media (max-width: 768px) {
  body.sevy-facture-ch-page {
    overflow-x: clip;
  }

  body.sevy-facture-ch-page .sevy-facture-ch-wrap .container,
  body.sevy-facture-ch-page .sevy-facture-ch-wrap .container {
    width: min(1100px, calc(100% - 2rem));
  }

  .hero {
    padding: 2rem 0 1.5rem;
  }

  .hero .lead {
    font-size: 1.05rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .phone-mock {
    max-width: min(100%, 340px);
    margin-inline: auto;
  }

  .phone-mock .screen {
    min-height: 200px;
  }

  .section {
    padding: 2rem 0;
  }

  .section h2 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .page-hero {
    padding: 1.75rem 0 1rem;
  }

  .page-hero h1 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.2;
  }

  .prose {
    padding: 1.5rem 0 2.5rem;
  }

  .form-card {
    max-width: none;
    margin: 1.5rem 0 2.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .btn {
    min-height: 44px;
    padding: 0.75rem 1.15rem;
  }

  .mock-row {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .form-check label {
    line-height: 1.45;
  }
}

@media (max-width: 480px) {
  body.sevy-facture-ch-page .sevy-facture-ch-wrap .container {
    width: min(1100px, calc(100% - 1.25rem));
  }

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

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .card {
    padding: 1rem;
  }

  .grid-3 {
    gap: 1rem;
  }

  .plans {
    gap: 1rem;
  }
}

body.sevy-facture-ch-page .sevy-facture-ch-wrap img,
body.sevy-facture-ch-page .sevy-facture-ch-wrap video {
  max-width: 100%;
  height: auto;
}

/* ——— Page lancement / conversion ——— */
.hero-launch .hero-grid {
  align-items: center;
}

.launch-score-hero {
  padding: 1.5rem;
  text-align: center;
}

.launch-score-hero-label {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 1rem;
}

.launch-score-hero-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 12px;
  margin-bottom: 1rem;
}

.launch-score-hero-bar span:first-child,
.launch-score-hero-bar span:last-child {
  flex: 1;
  height: 100%;
  border-radius: 6px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.launch-score-hero-bar span:first-child::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background: #94a3b8;
  border-radius: 6px;
}

.launch-score-hero-bar span:last-child::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 90%;
  background: var(--primary);
  border-radius: 6px;
}

.launch-score-hero-arrow {
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--muted);
}

.launch-score-hero-caption {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.score-table {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.score-table-head,
.score-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.score-table-head {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.score-label {
  font-weight: 600;
}

.score-num {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.score-num-before {
  color: #64748b;
}

.score-num-after {
  color: var(--primary);
}

.score-bar {
  display: block;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.score-bar i {
  display: block;
  height: 100%;
  background: #94a3b8;
  border-radius: 4px;
}

.score-bar-after i {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.score-punch {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text);
}

.launch-migrate-time {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
}

.plans-launch .plan-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.25rem;
}

.plans-launch .plan-tagline {
  color: var(--muted);
  margin: 0 0 1rem;
}

.plans-launch .card .btn {
  width: 100%;
  margin-top: 0.75rem;
}

.plan-fine {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

/* —— Pourquoi Factures CH (origine artisan) —— */
.fc-story {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.fc-story-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .fc-story-grid {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2.5rem;
  }
}

.fc-story-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  line-height: 1.25;
}

.fc-story-copy p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
}

.fc-story-sign {
  margin: 0.5rem 0 0 !important;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
}

.fc-story-aside {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--bg);
  border-left: 4px solid var(--primary);
}

.fc-story-points {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.fc-story-points li + li {
  margin-top: 0.65rem;
}

.fc-beta {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.fc-beta-inner {
  max-width: 42rem;
  margin-inline: auto;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, #fff 0%, var(--accent-soft) 100%);
  box-shadow: var(--shadow);
}

.fc-beta-inner h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
}

.fc-beta-lead {
  margin-bottom: 1.25rem;
}

.fc-beta-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.55;
}

.fc-beta-list li + li {
  margin-top: 0.5rem;
}

.fc-beta-actions {
  margin: 0 0 0.75rem;
}

.launch-proof-list {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 55%, #1a2f4a 100%);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 8vw, 4.5rem) 0;
}

.section-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(196, 30, 42, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.section-cta-final .container {
  position: relative;
  z-index: 1;
}

.section-cta-final h2,
.section-cta-final p {
  color: #fff;
}

.section-cta-final .hero-note {
  color: rgba(255, 255, 255, 0.85);
}

.section-cta-final .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
}

/* —— Design pro : hero sombre, motion sobre —— */
.hero-fc {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  color: #f1f5f9;
}

.hero-fc-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 10% 100%, rgba(245, 178, 48, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 15%, rgba(196, 30, 42, 0.14) 0%, transparent 50%),
    linear-gradient(168deg, var(--navy) 0%, var(--navy-mid) 48%, #0d1828 100%);
}

.fc-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 15%, transparent 72%);
}

.fc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  will-change: transform;
}

.fc-orb-a {
  width: 38vmin;
  height: 38vmin;
  top: -12%;
  right: 5%;
  background: rgba(245, 178, 48, 0.5);
  animation: fc-orb-drift 20s ease-in-out infinite;
}

.fc-orb-b {
  width: 32vmin;
  height: 32vmin;
  bottom: -5%;
  left: 10%;
  background: rgba(196, 30, 42, 0.2);
  animation: fc-orb-drift 24s ease-in-out infinite reverse;
}

@keyframes fc-orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 4%); }
}

.hero-fc .hero-grid {
  position: relative;
  z-index: 1;
}

.hero-fc h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 2.85rem);
  line-height: 1.12;
}

.fc-headline-accent {
  background: linear-gradient(100deg, rgb(252, 208, 76) 0%, rgb(245, 178, 48) 45%, rgb(196, 30, 42) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-fc .lead {
  color: rgba(241, 245, 249, 0.82);
  max-width: 34rem;
}

.hero-fc .lead a {
  color: rgb(252, 208, 76);
  text-decoration: none;
  border-bottom: 1px solid rgba(252, 208, 76, 0.35);
}

.hero-fc .lead a:hover {
  color: #fff;
}

.hero-fc .hero-note {
  color: rgba(241, 245, 249, 0.6);
  font-size: 0.88rem;
}

.hero-fc .btn-outline {
  background: transparent;
  color: #f1f5f9 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.hero-fc .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
}

.fc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-family: var(--font);
}

.fc-trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(15, 118, 110, 0.6);
}

.hero-fc .phone-mock {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.hero-fc .phone-mock .screen {
  background: rgba(11, 18, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-fc .mock-row {
  border-color: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.hero-fc .badge {
  background: rgba(196, 30, 42, 0.2);
  color: #fca5a5;
}

.hero-fc .badge-paid {
  background: rgba(15, 118, 110, 0.25);
  color: #5eead4;
}

.hero-launch.hero-fc .launch-score-hero {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.hero-launch.hero-fc .launch-score-hero-label {
  color: #fff;
}

.hero-launch.hero-fc .launch-score-hero-caption {
  color: rgba(241, 245, 249, 0.7);
}

/* Cartes & sections */
.sevy-facture-ch-wrap .card {
  transition:
    transform 0.35s var(--fc-ease),
    box-shadow 0.35s var(--fc-ease),
    border-color 0.3s;
}

.sevy-facture-ch-wrap .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 118, 42, 0.25);
}

.fc-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(230, 118, 42, 0.15);
}

.section-alt {
  background: #fff;
}

.plan-pro {
  border-color: rgba(196, 30, 42, 0.35);
  box-shadow: 0 12px 40px rgba(196, 30, 42, 0.1);
  position: relative;
}

.plan-pro::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(196, 30, 42, 0.5), rgba(230, 118, 42, 0.35));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.fc-story-aside {
  background: linear-gradient(165deg, #fff, var(--accent-soft));
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.score-num-after {
  color: var(--accent);
}

.score-bar-after i {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

/* Scroll reveal */
.fc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--fc-ease),
    transform 0.75s var(--fc-ease);
  transition-delay: calc(var(--fc-i, 0) * 0.07s);
}

.fc-reveal.is-visible,
.hero-fc .fc-reveal {
  opacity: 1;
  transform: translateY(0);
}

.fc-reveal-d1 {
  transition-delay: 0.1s;
}

/* —— Pages internes (contact, aide, confidentialité) —— */
.fc-page-hero {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.fc-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.fc-page-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  color: #fff;
}

.fc-page-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.82);
}

.fc-page-hero-extra {
  margin-top: 1rem;
}

.fc-page-hero .fc-site-contact-note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(241, 245, 249, 0.7);
}

.fc-page-hero .fc-site-contact-note a {
  color: rgb(252, 208, 76);
  text-decoration: none;
  border-bottom: 1px solid rgba(252, 208, 76, 0.35);
}

.fc-page-hero .fc-site-contact-note a:hover {
  color: #fff;
}

.fc-content-shell {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: var(--bg);
}

.fc-content-narrow {
  max-width: 560px;
  margin-inline: auto;
}

.fc-prose {
  max-width: 720px;
}

.fc-prose h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.35rem);
  margin: 2rem 0 0.75rem;
  padding-top: 0.25rem;
  color: var(--text);
}

.fc-prose h2:first-child {
  margin-top: 0;
}

.fc-prose p,
.fc-prose li {
  color: var(--text);
  line-height: 1.75;
}

.fc-prose ul {
  color: var(--muted);
  padding-left: 1.2rem;
}

.fc-prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 118, 42, 0.3);
}

.fc-prose a:hover {
  color: var(--primary);
  border-color: rgba(196, 30, 42, 0.35);
}

.fc-support-block {
  margin-bottom: 1.15rem;
  padding: 1.5rem 1.4rem;
}

.fc-support-block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.fc-support-block p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.fc-support-block p:last-child {
  margin-bottom: 0;
}

.fc-support-faq {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.fc-support-faq li {
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.fc-support-faq strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.95rem;
}

.fc-support-faq span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 400;
}

.fc-support-hint {
  font-size: 0.9rem !important;
  color: var(--muted) !important;
}

.fc-support-cta {
  margin-top: 0.5rem;
}

.sevy-facture-ch-wrap .form-card {
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.sevy-facture-ch-wrap .fc-form-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .fc-orb,
  .fc-grid {
    animation: none !important;
  }

  .fc-reveal {
    opacity: 1;
    transform: none;
  }

  .sevy-facture-ch-wrap .card:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .score-table-head {
    display: none;
  }

  .score-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .score-cell-after {
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--border);
    margin-bottom: 0.5rem;
  }

  .hero-launch .hero-actions {
    flex-direction: column;
  }

  .hero-launch .hero-actions .btn {
    width: 100%;
  }
}
