/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
  /* Thème Bleu & Confiance */
  --bg: #f8fafc; 
  --bg-soft: #f1f5f9;
  --surface: #ffffff;
  
  --text: #0f172a; 
  --muted: #475569;
  --muted-light: #94a3b8;

  --accent: #2563eb; 
  --accent-hover: #1d4ed8;
  --accent-light: #dbeafe;

  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  --shadow-strong: 0 10px 40px rgba(15, 23, 42, 0.08);
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html {
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: color 0.3s; 
}

img, video { 
  max-width: 100%; 
  height: auto; 
  display: block; 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

/* =========================================
   2. TYPOGRAPHIE & UTILITAIRES
   ========================================= */
h1, h2, h3 { 
  line-height: 1.2; 
  font-weight: 700; 
  letter-spacing: -0.02em; 
  color: var(--text); 
}
h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
p { color: var(--muted); margin-bottom: 16px; }

.eyebrow {
  display: inline-block; 
  font-size: 0.85rem; 
  font-weight: 600;
  text-transform: uppercase; 
  letter-spacing: 0.05em;
  color: var(--accent); 
  background: var(--accent-light);
  padding: 6px 14px; 
  border-radius: 20px; 
  margin-bottom: 16px;
}

/* =========================================
   3. BOUTONS
   ========================================= */
.btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  padding: 14px 28px; 
  border-radius: 50px; 
  background: var(--accent);
  color: #fff; 
  font-weight: 600; 
  transition: all 0.3s; 
  border: 1px solid var(--accent);
  cursor: pointer;
}
.btn:hover { 
  background: var(--accent-hover); 
  border-color: var(--accent-hover); 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); 
  color: #fff; 
}

.btn-secondary { 
  background: transparent; 
  color: var(--text); 
  border-color: var(--border); 
}
.btn-secondary:hover { 
  background: var(--bg-soft); 
  color: var(--text); 
  border-color: var(--muted-light); 
  transform: translateY(-2px); 
  box-shadow: none; 
}

.btn-small { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; margin-top: 16px; }

/* =========================================
   4. STRUCTURE & SECTIONS
   ========================================= */
.section { padding: 100px 0; }
.section-light { background: var(--surface); }
.section-heading { max-width: 600px; margin: 0 auto 64px; text-align: center; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* =========================================
   5. HEADER & NAVIGATION
   ========================================= */
.site-header { 
  position: sticky; 
  top: 0; 
  background: rgba(255, 255, 255, 0.9); 
  backdrop-filter: blur(10px); 
  border-bottom: 1px solid var(--border); 
  z-index: 100; 
  padding: 16px 0; 
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; flex-direction: column; line-height: 1.1; font-weight: 800; font-size: 1.4rem; color: var(--text); }
.logo small { font-size: 0.75rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.main-nav { display: flex; gap: 32px; font-weight: 500; }
.main-nav a:hover { color: var(--accent); }
.menu-toggle { display: none; background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--text); }

/* =========================================
   6. HERO
   ========================================= */
.hero { padding: 80px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3rem); 
  line-height: 1.15; 
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero-text { font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 40px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points span { font-size: 0.85rem; font-weight: 600; color: var(--muted); background: var(--bg-soft); padding: 6px 12px; border-radius: 6px; }

.hero-visual { position: relative; }
.hero-browser { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-strong); }
.browser-top { background: var(--bg-soft); padding: 12px 16px; display: flex; gap: 8px; border-bottom: 1px solid var(--border); }
.browser-top span { display: block; width: 12px; height: 12px; border-radius: 50%; background: var(--border); }
.hero-browser video, .hero-browser img { width: 100%; display: block; }

.hero-floating-card { position: absolute; bottom: -30px; left: -30px; background: var(--surface); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow-strong); border: 1px solid var(--border); max-width: 280px; }
.hero-floating-card strong { display: block; font-size: 0.95rem; margin-bottom: 4px; color: var(--text); }
.hero-floating-card span { font-size: 0.85rem; color: var(--muted); }

/* =========================================
   7. BANDEAU DE CONFIANCE (LOGOS)
   ========================================= */
.trust-banner {
  padding: 3rem 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.trust-banner .eyebrow {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.trust-title {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem; /* Espace entre les logos */
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.trust-logos:hover { 
  opacity: 1; 
}
.trust-logos img {
  /* 1. ON AGRANDIT LES LOGOS ICI */
  max-height: 60px; /* Au lieu de 40px */
  max-width: 180px; /* Au lieu de 140px */
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* Effet au survol classique */
.trust-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* 2. GESTION DES LOGOS BLANCS */
/* Transforme le logo blanc en noir pur pour qu'il soit visible */
.trust-logos img.logo-white {
  filter: brightness(0); 
}
/* Au survol, on le laisse en noir (sinon il redevient blanc à cause du grayscale) */
.trust-logos img.logo-white:hover {
  filter: brightness(0); 
  transform: scale(1.05);
}

/* 3. RESPONSIVE MOBILE (Optionnel mais recommandé) */
@media (max-width: 768px) {
  .trust-logos {
    gap: 2rem;
  }
  .trust-logos img {
    max-height: 45px;
    max-width: 130px;
  }
}


/* =========================================
   8. COMPOSANTS (Services, Process, FAQ...)
   ========================================= */
.info-card h3 { font-size: 1.1rem; }
.info-card p { font-size: 0.9rem; margin: 0; }

.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-list h3 { position: relative; padding-left: 24px; }
.why-list h3::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: var(--bg); border: 1px solid var(--border); padding: 40px; border-radius: var(--radius); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); border-color: var(--accent-light); }
.service-card span { display: inline-block; font-family: monospace; font-size: 1.2rem; color: var(--muted-light); margin-bottom: 16px; }

.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.expertise-grid h3 { border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 16px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-grid article { background: var(--bg); padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); }
.process-grid span { display: block; font-size: 2rem; font-weight: 800; color: var(--accent-light); margin-bottom: 16px; }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 16px; padding: 20px 24px; }
.faq-list summary { font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 16px 0 0 0; font-size: 0.95rem; }

/* =========================================
   9. PRICING & SWITCH (Formules)
   ========================================= */
.pricing-toggle-wrapper {
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 15px; 
  margin-bottom: 40px; 
  font-family: sans-serif;
}
.toggle-label { font-size: 1.1rem; font-weight: 500; color: #666; transition: color 0.3s ease; }
.toggle-label.active { color: #0d6efd; font-weight: 700; }
.toggle-switch { position: relative; display: inline-block; width: 60px; height: 34px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.toggle-slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .toggle-slider { background-color: #0d6efd; }
input:checked + .toggle-slider:before { transform: translateX(26px); }
.badge-discount { background-color: #e8f4fd; color: #0d6efd; font-size: 0.75rem; padding: 4px 8px; border-radius: 20px; margin-left: 5px; font-weight: bold; }

/* Grille passée à 3 colonnes au lieu de 4 */
.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
  margin-bottom: 40px; 
}

.price-card { 
  background: var(--bg); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 32px 24px; 
  display: flex; 
  flex-direction: column; 
  position: relative; 
}
.price-card.featured { 
  background: var(--surface); 
  border-color: var(--accent); 
  box-shadow: var(--shadow-strong); 
  transform: scale(1.05); 
  z-index: 2; 
}
.badge { 
  position: absolute; 
  top: -12px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: var(--accent); 
  color: #fff; 
  font-size: 0.8rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  padding: 4px 12px; 
  border-radius: 20px; 
  white-space: nowrap;
}

.price-header { margin-bottom: 24px; }
.price-header h3 { font-size: 1.4rem; margin-bottom: 8px; }
.price-header p { font-size: 0.9rem; min-height: 44px; margin: 0; color: var(--muted); }

/* Blocs de prix */
.price-block {
  margin-bottom: 24px; 
  border-bottom: 1px solid var(--border); 
  padding-bottom: 24px;
}
.price { 
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--text); 
}
.price-amount { font-size: 2.5rem; font-weight: 800; }
.currency { font-size: 1.2rem; font-weight: 600; color: var(--muted); }
.price-period { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price-strike small { color: var(--muted); font-size: 1rem; }
.price-strike.hidden { display: none; }

.price-billing {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.commitment { display: inline-block; font-weight: 600; margin-top: 4px; }
.commitment.free { color: #059669; } /* Vert rassurant */
.commitment.locked { color: #d97706; } /* Orange pour l'annuel */

/* Liste des fonctionnalités */
.price-card ul { list-style: none; margin-bottom: 32px; flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
.price-card ul li { position: relative; padding-left: 24px; font-size: 0.95rem; color: var(--text); }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* Encart de projet & Agences */
.project-offer { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 32px; 
  gap: 32px; 
}
.project-offer div { flex: 1; }
.project-offer strong { display: block; font-size: 1.2rem; margin-bottom: 8px; color: var(--text); }
.project-offer p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.project-offer span { font-weight: 700; color: var(--accent); white-space: nowrap; font-size: 1.2rem; }


/* =========================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1100px) {
  /* On passe la grille de 3 à 1 colonne sur les tablettes pour garder la lisibilité */
  .pricing-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 40px auto; gap: 32px; }
  .price-card.featured { transform: none; }
  .project-offer { flex-direction: column; text-align: center; gap: 24px; }
}

@media (max-width: 992px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-floating-card { display: none; }
  .grid-4, .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Menu Burger */
  .main-nav { 
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
    gap: 16px;
    text-align: center;
    z-index: 99;
  }
  .main-nav.is-open { display: flex; }
  .menu-toggle { display: block; font-weight: 600; }
  .header-inner .btn-small { display: none; } 

  /* Bandeau Logos */
  .trust-logos { gap: 1.5rem; }
  .trust-logos img { max-height: 30px; }

  /* Grilles */
  .services-grid, .expertise-grid, .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

@media (max-width: 576px) {
  .grid-4, .process-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0; }
  .section { padding: 60px 0; }
}

/* =========================================
   10. SLIDER PROJETS
   ========================================= */
.slider-wrapper { position: relative; display: flex; align-items: center; }

.slider-arrow {
  position: absolute; z-index: 10; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow); color: var(--text);
  font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.slider-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.slider-arrow.prev { left: -24px; }
.slider-arrow.next { right: -24px; }

.projects-slider { 
  display: flex; gap: 24px; overflow-x: auto; padding: 10px 0 24px; 
  scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
}
.projects-slider::-webkit-scrollbar { display: none; }

.project-card { 
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); 
  overflow: hidden; transition: transform 0.3s; 
  min-width: 320px; max-width: 350px; /* Sur Desktop */
  flex: 0 0 auto; scroll-snap-align: start;
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.project-media { aspect-ratio: 16/10; background: var(--bg-soft); overflow: hidden; }
.project-media video, .project-media img { width: 100%; height: 100%; object-fit: cover; }
.project-content { padding: 24px; }
.project-content span { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.project-content h3 { font-size: 1.2rem; margin-bottom: 8px; }
.project-content p { font-size: 0.9rem; margin-bottom: 16px; }
.project-content a { font-weight: 600; color: var(--text); text-decoration: underline; font-size: 0.9rem; }
.project-content a:hover { color: var(--accent); }

/* =========================================
   RESPONSIVE SLIDER (Tablette & Mobile)
   ========================================= */
@media (max-width: 768px) {
  .slider-wrapper {
    padding-bottom: 70px; /* On crée de la place en bas pour les flèches */
  }

  /* Repositionnement des flèches en bas au centre */
  .slider-arrow {
    top: auto; 
    bottom: 0; 
    transform: none; /* Annule le centrage vertical du desktop */
  }

  /* Calcul précis pour les centrer avec un petit espacement de 16px entre les deux */
  /* (La flèche fait 48px de large) */
  .slider-arrow.prev {
    left: calc(50% - 56px); 
  }

  .slider-arrow.next {
    right: auto; /* Annule le placement à droite du desktop */
    left: calc(50% + 8px); 
  }

  .projects-slider {
    gap: 16px; /* Un peu moins d'espace entre les cartes sur mobile */
  }

  .project-card {
    /* On garde l'effet de dépassement (85% de l'écran) pour inciter au scroll */
    min-width: 85vw; 
    max-width: 85vw;
  }
}



/* =========================================
   11. CONTACT
   ========================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { margin-top: 32px; background: var(--bg); padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.contact-info p { margin-bottom: 12px; font-size: 0.95rem; }
.contact-info p:last-child { margin-bottom: 0; }
.contact-info a { color: var(--accent); font-weight: 500; }

.contact-form { background: var(--surface); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; color: var(--text); }
input, select, textarea { width: 100%; padding: 12px 16px; margin-top: 8px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-soft); font-family: inherit; font-size: 1rem; color: var(--text); transition: border-color 0.3s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); background: var(--surface); }

/* =========================================
   12. FOOTER
   ========================================= */
.site-footer { 
  background: var(--surface); 
  border-top: 1px solid var(--border); 
  padding: 40px 0; 
}

.footer-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  font-size: 0.9rem; 
  color: var(--muted); 
  flex-wrap: wrap; 
  gap: 16px; 
}

/* Répartition équitable pour bien centrer le texte */
.footer-logo { 
  flex: 1; 
}

.site-footer p { 
  margin: 0; 
  flex: 1; 
  text-align: center; 
}

.footer-links { 
  display: flex; 
  justify-content: flex-end; 
  gap: 24px; 
  flex: 1; 
}

/* Liens du footer */
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { 
  color: var(--accent); 
}

/* Responsive (Tablette & Mobile) */
@media (max-width: 768px) {
  .footer-inner { 
    flex-direction: column; 
    text-align: center; 
    gap: 24px; 
  }
  .footer-logo, 
  .site-footer p, 
  .footer-links { 
    flex: auto; 
    width: 100%;
    justify-content: center; 
  }
}




/* =========================================
   SÉLECTEUR DE LANGUE (MULTILINGUE)
   ========================================= */
.lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light); /* ou une couleur grise de ton choix */
}

.lang-switcher a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.lang-switcher a:hover {
  color: var(--primary-color); /* ta couleur d'accentuation */
}

.lang-switcher a.active {
  color: var(--text-color); /* couleur principale foncée */
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
}

/* En version mobile, on le centre ou on l'intègre bien */
@media (max-width: 768px) {
  .lang-switcher {
    margin-right: 15px; /* Pour éviter de coller au burger */
  }
}


/* =========================================
   Grille pour la page "Toutes nos réalisations"
   ========================================= */

.projects-grid {
  display: grid;
  /* 3 colonnes de taille égale sur grand écran */
  grid-template-columns: repeat(3, 1fr);
  /* Espace entre chaque carte de projet */
  gap: 2.5rem; 
  align-items: stretch;
}

/* On s'assure que chaque carte prend bien toute la hauteur dispo dans la grille */
.projects-grid .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Le contenu pousse le bouton "Voir le projet" vers le bas si le texte est court */
.projects-grid .project-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* On pousse le bouton "Voir le projet" tout en bas de la carte */
.projects-grid .project-content a {
  margin-top: auto; 
  align-self: flex-start;
}

/* =========================================
   Responsive (Adaptation aux différents écrans)
   ========================================= */

/* Tablette (moins de 992px) : on passe sur 2 colonnes */
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Mobile (moins de 768px) : on passe sur 1 seule colonne */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}



/* Styling spécifique pour les blocs de prix */
.price-block {
  margin: 1.5rem 0;
  min-height: 100px; /* Évite que la carte saute au changement de taille */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #111827; /* Adapte à ta couleur de titre */
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.price-period {
  font-size: 1rem;
  color: #6b7280; /* Gris */
  margin-left: 4px;
}

.price-strike {
  color: #9ca3af;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: -5px;
  transition: opacity 0.3s ease;
}

.price-strike.hidden {
  display: none;
}

.price-billing {
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
  margin-top: 6px;
}
