/* =============================================
   FONTS
   ============================================= */
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* =============================================
   VARIABLES
   ============================================= */
:root {
  --bg:        #131811;
  --purple:    #B796FF;
  --lavender:  #CFD0FF;
  --mint:      #CBFBFD;
  --blue:      #97BCFF;
  --white:     #FFFFFF;
  --dark-text: #131811;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'GeneralSans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAV
   ============================================= */
/* =============================================
   BANDEAU PROMO PERMANENT
   ============================================= */
.promo-bar,
.promo-bar.nav-cta {
  display: block;
  background: var(--purple);
  color: var(--dark-text);
  font-weight: 500;
  text-align: center;
  padding: 10px 24px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  transition: opacity 150ms ease;
}
.promo-bar:hover,
.promo-bar.nav-cta:hover {
  opacity: 1;
  color: var(--dark-text);
}
@media (max-width: 767px) {
  .promo-bar {
    padding: 9px 16px;
    white-space: normal;
    text-align: center;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(183, 150, 255, 0.2);
  height: 56px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: var(--purple);
  letter-spacing: 0.01em;
}

.logo em {
  font-style: italic;
  font-weight: 700;
}

.logo-img {
  height: 24px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .logo-img {
    height: 20px;
  }
}

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

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 200ms ease;
}

.nav-cta:hover {
  opacity: 1;
}

.nav-cta:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 480px) {
  .nav-links {
    gap: 14px;
  }
  .nav-cta {
    font-size: 12px;
  }
}

/* =============================================
   SECTIONS — BACKGROUNDS
   ============================================= */
.section-dark {
  background: var(--bg);
  color: var(--white);
}

.section-violet {
  background: var(--purple);
  color: var(--dark-text);
}

section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  section {
    padding: 120px 0;
  }
}

/* =============================================
   LABELS
   ============================================= */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 24px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 80px 0 80px;
}

@media (min-width: 768px) {
  .hero {
    padding: 120px 0 120px;
  }
}

.hero-title {
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 900px;
}

.hero-title em {
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}

.cta-pill {
  display: inline-block;
  border: 1.5px solid var(--purple);
  color: var(--purple);
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: background 200ms ease, color 200ms ease;
  cursor: pointer;
}

.cta-pill:hover {
  background: var(--purple);
  color: var(--dark-text);
}

.cta-pill:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

.micro-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

.micro-text-accent {
  color: var(--lavender);
  opacity: 0.85;
}

/* =============================================
   TYPOGRAPHIE COMMUNE
   ============================================= */
.section-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.body-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.body-text-muted {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  margin-bottom: 0;
}

.body-text-secondary {
  color: var(--mint);
  opacity: 0.75;
}

/* =============================================
   SECTION BACKGROUNDS — ALTERNANCE
   ============================================= */
.section-alt {
  background: #1a2018;
  color: var(--white);
}

.accent-purple {
  color: var(--purple);
  font-weight: 700;
}

/* =============================================
   PILLS
   ============================================= */
.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.pill {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
}

.pill-dark {
  background: var(--dark-text);
  color: var(--white);
}

.pill-lavender { background: var(--lavender); color: var(--dark-text); }
.pill-mint     { background: var(--mint);     color: var(--dark-text); }
.pill-blue     { background: var(--blue);     color: var(--dark-text); }

.pill-r1 { transform: rotate(-2deg); }
.pill-r2 { transform: rotate(1deg); }
.pill-r3 { transform: rotate(-1deg); }

/* =============================================
   COMMENT JE TRAVAILLE
   ============================================= */
.intro-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 64px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    gap: 48px;
  }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.step-num {
  font-size: 64px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.step-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.conclusion-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  text-align: center;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   OFFRES — TABS
   ============================================= */
.section-offres {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: 'GeneralSans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
  text-align: left;
}

.tab:hover {
  border-color: rgba(183, 150, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

.tab.active {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(183, 150, 255, 0.1);
}

.tab:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

/* =============================================
   OFFRES — CARDS GRID
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

/* =============================================
   CARD
   ============================================= */
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.card:hover {
  transform: translateY(-3px);
}

/* Couleurs par card */
#panel-scan  { border-color: rgba(207, 208, 255, 0.3); }
#panel-click { border-color: rgba(203, 251, 253, 0.3); }
#panel-clear { border-color: rgba(151, 188, 255, 0.3); }
#panel-real  { border-color: rgba(255, 255, 255, 0.2); }
#panel-happen{ border-color: rgba(183, 150, 255, 0.5); }

#panel-scan:hover  { border-color: var(--lavender); }
#panel-click:hover { border-color: var(--mint); }
#panel-clear:hover { border-color: var(--blue); }
#panel-real:hover  { border-color: rgba(255, 255, 255, 0.7); }
#panel-happen:hover{ border-color: var(--purple); }

.card-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  align-self: flex-start;
}

.badge-lavender {
  background: var(--lavender);
  color: var(--dark-text);
}

.badge-mint {
  background: var(--mint);
  color: var(--dark-text);
}

.badge-blue {
  background: var(--blue);
  color: var(--dark-text);
}

.badge-purple {
  background: var(--purple);
  color: var(--dark-text);
}

.card-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.card-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.price-main {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.price-old {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  white-space: nowrap;
}

.card-rarete {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: -4px;
}

.card-intro {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.card-accroche {
  font-size: 16px;
  font-weight: 500;
  color: var(--purple);
}

.card-desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.card-how {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.card-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
}

.card-how-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-how-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.card-how-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--purple);
  font-weight: 700;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 600;
}

.card-note {
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* =============================================
   CARD CTA — BOUTONS PILL
   ============================================= */
.card-cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'GeneralSans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  margin-top: auto;
  align-self: flex-start;
  background: transparent;
  border: 1.5px solid;
}

.card-cta:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 999px;
}

.card-cta-lavender {
  border-color: var(--lavender);
  color: var(--lavender);
}
.card-cta-lavender:hover {
  background: var(--lavender);
  color: var(--dark-text);
}

.card-cta-mint {
  border-color: var(--mint);
  color: var(--mint);
}
.card-cta-mint:hover {
  background: var(--mint);
  color: var(--dark-text);
}

.card-cta-blue {
  border-color: var(--blue);
  color: var(--blue);
}
.card-cta-blue:hover {
  background: var(--blue);
  color: var(--dark-text);
}

.card-cta-white {
  border-color: var(--white);
  color: var(--white);
}
.card-cta-white:hover {
  background: var(--white);
  color: var(--dark-text);
}

.card-cta-purple {
  border-color: var(--purple);
  color: var(--purple);
}
.card-cta-purple:hover {
  background: var(--purple);
  color: var(--dark-text);
}

/* Cards hidden state */
.card.hidden {
  display: none;
}

/* Fade transition */
.cards-grid.fading {
  opacity: 0;
  transition: opacity 150ms ease;
}

.cards-grid.visible {
  opacity: 1;
  transition: opacity 150ms ease;
}

/* =============================================
   PREUVE SOCIALE
   ============================================= */
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  max-width: 720px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  opacity: 0.35;
  background: transparent;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.testimonial-placeholder p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-client {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-missions {
  font-size: 13px;
  color: var(--purple);
  font-weight: 500;
  margin-top: 4px;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-preview {
  font-size: 17px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.testimonial-full {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.testimonial-full p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-toggle {
  background: transparent;
  border: none;
  color: var(--purple);
  font-family: 'GeneralSans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  transition: opacity 200ms;
}

.testimonial-toggle:hover {
  opacity: 0.75;
}

.testimonial-toggle:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 4px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   À PROPOS
   ============================================= */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
}

.about-photo img {
  border-radius: 12px;
  max-width: 320px;
  width: 100%;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text .section-title {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(26px, 3.5vw, 48px);
  white-space: nowrap;
}

.about-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-top: -16px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-body p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.about-body .accent {
  font-style: italic;
  color: var(--purple);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-purple {
  display: inline-block;
  background: rgba(183, 150, 255, 0.15);
  border: 1px solid rgba(183, 150, 255, 0.3);
  color: var(--purple);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 640px;
  color: var(--dark-text);
}

.cta-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-text);
  opacity: 0.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-main {
  display: inline-block;
  background: var(--dark-text);
  color: var(--white);
  border-radius: 999px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 200ms ease, transform 200ms ease;
  cursor: pointer;
  border: none;
  font-family: 'GeneralSans', system-ui, sans-serif;
}

.cta-main:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cta-main:focus-visible {
  outline: 2px solid var(--dark-text);
  outline-offset: 4px;
}

.cta-secondary-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid var(--dark-text);
  border-radius: 999px;
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  opacity: 0.75;
  transition: opacity 200ms;
}

.cta-secondary-btn:hover {
  opacity: 1;
}

/* =============================================
   SECTION CONTACT
   ============================================= */
.section-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'GeneralSans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: border-color 200ms ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(183, 150, 255, 0.6);
}

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

.contact-form .cta-main {
  background: var(--purple);
  color: var(--dark-text);
  align-self: flex-start;
  padding: 14px 32px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(183, 150, 255, 0.3);
}

.contact-form .cta-main:hover {
  opacity: 1;
  background: var(--lavender);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(183, 150, 255, 0.45);
}

.contact-alt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.contact-alt a {
  color: var(--purple);
  text-decoration: underline;
}

.contact-alt a:hover {
  opacity: 0.75;
}

/* =============================================
   MODALE
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 24, 17, 0.85);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #1e2420;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 200ms;
}

.modal-close:hover {
  color: var(--white);
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.modal-offre-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: -12px;
}

.modal-offre-recap {
  font-size: 16px;
  font-weight: 600;
  color: var(--purple);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-submit {
  display: inline-block;
  background: var(--purple);
  color: var(--dark-text);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: 'GeneralSans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 200ms;
  margin-top: 8px;
}

.modal-submit:hover {
  opacity: 0.85;
}

.modal-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* =============================================
   FEEDBACK FORMULAIRES
   ============================================= */
.form-feedback {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  min-height: 0;
  transition: all 200ms ease;
}

.form-feedback:empty {
  display: none;
}

.form-feedback.success {
  background: rgba(203, 251, 253, 0.1);
  border: 1px solid rgba(203, 251, 253, 0.3);
  color: var(--mint);
}

.form-feedback.error {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.3);
  color: #ff8080;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.logo-footer {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.logo-footer em {
  font-style: italic;
  font-weight: 700;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-inner a:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.footer-inner a:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 4px;
}

/* =============================================
   ANIMATIONS — SCROLL
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger pour les cards */
.card:nth-child(2).animate-on-scroll { transition-delay: 100ms; }
.card:nth-child(3).animate-on-scroll { transition-delay: 200ms; }
.card:nth-child(4).animate-on-scroll { transition-delay: 300ms; }
.card:nth-child(5).animate-on-scroll { transition-delay: 400ms; }

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 767px) {
  .hero-sub br {
    display: none;
  }
  .conclusion-text br {
    display: none;
  }
  .tabs {
    flex-direction: column;
  }
  .tab {
    border-radius: 12px;
  }
  .modal-content {
    padding: 28px 20px;
  }
}

/* =============================================
   FOCUS VISIBLE — GLOBAL
   ============================================= */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}


/* =============================================
   SECTION BACKGROUNDS COLORÉS
   ============================================= */
.section-lavande {
  background: var(--lavender);
  color: var(--dark-text);
}

.section-mint {
  background: var(--mint);
  color: var(--dark-text);
}

/* Titres sur fond clair */
.section-title-dark {
  color: var(--dark-text);
}

/* Body text sur fond clair */
.body-text-dark {
  color: rgba(19, 24, 17, 0.85);
}

.body-text-dark-muted {
  color: rgba(19, 24, 17, 0.55);
  font-size: 16px;
  margin-bottom: 0;
}

.accent-purple-dark {
  color: #5a2fc2;
  font-weight: 700;
}

/* =============================================
   TESTIMONIALS — CARD SOMBRE SUR FOND CLAIR
   ============================================= */
.testimonial-card-dark {
  background: rgba(19, 24, 17, 0.07);
  border-color: rgba(19, 24, 17, 0.12) !important;
}

.testimonial-card-dark .testimonial-client strong {
  color: var(--dark-text);
}

.testimonial-card-dark .testimonial-meta {
  color: rgba(19, 24, 17, 0.55);
}

.testimonial-card-dark .testimonial-missions {
  color: #5a2fc2;
}

.testimonial-card-dark .testimonial-preview {
  color: rgba(19, 24, 17, 0.8);
}

.testimonial-card-dark .testimonial-author {
  color: rgba(19, 24, 17, 0.5);
}

/* Placeholders sur fond mint */
.section-mint .testimonial-placeholder-card {
  border-color: rgba(19, 24, 17, 0.18) !important;
  background: rgba(19, 24, 17, 0.04);
}

.section-mint .placeholder-symbol {
  color: #5a2fc2;
}

.section-mint .placeholder-label {
  color: rgba(19, 24, 17, 0.45);
}

.section-mint .testimonials-scroll-wrapper {
  scrollbar-color: rgba(19, 24, 17, 0.2) transparent;
}

/* =============================================
   ABOUT — SUBTITLE VIOLET
   ============================================= */
.about-subtitle-purple {
  color: var(--purple);
  font-style: italic;
  font-size: 18px;
  margin-top: -16px;
}

/* =============================================
   OFFRES — 3 COLONNES POUR TAB 2
   ============================================= */
.cards-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .cards-grid.three-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cards-grid.three-cols {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CTA TITLE — FIX WRAP
   ============================================= */
.cta-title {
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 680px;
  color: var(--dark-text);
}



/* =============================================
   TÉMOIGNAGES — SCROLL LATÉRAL
   ============================================= */
.section-testimonials {
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .section-testimonials {
    padding-bottom: 120px;
  }
}

.section-testimonials .container {
  margin-bottom: 48px;
}

.testimonials-scroll-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 24px 24px;
  /* hide scrollbar visually but keep functional */
  scrollbar-width: thin;
  scrollbar-color: rgba(183, 150, 255, 0.3) transparent;
  cursor: grab;
}

.testimonials-scroll-wrapper:active {
  cursor: grabbing;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-thumb {
  background: rgba(183, 150, 255, 0.3);
  border-radius: 999px;
}

@media (min-width: 1100px) {
  .testimonials-scroll-wrapper {
    padding: 0 calc((100vw - 1100px) / 2 + 24px) 24px;
  }
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.testimonials-track .testimonial-card {
  width: 540px;
  flex-shrink: 0;
  margin: 0;
}

@media (max-width: 600px) {
  .testimonials-track .testimonial-card {
    width: 85vw;
  }
}

/* Placeholders dans le scroll */
.testimonial-placeholder-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.testimonial-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.35;
}

.placeholder-symbol {
  font-size: 24px;
  color: var(--purple);
}

.placeholder-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--dark-text);
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 250ms ease, transform 250ms ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(183, 150, 255, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--lavender);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* =============================================
   SECTION BLANCHE — TÉMOIGNAGES
   ============================================= */
.section-white {
  background: #ffffff;
  color: var(--dark-text);
}

.section-white .testimonials-scroll-wrapper {
  scrollbar-color: rgba(183, 150, 255, 0.4) transparent;
}

.section-title-purple {
  color: var(--purple);
}

/* =============================================
   TESTIMONIAL CARD — SUR FOND BLANC
   ============================================= */
.testimonial-card-white {
  background: var(--purple);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  align-self: stretch;
}

.testimonials-track {
  align-items: stretch;
}

.testimonial-card-white .testimonial-client strong {
  color: var(--dark-text);
}

.testimonial-card-white .testimonial-meta {
  color: rgba(19, 24, 17, 0.65);
}

.testimonial-card-white .testimonial-missions {
  color: rgba(19, 24, 17, 0.5);
}

.testimonial-card-white .testimonial-preview {
  color: var(--dark-text);
  font-style: normal;
}

/* =============================================
   PILLS VIOLET PLEIN — SECTION PROBLÈME
   ============================================= */
.pill-purple-solid {
  background: var(--purple);
  color: var(--dark-text);
  font-weight: 600;
}

/* =============================================
   BOUTON CONTACT — STYLE CTA-PILL
   ============================================= */
.cta-pill-submit {
  display: inline-block;
  border: 1.5px solid var(--purple);
  color: var(--purple);
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'GeneralSans', system-ui, sans-serif;
  background: transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  align-self: flex-start;
  box-shadow: none;
}

.cta-pill-submit:hover {
  background: var(--purple);
  color: var(--dark-text);
}

/* =============================================
   FOOTER — LOGO VIOLET
   ============================================= */
.logo-footer-purple {
  color: var(--purple) !important;
}

.logo-footer-purple em {
  font-style: italic;
  font-weight: 700;
}

/* =============================================
   NAV — HOVER VIOLET
   ============================================= */
.nav-cta:hover {
  opacity: 1;
  color: var(--purple);
}

/* =============================================
   SECTION OFFRES — BORDER TOP VIOLET
   ============================================= */
.section-offres {
  border-top: 1px solid rgba(183, 150, 255, 0.4) !important;
}

/* =============================================
   TABS INTRO
   ============================================= */
.tabs-intro {
  font-size: 15px;
  color: var(--purple);
  margin-bottom: 24px;
  font-style: normal;
}

/* =============================================
   TESTIMONIALS — NOMS EN VIOLET
   ============================================= */
.testimonial-client-purple strong {
  color: var(--purple) !important;
}

/* =============================================
   FAQ — ACCORDION
   ============================================= */
.section-faq {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(183, 150, 255, 0.4);
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'GeneralSans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  transition: color 200ms ease;
}

.faq-question:hover {
  color: var(--purple);
}

.faq-question[aria-expanded="true"] {
  color: var(--purple);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform 250ms ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 300ms ease, opacity 300ms ease;
}

.faq-answer[hidden] {
  display: block !important;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.faq-answer:not([hidden]) {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

.faq-answer p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  padding-bottom: 24px;
}


/* =============================================
   BANDEAU DÉFILANT (TICKER)
   ============================================= */
.ticker-wrap {
  background: #B796FF;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  width: 100%;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #131811;
  padding: 0 24px;
  white-space: nowrap;
}
.ticker-symbol {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  opacity: 0.7;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   FLÈCHES TÉMOIGNAGES
   ============================================= */
.testimonials-carousel {
  display: flex;
  align-items: center;
}
.testimonial-arrow {
  background: rgba(19, 24, 17, 0.15);
  border: 1px solid rgba(19, 24, 17, 0.25);
  color: #131811;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 200ms ease, opacity 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
}
.testimonial-arrow:hover {
  background: rgba(19, 24, 17, 0.3);
}
.testimonial-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .testimonial-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin: 0 4px;
  }
}

/* =============================================
   CARD PERSONNALITÉ
   ============================================= */
.card-personnalite {
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: -8px;
}

/* =============================================
   TÉMOIGNAGES SUR FOND LAVANDE — SCROLL
   ============================================= */
.section-lavande .testimonials-scroll-wrapper {
  scrollbar-color: rgba(19, 24, 17, 0.25) transparent;
}

.section-lavande .testimonials-scroll-wrapper::-webkit-scrollbar-thumb {
  background: rgba(19, 24, 17, 0.2);
}


/* =============================================
   TESTIMONIAL CLIENT — NOM EN NOIR SUR VIOLET
   ============================================= */
.testimonial-client-dark strong {
  color: var(--dark-text) !important;
  font-size: 17px;
}
