/* ========================================
   SERVICES_EXPERT_COMPTABLE.CSS - PAGE EXPERTS-COMPTABLES
   Design cohérent avec le style du site Isytem
   ======================================== */

/* ===================
   CSS VARIABLES LOCALES
   =================== */
:root {
  --comptable-primary: #FF8000;
  --comptable-primary-light: #FF9933;
  --comptable-accent: #FFB366;
  --comptable-secondary: #4230D6;
}

/* ===================
   PAGE CONTAINER
   =================== */
.page--services-comptable {
  background: var(--blanc-doux);
  color: var(--noir-profond);
}

/* ===================
   HERO SECTION - STYLE COHÉRENT
   =================== */
.comptable-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blanc-doux) 0%, rgba(255, 128, 0, 0.05) 100%);
  padding: 120px 20px 80px;
}

.comptable-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.comptable-hero__gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Gradient Orbs comme la page d'accueil */
.comptable-hero__gradient-overlay::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 128, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  top: -10%;
  right: -10%;
  animation: floatOrb 15s ease-in-out infinite;
}

.comptable-hero__gradient-overlay::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 179, 102, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  bottom: 10%;
  left: -5%;
  animation: floatOrb 12s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.comptable-hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Décoration graphique (chart) */
.comptable-hero__decoration {
  position: absolute;
  z-index: 2;
  opacity: 0.06;
  color: var(--comptable-primary);
}

.comptable-hero__decoration--chart {
  right: 8%;
  top: 20%;
  width: 250px;
  height: 250px;
  animation: floatChart 10s ease-in-out infinite;
}

@keyframes floatChart {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

.comptable-hero__container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Badge */
.comptable-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 128, 0, 0.08);
  border: 1px solid rgba(255, 128, 0, 0.15);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 40px;
  color: var(--comptable-primary);
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comptable-hero__badge svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Titre animé */
.comptable-hero__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 68px);
  color: var(--noir-profond);
  line-height: 1.15;
  margin-bottom: 32px;
}

.comptable-hero__title-line {
  display: block;
  overflow: hidden;
}

.comptable-hero__title .title-word {
  display: inline-block;
  margin-right: 0.2em;
}

.comptable-hero__title .title-highlight {
  color: var(--comptable-primary);
  position: relative;
  background: linear-gradient(90deg, var(--comptable-primary) 0%, var(--comptable-accent) 50%, var(--comptable-primary) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comptable-hero__title .title-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(255, 179, 102, 0.3);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}

/* Sous-titre */
.comptable-hero__subtitle {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--noir-profond);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 40px;
}

.comptable-hero__subtitle strong {
  color: var(--comptable-primary);
  font-weight: 500;
}

/* CTA Group */
.comptable-hero__cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  width: 100%;
  text-align: center;
}

.comptable-hero__cta-group .btn--accent {
  background: var(--comptable-primary);
  color: white;
  border-color: var(--comptable-primary);
}

.comptable-hero__cta-group .btn--accent:hover {
  background: var(--comptable-primary-light);
  border-color: var(--comptable-primary-light);
}

.comptable-hero__cta-group .btn--outline-light {
  background: transparent;
  color: var(--comptable-primary);
  border: 2px solid var(--comptable-primary);
}

.comptable-hero__cta-group .btn--outline-light:hover {
  background: var(--comptable-primary);
  color: white;
}

/* Trust Badges */
.comptable-hero__trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.comptable-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--noir-profond);
  opacity: 0.7;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.comptable-hero__trust-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--comptable-primary);
  flex-shrink: 0;
}

/* Scroll Indicator */
.comptable-hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.comptable-hero__scroll-indicator .scroll-text {
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--noir-profond);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.comptable-hero__scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--comptable-primary) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ===================
   CONTEXT SECTION
   =================== */
.comptable-context {
  padding: 100px 0;
  background: white;
  position: relative;
}

.comptable-context__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.comptable-context__content {
  text-align: center;
}

.comptable-context__icon {
  color: var(--comptable-primary);
  margin-bottom: 30px;
  opacity: 0.8;
}

.comptable-context__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--noir-profond);
  margin-bottom: 24px;
  line-height: 1.2;
}

.comptable-context__text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--noir-profond);
  opacity: 0.8;
  line-height: 1.8;
}

.comptable-context__text strong {
  color: var(--comptable-primary);
  font-weight: 500;
}

/* ===================
   SOLUTIONS SECTION
   =================== */
.comptable-solutions {
  padding: 100px 0;
  background: var(--blanc-doux);
  position: relative;
}

.comptable-solutions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comptable-solutions__header {
  text-align: center;
  margin-bottom: 60px;
}

.comptable-solutions__label {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--comptable-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.comptable-solutions__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--noir-profond);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}

.comptable-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .comptable-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .comptable-solutions__grid {
    grid-template-columns: 1fr;
  }
}

.comptable-solutions__card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  border: 2px solid rgba(255, 128, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.comptable-solutions__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--comptable-primary), var(--comptable-accent));
  transition: width 0.4s ease;
}

.comptable-solutions__card:hover::before {
  width: 100%;
}

.comptable-solutions__card:hover {
  transform: translateY(-10px);
  border-color: var(--comptable-primary);
  box-shadow: 0 20px 50px rgba(255, 128, 0, 0.12);
}

.comptable-solutions__card-number {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 48px;
  color: var(--comptable-accent);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 25px;
  line-height: 1;
}

.comptable-solutions__card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 128, 0, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.comptable-solutions__card:hover .comptable-solutions__card-icon {
  background: var(--comptable-primary);
}

.comptable-solutions__card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--comptable-primary);
  transition: stroke 0.3s ease;
}

.comptable-solutions__card:hover .comptable-solutions__card-icon svg {
  stroke: white;
}

.comptable-solutions__card-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 20px;
  color: var(--noir-profond);
  margin-bottom: 12px;
}

.comptable-solutions__card-text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--noir-profond);
  opacity: 0.7;
  line-height: 1.7;
}

/* ===================
   ACCOMPAGNEMENT SECTION
   =================== */
.comptable-accompagnement {
  padding: 100px 0;
  background: white;
  position: relative;
}

.comptable-accompagnement__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.comptable-accompagnement__content {
  text-align: center;
  margin-bottom: 60px;
}

.comptable-accompagnement__label {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--comptable-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.comptable-accompagnement__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--noir-profond);
  margin-bottom: 20px;
  line-height: 1.2;
}

.comptable-accompagnement__intro {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--noir-profond);
  opacity: 0.8;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.comptable-accompagnement__checklist {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comptable-accompagnement__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--blanc-doux);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.comptable-accompagnement__item:hover {
  border-color: rgba(255, 128, 0, 0.15);
  box-shadow: 0 10px 30px rgba(255, 128, 0, 0.08);
}

.comptable-accompagnement__item-icon {
  width: 48px;
  height: 48px;
  background: var(--comptable-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comptable-accompagnement__item-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.comptable-accompagnement__item-content h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 20px;
  color: var(--noir-profond);
  margin-bottom: 8px;
}

.comptable-accompagnement__item-content p {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--noir-profond);
  opacity: 0.7;
  line-height: 1.6;
}

/* ===================
   PROCESS SECTION
   =================== */
.comptable-process {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blanc-doux) 0%, rgba(255, 128, 0, 0.05) 100%);
  position: relative;
}

.comptable-process__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.comptable-process__header {
  text-align: center;
  margin-bottom: 60px;
}

.comptable-process__label {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--comptable-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.comptable-process__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--noir-profond);
  line-height: 1.2;
}

.comptable-process__timeline {
  position: relative;
  padding-left: 60px;
}

.comptable-process__line {
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--comptable-primary) 0%, var(--comptable-accent) 100%);
  transform: scaleY(0);
  transform-origin: top;
}

.comptable-process__step {
  position: relative;
  padding: 30px 0;
}

.comptable-process__step-number {
  position: absolute;
  left: -60px;
  top: 30px;
  width: 48px;
  height: 48px;
  background: white;
  border: 3px solid var(--comptable-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 20px;
  color: var(--comptable-primary);
  z-index: 2;
}

.comptable-process__step-content {
  background: white;
  border-radius: 16px;
  padding: 30px;
  border: 2px solid rgba(255, 128, 0, 0.08);
  transition: all 0.3s ease;
}

.comptable-process__step:hover .comptable-process__step-content {
  border-color: var(--comptable-primary);
  box-shadow: 0 10px 30px rgba(255, 128, 0, 0.1);
}

.comptable-process__step-content h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 20px;
  color: var(--noir-profond);
  margin-bottom: 8px;
}

.comptable-process__step-content p {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--noir-profond);
  opacity: 0.7;
  line-height: 1.6;
}

.comptable-process__cta {
  text-align: center;
  margin-top: 60px;
}

.comptable-process__cta .btn--accent {
  background: var(--comptable-primary);
  color: white;
  border-color: var(--comptable-primary);
}

.comptable-process__cta .btn--accent:hover {
  background: var(--comptable-primary-light);
  border-color: var(--comptable-primary-light);
}

.comptable-process__support {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(255, 128, 0, 0.08);
}

.comptable-process__support-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 128, 0, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comptable-process__support-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--comptable-primary);
}

.comptable-process__support-content h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 18px;
  color: var(--noir-profond);
  margin-bottom: 8px;
}

.comptable-process__support-content p {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--noir-profond);
  opacity: 0.7;
  line-height: 1.6;
}

.comptable-process__support-content a {
  color: var(--comptable-primary);
  text-decoration: none;
  font-weight: 500;
}

.comptable-process__support-content a:hover {
  text-decoration: underline;
}

/* ===================
   WHY SECTION
   =================== */
.comptable-why {
  padding: 100px 0;
  background: white;
  position: relative;
}

.comptable-why__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.comptable-why__header {
  text-align: center;
  margin-bottom: 60px;
}

.comptable-why__label {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--comptable-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.comptable-why__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--noir-profond);
  line-height: 1.2;
}

.comptable-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .comptable-why__grid {
    grid-template-columns: 1fr;
  }
}

.comptable-why__item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--blanc-doux);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.comptable-why__item:hover {
  border-color: rgba(255, 128, 0, 0.15);
  box-shadow: 0 10px 30px rgba(255, 128, 0, 0.08);
}

.comptable-why__item-icon {
  flex-shrink: 0;
  color: var(--comptable-primary);
}

.comptable-why__item h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 20px;
  color: var(--noir-profond);
  margin-bottom: 10px;
}

.comptable-why__item p {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--noir-profond);
  opacity: 0.7;
  line-height: 1.7;
}

.comptable-why__cta {
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, var(--comptable-primary) 0%, var(--comptable-primary-light) 100%);
  border-radius: 24px;
}

.comptable-why__cta h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  color: white;
  margin-bottom: 24px;
}

.comptable-why__cta .btn--accent {
  background: white;
  color: var(--comptable-primary);
  border-color: white;
}

.comptable-why__cta .btn--accent:hover {
  background: transparent;
  color: white;
  border-color: white;
}

/* ===================
   QUIZ SECTION
   =================== */
.comptable-quiz {
  padding: 100px 0;
  background: var(--blanc-doux);
  position: relative;
}

.comptable-quiz__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.comptable-quiz__header {
  text-align: center;
  margin-bottom: 50px;
}

.comptable-quiz__badge {
  display: inline-block;
  background: rgba(255, 128, 0, 0.08);
  border: 1px solid rgba(255, 128, 0, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--comptable-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.comptable-quiz__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--noir-profond);
  margin-bottom: 16px;
  line-height: 1.2;
}

.comptable-quiz__intro {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--noir-profond);
  opacity: 0.8;
  line-height: 1.7;
}

.comptable-quiz__quiz {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 2px solid rgba(255, 128, 0, 0.08);
  box-shadow: 0 10px 40px rgba(255, 128, 0, 0.06);
}

.comptable-quiz .cyber-quiz__question-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 20px;
  color: var(--noir-profond);
  margin-bottom: 30px;
  text-align: center;
}

.comptable-quiz .cyber-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comptable-quiz .cyber-quiz__option {
  background: var(--blanc-doux);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.comptable-quiz .cyber-quiz__option:hover {
  border-color: var(--comptable-primary);
  box-shadow: 0 5px 20px rgba(255, 128, 0, 0.1);
}

.comptable-quiz .cyber-quiz__option.selected {
  border-color: var(--comptable-primary);
  background: rgba(255, 128, 0, 0.05);
}

.comptable-quiz .cyber-quiz__option.correct {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
}

.comptable-quiz .cyber-quiz__option.wrong {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

.comptable-quiz .cyber-quiz__option-label {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--comptable-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Email Visual */
.comptable-quiz .email-visual {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comptable-quiz .email-visual__header {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
}

.comptable-quiz .email-visual__from,
.comptable-quiz .email-visual__subject {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.comptable-quiz .email-visual__label {
  color: var(--noir-profond);
  opacity: 0.5;
  font-weight: 400;
}

.comptable-quiz .email-visual__value {
  color: var(--noir-profond);
  font-weight: 500;
}

.comptable-quiz .email-visual__value--suspicious {
  color: #dc2626;
}

.comptable-quiz .email-visual__value--urgent {
  color: #dc2626;
  font-weight: 600;
}

.comptable-quiz .email-visual__date {
  color: var(--noir-profond);
  opacity: 0.5;
  font-size: 12px;
}

.comptable-quiz .email-visual__body {
  padding: 16px;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  color: var(--noir-profond);
  line-height: 1.6;
}

.comptable-quiz .email-visual__body p {
  margin-bottom: 10px;
}

.comptable-quiz .email-visual__link {
  color: var(--comptable-primary);
  text-decoration: underline;
  font-weight: 500;
}

/* SMS Visual */
.comptable-quiz .sms-visual__phone {
  background: #1a1a2e;
  border-radius: 24px;
  padding: 12px;
  max-width: 320px;
  margin: 0 auto;
}

.comptable-quiz .sms-visual__header {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  font-family: 'Kanit', sans-serif;
  font-size: 12px;
  color: white;
}

.comptable-quiz .sms-visual__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comptable-quiz .sms-visual__avatar {
  width: 40px;
  height: 40px;
  background: var(--comptable-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.comptable-quiz .sms-visual__name {
  color: white;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 15px;
}

.comptable-quiz .sms-visual__messages {
  padding: 16px;
}

.comptable-quiz .sms-visual__bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.comptable-quiz .sms-visual__bubble--received {
  background: #2d2d44;
  color: white;
  border-bottom-left-radius: 4px;
}

.comptable-quiz .sms-visual__timestamp {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

/* Quiz Feedback */
.comptable-quiz .cyber-quiz__feedback {
  margin-top: 30px;
  padding: 24px;
  background: var(--blanc-doux);
  border-radius: 16px;
  text-align: center;
}

.comptable-quiz .cyber-quiz__feedback-content {
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  color: var(--noir-profond);
  line-height: 1.7;
}

/* Quiz Result */
.comptable-quiz .cyber-quiz__result {
  text-align: center;
  padding: 30px 0;
}

.comptable-quiz .cyber-quiz__result-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 28px;
  color: var(--noir-profond);
  margin-bottom: 16px;
}

.comptable-quiz .cyber-quiz__result-text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--noir-profond);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 12px;
}

.comptable-quiz .cyber-quiz__result-question {
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--comptable-primary);
  margin-bottom: 24px;
}

.comptable-quiz .btn--accent {
  background: var(--comptable-primary);
  color: white;
  border-color: var(--comptable-primary);
}

.comptable-quiz .btn--accent:hover {
  background: var(--comptable-primary-light);
  border-color: var(--comptable-primary-light);
}

/* ===================
   ZONE SECTION
   =================== */
.comptable-zone {
  padding: 100px 0;
  background: white;
  position: relative;
}

.comptable-zone__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .comptable-zone__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.comptable-zone__content {
  max-width: 500px;
}

.comptable-zone__label {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--comptable-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.comptable-zone__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--noir-profond);
  margin-bottom: 20px;
  line-height: 1.2;
}

.comptable-zone__text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--noir-profond);
  opacity: 0.8;
  line-height: 1.8;
}

.comptable-zone__map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 128, 0, 0.1);
}

.comptable-zone__map-leaflet {
  width: 100%;
  height: 400px;
  border-radius: 20px;
}

/* ===================
   FINAL CTA SECTION
   =================== */
.comptable-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--comptable-primary) 0%, var(--comptable-primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.comptable-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 179, 102, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.comptable-final-cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.comptable-final-cta__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.comptable-final-cta__text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
}

.comptable-final-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.comptable-final-cta .btn--light {
  background: white;
  color: var(--comptable-primary);
  border-color: white;
}

.comptable-final-cta .btn--light:hover {
  background: transparent;
  color: white;
}

.comptable-final-cta .btn--outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.comptable-final-cta .btn--outline-light:hover {
  background: white;
  color: var(--comptable-primary);
  border-color: white;
}

/* ===================
   RESPONSIVE
   =================== */
@media (max-width: 768px) {
  .comptable-hero {
    padding: 100px 20px 60px;
  }

  .comptable-hero__trust-badges {
    gap: 20px;
  }

  .comptable-hero__trust-item {
    font-size: 12px;
  }

  .comptable-hero__decoration--chart {
    width: 150px;
    height: 150px;
    right: 5%;
    top: 10%;
    opacity: 0.04;
  }

  .comptable-process__timeline {
    padding-left: 50px;
  }

  .comptable-process__step-number {
    left: -50px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .comptable-quiz__quiz {
    padding: 24px;
  }

  .comptable-process__support {
    flex-direction: column;
    text-align: center;
  }

  .comptable-why__item {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================
   ANIMATION STATES - Progressive Enhancement
   Elements are visible by default, hidden only when JS is enabled for animations
   =================== */

/* Only hide elements when JS is enabled and will animate them */
.js .comptable-hero__badge {
  opacity: 0;
  transform: translateY(20px);
}

.js .comptable-hero__title {
  opacity: 0;
}

.js .comptable-hero__title .title-word {
  opacity: 0;
  transform: translateY(100%);
}

.js .comptable-hero__subtitle {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-hero__cta-group {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-hero__trust-badges {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-hero__scroll-indicator {
  opacity: 0;
}

/* Context section */
.js .comptable-context__icon {
  opacity: 0;
  transform: scale(0.8);
}

.js .comptable-context__title {
  opacity: 0;
  transform: translateY(40px);
}

.js .comptable-context__text {
  opacity: 0;
  transform: translateY(30px);
}

/* Solutions section */
.js .comptable-solutions__label {
  opacity: 0;
  transform: translateY(20px);
}

.js .comptable-solutions__title {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-solutions__card {
  opacity: 0;
  transform: translateY(50px);
}

/* Accompagnement section */
.js .comptable-accompagnement__label {
  opacity: 0;
  transform: translateY(20px);
}

.js .comptable-accompagnement__title {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-accompagnement__intro {
  opacity: 0;
  transform: translateY(20px);
}

.js .comptable-accompagnement__item {
  opacity: 0;
  transform: translateX(-30px);
}

/* Process section */
.js .comptable-process__label {
  opacity: 0;
  transform: translateY(20px);
}

.js .comptable-process__title {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-process__step {
  opacity: 0;
  transform: translateX(-30px);
}

.js .comptable-process__cta,
.js .comptable-process__support {
  opacity: 0;
  transform: translateY(30px);
}

/* Why section */
.js .comptable-why__label {
  opacity: 0;
  transform: translateY(20px);
}

.js .comptable-why__title {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-why__item {
  opacity: 0;
  transform: translateY(40px);
}

.js .comptable-why__cta {
  opacity: 0;
  transform: translateY(40px);
}

/* Quiz section */
.js .comptable-quiz__badge {
  opacity: 0;
  transform: translateY(20px);
}

.js .comptable-quiz__title {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-quiz__quiz {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

/* Zone section */
.js .comptable-zone__content > * {
  opacity: 0;
  transform: translateX(-30px);
}

.js .comptable-zone__map {
  opacity: 0;
  transform: translateX(30px);
}

/* Final CTA section */
.js .comptable-final-cta__title {
  opacity: 0;
  transform: translateY(30px);
}

.js .comptable-final-cta__text {
  opacity: 0;
  transform: translateY(20px);
}

.js .comptable-final-cta__buttons {
  opacity: 0;
  transform: translateY(20px);
}
