/* ==========================================================================
   SuivX - Page d'Accueil (index.html) Stylesheet
   Architecture Mobile-First, Typographie Fluide & Conformité Google CWV
   ========================================================================== */

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

:root {
  --green:   #1A4731;
  --accent:  #2D7A4F;
  --mint:    #F2F8F5;
  --light:   #E8F5EE;
  --border:  #C8E6D4;
  --text:    #0D1A12;
  --muted:   #6B7C72;
  --white:   #FFFFFF;
  --orange:  #E8850A;
  --red:     #C0392B;
  --score-green: #2D7A4F;
  --score-orange: #E8850A;
  --score-red:    #C0392B;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background: var(--white);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 600px) {
  .hero-container {
    padding: 48px 24px;
    gap: 40px;
  }
}

@media (min-width: 992px) {
  .hero {
    min-height: 600px;
    display: flex;
    align-items: center;
  }
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    padding: 48px 40px;
  }
}

@media (min-width: 1400px) {
  .hero-container {
    max-width: 1300px;
    gap: 72px;
  }
}

.hero-content {
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.35;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(24px, 5.5vw, 44px);
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-content h1 span.highlight-vous {
  background: var(--green);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 12px;
  display: inline-block;
  font-weight: 800;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-content p {
  font-size: clamp(14.5px, 2.5vw, 17.5px);
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero-content p {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-hero,
  .hero-actions .btn-hero-ghost {
    width: 100%;
  }
}

.btn-hero {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  box-sizing: border-box;
  touch-action: manipulation;
}

.btn-hero:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-hero-ghost {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  background: var(--white);
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  box-sizing: border-box;
  touch-action: manipulation;
}

.btn-hero-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-features-list {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-features-list {
    justify-content: flex-start;
  }
}

.hero-features-list span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   MOCKUP INTERACTIF
   ========================================================================== */
.hero-mock {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.mock-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26,71,49,.08), 0 1px 6px rgba(26,71,49,.04);
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.mock-header {
  background: var(--green);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-logo .logo-circle-mini {
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-logo .logo-circle-mini img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.mock-logo-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.mock-logo-text span {
  color: var(--border);
}

.mock-tabs {
  display: flex;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 3px;
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
}

.mock-tabs .tab {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  min-height: 44px !important;
  min-width: 44px;
  border-radius: 6px;
  cursor: pointer;
  background: none;
  border: none;
  transition: all .2s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  white-space: nowrap;
}

.mock-tabs .tab:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.mock-tabs .tab.active {
  background: var(--white);
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mock-view {
  display: none;
}

.mock-view.active {
  display: block;
  animation: mockFadeIn .25s ease-out;
}

@keyframes mockFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.mock-body {
  padding: 14px;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* KPI Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kpi-card {
  background: #FDFDFC;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-sizing: border-box;
}

.kpi-label {
  font-size: 8px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.kpi-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}

.kpi-change {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  width: fit-content;
}

.kpi-change.up { background: #E8F5EE; color: var(--accent); }
.kpi-change.down { background: #FDE8E8; color: var(--red); }
.kpi-stars { font-size: 9.5px; color: var(--accent); }

/* Chart inside mockup */
.chart-section {
  background: #FDFDFC;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 14px;
}

.chart-header {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 48px;
  padding: 0 2px;
}

.bar-col {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: flex-end;
  margin: 0 2px;
}

.bar-fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: #C8E6D4;
  transition: height .3s;
}

.bar-fill.highlighted {
  background: var(--green);
}

/* Product table inside mockup */
.product-table-section {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.mock-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  text-align: left;
}

.mock-table th {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.mock-table td {
  padding: 7px 0;
  border-bottom: 1px solid #F0F5F2;
  vertical-align: middle;
}

.mock-table tr:last-child td {
  border-bottom: none;
}

.prod-name { font-size: 11px; font-weight: 700; color: var(--green); }
.prod-cat { font-size: 9px; color: var(--muted); }

.score-container { display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.score-num { font-size: 10.5px; font-weight: 700; color: var(--green); width: 18px; text-align: right; }
.score-bar { width: 36px; height: 4px; background: #E8F5EE; border-radius: 2px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 2px; }
.score-bar-fill.score-green { background: var(--accent); }
.score-bar-fill.score-orange { background: var(--orange); }
.score-bar-fill.score-red { background: var(--red); }

.marge-badge { font-size: 8.5px; font-weight: 700; padding: 2px 5px; border-radius: 4px; }
.marge-badge.green-badge { background: #E8F5EE; color: var(--accent); }
.marge-badge.orange-badge { background: #FFF4E5; color: var(--orange); }
.marge-badge.red-badge { background: #FDE8E8; color: var(--red); }

.stock-text { font-size: 9.5px; font-weight: 500; color: var(--muted); }
.text-right { text-align: right; }

/* ==========================================================================
   BUSINESS TYPES BAR
   ========================================================================== */
.business-types-bar {
  background: var(--green);
  color: var(--white);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

.bar-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}

@media (min-width: 992px) {
  .business-types-bar {
    height: 56px;
    padding: 0 40px;
    display: flex;
    align-items: center;
  }
  .bar-container {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 24px;
  }
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

.bar-icon {
  font-size: 16px;
  opacity: 0.9;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   TRUST / LOGOS BAR
   ========================================================================== */
.trust-bar {
  padding: clamp(32px, 5vw, 40px) 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

.trust-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 28px 48px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.trust-logo {
  font-size: 18px;
  font-weight: 800;
  font-family: serif;
  color: var(--green);
}

/* ==========================================================================
   FEATURES GRID & MODULES
   ========================================================================== */
.features-grid-section {
  padding: clamp(48px, 8vw, 96px) 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.features-grid-section h2 {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
  letter-spacing: -.5px;
  line-height: 1.25;
}

.features-grid-section > p {
  font-size: clamp(14.5px, 2.5vw, 17.5px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.module-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.module-card {
  background: var(--mint);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 28px);
  text-align: left;
  box-sizing: border-box;
}

.module-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.module-card-icon i {
  font-size: 22px;
  color: var(--accent);
}

.module-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.module-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* MODULAR CARD */
.modular-card {
  background: var(--mint);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 44px) clamp(16px, 4vw, 48px);
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
  box-shadow: 0 4px 20px rgba(26,71,49,.03);
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 992px) {
  .modular-card {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    margin-top: 64px;
  }
}

.modular-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 18px;
  width: fit-content;
}

.modular-left h3 {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.modular-left p {
  font-size: clamp(14px, 2.5vw, 15px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.modular-left p strong {
  color: var(--text);
  font-weight: 700;
}

.modular-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.modular-pill {
  background: var(--white);
  border: 1px solid #D8ECE0;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  box-shadow: 0 2px 8px rgba(26,71,49,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.modular-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26,71,49,0.06);
}

.modular-pill .pill-check {
  color: var(--accent);
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
  background: var(--green);
  padding: clamp(48px, 8vw, 80px) 20px;
  color: var(--white);
  box-sizing: border-box;
  width: 100%;
}

.t-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .t-inner {
    grid-template-columns: 1fr auto;
    gap: 60px;
    text-align: left;
  }
}

.t-inner blockquote {
  font-size: clamp(17px, 3.5vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}

.t-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

@media (min-width: 900px) {
  .t-meta {
    justify-content: flex-start;
  }
}

.t-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.t-stats {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  text-align: center;
  box-sizing: border-box;
}

.t-stats .big {
  font-size: clamp(32px, 6vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.t-stats span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   MIGRATION & SOUVERAINETÉ SECTION
   ========================================================================== */
.migration-section {
  background: var(--green);
  padding: clamp(48px, 8vw, 80px) 20px;
  color: var(--white);
  box-sizing: border-box;
  width: 100%;
}

.migration-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 900px) {
  .migration-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.migration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.migration-container h2 {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.migration-desc {
  font-size: clamp(14px, 2.5vw, 16px);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.migration-pills span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.migration-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  box-sizing: border-box;
  width: 100%;
}

.migration-box-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.migration-box-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.migration-box-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.migration-box-item .check-icon {
  color: var(--border);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   PRICING / PLANS SECTION
   ========================================================================== */
.plans-section {
  padding: clamp(48px, 8vw, 96px) 20px;
  background: var(--mint);
  text-align: center;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

.pricing-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.plans-section h2 {
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.plans-section > p {
  font-size: clamp(14.5px, 2.5vw, 16.5px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Switcher Pill */
.billing-pill-switcher {
  display: inline-flex;
  align-items: center;
  background: #D9EADB;
  padding: 4px;
  border-radius: 30px;
  margin-bottom: 40px;
  max-width: 100%;
  box-sizing: border-box;
}

.billing-pill-btn {
  font-family: inherit;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 700;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 24px;
  border: none;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  touch-action: manipulation;
  box-sizing: border-box;
}

.billing-pill-btn.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(26,71,49,0.18);
}

.billing-pill-btn .discount-tag {
  font-size: 10.5px;
  font-weight: 800;
  background: rgba(45,122,79,0.2);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 12px;
}

.billing-pill-btn.active .discount-tag {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* 3 Cards Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px) 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 20px rgba(26,71,49,0.03);
  box-sizing: border-box;
  width: 100%;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,71,49,0.08);
}

.plan-card.popular {
  border: 2px solid var(--green);
  box-shadow: 0 8px 30px rgba(26,71,49,0.1);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.plan-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.plan-card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 42px;
  margin-bottom: 18px;
}

.plan-card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.plan-card-price {
  font-size: clamp(34px, 7vw, 44px);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -1px;
}

.plan-card-price.custom-text {
  font-size: clamp(26px, 5vw, 32px);
  letter-spacing: -0.5px;
}

.plan-card-period {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.plan-card-sublabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.plan-card.popular .plan-card-sublabel {
  color: var(--accent);
  font-weight: 700;
}

.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.plan-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
}

.plan-card-features li .feat-check {
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1.3;
}

.plan-card-features li .feat-cross {
  color: #A0AEC0;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1.3;
}

.plan-card-features li.disabled {
  color: #94A3B8;
}

.plan-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  text-align: center;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
  box-sizing: border-box;
  touch-action: manipulation;
}

.plan-card-btn-outline {
  background: var(--white);
  color: var(--green);
  border: 1.5px solid var(--border);
}

.plan-card-btn-outline:hover {
  border-color: var(--green);
  background: var(--light);
}

.plan-card-btn-primary {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
}

.plan-card-btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.plan-card-guarantee {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}

.pricing-footer-link {
  margin-top: 40px;
  text-align: center;
}

.pricing-footer-link a {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 8px;
}

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

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-main-section {
  padding: clamp(48px, 8vw, 96px) 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 32px;
}

.faq-header h2 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.faq-header p {
  font-size: clamp(14.5px, 2.5vw, 16.5px);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category Filters */
.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.faq-cat-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--mint);
  color: var(--green);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  touch-action: manipulation;
  box-sizing: border-box;
}

.faq-cat-btn:hover {
  background: var(--light);
  border-color: var(--accent);
}

.faq-cat-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(26, 71, 49, 0.15);
}

/* Search Bar */
.faq-search-wrapper {
  max-width: 580px;
  width: 100%;
  margin: 0 auto 32px;
  position: relative;
  box-sizing: border-box;
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.faq-search-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px 12px 44px;
  font-family: inherit;
  font-size: 16px !important;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.faq-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.15);
}

/* Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

.faq-card {
  background: var(--white);
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  box-sizing: border-box;
  width: 100%;
}

.faq-card:hover {
  border-color: #CBD5E1;
}

.faq-card.open {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(26, 71, 49, 0.06);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
  box-sizing: border-box;
}

.faq-question-btn:hover {
  background: #FAFCFA;
}

.faq-card.open .faq-question-btn {
  background: #FAFCFA;
  border-bottom: 1px solid #F1F5F9;
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

.faq-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.faq-tag-reforme { background: #E8F5EE; color: #2D7A4F; }
.faq-tag-migration { background: #E0F2FE; color: #0284C7; }
.faq-tag-prise-en-main { background: #FEF3C7; color: #D97706; }
.faq-tag-marges { background: #CCFBF1; color: #0F766E; }
.faq-tag-souverainete { background: #F3E8FF; color: #7E22CE; }
.faq-tag-sans-engagement { background: #FEE2E2; color: #DC2626; }

.faq-q-text {
  font-size: clamp(14px, 3vw, 15.5px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  word-break: break-word;
}

.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-card.open .faq-chevron {
  background: var(--green);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: clamp(16px, 3vw, 22px) clamp(16px, 3vw, 24px);
  background: var(--white);
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
  box-sizing: border-box;
}

.faq-card.open .faq-answer {
  display: block;
  animation: faqSlideDown 0.25s ease-out;
}

@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  margin-bottom: 12px;
  color: #475569;
}

.faq-answer p:last-of-type {
  margin-bottom: 14px;
}

.faq-answer strong {
  color: var(--text);
}

.faq-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px solid #F1F5F9;
}

.faq-pill-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.faq-pill-item span.check {
  color: var(--accent);
  font-weight: 800;
}

.faq-footer-cta {
  text-align: center;
  font-size: 14.5px;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid #EEF2F6;
}

.faq-footer-cta a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 8px;
}

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

.faq-empty-state {
  display: none;
  text-align: center;
  padding: 40px 16px;
  background: #F8FAF9;
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  margin-bottom: 28px;
}

.faq-empty-state h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.faq-empty-state p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.faq-reset-btn {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  border: none;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.faq-reset-btn:hover {
  background: var(--accent);
}

/* ==========================================================================
   CALL TO ACTION
   ========================================================================== */
.cta-section {
  background: var(--white);
  padding: clamp(48px, 8vw, 96px) 20px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.cta-section h2 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
  letter-spacing: -.5px;
  line-height: 1.25;
}

.cta-section p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--mint);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 60px) 20px 32px;
  box-sizing: border-box;
  width: 100%;
}

.f-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 48px;
  box-sizing: border-box;
}

.f-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.f-logo img {
  height: 24px;
}

.f-logo .f-logo-text {
  display: inline;
  white-space: nowrap;
  color: var(--green);
}

.f-logo .f-logo-text span,
.f-logo span {
  color: var(--accent);
}

.f-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}

.f-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}

.f-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2px;
  padding: 4px 6px;
  transition: color .2s;
  box-sizing: border-box;
}

.f-col a:hover {
  color: var(--green);
}

.f-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 768px) {
  .f-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.f-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 4px 10px;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}
