/* ========================================
   INFOGERANCE.CSS - PAGE CONCIERGERIE INFORMATIQUE
   ======================================== */

/* ===================
   HERO SECTION
   =================== */
.hero-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #5a47e0 100%);
  padding: var(--spacing-xxxl) 0;
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

/* Pattern décoratif diagonal en arrière-plan */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.05) 40px,
      rgba(255, 255, 255, 0.05) 80px
    );
  z-index: 0;
}

/* Cercles décoratifs flottants */
.hero-section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float-hero 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes float-hero {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 30px);
  }
}

.hero-section__container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-section__icon {
  animation: pulse-hero 3s ease-in-out infinite;
}

@keyframes pulse-hero {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-section__subtitle {
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.hero-section__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  color: var(--color-light);
  margin-bottom: var(--spacing-lg);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.hero-section__intro {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-section__intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-light);
  opacity: 0.95;
}

/* ===================
   SECTIONS GÉNÉRALES
   =================== */
.section {
  position: relative;
  padding: var(--spacing-2xl) 0;
}

/* Section avec arrière-plan sécurité */
.section:not(.section--light):not(.section--cta) {
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}

/* Pattern de sécurité décoratif */
.section:not(.section--light):not(.section--cta)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(66, 48, 214, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 128, 0, 0.03) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  padding-bottom: var(--spacing-md);
}

/* Soulignement décoratif pour les titres de section */
.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-tertiary));
  border-radius: 2px;
}

.section__subtitle {
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* ===================
   SECTION LIGHT
   =================== */
.section--light {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

/* Pattern de grille subtile */
.section--light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(90deg, rgba(66, 48, 214, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(66, 48, 214, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

.section__highlight {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.section__intro {
  font-size: 1.125rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl);
  color: var(--color-dark);
  opacity: 0.85;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ===================
   INSIGHTS LIST
   =================== */
.insights-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.insights-list__item {
  font-size: 1.125rem;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-left: 4px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}

/* Icône décorative pour chaque item */
.insights-list__item::before {
  content: "⚠";
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-sm);
  font-size: 1.25rem;
  color: var(--color-accent);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.insights-list__item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-primary);
}

.insights-list__item:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* ===================
   TARGET CARDS
   =================== */
.target-cards {
  margin-top: var(--spacing-xxl);
}

.target-card {
  border-left: 4px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

/* Pattern décoratif en arrière-plan pour chaque carte */
.target-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 48, 214, 0.08) 0%, transparent 70%);
  z-index: 0;
  transition: transform 0.5s ease;
}

.target-card:hover {
  border-left-color: var(--color-accent);
  transform: translateY(-5px);
}

.target-card:hover::before {
  transform: scale(1.3);
}

.target-card__title {
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.target-card__list {
  margin-top: var(--spacing-md);
  position: relative;
  z-index: 1;
}

/* ===================
   USE CASES
   =================== */
.use-cases {
  margin-top: var(--spacing-xxl);
}

.use-case {
  border-top: 4px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}

/* Badge numéroté décoratif */
.use-case::before {
  content: "";
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent), #ffb366);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

.use-case:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 128, 0, 0.15);
}

.use-case__title {
  color: var(--color-dark);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.use-case__content {
  position: relative;
  z-index: 1;
}

.use-case__content p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.use-case__before {
  color: var(--color-dark);
  opacity: 0.7;
}

.use-case__after {
  color: var(--color-primary);
  font-weight: 500;
}

/* ===================
   SECURITY LIST
   =================== */
.security-list {
  max-width: 1000px;
  margin: var(--spacing-xxl) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.security-list__item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(10px);
  padding: var(--spacing-lg);
  border-radius: 16px;
  border: 2px solid transparent;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(66, 48, 214, 0.08);
  overflow: hidden;
}

/* Effet de brillance en arrière-plan */
.security-list__item::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 128, 0, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Icône de sécurité décorative avec badge */
.security-list__item::before {
  content: "🔒";
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  font-size: 2rem;
  opacity: 0.15;
  transition: all 0.4s ease;
  z-index: 0;
}

.security-list__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(66, 48, 214, 0.15),
              0 0 0 1px rgba(255, 128, 0, 0.1);
  border-color: rgba(255, 128, 0, 0.3);
}

.security-list__item:hover::before {
  opacity: 0.25;
  transform: scale(1.2) rotate(10deg);
}

.security-list__item:hover::after {
  opacity: 1;
}

/* Contenu au-dessus des effets décoratifs */
.security-list__item.list__item {
  position: relative;
  z-index: 1;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-dark);
  font-weight: 500;
}

/* ===================
   FUNCTIONING - EFFET GLASSMORPHISM
   =================== */
.functioning {
  margin-top: var(--spacing-xxl);
  gap: var(--spacing-xxl);
}

.functioning-block {
  position: relative;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px 0 rgba(66, 48, 214, 0.12),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Effet de lumière en arrière-plan */
.functioning-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(128, 255, 232, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Bordure animée au survol */
.functioning-block::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    var(--color-tertiary),
    var(--color-secondary),
    var(--color-primary)
  );
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.functioning-block:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 48px 0 rgba(66, 48, 214, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.25) 100%
  );
}

.functioning-block:hover::before {
  opacity: 1;
}

.functioning-block:hover::after {
  opacity: 0.5;
}

.functioning-block__title {
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.functioning-block__list {
  margin-top: var(--spacing-md);
  position: relative;
  z-index: 1;
}

/* Style des list items dans le bloc */
.functioning-block .list__item {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
  border-left: 3px solid var(--color-tertiary);
  transition: all 0.3s ease;
}

.functioning-block .list__item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(5px);
}

/* ===================
   STEPS LIST - CARTES AMÉLIORÉES
   =================== */
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin: var(--spacing-xxl) 0;
  counter-reset: step-counter;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 244, 236, 0.9) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 10px 40px rgba(66, 48, 214, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  counter-increment: step-counter;
}

/* Effet de gradient animé en arrière-plan */
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(66, 48, 214, 0.03) 0%,
    rgba(196, 169, 250, 0.05) 50%,
    rgba(128, 255, 232, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Badge de progression décoratif */
.step::after {
  content: "✓";
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 20px 60px rgba(66, 48, 214, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: rgba(196, 169, 250, 0.4);
}

.step:hover::before {
  opacity: 1;
}

.step:hover::after {
  opacity: 1;
  transform: scale(1);
}

.step__number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.75rem;
  box-shadow:
    0 8px 20px rgba(66, 48, 214, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.5),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-md);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover .step__number {
  transform: scale(1.15) rotate(5deg);
  box-shadow:
    0 12px 30px rgba(66, 48, 214, 0.4),
    0 0 0 6px rgba(255, 255, 255, 0.6),
    inset 0 -2px 8px rgba(0, 0, 0, 0.15);
}

/* Petit pulse sur le numéro */
@keyframes pulse-number {
  0%, 100% {
    box-shadow:
      0 8px 20px rgba(66, 48, 214, 0.3),
      0 0 0 4px rgba(255, 255, 255, 0.5),
      inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow:
      0 8px 20px rgba(66, 48, 214, 0.5),
      0 0 0 6px rgba(255, 255, 255, 0.7),
      inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  }
}

.step:hover .step__number {
  animation: pulse-number 2s ease-in-out infinite;
}

.step__text {
  flex: 1;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
  color: var(--color-dark);
  font-weight: 500;
}

/* ===================
   UNIQUE CONTACT
   =================== */
.unique-contact {
  max-width: 800px;
  margin: var(--spacing-xxl) auto 0;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Badge étoile décoratif */
.unique-contact::before {
  content: "★";
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.15;
  transform: rotate(-15deg);
  transition: all 0.3s ease;
}

.unique-contact:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(196, 169, 250, 0.2);
}

.unique-contact:hover::before {
  opacity: 0.25;
  transform: rotate(-15deg) scale(1.1);
}

.unique-contact__title {
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.unique-contact__text {
  font-size: 1.125rem;
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ===================
   FAQ
   =================== */
.faq-list {
  max-width: 900px;
  margin: var(--spacing-xxl) auto 0;
  position: relative;
  z-index: 1;
}

.faq-item {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Icône de question décorative */
.faq-item::before {
  content: "?";
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.1;
  font-family: 'Baloo 2', cursive;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
  border-left-color: var(--color-accent);
}

.faq-item:hover::before {
  opacity: 0.2;
  transform: scale(1.1);
}

.faq-item__question {
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.faq-item__answer {
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* ===================
   CTA SECTION
   =================== */
.section--cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #5a47e0 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Bulles décoratives flottantes */
.section--cta::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: float-cta 7s ease-in-out infinite;
}

.section--cta::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  animation: float-cta 9s ease-in-out infinite reverse;
}

@keyframes float-cta {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

.section--cta .section__title {
  color: var(--color-light);
  position: relative;
  z-index: 1;
}

.section--cta .section__subtitle {
    color: var(--color-light);
    opacity: 0.95;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-block {
  margin-top: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

/* ===================
   RESPONSIVE TABLET
   =================== */
@media (max-width: 1024px) {
  .hero-section__title {
    font-size: 2.5rem;
  }

  .section__highlight {
    font-size: 1.5rem;
  }

  .steps-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* ===================
   RESPONSIVE MOBILE
   =================== */
@media (max-width: 768px) {
  .hero-section {
    padding: var(--spacing-xxl) 0;
  }

  .hero-section__icon {
    width: 60px;
    height: 60px;
  }

  .hero-section__subtitle {
    font-size: 18px;
  }

  .hero-section__title {
    font-size: 2rem;
  }

  .hero-section__intro p {
    font-size: 1rem;
  }

  .section__highlight {
    font-size: 1.25rem;
  }

  .section__intro {
    font-size: 1rem;
  }

  .insights-list__item {
    font-size: 1rem;
  }

  .target-card svg,
  .functioning-block svg {
    width: 40px;
    height: 40px;
  }

  .use-case svg {
    float: none;
    display: block;
    margin: 0 auto var(--spacing-sm);
  }

  .target-cards,
  .use-cases,
  .functioning {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .security-list {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .security-list__item {
    padding: var(--spacing-md);
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .step {
    padding: var(--spacing-lg);
  }

  .step__number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .functioning-block {
    padding: var(--spacing-lg);
  }

  .functioning-block__title {
    font-size: 1.25rem;
  }

  .unique-contact {
    padding: var(--spacing-lg);
  }

  .unique-contact__title {
    font-size: 1.5rem;
  }

  .unique-contact__text {
    font-size: 1rem;
  }

  .faq-item {
    padding: var(--spacing-md);
  }

  .faq-item__question {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .hero-section__icon {
    width: 50px;
    height: 50px;
  }

  .hero-section__subtitle {
    font-size: 16px;
  }

  .hero-section__title {
    font-size: 1.75rem;
  }

  .section__highlight {
    font-size: 1.125rem;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .security-list {
    grid-template-columns: 1fr;
  }

  .security-list__item {
    padding: var(--spacing-md);
  }

  .security-list__item::before {
    font-size: 1.5rem;
  }

  .functioning-block {
    padding: var(--spacing-md);
  }

  .functioning-block__title {
    font-size: 1.125rem;
  }

  .step {
    padding: var(--spacing-md);
  }

  .step__number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .btn--lg {
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}

/* ===================
   ANIMATIONS & EFFETS SPÉCIAUX
   =================== */

/* Animation pour les SVG des target cards */
.target-card svg {
  transition: transform 0.3s ease;
}

.target-card:hover svg {
  transform: scale(1.1) rotate(5deg);
}

/* Animation pour les SVG des use cases */
.use-case svg {
  transition: transform 0.3s ease;
}

.use-case:hover svg {
  transform: scale(1.1);
}

/* Animation pour les SVG des functioning blocks */
.functioning-block svg {
  transition: transform 0.3s ease;
}

.functioning-block:hover svg {
  transform: scale(1.08);
}
