/* ========================================
   SECURI'LIB - MODERN PROFESSIONAL DESIGN
   ======================================== */

/* RESET & BASE */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary: #e74c3c;
  --primary-dark: #c0392b;
  --primary-light: #ff6b59;
  --secondary: #2c3e50;
  --accent: #3498db;
  --text-dark: #1a1a1a;
  --text-medium: #444;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.16);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   LAYOUT & CONTAINER
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  width: 100%;
}

.container.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(231, 76, 60, 0.1);
  transition: all var(--transition-normal);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}
.main-nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  transition: width var(--transition-normal);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--primary);
}

.main-nav a.active::before,
.main-nav a:hover::before {
  width: 100%;
}
.btn-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.35);
}

.btn-header:hover::before {
  left: 100%;
}

.btn-header:active {
  transform: translateY(0);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, #fef5f4 0%, #ffffff 50%, #f0f9ff 100%);
  padding: clamp(4rem, 12vh, 8rem) 0 clamp(3rem, 10vh, 6rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-text .accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-text strong {
  font-weight: 800;
  color: var(--secondary);
}

.hero-text p {
  color: var(--text-light);
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 2rem;
  max-width: 550px;
  line-height: 1.75;
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(231, 76, 60, 0.4);
}

.btn-cta:hover::before {
  width: 300px;
  height: 300px;
}

.btn-cta:active {
  transform: translateY(-1px);
}

.hero-image {
  text-align: center;
  position: relative;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform var(--transition-slow);
}

.hero-image:hover img {
  transform: translateY(-10px) scale(1.02);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
  padding: clamp(4rem, 10vh, 6rem) 0;
}

.features-content {
  text-align: center;
}

.features h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 3.5rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(231, 76, 60, 0.2);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.feature-item:hover img {
  transform: scale(1.15) rotate(5deg);
}

.feature-item h3,
.feature-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  background: linear-gradient(135deg, #fef5f4 0%, #ffffff 100%);
  padding: clamp(4rem, 10vh, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 2rem;
  right: 5%;
  font-size: 15rem;
  color: rgba(231, 76, 60, 0.03);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.testimonials-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
}

.testimonials-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
  margin: 0;
  flex: 1;
}

.testimonial-card blockquote p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-medium);
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-card blockquote p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 2.5rem;
  color: rgba(231, 76, 60, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: normal;
}

/* ========================================
   FOOTER
   ======================================== */
.minimal-footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid var(--border-light);
  padding: 2.5rem 0;
  text-align: center;
  position: relative;
}

.minimal-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
}

.minimal-footer p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}
/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
  background: linear-gradient(135deg, #fef5f4 0%, #ffffff 50%, #f0f9ff 100%);
  padding: clamp(5rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

/* About Details Section */
.about-details {
  padding: clamp(4rem, 10vh, 6rem) 0;
  background-color: var(--bg-white);
}

.about-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}

.about-img {
  text-align: center;
}

.about-img img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

.about-img:hover img {
  transform: translateY(-10px) scale(1.02);
}

/* About Mission Section */
.about-mission-block {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: clamp(4rem, 10vh, 6rem) 0;
  text-align: center;
  position: relative;
}

.about-mission-block::before {
  content: '"';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: rgba(231, 76, 60, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.about-mission-block h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.about-mission-block p {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-medium);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}
/* ========================================
   TEAM SECTION
   ======================================== */
.team {
  background-color: var(--bg-white);
  padding: clamp(4rem, 10vh, 6rem) 0;
  text-align: center;
}

.team h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.team h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-member h3,
.team-member h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   INSCRIPTION PAGE
   ======================================== */
.inscription-pro {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: clamp(5rem, 12vh, 8rem) 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.inscription-box {
  background: var(--bg-white);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 1000px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border-light);
}

.inscription-box h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.inscription-box .desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.badge-coming {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #fef5f4, #fbe9e7);
  color: var(--primary-dark);
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-pro {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: clamp(5rem, 12vh, 8rem) 1.25rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.contact-info h1 {
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.contact-form-pro form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-pro input,
.contact-form-pro textarea {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  width: 100%;
  transition: all var(--transition-fast);
  background: var(--bg-white);
}

.contact-form-pro input:focus,
.contact-form-pro textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact-form-pro textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-pro button {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
}

.contact-form-pro button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
}

.contact-form-pro button:active {
  transform: translateY(0);
}
/* ========================================
   PRICING PAGE
   ======================================== */
.pricing-pro {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: clamp(5rem, 12vh, 8rem) 1.25rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.centered-content {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.centered-content > h1 {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.plan-toggle {
  display: inline-flex;
  background: var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.375rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}

.plan-toggle button {
  padding: 0.875rem 2rem;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  color: var(--text-medium);
}

.plan-toggle button.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: var(--shadow-md);
}

.pricing-card {
  background: var(--bg-white);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(231, 76, 60, 0.1);
}

.pricing-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.price-block {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.price {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.period {
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card .features li {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  position: relative;
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.btn-subscribe {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  display: inline-block;
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
}

.btn-subscribe:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(231, 76, 60, 0.4);
}

/* ========================================
   BURGER MENU
   ======================================== */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  transition: all var(--transition-fast);
}

.burger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.burger-btn:hover span {
  background: var(--primary);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
} 

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablettes */
@media (max-width: 1024px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }
  
  .hero {
    padding: clamp(3rem, 8vh, 5rem) 0;
  }
  
  .features-grid,
  .team-grid {
    gap: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header Mobile */
  .main-header .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .burger-btn {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80%, 320px);
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 6rem 2rem 2rem;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-normal);
    z-index: 999;
    overflow-y: auto;
  }
  
  .main-nav.open {
    right: 0;
  }
  
  .main-nav a {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }
  
  .main-nav a::before {
    display: none;
  }
  
  .main-nav a.active {
    color: var(--primary);
    font-weight: 700;
  }
  
  .btn-header {
    position: relative;
    display: block;
    margin: 1rem 0;
    text-align: center;
  }
  
  /* Hero Mobile */
  .hero::before {
    width: 400px;
    height: 400px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero-image {
    order: 2;
  }
  
  .hero-text p {
    max-width: 100%;
  }
  
  /* Sections Mobile */
  .features,
  .team,
  .about-details,
  .about-mission-block {
    padding: clamp(2.5rem, 8vh, 4rem) 0;
  }
  
  .features h2,
  .team h2 {
    margin-bottom: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-item {
    padding: 2rem 1.5rem;
  }
  
  /* About Mobile */
  .about-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-text {
    max-width: 100%;
  }
  
  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Team Mobile */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  /* Contact Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  
  /* Inscription Mobile */
  .inscription-box {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  
  /* Pricing Mobile */
  .plan-toggle {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
  }
  
  .plan-toggle button {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-card .features {
    text-align: left;
  }
  
  /* Footer Mobile */
  .minimal-footer {
    padding: 2rem 0;
  }
  
  .minimal-footer p {
    font-size: 0.85rem;
    padding: 0 1rem;
  }
}

/* Petits mobiles */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .btn-cta {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .contact-form-pro input,
  .contact-form-pro textarea,
  .contact-form-pro button {
    font-size: 0.95rem;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Accessibilité */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Smooth scroll */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
}

.login-container {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.login-tabs {
  display: flex;
  background: var(--bg-light);
  border-bottom: 2px solid var(--border-light);
}

.tab-btn {
  flex: 1;
  padding: 1.25rem;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.tab-btn.active {
  color: var(--primary);
  background: var(--bg-white);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
  padding: 2.5rem 2rem;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.tab-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--bg-white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.forgot-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.forgot-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-message {
  padding: 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0.5rem;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block;
}

/* ========================================
   PROFIL PAGE
   ======================================== */
.profil-page {
  background: var(--bg-light);
  min-height: calc(100vh - 80px);
  padding: 2rem 1.25rem;
}

.profil-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.profil-sidebar {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.profil-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.profil-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: #fff;
  text-align: center;
  gap: 0.2rem;
  user-select: none;
}

.profil-avatar:hover .avatar-overlay {
  opacity: 1;
}

.avatar-overlay-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.avatar-overlay-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0 8px;
  line-height: 1.2;
}

.profil-sidebar h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.profil-email {
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.profil-badge {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.badge--technicien {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #90caf9;
}

.badge--directeur {
  background: #fff8e1;
  color: #e65100;
  border: 1px solid #ffcc02;
}

.badge--napoleon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #78350f;
  border: 1px solid #d4a017;
  animation: napoleon-glow 3s ease-in-out infinite;
}

@keyframes napoleon-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(212,160,23,0.35); }
  50%       { box-shadow: 0 0 16px rgba(212,160,23,0.75); }
}

/* ── NAV NAPOLEO ── */
.napoleon-nav {
  background: linear-gradient(90deg, rgba(212,160,23,0.06), transparent) !important;
  color: #b45309 !important;
  border-left: 3px solid #d4a017 !important;
}
.napoleon-nav:hover { background: rgba(212,160,23,0.14) !important; }

/* ── ZONE SECRÈTE ── */
.napoleon-zone { padding: 4px 0; }

.napoleon-intro {
  text-align: center;
  margin-bottom: 32px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  border: 1px solid #fcd34d;
  border-radius: 12px;
}

.napoleon-quote {
  font-size: 17px;
  font-style: italic;
  color: #78350f;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}

.napoleon-sub {
  font-size: 13px;
  color: #92400e;
}

.napoleon-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .napoleon-actions { grid-template-columns: 1fr; }
}

.napoleon-btn {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1.5px solid #334155;
  border-radius: 16px;
  padding: 30px 24px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  width: 100%;
}

.napoleon-btn:hover {
  box-shadow: 0 0 22px rgba(212,160,23,0.25);
  border-color: #d4a017;
  transform: translateY(-2px);
}

.terminal-btn:hover {
  border-color: #56d364 !important;
  box-shadow: 0 0 22px rgba(86,211,100,0.22) !important;
}

.napoleon-btn-icon { font-size: 42px; line-height: 1; }
.napoleon-btn-label { color: #f1f5f9; font-size: 16px; font-weight: 700; }
.napoleon-btn-sub   { color: #64748b; font-size: 12px; }

/* ── TERMINAL HACKER ── */
.terminal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.terminal-window {
  width: 100%;
  max-width: 780px;
  background: #0d1117;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  max-height: 88vh;
}

.terminal-titlebar {
  background: #161b22;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #21262d;
  flex-shrink: 0;
}

.terminal-dots { display: flex; gap: 7px; }
.terminal-dots span {
  width: 13px; height: 13px;
  border-radius: 50%;
  display: block;
}
.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #6e7681;
  flex: 1;
  text-align: center;
  letter-spacing: 0.5px;
}

.terminal-close {
  background: none;
  border: none;
  color: #6e7681;
  cursor: pointer;
  font-size: 15px;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.15s;
}
.terminal-close:hover { color: #f0f6fc; }

.terminal-output {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 1.75;
  min-height: 300px;
  max-height: 420px;
  color: #c9d1d9;
}

.terminal-output::-webkit-scrollbar { width: 6px; }
.terminal-output::-webkit-scrollbar-track { background: #0d1117; }
.terminal-output::-webkit-scrollbar-thumb { background: #30363d; border-radius: 3px; }

.term-line { word-break: break-all; min-height: 1.4em; }

.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid #21262d;
  background: #0d1117;
  flex-shrink: 0;
}

.terminal-prompt {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #56d364;
  white-space: nowrap;
  flex-shrink: 0;
}

.terminal-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #c9d1d9;
  caret-color: #56d364;
}
.terminal-input::placeholder { color: #3d444d; }

/* ── MODE NAPOLEO ── */
.napoleon-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9998;
  background: linear-gradient(90deg, #78350f, #d97706, #78350f);
  background-size: 200% 100%;
  animation: banner-shimmer 4s linear infinite;
  color: #fef9c3;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

@keyframes banner-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.napoleon-banner button {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fef3c7;
  padding: 5px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s;
}
.napoleon-banner button:hover { background: rgba(0,0,0,0.55); }

body.napoleon-mode {
  background: #05030f !important;
}

body.napoleon-mode .main-header {
  background: linear-gradient(135deg, #1a0800, #2d1500) !important;
  border-bottom: 1px solid #d4a017 !important;
}

body.napoleon-mode .logo {
  color: #d4a017 !important;
}

body.napoleon-mode .profil-container {
  margin-top: 48px;
}

body.napoleon-mode .profil-sidebar {
  background: linear-gradient(180deg, #1a0800 0%, #100814 100%);
  border-right-color: #d4a017;
}

body.napoleon-mode .profil-sidebar h2,
body.napoleon-mode .profil-sidebar .profil-email {
  color: #fde68a;
}

body.napoleon-mode .profil-content {
  background: #0a0515;
}

body.napoleon-mode .profil-section {
  background: #0a0515;
  color: #e2d5c3;
}

body.napoleon-mode .profil-section h1,
body.napoleon-mode .profil-section h3 {
  color: #d4a017;
}

body.napoleon-mode .profil-nav-link {
  color: #a89070;
}

body.napoleon-mode .profil-nav-link:hover,
body.napoleon-mode .profil-nav-link.active {
  background: rgba(212,160,23,0.15);
  color: #fde68a;
}

.napoleon-crown {
  position: absolute;
  font-size: 38px;
  top: -22px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  animation: crown-bounce 1.2s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  line-height: 1;
}

@keyframes crown-bounce {
  from { transform: translateX(-50%) rotate(-8deg) scale(1);   }
  to   { transform: translateX(-50%) rotate(8deg)  scale(1.12); }
}

.profil-avatar { position: relative; }

.profil-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profil-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.profil-nav-link span {
  font-size: 1.25rem;
}

.profil-nav-link:hover {
  background: var(--bg-light);
  border-color: var(--border-light);
}

.profil-nav-link.active {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(255, 107, 89, 0.1));
  color: var(--primary);
  border-color: rgba(231, 76, 60, 0.2);
}

.profil-nav-link.logout {
  color: var(--primary);
  margin-top: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.375rem;
}

.profil-nav-link.logout:hover {
  background: rgba(231, 76, 60, 0.05);
}

.profil-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.profil-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-light);
}

.profil-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.btn-edit {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-edit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.35);
}

.profil-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid var(--border-light);
}

.btn-cancel {
  background: var(--bg-light);
  color: var(--text-medium);
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-cancel:hover {
  background: #e5e7eb;
}

.btn-save {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
}

.btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.35);
}

/* Responsive Profil */
@media (max-width: 968px) {
  .profil-container {
    grid-template-columns: 1fr;
  }
  
  .profil-sidebar {
    position: static;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .profil-page {
    padding: 1rem;
  }
  
  .profil-content {
    padding: 1.5rem;
  }
  
  .profil-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-cancel,
  .btn-save {
    width: 100%;
  }
}

/* ========================================
   PROFIL SECTIONS
   ======================================== */
.profil-section {
  display: none;
}

.profil-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.empty-state p {
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   DOCUMENTS AGENTS
   ======================================== */
.documents-intro {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.doc-message {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.4em;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px dashed var(--border-light);
  background: var(--bg-light);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.doc-card--uploaded {
  border-style: solid;
  border-color: #4caf50;
  background: #f6fff6;
}

.doc-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.doc-card-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.doc-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.doc-card-status {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-top: 0.25rem;
}

.doc-card-status--ok {
  background: #e6f9e8;
  color: #2e7d32;
}

.doc-card-status--missing {
  background: #fff3e0;
  color: #e65100;
}

.doc-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0.25rem 0 0;
}

.doc-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.btn-doc-upload {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.btn-doc-upload:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-doc-view {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: #e8f4fd;
  border: 1px solid #b3d9f7;
  color: #1565c0;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-doc-view:hover {
  background: #bbdefb;
}

.btn-doc-delete {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  cursor: pointer;
  background: #fff0f0;
  border: 1px solid #ffcdd2;
  color: #c62828;
  transition: background 0.2s ease;
}

.btn-doc-delete:hover {
  background: #ffcdd2;
}

@media (max-width: 600px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}

/* Formations List */
.formations-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formation-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition-normal);
}

.formation-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.formation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.formation-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.formation-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.formation-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.formation-organisme {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.formation-progress {
  margin: 1rem 0;
}

.progress-bar {
  height: 8px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width var(--transition-normal);
}

.progress-text {
  font-size: 0.85rem;
  color: var(--text-light);
}

.formation-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-secondary {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-primary {
  flex: 1;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.35);
}

/* Documents Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.document-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-normal);
}

.document-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.document-icon {
  font-size: 2.5rem;
}

.document-info {
  flex: 1;
}

.document-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.document-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.btn-download {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
}

/* Security Section */
.security-section {
  margin-bottom: 2rem;
}

.security-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.security-section small {
  color: var(--text-light);
  font-size: 0.85rem;
  display: block;
  margin-top: 0.25rem;
}

.info-box {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  font-weight: 600;
  color: var(--text-medium);
}

.info-value {
  color: var(--text-dark);
  font-weight: 500;
}

.danger-zone {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.danger-zone h3 {
  color: #991b1b;
  border-bottom-color: #fecaca;
}

.danger-zone p {
  color: #991b1b;
  margin-bottom: 1rem;
}

.btn-danger {
  background: #dc2626;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-danger:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
/* Formations Grid */
.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Documents List */
.documents-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Security Content */
.security-content {
  max-width: 600px;
}

.security-content .form-section {
  margin-bottom: 2rem;
}

.security-content .btn-primary {
  width: auto;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Forgot Password Page */
.forgot-password-header {
  text-align: center;
  margin-bottom: 2rem;
}

.forgot-password-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.forgot-password-header p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
}

.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.back-link:hover {
  color: var(--primary-dark);
  transform: translateX(-3px);
}

/* Forgot Password Container Override */
.forgot-password-container {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 650px !important;
  margin: 0 auto;
}

.forgot-password-header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.forgot-password-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .forgot-password-container {
    padding: 2rem 1.5rem;
    max-width: 100% !important;
  }
  
  .forgot-password-header h1 {
    font-size: 1.5rem;
  }
  
  .forgot-password-header p {
    font-size: 0.95rem;
  }
}

/* ========================================
   CENTRES DE FORMATION
   ======================================== */

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card.stat-success .stat-value {
  color: #10b981;
}

.stat-card.stat-warning .stat-value {
  color: #f59e0b;
}

.stat-card.stat-danger .stat-value {
  color: #ef4444;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.empty-state p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Centres List */
.centres-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.centre-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.centre-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.centre-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.centre-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
}

.centre-logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-light), #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
}

.centre-info {
  flex: 1;
}

.centre-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.centre-location {
  font-size: 1rem;
  color: var(--text-light);
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-pending {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.badge-active {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.badge-suspended {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Centre Details */
.centre-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-light);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.full {
  flex-direction: column;
  border-bottom: none;
  padding-top: 1rem;
}

.detail-row .label {
  font-weight: 600;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.detail-row .value {
  color: var(--text-dark);
  font-weight: 500;
}

.centre-description {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Centre Actions */
.centre-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.35);
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: #e5e7eb;
}

.btn-danger:hover {
  background: #b91c1c;
}

/* Form Content */
.form-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-light);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-group .required {
  color: var(--primary);
}

.current-logo {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.current-logo img {
  display: block;
  max-width: 200px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
}

/* Responsive Centres */
@media (max-width: 768px) {
  .centre-header {
    flex-direction: column;
    text-align: center;
  }
  
  .centre-info h3 {
    font-size: 1.25rem;
  }
  
  .centre-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-danger {
    width: 100%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.25rem 1rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .form-section {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}
