:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --muted-soft: #9ca3af;
  --border: #e5e7eb;
  --border-soft: #f3f4f6;
  --accent: #a98860;
  --accent-strong: #9b6c3b;
  --accent-soft: #f5eee5;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Georgia", serif;
}

/* Reset basique */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

/* ===================== LOGIN ===================== */

.login-screen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: #ffffff; /* fond blanc direct */
}

/* halo discret derrière le logo (ok) */
.login-gradient {
  position: absolute;
  top: -200px;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(169,136,96,0.12), transparent 60%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

/* IMPORTANT: plus de "grosse carte" */
.login-container {
  position: relative;
  z-index: 1;
  max-width: 36rem; /* 576px */
  width: 100%;

  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  transform: scale(0.9);
  transform-origin: center center;
}


/* Header */

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}

.login-logo {
  width: 144px;
  height: 144px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

.login-separator {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.login-separator-line {
  width: 4rem; /* 64px */
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.login-title {
  font-family: var(--font-serif);
  font-size: 6rem; /* 96px */
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 2rem;
}

.login-subtitle-main {
  font-size: 0.875rem; /* 14px */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.5rem;
}

.login-subtitle-sub {
  font-size: 0.75rem; /* 12px */
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* Card (MOCKUP) */

.login-card{
  width: 100%;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:6px;
  box-shadow:none;
  padding:48px;
}

.login-card-header{
  text-align:center;
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#9ca3af;
  margin:0 0 34px;
}

.login-form{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin:0;
  transition: transform 0.15s ease;
}

.login-form.shake { animation: shake 0.3s ease-in-out; }

@keyframes shake {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-10px); }
  50%  { transform: translateX(10px); }
  75%  { transform: translateX(-8px); }
  100% { transform: translateX(0); }
}

.login-label{ display:none; }

#access-code{
  width:100%;
  height:56px;
  border-radius:8px;
  border:1px solid #e5e7eb;
  padding:0 18px;
  text-align:left;
  font-size:14px;
  letter-spacing:0.02em;
  text-transform:none;
  outline:none;
  background:#ffffff;
  color:#111827;
  transition:border-color 0.15s ease;
}

#access-code::placeholder{ color:#cbd5e1; }

#access-code:focus{
  border-color:#d1d5db;
  box-shadow:none;
}

.login-error{
  min-height:0;
  font-size:12px;
  text-align:center;
  color:#dc2626;
  display:none;
}

.login-card .btn.btn-dark.btn-full{
  height:56px;
  border-radius:8px;
  background:#0b0f16;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:none;
  letter-spacing:0.22em;
  font-size:12px;
  text-transform:uppercase;
}

.login-divider{
  height:1px;
  background:#eef2f7;
  margin:34px 0 26px;
}

.login-footer{
  border-top:0;
  padding-top:0;
  text-align:center;
}

.login-footer-text{
  font-size:11px;
  letter-spacing:0.12em;
  text-transform:none;
  color:#9ca3af;
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:0;
}

/* Anciennes classes inutiles */
.login-footer-line,
.login-est,
.login-est-line,
.login-est-text { display:none; }

/* EST. 2026 en dehors de la carte (mockup) */
.login-est-out{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:42px;
}

.login-est-out .line{
  width:58px;
  height:1px;
  background:linear-gradient(to right, transparent, #d1d5db, transparent);
}

.login-est-out .text{
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#d1d5db;
}

/* ===================== HEADER / NAV ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-container {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem; /* 96px approx via padding + line-height */
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  background: none;
  border: none;
  transition: opacity 0.5s ease;
}

.brand-left {
  display: flex;
  align-items: center;
  gap: 0.125rem; /* 2px entre les deux logos (gap-0.5) */
}

.brand:hover {
  opacity: 0.6; /* hover 60% comme Figma */
}

.brand-logo {
  width: 72px;   /* w-18 */
  height: 72px;  /* h-18 */
  object-fit: contain;
}

/* Nouveau logo texte */
.brand-text-logo {
  height: 60px;  /* h-15 */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Gardé au cas où ailleurs, mais plus utilisé dans le header */
.brand-name {
  font-family: var(--font-serif);
  font-size: 3rem; /* 48px */
  letter-spacing: 0.02em;
  text-transform: none;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 4rem; /* 64px */
}

.nav-link {
  position: relative;
  font-size: 0.875rem; /* 14px */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
  padding-bottom: 0.15rem;
  transition: color 0.5s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.5s ease;
}

.nav-link:hover {
  color: #111827;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  width: 100%;
}

/* ===================== PRÉSENTATION ===================== */

/* HERO */

.hero-section {
  position: relative;              /* fond + pseudo-éléments */
  min-height: 100vh;
  padding-top: 10rem;  /* 160px pour nav */
  padding-bottom: 0;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;

  /* valeurs par défaut si JS pas encore chargé */
  --hero-bg-y: 0px;
  --hero-bg-scale: 1;
}

/* Fond image (parallaxe + zoom via variables CSS) */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* GARDE ce chemin si ton image s'affiche déjà, adapte au besoin */
  background-image: url("./Assets/fond1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  mix-blend-mode: multiply;
  /* valeurs "actuelles" de Figma */
  filter: contrast(1.3) brightness(0.9);

  opacity: 0;
  transform: translateY(var(--hero-bg-y)) scale(var(--hero-bg-scale));
  transform-origin: center center;

  pointer-events: none;
  animation: hero-image-fade 1.2s ease-out forwards;
}

/* Voile pour garder le texte lisible */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0.10) 35%,
    rgba(255, 255, 255, 0.60)
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 72rem; /* 1152px */
  width: 100%;
  text-align: center;
  position: relative;  /* au-dessus du fond */
  z-index: 1;
}

/* Fade-in du fond (on anime UNIQUEMENT l’opacité) */
@keyframes hero-image-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.18; /* niveau "subtil" comme sur Figma */
  }
}


.hero-separator {
  display: inline-flex;
  justify-content: center;
}

.hero-separator-top {
  margin-bottom: 3rem; /* 48px */
}

.hero-separator-bottom {
  margin-top: 5rem; /* 80px */
}

.hero-line {
  width: 6rem; /* 96px */
  height: 1px;
}

.hero-line-gold {
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.hero-line-grey {
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 7.5rem; /* 120px */
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 3rem; /* 48px */
}

.hero-text {
  max-width: 42rem; /* 672px */
  margin: 0 auto;
  font-size: 1.25rem; /* 20px */
  font-weight: 300;
  line-height: 1.625;
  color: var(--muted);
}

/* Fade-in du fond (l’animation ne gère que l’opacité, la parallaxe vient des vars JS) */
@keyframes hero-image-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.18;
  }
}

/* EXCELLENCE */

.excellence-section {
  border-top: 1px solid var(--border-soft);
  padding: 8rem 4rem; /* 128px vertical, 64px horizontal */
}

.excellence-inner {
  max-width: 64rem; /* 1024px */
  margin: 0 auto;
  text-align: center;
}

.section-title-xl {
  font-family: var(--font-serif);
  font-size: 3.75rem; /* 60px */
  letter-spacing: -0.02em;
  margin-bottom: 4rem; /* 64px */
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem; /* 64px */
}

.metric-card {
  padding-top: 3rem;  /* 48px */
  padding-bottom: 3rem;
}

.metric-value {
  margin-bottom: 1.5rem; /* 24px */
}

.metric-value-main {
  font-family: var(--font-serif);
  font-size: 3rem; /* 48px */
  color: var(--accent);
}

.metric-label {
  font-family: var(--font-sans);
  font-size: 0.875rem; /* 14px */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* CAPACITÉS */

.capacites-section {
  border-top: 1px solid var(--border-soft);
  padding: 8rem 4rem;
}

.capacites-inner {
  max-width: 72rem; /* 1152px */
  margin: 0 auto;
}

.capacites-header {
  text-align: center;
  margin-bottom: 6rem; /* 96px */
}

.section-subtitle-lg {
  margin-top: 2rem; /* 32px */
  font-size: 1.125rem; /* 18px */
  font-weight: 300;
  color: var(--muted);
  max-width: 42rem; /* 672px */
  margin-left: auto;
  margin-right: auto;
}

.capacites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem; /* 48px */
}

.cap-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 3rem; /* 48px */
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  background: #ffffff;
}

.cap-card:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.cap-index {
  font-size: 0.875rem; /* 14px */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem; /* 24px */
}

.cap-title {
  font-family: var(--font-serif);
  font-size: 1.875rem; /* 30px */
  margin-bottom: 1.5rem;
}

.cap-text {
  font-size: 1rem; /* 16px */
  font-weight: 300;
  line-height: 1.625;
  color: var(--muted);
}

/* ACCÈS EXCLUSIF */

.acces-section {
  border-top: 1px solid var(--border-soft);
  padding: 8rem 4rem;
}

.acces-inner {
  max-width: 56rem; /* 896px */
  margin: 0 auto;
  text-align: center;
}

.acces-inner .section-subtitle-lg {
  margin-bottom: 5rem; /* 80px */
}

.acces-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem; /* 32px */
  text-align: left;
}

.acces-card {
  position: relative;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 3rem; /* 48px */
  background: #ffffff;
  min-height: 28.75rem; /* ~460px */
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

.acces-card:hover {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.acces-card-highlight {
  border-width: 2px;
  border-color: var(--accent);
}

.acces-badge {
  position: absolute;
  top: 1.5rem;  /* 24px */
  right: 1.5rem;
  font-size: 0.625rem; /* 10px */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--accent);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.acces-label {
  font-size: 0.75rem; /* 12px */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 2rem; /* 32px */
}

.acces-label-gold {
  color: var(--accent);
}

.acces-price-block {
  margin-bottom: 3rem; /* 48px */
}

.acces-price {
  font-family: var(--font-serif);
  font-size: 3.75rem; /* 60px */
  margin-bottom: 0.5rem; /* 8px */
}

.acces-price-info {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
}

.acces-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 300;
}

.acces-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* 12px */
}

.acces-list .dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
}



/* ===================== DOWNLOAD ===================== */

.download-section {
  min-height: 100vh;
  padding-top: 8rem; /* 128px pour nav */
  background: #ffffff;
}

.download-inner {
  max-width: 64rem; /* 1024px */
  margin: 0 auto;
  padding: 8rem 4rem; /* py-32 px-16 */
}

.section-separator-center {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem; /* 48px */
}

.page-title {
  font-family: var(--font-serif);
  font-size: 3.75rem; /* 60px */
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 1.5rem; /* 24px */
}

.page-subtitle {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem; /* 18px */
  font-weight: 300;
  color: var(--muted);
}

/* grille version/config */

.download-grid {
  margin-top: 4rem; /* 64px */
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem; /* 64px */
}

.download-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 3rem; /* 48px */
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.download-card-muted {
  background: #f9fafb;
}

.download-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1.5rem; /* 24px */
}

.download-version {
  font-family: var(--font-serif);
  font-size: 3rem; /* 48px */
  margin-bottom: 1.5rem; /* 24px */
}

.download-date {
  font-size: 0.875rem; /* 14px */
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 3rem; /* 48px */
}

.download-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
  margin-bottom: 2.5rem; /* 40px */
}

.download-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.download-row-label {
  color: var(--muted);
}

.download-row-value {
  color: #111827;
}

.download-row-gold {
  color: var(--accent);
}

/* notes de version */

.download-notes {
  border-top: 1px solid #e5e7eb;
  padding-top: 5rem; /* 80px */
  margin-top: 5rem; /* 80px */
}

.section-title-md {
  font-family: var(--font-serif);
  font-size: 2rem; /* 32px */
  text-align: left;
  margin-bottom: 2rem; /* 32px */
}

.release-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 32px */
}

.release-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 2rem; /* 32px */
  background: #ffffff;
}

.release-card-muted {
  opacity: 0.7;
}

.release-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.release-version {
  font-weight: 500;
}

.release-date {
  color: var(--muted);
}

.release-tag {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.release-list {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.625;
}

/* steps */

.download-steps {
  border-top: 1px solid #e5e7eb;
  padding-top: 5rem; /* 80px */
  margin-top: 5rem;
}

.download-steps .section-title-md {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-grid {
  max-width: 56rem; /* 896px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem; /* 32px */
}

.step-card {
  text-align: center;
  padding: 2.5rem; /* 40px */
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #ffffff;
}

.step-index {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem; /* 24px */
}

.step-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ===================== PAGE TARIFS (FRAME 1 + FRAME 2) ===================== */

.tarifs-section {
  min-height: 100vh;
  padding-top: 8rem;              /* nav fixe */
  background: #ffffff;
}

.tarifs-inner {
  max-width: 72rem;               /* 6xl = 1152px */
  margin: 0 auto;
  padding: 6rem 4rem 8rem;        /* py-24 / px-16 */
}

/* Header tarifs (réutilise section-separator-center + page-title + page-subtitle) */
.tarifs-header {
  text-align: center;
  margin-bottom: 4rem;            /* 64px */
}

/* ====== BLOC INFORMATIONS CLIENT (FRAME 1 – haut) ====== */

.tarifs-client {
  max-width: 42rem;               /* ~2xl, recentré */
  margin: 0 auto 4rem auto;       /* mb-16 */
}

.tarifs-client-title {
  font-size: 0.75rem;             /* text-xs */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;                 /* gris clair */
  text-align: center;
  margin-bottom: 1.5rem;          /* 24px */
}

.tarifs-client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;                    /* 24px */
  margin-bottom: 1.5rem;          /* espace avant le champ PAYS pleine largeur */
}

/* On réutilise la grille de formulaire/contact (form-field, label, input, select)
   donc pas besoin de redéfinir les inputs ici. */

/* ====== GRID PRINCIPALE FRAME 1 / FRAME 2 ====== */

.tarifs-step-grid {
  max-width: 56rem;               /* 4xl = 896px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;                      /* 64px */
  align-items: flex-start;
}

.tarifs-step-grid-1 {
  margin-top: 4rem;               /* 64px sous bloc client */
}

.tarifs-step-grid-2 {
  margin-top: 3.25rem;            /* légèrement plus serré */
}

.tarifs-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Label de colonne : "VOTRE ABONNEMENT" / "RÉCAPITULATIF" / "COORDONNÉES BANCAIRES" / "VOTRE COMMANDE" */

.tarifs-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1.25rem;         /* 20px */
}

/* ====== CARTES FORMULES (MENSUEL / ANNUEL) ====== */

.tarifs-plans {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;                    /* 24px */
}

.tarif-plan-card {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 1.75rem 2rem;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease,
    background-color 0.2s ease;
}

.tarif-plan-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* carte sélectionnée (Annuel par défaut) */
.tarif-plan-card.active {
  border-color: var(--accent);
  background: #111827;
  color: #f9fafb;
}

.tarif-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.tarif-plan-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}

.tarif-plan-card.active .tarif-plan-label {
  color: #d1d5db;
}

.tarif-plan-label-gold {
  color: var(--accent);
}

.tarif-plan-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;              /* 40px, légèrement en dessous du 48px Figma pour l’équilibre */
  letter-spacing: -0.02em;
}

.tarif-plan-sub {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 300;
}

.tarif-plan-card.active .tarif-plan-sub {
  color: #e5e7eb;
}

/* Badge économie type "ÉCONOMIE 14%" */

.tarif-plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(169, 136, 96, 0.12); /* doré léger */
  color: var(--accent);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ====== RÉCAPITULATIF (FRAME 1) ====== */

.recap-card-wide {
  width: 100%;
  max-width: 22.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 2rem 2.25rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.recap-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #111827;
  margin-bottom: 0.75rem;
}

.recap-sep {
  height: 1px;
  background: #e5e7eb;
  margin: 1.25rem 0;
}

.recap-total {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.recap-total span:last-child {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

/* Bouton full utilisé pour "Confirmer la Commande" & "J'ai effectué le paiement" */

.btn-full {
  width: 100%;
  margin-top: 1.5rem;
}

/* Petites puces d’instructions sous les cartes / récap */

.tarifs-bullets {
  margin-top: 1.25rem;
  padding-left: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tarifs-bullets li {
  list-style: disc;
}

/* ====== TIMER + BANQUE + COMMANDE (FRAME 2) ====== */

.tarifs-timer {
  max-width: 32rem;
  margin: 0 auto;
  border: 1px solid var(--accent);
  border-radius: 0.5rem;
  background: rgba(169, 136, 96, 0.05); /* doré très léger comme Figma */
  padding: 1.75rem 2rem;
  text-align: center;
}

.tarifs-timer-top {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--accent);
}

.tarifs-timer-icon {
  width: 18px;
  height: 18px;
}

.tarifs-timer-sub {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

/* Timer critique (<5min) → tu pourras ajouter une classe .danger via JS si tu veux
.tarifs-timer-danger #bank-timer {
  color: #dc2626;
}
*/

/* ---- Coordonnées bancaires ---- */

.bank-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.bank-label {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.bank-input {
  position: relative;
  height: 3rem;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
}

.bank-text {
  font-weight: 300;
  color: #111827;
  font-size: 0.8125rem;
}

.bank-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Boutons copie */

.copy-btn {
  background: transparent;
  border: 0;
  padding: 0;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease;
}

.copy-btn:hover {
  color: var(--accent);
}

.copy-btn .icon {
  width: 16px;
  height: 16px;
}

.copy-btn .lucide-check {
  display: none;
}

.copy-btn.copied .lucide-copy {
  display: none;
}

.copy-btn.copied .lucide-check {
  display: inline;
  color: var(--accent);
}

/* ---- Carte commande (frame 2) ---- */

.order-card {
  width: 100%;
  max-width: 22.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 2rem 2.25rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  margin-top: 1.25rem;
}

.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #111827;
  margin-bottom: 0.75rem;
}

.order-sep {
  height: 1px;
  background: #e5e7eb;
  margin: 1.25rem 0;
}

.order-total {
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* Bouton doré "J'ai effectué le paiement" */

.btn-gold {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #ffffff;
  transition:
    background-color 0.2s ease,
    filter 0.2s ease;
}

.btn-gold:hover {
  background: #8a6d4d;           /* doré foncé Figma */
  filter: brightness(0.98);
}

/* état disabled pour timer expiré (JS : .disabled ou [disabled]) */
.btn-gold[disabled],
.btn-gold.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ====== RESPONSIVE TARIFS ====== */

@media (max-width: 980px) {
  .tarifs-inner {
    padding: 5rem 1.5rem 6rem;
  }

  .tarifs-client-grid {
    grid-template-columns: 1fr;
  }

  .tarifs-step-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 26rem;
  }

  .tarifs-timer {
    max-width: 26rem;
  }

  .recap-card-wide,
  .order-card {
    max-width: 100%;
  }
}





/* ===================== CONTACT ===================== */

.contact-section {
  min-height: 100vh;
  padding-top: 8rem; /* offset nav fixe */
  background: #ffffff;
}

.contact-inner {
  max-width: 64rem; /* 1024px */
  margin: 0 auto;
  padding: 8rem 4rem; /* 128px 64px */
}

.contact-header {
  max-width: 56rem; /* 896px */
  margin: 0 auto 6rem; /* 96px */
  text-align: center;
}

.contact-header .section-separator-center {
  margin-bottom: 3rem; /* 48px */
}

.contact-header .page-title {
  margin-bottom: 2rem; /* 32px */
}

.contact-section .page-subtitle {
  max-width: 42rem; /* 672px */
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 1.125rem; /* 18px */
  line-height: 1.625; /* ~29px */
  font-weight: 300;
  color: #6b7280;
}

.contact-form-wrapper {
  max-width: 56rem; /* 896px */
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* 40px = space-y-10 */
}

.form-row {
  display: flex;
  gap: 2rem; /* 32px */
}

/* lignes 1–3 : on garde 2 colonnes, lignes 4 et message : 1 colonne pleine largeur */
.form-row-two > .form-field {
  flex: 1;
}
.contact-section .form-row > .form-field {
  flex: 1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px = mb-4 */
}

.form-field label {
  font-family: var(--font-sans);
  font-size: 0.75rem; /* 12px */
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
  line-height: 1.5;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 3.5rem; /* 56px */
  border-radius: 0.375rem; /* ~6px */
  border: 1px solid #e5e7eb;
  padding: 0 1rem; /* 16px */
  font-family: var(--font-sans);
  font-size: 1rem; /* 16px */
  font-weight: 300;
  background: #ffffff;
  outline: none;
  transition: all 0.5s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #d1d5db;
}

.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 3rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 12px;
}

/* couleur du menu des options (best effort, dépend du navigateur) */
.contact-section .form-field select option {
  background: #ffffff;
  color: #111827;
}
.contact-section .form-field select option:checked,
.contact-section .form-field select option:hover {
  background: var(--accent);
  color: #ffffff;
}

.form-field textarea {
  width: 100%;
  height: 12.5rem; /* 200px */
  border-radius: 0.375rem; /* ~6px */
  border: 1px solid #e5e7eb;
  padding: 1rem; /* 16px */
  font-family: var(--font-sans);
  font-size: 1rem; /* 16px */
  font-weight: 300;
  line-height: 1.625;
  resize: none;
  background: #ffffff;
  outline: none;
  transition: all 0.5s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(169, 136, 96, 0.26);
}

.contact-form .btn-full {
  height: 3.5rem; /* 56px */
  border-radius: 0.375rem; /* ~6px */
}

.contact-form .btn {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
}

.contact-delay {
  padding-top: 1.5rem; /* 24px */
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem; /* 12px */
  font-weight: 300;
  color: #9ca3af;
}

/* Processus de sélection */

.selection-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 5rem; /* 80px */
  margin-top: 6rem; /* 96px */
}

.selection-section .section-title-md {
  text-align: center;
  margin-bottom: 3rem; /* 48px */
  font-family: var(--font-sans);
  font-size: 0.75rem; /* 12px */
  font-weight: 300;
  letter-spacing: 0.2em; /* 2.4px */
  text-transform: uppercase;
  color: #9ca3af;
}

/* steps (contact) : minimaliste */
.selection-section .steps-grid {
  max-width: 56rem; /* 896px */
  gap: 3rem; /* 48px */
}

.selection-section .step-card {
  padding: 0;
  border: none;
  background: transparent;
}

.selection-section .step-index {
  font-family: var(--font-sans);
  font-size: 0.875rem; /* 14px */
  font-weight: 300;
  letter-spacing: 0.2em; /* ~2.8px */
  color: var(--accent);
  margin-bottom: 1.5rem; /* 24px */
}

.selection-section .step-text {
  font-family: var(--font-sans);
  font-size: 0.875rem; /* 14px */
  font-weight: 300;
  line-height: 1.625;
  color: #4b5563;
  max-width: 16.625rem; /* ~266px */
  margin: 0 auto;
}

/* note */

.contact-note {
  max-width: 48rem; /* 768px */
  margin: 4rem auto 0; /* 64px */
  padding: 2.5rem; /* 40px */
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  text-align: center;
  font-family: var(--font-sans);
}

.contact-note p {
  font-size: 1rem; /* 16px */
  font-weight: 300;
  line-height: 1.625;
  color: #4b5563;
}

.contact-note p + p {
  margin-top: 1.5rem; /* 24px */
}

.contact-mail {
  font-size: 0.75rem; /* 12px */
  color: #6b7280;
}

.contact-mail a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 114, 128, 0.35);
}

@media (max-width: 720px) {
  .contact-inner {
    padding: 6rem 1.5rem;
  }
  .form-row {
    flex-direction: column;
  }
}




/* ===================== BOUTONS & FOOTER ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease, transform 0.15s ease;
}

.btn-full {
  width: 100%;
  height: 3.5rem; /* 56px */
}

.btn-dark {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-paypal {
  background: #0070ba;
  border-color: #0070ba;
  color: #ffffff;
}

.btn-paypal:hover {
  background: #005c99;
  border-color: #005c99;
  transform: translateY(-1px);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 1.5rem 4rem 2rem;
  background: #ffffff;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 960px) {
  .nav-container {
    padding: 0 2rem;
  }

  .brand-name {
    font-size: 2.25rem;
  }

  .nav-links {
    gap: 1.5rem;
    font-size: 0.75rem;
  }

  .hero-section,
  .excellence-section,
  .capacites-section,
  .acces-section,
  .download-inner,
  .tarifs-inner,
  .contact-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .metrics-grid,
  .capacites-grid,
  .acces-grid,
  .download-grid,
  .tarifs-layout,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .tarifs-layout {
    gap: 3rem;
  }

  .tarif-plan-card,
  .recap-card {
    max-width: 100%;
  }

  .download-inner,
  .tarifs-inner,
  .contact-inner {
    padding-top: 7rem;
  }

  .contact-form-wrapper {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1rem;
  }

  .login-container {
    padding: 2.5rem 1.75rem 2.25rem;
  }

  .login-title {
    font-size: 3.5rem;
  }

  .page-title,
  .section-title-xl {
    font-size: 2.5rem;
  }

  .hero-section {
    padding-top: 9rem;
  }

  .hero-separator-bottom {
    margin-top: 3.5rem;
  }

  .download-inner,
  .tarifs-inner,
  .contact-inner {
    padding: 6rem 1.5rem 5rem;
  }
}
