:root {
  --primary-color: #2c4f73;
  --secondary-color: #2874b8;
  --dark-blue: #1a3a52;
  --accent-gold: rgb(193, 163, 98);
  --light-bg: #f0f5fa;
  --text-dark: #333;
  --text-light: #666;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --border-radius: 8px;
  --border-radius-lg: 16px;
}

/* ======================================== */
/* GLOBAL STYLES */
/* ======================================== */

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

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  line-height: 1.7;
  color: var(--text-dark);
  font-size: 16px;
  background: linear-gradient(135deg, #f0f5fa 0%, #e8f1f8 100%);
  position: relative;
  z-index: 0;
  padding-top: 55px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 400%;
  height: 400%;
  background: linear-gradient(-45deg, #f0f5fa, #2874b8, #2c4f73, #1a3a52, #2874b8, #f0f5fa);
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;
  filter: blur(50px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 3rem; font-weight: 700; animation: slideInLeft 0.8s ease; }
h2 { font-size: 2rem; font-weight: 700; animation: slideInLeft 0.8s ease 0.1s backwards; }
h3 { font-size: 1.5rem; font-weight: 600; animation: slideInLeft 0.8s ease 0.2s backwards; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1.05rem; font-weight: 600; }

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

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

/* ======================================== */
/* SKIP NAVIGATION & ACCESSIBILITY */
/* ======================================== */

.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  border-radius: var(--border-radius);
}

.skip-nav:focus {
  top: 0;
}

/* ======================================== */
/* TOP BAR STICKY */
/* ======================================== */

.top-bar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.top-bar-sticky.hidden {
  display: none;
}

.top-bar-left {
  display: flex;
  gap: 2rem;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.top-bar-close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

.top-bar-cta {
  background: white;
  color: var(--primary-color);
  padding: 0.6rem 1.4rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.top-bar-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

body.has-top-bar {
  padding-top: 110px; /* devis bar 55px + header 55px */
}

body:not(.has-top-bar) {
  padding-top: 55px; /* just header */
}

/* ======================================== */
/* HEADER & NAVIGATION */
/* ======================================== */

header {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.7rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 98;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 100%;
}

/* When devis bar is visible, header sticks below it */
body.has-top-bar header {
  top: 55px;
}

/* When devis bar is hidden, header goes to top */
body:not(.has-top-bar) header {
  top: 0;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.8rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
  margin-right: auto;
  flex-shrink: 0;
}

.logo-section:hover {
  transform: scale(1.05);
}

.logo-section img {
  height: 38px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  line-height: 1.2;
}

.logo-text .main {
  font-weight: 700;
}

.logo-text .sub {
  font-size: 0.75rem;
  color: #666;
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  padding: 0.45rem 0.55rem;
  display: inline-block;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold));
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

nav a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

/* ======================================== */
/* CONTENT WRAPPER */
/* ======================================== */

.content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  background: transparent;
}

.content > section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================================== */
/* HERO SECTION */
/* ======================================== */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 500px;
}

.hero > div:first-child {
  z-index: 2;
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  animation: slideInLeft 0.8s ease;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: slideInLeft 0.8s ease 0.1s backwards;
}

.hero-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.8s ease 0.2s backwards;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 15px rgba(40, 116, 184, 0.2);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(44, 79, 115, 0.35);
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-btn2 {
  display: inline-block;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 1rem;
  font-weight: 600;
  animation: slideInLeft 0.8s ease 0.3s backwards;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-btn2:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(40, 116, 184, 0.35);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease 0.2s backwards;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 79, 115, 0.1) 0%, rgba(40, 116, 184, 0.1) 100%);
  border-radius: var(--border-radius-lg);
  z-index: 1;
  pointer-events: none;
}

.hero-right img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  object-fit: contain;
  border: 3px solid rgba(99, 102, 238, 0.4);
  box-shadow:
    0 0 20px rgba(99, 102, 238, 0.3),
    0 0 40px rgba(44, 79, 115, 0.2),
    inset 0 0 30px rgba(99, 102, 238, 0.1);
}

/* ======================================== */
/* FOUR PILLARS / GRID SECTIONS */
/* ======================================== */

.four-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 1rem 0;
  animation: fadeIn 0.8s ease;
}

.pillar {
  background: transparent;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pillar p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ======================================== */
/* CARDS - FORMATIONS */
/* ======================================== */

.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.formation-card {
  background: transparent;
  border-radius: var(--border-radius-lg);
  height: 420px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
  transition: none;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

.formation-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
}

.formation-card:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(44, 79, 115, 0.12));
}

.formation-card.flipped .formation-card-inner {
  transform: rotateY(180deg);
}

.formation-card-front,
.formation-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
}

.formation-card-front {
  background: white;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  z-index: 2;
}

.formation-card-back {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  transform: rotateY(180deg);
  overflow: visible;
  pointer-events: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.formation-card-back a,
.formation-card-back button {
  pointer-events: auto;
  cursor: pointer;
}

.formation-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 0.8rem;
}

.formation-card-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 0.9rem;
}

.formation-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.formation-note {
  color: var(--secondary-color);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(40, 116, 184, 0.08);
  border-left: 3px solid var(--secondary-color);
  border-radius: 4px;
}

.formation-card-back h3 {
  color: white;
}

.formation-card > div:first-of-type {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 1;
}

.formation-details {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.8rem;
  border-radius: var(--border-radius);
  margin: 0.8rem 0;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

.formation-details p {
  margin-bottom: 0.4rem;
  color: white;
  line-height: 1.4;
}

.formation-details p:last-child {
  margin-bottom: 0;
}

.formation-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

/* ======================================== */
/* MODERN BUTTONS */
/* ======================================== */

/* Icon Button Styles */
.btn-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

/* Download Button */
.btn-pdf {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 0;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-pdf::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--accent-gold);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-pdf:hover::before {
  scale: 3;
}

.btn-pdf:hover {
  color: #212121;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.btn-pdf:active {
  scale: 1;
}

/* Contact Button */
.btn-contact {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 0;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--primary-color);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-contact:hover::before {
  scale: 3;
}

.btn-contact:hover {
  color: white;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(44, 79, 115, 0.4);
}

.btn-contact:active {
  scale: 1;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin: 0.5rem;
}

/* CUSTOM SUBMIT BUTTON - UIverse Style */
.submit-btn {
  background: var(--primary-color);
  border-radius: 0.5em;
  border: solid 2px var(--secondary-color);
  cursor: pointer;
  font-size: 18px;
  padding: 0.7em 1.7em;
  outline: none;
  user-select: none;
  color: var(--accent-gold);
  font-weight: 700;
  font-family: 'Libre Baskerville', Georgia, serif;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 15px rgba(44, 79, 115, 0.2);
}

.submit-btn::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 0.6s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 116, 184, 0.35);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: scale(0.98);
}

.cta-btn:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cta-btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.cta-btn-secondary:hover {
  background: var(--secondary-color);
  color: white;
}

/* ======================================== */
/* PATTERN BACKGROUNDS - REMOVED */
/* ======================================== */

.pattern-bg {
  background: transparent;
}

/* ======================================== */
/* SOCIAL MEDIA ICONS - STYLIZED */
/* ======================================== */

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  perspective: 1000px;
}

.social-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 1.5rem 1rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: 0 4px 15px rgba(44, 79, 115, 0.12);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(40, 116, 184, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: 0;
}

.social-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 12px 30px rgba(40, 116, 184, 0.25);
  border-color: var(--secondary-color);
}

.social-card:hover::before {
  left: 100%;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.8rem;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(44, 79, 115, 0.1) 0%, rgba(40, 116, 184, 0.1) 100%);
  border-radius: var(--border-radius-lg);
  border: 2px solid rgba(44, 79, 115, 0.2);
  position: relative;
  z-index: 1;
}

.social-icon-link:hover {
  background: linear-gradient(135deg, rgba(40, 116, 184, 0.2) 0%, rgba(40, 116, 184, 0.15) 100%);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 20px rgba(40, 116, 184, 0.2);
}

.social-icon-svg {
  width: 28px;
  height: 28px;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(44, 79, 115, 0.1));
}

.social-card:hover .social-icon-svg {
  transform: scale(1.25) rotate(5deg);
  color: var(--secondary-color);
  filter: drop-shadow(0 4px 12px rgba(40, 116, 184, 0.3));
}

.social-card h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.social-card p {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* ======================================== */
/* FOOTER */
/* ======================================== */

footer {
  background: var(--primary-color);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-left {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 3rem;
}

.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section {
  padding: 0;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-bottom-left img {
  height: 40px;
  object-fit: contain;
}

.footer-bottom-center {
  flex: 1;
  text-align: right;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-bottom-right {
  font-size: 0.85rem;
  opacity: 0.8;
}

.qualiopi-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.qualiopi-box:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.qualiopi-box img {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.qualiopi-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.qualiopi-content h5 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.qualiopi-content p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.85;
  color: #ffffff;
}

.qualiopi-link {
  color: #7bc5e6;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.2rem;
}

.qualiopi-link:hover {
  color: #9dd9f0;
  text-decoration: underline;
}

/* ======================================== */
/* ANIMATIONS */
/* ======================================== */

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px);
  }
  100% {
    transform: translateX(0);
  }
}

/* ======================================== */
/* PAGE HEADER - CENTERED & ANIMATED */
/* ======================================== */

.page-header {
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.page-header h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 2rem;
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    gap: 0.6rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .formations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .four-pillars {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-right {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-center {
    order: 3;
    width: 100%;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .top-bar-sticky {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  /* Hide hamburger menu on mobile */
  .hamburger-menu {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-btn,
  .hero-btn2 {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  .formations-grid {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }

  .formation-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .formation-actions a {
    width: 100%;
  }

  .btn-pdf,
  .btn-contact {
    width: 100%;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-bottom-left {
    flex-direction: column;
    width: 100%;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }
}

/* ======================================== */
/* CATALOGUES & SPECIAL SECTIONS */
/* ======================================== */

.catalogues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 1rem 0;
  animation: fadeIn 0.8s ease;
}

.catalogue-card {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(224, 224, 224, 0.3);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.catalogue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.catalogue-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.catalogue-card:hover::before {
  transform: scaleX(1);
}

.catalogue-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.catalogue-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.catalogue-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.9rem;
}

.catalogue-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ======================================== */
/* FOUNDER & ENGINEERING SECTIONS */
/* ======================================== */

.engineering-section {
  background: transparent;
  padding: 2rem;
  margin: 1rem 0;
}

.engineering-card {
  background: var(--light-bg);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  max-width: 1200px;
  margin: 0 auto;
  animation: slideInLeft 0.8s ease;
}

.engineering-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.engineering-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.engineering-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--secondary-color);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.service-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ======================================== */
/* EVENTS & PARTNERS SECTIONS */
/* ======================================== */

.events-section {
  padding: 2rem;
  background: transparent;
  margin: 1rem 0;
}

.event-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--secondary-color);
  max-width: 800px;
  margin: 1.5rem auto;
  animation: slideInLeft 0.8s ease;
}

.event-date {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.event-format {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.event-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.event-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.event-audience {
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin: 1rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.event-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.event-btn {
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  flex: 1;
  min-width: 160px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.event-btn-primary {
  background: var(--secondary-color);
  color: white;
}

.event-btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.event-btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.event-btn-secondary:hover {
  background: var(--secondary-color);
  color: white;
}

.partners-section {
  padding: 2rem;
  background: transparent;
  margin: 1rem 0;
  border-radius: var(--border-radius-lg);
}

.partners-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.partners-intro h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.partners-intro p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.partner-category {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.partner-category h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.partner-logo-placeholder {
  background: var(--light-bg);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ======================================== */
/* NETWORK & SOCIAL SECTIONS */
/* ======================================== */

.network-section {
  padding: 2rem;
  background: transparent;
  margin: 1rem 0;
}

.network-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.network-intro h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.network-intro p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.network-form {
  max-width: 600px;
  margin: 2rem auto;
  display: grid;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(40, 116, 184, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.network-btn {
  background: var(--secondary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.network-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0.4rem 0;
  line-height: 1.4;
}

/* ======================================== */
/* WAVE DIVIDER */
/* ======================================== */

.wave-divider {
  position: relative;
  width: 100%;
  height: 40px;
  background: transparent;
  overflow: hidden;
  margin: 0;
}
}

.wave-animated {
  width: 100%;
  height: 100%;
}

/* ======================================== */
/* FAQ SECTION */
/* ======================================== */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border-left: 3px solid var(--secondary-color);
  transition: var(--transition);
  animation: scaleIn 0.8s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ======================================== */
/* VALUE PROPOSITIONS - COMPACT */
/* ======================================== */

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 1.5rem auto;
  background: var(--light-bg);
  border-radius: var(--border-radius-lg);
}

.value-prop {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.value-prop h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.value-prop p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ======================================== */
/* FILTERS SECTION */
/* ======================================== */

.filters {
  padding: 1.5rem 2rem;
  background: white;
  border-bottom: 1px solid #e0e0e0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.filters h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.filters > div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filters select,
.filters input,
.filters button {
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}

.filters select:focus,
.filters input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(40, 116, 184, 0.1);
}

.filters button {
  background: var(--secondary-color);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.filters button:hover {
  background: var(--primary-color);
}

/* ======================================== */
/* CONTACT FORM - PROFESSIONAL */
/* ======================================== */

.contact-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(40, 116, 184, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
}

.form-submit {
  background: var(--secondary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.form-submit:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-details {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h4 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info p {
  color: var(--text-dark);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ======================================== */
/* PROFILE & PROCESS CARDS */
/* ======================================== */

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.profile-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(44, 79, 115, 0.08);
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  border-left-color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(44, 79, 115, 0.12);
}

.profile-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.profile-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* PROCESS STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.step {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(44, 79, 115, 0.12);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}

.step p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ======================================== */
/* MODERN CARD STYLING - Content Sections */
/* ======================================== */

.content-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  text-align: center;
}

.content-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 2px solid #e8f1f8;
  box-shadow: 0 8px 24px rgba(44, 79, 115, 0.08);
  margin: 1rem auto;
  max-width: 900px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(40, 116, 184, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.content-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary-color);
  box-shadow: 0 12px 32px rgba(44, 79, 115, 0.15);
}

.content-card h2 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.content-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Feature Grid for Content Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: white;
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(40, 116, 184, 0.1);
  transform: translateY(-3px);
}

.feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Box Grid for multiple content items */
.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.box-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.box-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(44, 79, 115, 0.12);
  border-left-color: var(--accent-gold);
}

.box-item h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.box-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA SECTION - CENTERED */
.cta-section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(44, 79, 115, 0.05) 0%, rgba(40, 116, 184, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(40, 116, 184, 0.1);
}

.cta-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-height: 100px;
  overflow: visible;
}

/* CTA Buttons - Always Centered */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-btn {
  background: var(--secondary-color);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 15px rgba(40, 116, 184, 0.2);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-btn:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(44, 79, 115, 0.35);
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.cta-btn.secondary:hover {
  background: var(--secondary-color);
  color: white;
}

/* ======================================== */
/* PARTNER CARDS - ENTERPRISE PAGE */
/* ======================================== */

.partner-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.partner-type {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 15px rgba(44, 79, 115, 0.1);
  border: 1px solid rgba(44, 79, 115, 0.08);
  animation: fadeInUp 0.8s ease-out;
}

.partner-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-type:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 35px rgba(44, 79, 115, 0.2);
  border-color: rgba(40, 116, 184, 0.3);
}

.partner-type:hover::before {
  transform: scaleX(1);
}

.partner-type h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.partner-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-type li {
  color: var(--text-light);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.partner-type li:last-child {
  border-bottom: none;
}

.partner-type li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.partner-type:hover li::before {
  opacity: 1;
  transform: translateX(0);
}

/* ======================================== */
/* PARTNERSHIP PROCESS STEPS */
/* ======================================== */

.partnership-process {
  margin-top: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  background: linear-gradient(135deg, rgba(44, 79, 115, 0.05) 0%, rgba(40, 116, 184, 0.05) 100%);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.8s ease-out;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(40, 116, 184, 0.15);
  border-left-color: var(--primary-color);
}

.step h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ======================================== */
/* CATALOGUES & DOMAIN CARDS - UIverse Style */
/* ======================================== */

.catalogue-grid,
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.catalogue-card,
.domain-card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid white;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out;
}

.catalogue-card:hover,
.domain-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.6s ease-in-out;
}

.catalogue-card .card-background {
  background: linear-gradient(135deg, #2c4f73 0%, #2874b8 100%);
}

.domain-card .card-background {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.catalogue-card:nth-child(2) .card-background {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.catalogue-card:nth-child(3) .card-background {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.domain-card:nth-child(2) .card-background {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.domain-card:nth-child(3) .card-background {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  color: white;
  z-index: 2;
  transition: all 0.6s ease-in-out;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-in-out;
}

.catalogue-card:hover .card-action,
.domain-card:hover .card-action {
  opacity: 1;
  transform: translateX(0);
}

.card-action::after {
  content: '→';
  transition: all 0.3s ease;
}

.card-action:hover::after {
  transform: translateX(5px);
}

/* ======================================== */
/* SOCIAL MEDIA CARDS - UIverse Fireant Style */
/* ======================================== */

.social-section {
  text-align: center;
  margin: 1.5rem 0;
  padding: 1rem 0;
}

.social-section h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.social-card {
  position: relative;
  width: 100%;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 0.8rem;
  text-align: center;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out;
  min-height: 130px;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2874b8 0%, #2c4f73 100%);
  z-index: 0;
  transition: all 0.6s ease-in-out;
}

.social-card:nth-child(2)::before {
  background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
}

.social-card:nth-child(3)::before {
  background: linear-gradient(135deg, #2c4f73 0%, #1a3a52 100%);
}

.social-card:nth-child(4)::before {
  background: linear-gradient(135deg, #2874b8 0%, #2c4f73 100%);
}

.social-card:nth-child(5)::before {
  background: linear-gradient(135deg, #1a3a52 0%, #2874b8 100%);
}

.social-icon-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.social-icon-svg {
  width: 22px;
  height: 22px;
  fill: white;
  transition: all 0.6s ease-in-out;
}

.social-card h4 {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.social-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.4s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.social-card:hover .social-icon-svg {
  transform: scale(1.2) rotate(-10deg);
  filter: brightness(1.2);
}

.social-card:hover .social-link {
  background: white;
  color: var(--primary-color);
  transform: scale(1.05);
}

/* ======================================== */
/* PROGRAMS / FORMATIONS GRID */
/* ======================================== */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 1rem 0;
}

.program-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.8s ease-out;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.program-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.program-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-duration {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.program-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.program-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================== */
/* VALUES & INTERVENTION CARDS - ABOUT PAGE */
/* ======================================== */

.values-grid,
.intervention-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.value-card,
.area {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease-out;
}

.value-card::before,
.area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-card:hover,
.area:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-color);
  box-shadow: 0 12px 32px rgba(44, 79, 115, 0.15);
}

.value-card:hover::before,
.area:hover::before {
  transform: scaleX(1);
}

.value-card h4,
.area h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p,
.area p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.founder-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
}

.founder-image {
  flex-shrink: 0;
}

.founder-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease;
}

.founder-text {
  flex: 1;
}

.founder-text h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.founder-quote {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  border-left: 4px solid var(--secondary-color);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  line-height: 1.8;
}

.founder-attribution {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .founder-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .founder-image {
    flex-shrink: 0;
  }

  .founder-text {
    flex: 1;
    width: 100%;
  }

  .founder-quote {
    border-left: none;
    border-top: 4px solid var(--secondary-color);
    padding-left: 0;
    padding-top: 1rem;
    text-align: center;
  }
}

/* ======================================== */
/* UTILITY CLASSES */
/* ======================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.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; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

/* ======================================== */
/* SOCIAL MEDIA CARDS */
/* ======================================== */

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.social-card {
  position: relative;
  padding: 2rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.social-card.linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #0d47a1 100%);
}

.social-card.instagram {
  background: linear-gradient(135deg, #fd1d1d 0%, #833ab4 50%, #fd1d1d 100%);
}

.social-card.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%);
}

.social-card.email {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c92a2a 100%);
}

.social-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.social-card:hover .social-arrow {
  transform: translateX(4px);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.social-card:hover .social-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(10deg);
}

.social-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.social-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0;
  color: white;
}

.social-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.4;
}

.social-arrow {
  display: inline-block;
  font-size: 1.2rem;
  margin-top: auto;
  transition: transform 0.3s ease;
}

/* ======================================== */
/* DIAGNOSTIC PROCESS - 5 STEPS */
/* ======================================== */

.diagnostic-process {
  padding: 2rem;
  background: linear-gradient(135deg, #f5f9fc 0%, #e8f1f8 100%);
  border-radius: 12px;
  margin: 2rem 0;
}

.diagnostic-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(44, 79, 115, 0.15);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c4f73 0%, #2874b8 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2c4f73 0%, #2874b8 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(44, 79, 115, 0.2);
}

.step h4 {
  color: var(--primary-color);
  font-size: 1.05rem;
  margin: 0.8rem 0 0.5rem 0;
}

.step p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ======================================== */
/* BENEFITS GRID */
/* ======================================== */

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.benefit {
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  border-radius: 10px;
  border-left: 4px solid #2874b8;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.6s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(44, 79, 115, 0.12);
  border-left-color: #1a3a52;
}

.benefit h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ======================================== */
/* OFFER CARDS */
/* ======================================== */

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.offer-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.6s ease-out;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(44, 79, 115, 0.15);
}

.offer-header {
  background: linear-gradient(135deg, #2c4f73 0%, #2874b8 100%);
  color: white;
  padding: 1.5rem;
}

.offer-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.offer-content {
  padding: 1.5rem;
}

.offer-content p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.offer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-content li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
  position: relative;
}

.offer-content li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2874b8;
  font-weight: bold;
}

/* ======================================== */
/* PARTNER TYPES - ENTREPRISE PAGE */
/* ======================================== */

.partner-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.partner-type {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  padding: 1.5rem;
  border-radius: 10px;
  border-top: 4px solid #2874b8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.6s ease-out;
}

.partner-type:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(44, 79, 115, 0.15);
  border-top-color: #1a3a52;
}

.partner-type h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.partner-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-type li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
}

.partner-type li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2874b8;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ======================================== */
/* PARTNERSHIP PROCESS */
/* ======================================== */

.partnership-process {
  background: linear-gradient(135deg, #f5f9fc 0%, #e8f1f8 100%);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.partnership-process .step {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.partnership-process .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(44, 79, 115, 0.15);
}

.partnership-process .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2c4f73 0%, #2874b8 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.partnership-process .step:hover::before {
  transform: scaleX(1);
}

.partnership-process .step h4 {
  color: var(--primary-color);
  font-size: 1.05rem;
  margin: 0.5rem 0;
}

.partnership-process .step p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ======================================== */
/* FEATURED PARTNER */
/* ======================================== */

.featured-partner {
  background: linear-gradient(135deg, #2c4f73 0%, #2874b8 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(44, 79, 115, 0.2);
  animation: fadeInUp 0.6s ease-out;
}

.featured-partner h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.featured-partner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.8rem 0;
}

.featured-partner a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.featured-partner a:hover {
  opacity: 0.8;
}

/* ======================================== */
/* PROFILE CARDS - RECRUTEMENT PAGE */
/* ======================================== */

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.profile-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #2874b8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.6s ease-out;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(44, 79, 115, 0.15);
  border-left-color: #1a3a52;
}

.profile-card h4 {
  color: var(--primary-color);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.profile-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ======================================== */
/* PROCESS SECTION */
/* ======================================== */

.process {
  background: linear-gradient(135deg, #f5f9fc 0%, #e8f1f8 100%);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.process h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.process .step {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.6s ease-out;
}

.process .step:nth-child(1) { animation-delay: 0.1s; }
.process .step:nth-child(2) { animation-delay: 0.2s; }
.process .step:nth-child(3) { animation-delay: 0.3s; }
.process .step:nth-child(4) { animation-delay: 0.4s; }
.process .step:nth-child(5) { animation-delay: 0.5s; }
.process .step:nth-child(6) { animation-delay: 0.6s; }

.process .step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(44, 79, 115, 0.12);
}

.process .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2c4f73 0%, #2874b8 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  box-shadow: 0 3px 10px rgba(44, 79, 115, 0.18);
}

.process .step h4 {
  color: var(--primary-color);
  font-size: 0.95rem;
  margin: 0.6rem 0 0.4rem 0;
}

.process .step p {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

/* ======================================== */
/* EVENT CARDS - WEBINAIRES PAGE */
/* ======================================== */

.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.event-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.6s ease-out;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(44, 79, 115, 0.15);
}

.event-card-header {
  background: linear-gradient(135deg, #2c4f73 0%, #2874b8 100%);
  color: white;
  padding: 1.5rem;
}

.event-card-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.event-card-content {
  padding: 1.5rem;
}

.event-card-content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.5rem 0;
}

.event-card-content p:first-child {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.98rem;
}

.event-details {
  background: #f5f9fc;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.event-details p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0.4rem 0;
}

.event-details p strong {
  color: var(--primary-color);
}

/* ======================================== */
/* QUALITY PAGE - COMMITMENT BOXES */
/* ======================================== */

.commitment-box {
  background: linear-gradient(135deg, #2c4f73 0%, #2874b8 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  animation: fadeInUp 0.6s ease-out;
  box-shadow: 0 6px 16px rgba(44, 79, 115, 0.15);
}

.commitment-box h3 {
  color: white;
  margin-top: 0;
  font-size: 1.1rem;
}

.commitment-box p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.8rem 0 0 0;
}

/* ======================================== */
/* QUALITY PILLARS */
/* ======================================== */

.quality-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.quality-pillars .pillar {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  padding: 1.5rem;
  border-radius: 10px;
  border-top: 4px solid #2874b8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.6s ease-out;
}

.quality-pillars .pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(44, 79, 115, 0.15);
  border-top-color: #1a3a52;
}

.quality-pillars .pillar h4 {
  color: var(--primary-color);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.quality-pillars .pillar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-pillars .pillar li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
  position: relative;
}

.quality-pillars .pillar li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2874b8;
  font-weight: bold;
}

/* ======================================== */
/* CONTACT SECTION */
/* ======================================== */

.contact-section {
  background: #f0f5fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  border-left: 4px solid #2874b8;
  animation: fadeInUp 0.6s ease-out;
}

.contact-section h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.05rem;
}

.contact-section p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0.6rem 0;
}

.contact-section a {
  color: #2874b8;
  text-decoration: underline;
  font-weight: 500;
}

/* ======================================== */
/* COMPACT DETAIL CARDS */
/* ======================================== */

.detail-card {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid #2874b8;
  box-shadow: 0 2px 6px rgba(44, 79, 115, 0.08);
  transition: all 0.3s ease;
}

.detail-card:hover {
  box-shadow: 0 4px 12px rgba(44, 79, 115, 0.12);
  transform: translateX(4px);
}

.detail-card h4 {
  color: #2874b8;
  font-size: 0.95rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.detail-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.3rem 0;
}

.detail-card a {
  color: #2874b8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
}

.detail-card a:hover {
  text-decoration: underline;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

.detail-card ul li {
  font-size: 0.85rem;
  color: #666;
  padding: 0.25rem 0;
}

.detail-card ul li a {
  display: inline-block;
}

.info-box {
  background: linear-gradient(135deg, #f0f5fa 0%, #e8f1f8 100%);
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border-left: 3px solid #2874b8;
}

.info-box h3 {
  color: #2874b8;
  font-size: 1rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.info-box p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.4rem 0;
}

.info-box a {
  color: #2874b8;
  text-decoration: none;
}
