/* ====================================
   VARIABLES & RESET
==================================== */
:root {
  --navy: #0d1b2a;
  --navy-light: #162035;
  --navy-mid: #1e2e45;
  --gold: #c9a84c;
  --gold-light: #e4c46e;
  --gold-pale: #f5e9c8;
  --white: #ffffff;
  --off-white: #f9f6f0;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8a8aaa;
  --border: #e8e0d0;
  --success: #27ae60;
  --error: #e74c3c;
  --shadow: 0 8px 32px rgba(13, 27, 42, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ====================================
   TYPOGRAPHY
==================================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

em {
  font-style: italic;
  color: var(--gold);
}

/* ====================================
   SECTION COMMONS
==================================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}

.section-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-tag.light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.8);
}

/* ====================================
   HERO
==================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e4a 50%, #0d1b2a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M30 30L0 0h60z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  background: rgba(201, 168, 76, 0.06);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.8;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-hero i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 30px; }
  50% { opacity: 1; height: 50px; }
}

/* ====================================
   INTRO STATEMENT
==================================== */
.intro-statement {
  padding: 70px 0;
  background: var(--off-white);
}

.statement-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  padding: 40px 60px;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-number span {
  font-size: 2.5rem;
  color: var(--gold);
}

.stat-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ====================================
   AVANTAGES
==================================== */
.avantages {
  background: var(--white);
}

.avantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.avantage-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.avantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.avantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}

.avantage-card:hover::before {
  opacity: 1;
}

.avantage-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(201, 168, 76, 0.3);
  grid-column: span 2;
}

.avantage-card.featured h3,
.avantage-card.featured p {
  color: var(--white);
}

.avantage-card.featured .card-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.4);
}

.avantage-card.featured .card-icon i {
  color: var(--gold-light);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon i {
  font-size: 1.4rem;
  color: var(--gold);
}

.avantage-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.avantage-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.card-example {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.card-example strong {
  color: var(--gold-light);
}

/* ====================================
   SAP SECTION
==================================== */
.sap-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e4a 100%);
  position: relative;
  overflow: hidden;
}

.sap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 10% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.sap-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sap-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  font-size: 1rem;
}

.sap-text strong {
  color: var(--gold-light);
}

.sap-list {
  list-style: none;
  margin: 24px 0;
}

.sap-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sap-list li:last-child {
  border-bottom: none;
}

.sap-list li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.sap-avance {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
}

.sap-avance i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sap-avance span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.sap-avance strong {
  color: var(--gold-light);
}

.sap-calcul-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sap-calcul-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold-pale);
  text-align: center;
  letter-spacing: 1px;
}

.sap-calcul-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.sap-calcul-row.credit {
  color: var(--success);
}

.sap-calcul-row.credit strong {
  color: var(--success);
  font-size: 1.05rem;
}

.sap-calcul-row strong {
  font-weight: 700;
  color: var(--text-dark);
}

.sap-calcul-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 8px 0;
}

.sap-calcul-row.total {
  border-bottom: none;
  padding-top: 20px;
}

.sap-calcul-row.total span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.sap-calcul-row.total strong {
  font-size: 1.8rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.sap-calcul-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

/* ====================================
   COMPARATIF
==================================== */
.comparatif {
  background: var(--off-white);
}

.comparatif-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.comparatif-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.comparatif-table th {
  padding: 20px 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparatif-table th:first-child {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

.comparatif-table th.col-salariee {
  background: #f0f0f5;
  color: var(--text-mid);
  text-align: center;
}

.comparatif-table th.col-independante {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  text-align: center;
}

.comparatif-table th.col-independante i {
  margin-right: 8px;
}

.comparatif-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparatif-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  background: rgba(13, 27, 42, 0.02);
}

.comparatif-table td.col-salariee {
  text-align: center;
  color: var(--text-mid);
}

.comparatif-table td.col-independante {
  text-align: center;
  color: var(--text-dark);
  font-weight: 600;
}

.comparatif-table td.win {
  background: rgba(39, 174, 96, 0.05);
  color: var(--success);
  font-weight: 700;
}

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

.comparatif-table tr:hover td {
  background: var(--off-white);
}

.comparatif-table tr:hover td:first-child {
  background: rgba(13, 27, 42, 0.04);
}

.comparatif-table td small {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 4px;
}

/* ====================================
   SERVICES
==================================== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.service-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
  background: var(--white);
}

.service-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.service-item h4 {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ====================================
   QUESTIONNAIRE
==================================== */
.questionnaire {
  background: linear-gradient(160deg, var(--navy) 0%, #1a2e4a 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.questionnaire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
}

.quiz-wrapper {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* Progress */
.quiz-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 14.28%;
}

.quiz-progress-label {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 36px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Steps */
.quiz-step {
  display: none;
  animation: fadeInStep 0.4s ease;
}

.quiz-step.active {
  display: block;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon i {
  font-size: 1.3rem;
  color: var(--gold);
}

.quiz-step h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.quiz-step h3 small {
  font-size: 0.85rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text-light);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Options grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.options-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.options-grid.cols-3 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .options-grid.cols-3 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Option cards */
.option-card {
  cursor: pointer;
  position: relative;
}

.option-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  gap: 10px;
  min-height: 100px;
}

.option-content i {
  font-size: 1.6rem;
  color: var(--text-light);
  transition: var(--transition);
}

.option-content span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.option-content span small {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.78rem;
  margin-top: 4px;
}

.option-content .price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.option-content small {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Selected state */
.option-card input:checked + .option-content,
.option-card.selected .option-content {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.2);
}

.option-card input:checked + .option-content i,
.option-card.selected .option-content i {
  color: var(--gold);
}

.option-card input:checked + .option-content span,
.option-card.selected .option-content span {
  color: var(--white);
}

.option-card input:checked + .option-content .price-tag,
.option-card.selected .option-content .price-tag {
  color: var(--gold-light);
}

.option-card input:checked + .option-content span small,
.option-card.selected .option-content span small {
  color: rgba(255, 255, 255, 0.7);
}

.option-card input:checked + .option-content small,
.option-card.selected .option-content small {
  color: rgba(255, 255, 255, 0.7);
}

.option-card:hover .option-content {
  border-color: var(--gold-pale);
  transform: translateY(-2px);
}

/* Checkbox cards */
.checkbox-card input:checked + .option-content {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Navigation buttons */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.btn-prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-mid);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-prev:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-next,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: none;
  color: var(--gold-light);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.25);
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.35);
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.btn-submit:hover {
  box-shadow: var(--shadow-gold);
}

/* Error state */
.quiz-step.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.error-message {
  color: var(--error);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====================================
   RESULT SECTION
==================================== */
.result-section {
  background: var(--off-white);
  padding: 100px 0;
}

.result-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.result-checkmark {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 24px;
}

.result-card h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.result-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.result-recap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 32px;
  text-align: left;
}

.result-recap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-mid);
}

.result-recap-item:last-child {
  border-bottom: none;
}

.result-recap-item i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.result-recap-item strong {
  color: var(--navy);
}

.result-next {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 24px 32px;
  margin-bottom: 32px;
  text-align: left;
}

.result-next p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
}

.result-next p strong {
  color: var(--gold-light);
}

.result-actions {
  display: flex;
  justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* ====================================
   FOOTER
==================================== */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer-brand h4 em {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ====================================
   RESPONSIVE
==================================== */
@media (max-width: 900px) {
  .avantage-card.featured {
    grid-column: span 1;
  }

  .sap-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .statement-grid {
    flex-direction: column;
    gap: 8px;
  }

  .stat-divider {
    display: none;
  }

  .stat-card {
    padding: 24px;
  }
}

@media (max-width: 700px) {
  section {
    padding: 70px 0;
  }

  .quiz-wrapper {
    padding: 36px 28px;
  }

  .options-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .result-card {
    padding: 40px 28px;
  }

  .comparatif-table th,
  .comparatif-table td {
    padding: 14px 14px;
    font-size: 0.85rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .options-grid {
    grid-template-columns: 1fr;
  }
}
