/* ========================================
   CYBERSÉCURITÉ PAGE - VERSION CORRIGÉE
   Tailles cohérentes et responsive optimisé
   ======================================== */

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: 
    linear-gradient(135deg, rgba(3, 7, 18, 0.88) 0%, rgba(13, 59, 102, 0.35) 100%),
    url('https://images.unsplash.com/photo-1614064641938-3bbee52942c7?w=1920&q=80') center/cover no-repeat fixed;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* ========================================
   2. NAVBAR
   ======================================== */

/* ============================================================
   2. NAVBAR
   ============================================================ */

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.3s ease;
  animation: slideDown 0.6s ease-out;
}

/* ── 2a. Animations navbar ── */

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1);   }
}

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

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

.nav-container.scrolled {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 20px rgba(0, 114, 188, 0.3);
  backdrop-filter: blur(5px);
}

/* ── 2b. Logo ── */

.logo img {
  width: clamp(200px, 17vw, 400px);
  height: auto;
  transition: width 0.3s ease;
  animation: fadeInScale 0.8s ease-out 0.2s both;
}

/* ── 2c. Liens de navigation ── */

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 2vw, 35px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { animation: fadeInUp 0.6s ease-out both; }
.nav-links li:nth-child(1) { animation-delay: 0.3s; }
.nav-links li:nth-child(2) { animation-delay: 0.4s; }
.nav-links li:nth-child(3) { animation-delay: 0.5s; }
.nav-links li:nth-child(4) { animation-delay: 0.6s; }
.nav-links li:nth-child(5) { animation-delay: 0.7s; }
.nav-links li:nth-child(6) { animation-delay: 0.8s; }

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: clamp(13px, 1.1vw, 17px);
  padding-bottom: 5px;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover { color: #0072BC; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background-color: #0072BC;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* ── 2d. Boutons CTA ── */

.nav-actions {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  align-items: center;
  animation: fadeInRight 0.8s ease-out 0.7s both;
}

.phone-button,
.eligibilite-button {
  background: #0099ff;
  color: white;
  border: none;
  padding: clamp(10px, 1.2vw, 14px) clamp(18px, 2.5vw, 28px);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.3);
}

.phone-button:hover,
.eligibilite-button:hover {
  background: #0072BC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #0072BC;
}

/* ── 2e. Menu hamburger ── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-container.open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-container.open .hamburger span:nth-child(2) { opacity: 0; }
.nav-container.open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ========================================
   HERO SECTION
   ======================================== */
.cybersecurite-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.cybersecurite-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #0072BC, transparent);
  box-shadow: 0 0 15px rgba(0, 114, 188, 0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 114, 188, 0.15) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.alert-badge {
  display: inline-block;
  background: linear-gradient(135deg, #030712 0%, #0d3b66 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  box-shadow: 0 0 15px #0072BC;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #0072BC;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
  background: #0072BC;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #0072BC;
  transform: translateY(-3px);
}

/* ========================================
   SECTIONS COMMUNES
   ======================================== */
.danger-section,
.threats-section,
.solutions-section,
.methodologie-section,
.expertise-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
}

/* Effets de fond subtils */
.danger-section::before,
.threats-section::before,
.solutions-section::before,
.methodologie-section::before,
.expertise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 114, 188, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Liserés de séparation */
.danger-section::after,
.threats-section::after,
.solutions-section::after,
.methodologie-section::after,
.expertise-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #0072BC, transparent);
  opacity: 0.5;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Titres de sections */
.danger-section h2,
.threats-section h2,
.solutions-section h2,
.methodologie-section h2,
.expertise-section h2 {
  font-size: 36px;
  color: white;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.section-intro {
  text-align: center;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ========================================
   DANGER SECTION (Stats)
   ======================================== */
.danger-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.danger-stat {
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.danger-stat:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 114, 188, 0.3);
}

.danger-number {
  display: block;
  font-size: 60px;
  font-weight: 900;
  color: #0072BC;
  margin-bottom: 12px;
  line-height: 1;
}

.danger-label {
  display: block;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  font-weight: 500;
}

/* ========================================
   THREATS SECTION
   ======================================== */
.threats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.threat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.threat-card:hover {
  transform: translateY(-8px);
  border-color: #0072BC;
  box-shadow: 0 15px 40px rgba(0, 114, 188, 0.4);
}

.threat-icon {
  font-size: 56px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px #0072BC);
}

.threat-card h3 {
  font-size: 22px;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}

.threat-stat {
  font-size: 18px;
  font-weight: 700;
  color: #4db8ff;
  margin-bottom: 12px;
  display: block;
}

.threat-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.solution-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}

.solution-card:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 114, 188, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.solution-icon {
  font-size: 50px;
  margin-bottom: 18px;
  display: block;
}

.solution-card h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.solution-card ul li {
  padding: 7px 0 7px 24px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.solution-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
  font-size: 16px;
}

/* ========================================
   MÉTHODOLOGIE SECTION
   ======================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.step-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 114, 188, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0072BC 0%, #0d3b66 100%);
  color: white;
  font-size: 26px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 5px 15px rgba(0, 114, 188, 0.4);
}

.step-card h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   EXPERTISE SECTION
   ======================================== */
.expertise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 900px;
  margin: 0 auto;
}

.expertise-stat {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.expertise-stat:hover {
  transform: translateY(-8px);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 12px 35px rgba(0, 114, 188, 0.3);
}

.stat-number {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: #4db8ff;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 60px 40px 30px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

footer h3 {
  color: lightskyblue;
  margin-bottom: 18px;
  font-size: 20px;
  text-shadow: 0 2px 6px rgba(135, 206, 250, 0.3);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

footer a:hover {
  color: #0072BC;
  text-shadow: 0 0 8px rgba(0, 114, 188, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid a {
  color: #0099ff;
}

.footer-grid div {
  margin: auto;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #0099ff;
  margin-top: 40px;
  padding-top: 25px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-bottom p {
  text-align: center;
}

.footer-bottom a {
  color: #0099ff;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    padding: 10px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    height: calc(100vh - 55px);
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.98), rgba(13, 59, 102, 0.98));
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
  }

  .nav-container.open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }

  .phone-button,
  .eligibilite-button {
    padding: 5px 5px;
    font-size: 12px;
  }

  .cybersecurite-hero {
    padding: 100px 20px 60px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .alert-badge {
    font-size: 12px;
    padding: 8px 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .danger-section,
  .threats-section,
  .solutions-section,
  .methodologie-section,
  .expertise-section {
    padding: 60px 20px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .danger-stats,
  .threats-grid,
  .solutions-grid,
  .steps-container,
  .expertise-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    padding: 50px 20px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 992px) {
  .nav-container {
    padding: 12px 30px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    height: calc(100vh - 55px);
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.98), rgba(13, 59, 102, 0.98));
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
  }

  .nav-container.open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 32px;
  }

  .danger-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

/* Small Desktop: 993px - 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
  .nav-container {
    padding: 12px 35px;
  }

  
  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .phone-button,
  .eligibilite-button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .alert-badge {
    font-size: 13px;
    padding: 9px 20px;
  }

  .container {
    max-width: 1100px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 34px;
  }
}

/* Medium Desktop: 1201px - 1400px */
@media (min-width: 1201px) and (max-width: 1400px) {
  .nav-container {
    padding: 13px 45px;
  }

  .logo img {
    height: 80px;
  }

  .nav-links {
    gap: 26px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .phone-button,
  .eligibilite-button {
    padding: 8px 8px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .container {
    max-width: 1250px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 38px;
  }
}

/* Large Desktop: 1401px - 1600px */
@media (min-width: 1401px) and (max-width: 1600px) {
  .nav-container {
    padding: 14px 55px;
  }

  

  .nav-links {
    gap: 28px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .phone-button,
  .eligibilite-button {
    padding: 11px 19px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .container {
    max-width: 1350px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 40px;
  }
}

/* XL Desktop: 1601px - 1919px */
@media (min-width: 1601px) and (max-width: 1920px) {
  .nav-container {
    padding: 15px 65px;
  }

 

  .nav-links {
    gap: 32px;
  }

  .nav-links a {
    font-size: 20px;
  }

  .phone-button,
  .eligibilite-button {
    padding: 12px 22px;
    font-size: 18px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .container {
    max-width: 1500px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 44px;
  }
}

/* Ultra-wide: 1920px+ */
@media (min-width: 1921px) {
  .nav-container {
    padding: 16px 5%;
  }
  
  .nav-links {
    display: flex;
    gap: clamp(28px, 3vw, 45px);
  }
  .nav-links a{
    font-size:24px;
  }

  .phone-button,
  .eligibilite-button {
    padding: 13px 24px;
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .container {
    max-width: 1600px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 48px;
  }
}
/* Ultra-wide: 2100px+ */
@media (min-width: 2300px) {
  .nav-container {
    padding: 16px 10%;
  }
  
  .nav-links {
    display: flex;
    gap: clamp(28px, 3vw, 45px);
  }
  .nav-links a{
    font-size:24px;
  }

  .phone-button,
  .eligibilite-button {
    padding: 13px 24px;
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .container {
    max-width: 1600px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 48px;
  }
}

/* Très petits mobiles */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }
  .logo img {
    width: 100px;
  }
  .phone-button,
  .eligibilite-button {
    padding: 5px 5px;
    font-size: 8px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .danger-section h2,
  .threats-section h2,
  .solutions-section h2,
  .methodologie-section h2,
  .expertise-section h2 {
    font-size: 24px;
  }

  .danger-number {
    font-size: 42px;
  }

  .stat-number {
    font-size: 36px;
  }
  .footer-grid{
    text-align: center;
  }
}

/* Écrans courts (paysage mobile) */
@media (max-height: 600px) {
  .cybersecurite-hero,
  .danger-section,
  .threats-section,
  .solutions-section,
  .methodologie-section,
  .expertise-section {
    padding: 40px 20px;
  }
}

/* ========================================
   OPTIMISATIONS PERFORMANCES
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   FIN DU CSS
   ======================================== */