@charset "UTF-8";
:root {
  --primary-pink: #d9ff3d;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: #1a1a1a;
  --text-white: #1a1a1a;
  --text-gray: #a0a0a0;
  --border-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 640px) {
  .audit-cta {
    display: block;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .hide-desktop {
    display: none !important;
  }
}

.show-mobile {
  display: none !important;
}
@media (max-width: 640px) {
  .show-mobile {
    display: block !important;
  }
}
.show-tablet {
  display: none !important;
}
@media (max-width: 768px) {
  .show-tablet {
    display: block !important;
  }
}

.img-sociaux {
  display: flex;
  gap: 15px;
  position: absolute;
  z-index: 3;
  padding: 1rem 0 1rem 1rem;
}
.img-sociaux i {
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  color: var(--primary-pink);
}

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

html {
  overflow-x: hidden;
}

body {
  background-color: #050505;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background: #d9ff3d;
  color: #1a1a1a;
}

::-moz-selection {
  background: #d9ff3d;
  color: #1a1a1a;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #d9ff3d;
  border-radius: 50%;
}
::-webkit-scrollbar-thumb:hover {
  background: #c4eb2a;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

h1 {
  font-size: 4rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #a0a0a0;
}

strong, b {
  font-weight: 700;
  color: #ffffff;
}

em, i {
  font-style: italic;
}

blockquote {
  border-left: 4px solid #d9ff3d;
  padding: 1rem 2rem;
  margin: 2rem 0;
  background: #1a1a1a;
  font-style: italic;
  color: #a0a0a0;
}

code {
  font-family: "Courier New", monospace;
  background: #1a1a1a;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: #d9ff3d;
}

pre {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
}
pre code {
  background: none;
  padding: 0;
  color: #a0a0a0;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}

header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease ease;
}
header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: invert(1) brightness(0.8) contrast(0.7);
  transition: transform 0.3s ease ease;
}
.logo img:hover {
  transform: scale(1.05);
}

.right {
  flex-shrink: 0;
}

.cta {
  display: inline-block;
  background: #111;
  color: #ffffff;
  padding: 10px 16px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  transition: all 0.3s ease ease;
}
.cta:hover {
  background: #d9ff3d;
  color: #1a1a1a;
}

#menu-toggle {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 2rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  justify-content: space-between;
  position: relative;
}

.logo {
  flex-shrink: 0;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
nav a {
  color: #a0a0a0;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-top: 20px;
  transition: all 0.3s ease ease;
}
nav a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.25s ease;
}
nav a:hover, nav a.active {
  color: #d9ff3d;
}
nav a:hover::after, nav a.active::after {
  width: 100%;
  background: #d9ff3d;
}

.right {
  flex-shrink: 0;
  margin-left: auto;
}
.right .cta {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #d9ff3d;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease ease;
}
.right .cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

label.menu-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 200;
  position: fixed;
  right: 1.5rem;
  top: 12px;
  bottom: 0;
  margin: auto 0;
  overflow: hidden;
}
label.menu-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}
label.menu-toggler span:nth-child(2) {
  width: 65%;
}

.nav-drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
}

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  width: 100%;
  box-sizing: border-box;
}
.nav-drawer-inner a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a0a0a0;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease ease;
}
.nav-drawer-inner a::before {
  content: "";
  display: block;
  width: 3px;
  height: 0;
  background: #d9ff3d;
  border-radius: 2px;
  flex-shrink: 0;
  transition: height 0.2s ease;
}
.nav-drawer-inner a:hover {
  color: #ffffff;
}
.nav-drawer-inner a:hover::before {
  height: 1.1em;
}
.nav-drawer-inner .nav-drawer-cta {
  margin-top: 1.5rem;
  justify-content: center;
  background: #d9ff3d;
  color: #0a0a0a !important;
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  border-bottom: none;
  width: 100%;
  box-sizing: border-box;
}
.nav-drawer-inner .nav-drawer-cta::before {
  display: none;
}
.nav-drawer-inner .nav-drawer-cta:hover {
  color: #0a0a0a !important;
  opacity: 0.85;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

#menu-toggle:checked ~ .nav-drawer {
  max-height: 500px;
}
#menu-toggle:checked ~ .nav-overlay {
  display: block;
}
#menu-toggle:checked ~ header label.menu-toggler span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#menu-toggle:checked ~ header label.menu-toggler span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#menu-toggle:checked ~ header label.menu-toggler span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  label.menu-toggler {
    display: flex;
  }
  nav {
    display: none;
  }
  .right {
    display: none;
  }
}
.footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 3rem 2rem;
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-pink);
}
.footer-brand p {
  color: var(--text-gray);
  line-height: 1.7;
}
.footer h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #ffffff;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 0.75rem;
}
.footer a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease ease;
}
.footer a:hover {
  color: var(--primary-pink);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.audit-cta,
.cta-final-button, .btn-admin, .btn-secondary, .btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
}

.btn-primary {
  background: #d9ff3d;
  color: #1a1a1a;
}
.btn-primary:hover {
  background: #c4eb2a;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #d9ff3d;
  color: #d9ff3d;
}
.btn-secondary:hover {
  background: #d9ff3d;
  color: #1a1a1a;
}

.btn-admin {
  background: var(--primary-pink);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--primary-pink);
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.btn-admin::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-admin:hover::before {
  width: 300px;
  height: 300px;
}
.btn-admin:hover {
  transform: translateY(-3px);
}

.card-button {
  width: 100%;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  text-align: center;
}
.card-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.audit-cta,
.cta-final-button {
  padding: 1.2rem 3rem;
  background: var(--primary-pink);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--primary-pink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(217, 255, 61, 0.3);
  position: relative;
  overflow: hidden;
}
.audit-cta::before,
.cta-final-button::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;
}
.audit-cta:hover::before,
.cta-final-button:hover::before {
  width: 300px;
  height: 300px;
}
.audit-cta:hover,
.cta-final-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(213, 183, 20, 0.73);
}

.item-formation-cta,
.page-formation-cta {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--primary-pink);
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease ease;
  display: inline-block;
}
.item-formation-cta:hover,
.page-formation-cta:hover {
  background: var(--primary-pink);
  color: var(--text-white);
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-gray);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary-pink);
  color: var(--primary-pink);
}

.page-share-btn {
  padding: 0.75rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease ease;
  font-size: 0.9rem;
}
.page-share-btn:hover {
  border-color: var(--primary-pink);
  background: var(--primary-pink);
  color: var(--text-white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.btn-md {
  padding: 1rem 1.5rem;
  font-size: 1rem;
}
.btn-lg {
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
}

.btn {
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  transition: background 0.2s ease;
  display: inline-block;
}
.btn-view {
  background: #4c8bf5;
  color: #ffffff;
}
.btn-edit {
  background: #e0a800;
  color: #000;
}
.btn-delete {
  background: #d9534f;
  color: #ffffff;
}
.btn:hover {
  filter: brightness(1.15);
}

.formation-card {
  flex: 1;
  min-width: 320px;
  max-width: 400px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.formation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  z-index: 0;
  border-radius: 20px;
}
.formation-card:hover {
  transform: translateY(-5px);
}

.card-1 {
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, #1e2530 0%, #2a3441 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.card-1:hover {
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}
.card-2 {
  background: linear-gradient(135deg, #4C454F 0%, #4C454F 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.card-2:hover {
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}
.card-3 {
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, #525A66 0%, #525A66 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.card-3:hover {
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.05);
}
.card-content {
  position: relative;
  z-index: 1;
}
.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.5px;
}
.card-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.audit-card {
  background: #242428;
  border: 1px solid rgba(91, 108, 9, 0.05);
  padding: 2.5rem;
  transition: all 0.3s ease ease;
  position: relative;
  overflow: hidden;
}
.audit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-pink), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease ease;
}
.audit-card:hover {
  border-color: rgba(143, 130, 62, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.audit-card:hover::before {
  transform: scaleX(1);
}

.card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-pink);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease ease;
}
.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-pink);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.strength-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease ease;
}
.strength-card:hover {
  border-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.strength-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.strength-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.strength-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: #c4eb2a;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c4eb2a, #d9ff3d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.author-info p {
  font-size: 0.85rem;
  color: #a0a0a0;
}

.blog-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.blog-card:hover .blog-card-image::before {
  opacity: 1;
}
.blog-card-image {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  position: relative;
  overflow: hidden;
}
.blog-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease ease;
}
.blog-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}
.blog-card-content p {
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: auto;
  flex: 1;
}

.page-formation-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease ease;
}
.page-formation-card:hover {
  border-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.page-formation-image {
  height: 250px;
  background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.page-formation-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 40px);
}
.page-formation-content {
  padding: 2.5rem;
}
.page-formation-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #a0a0a0;
}
.page-formation-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-formation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.page-formation-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c4eb2a;
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: all 0.3s ease ease;
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease ease;
}
.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.platform-card:hover::before {
  opacity: 0.08;
}

.platform-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.platform-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a0a0a0;
  position: relative;
  z-index: 1;
}
.platform-youtube .platform-icon {
  background: #ef4444;
  color: white;
}
.platform-youtube::before {
  background: #ef4444;
}
.platform-youtube:hover {
  border-color: rgba(239, 68, 68, 0.5);
}
.platform-spotify .platform-icon {
  background: #22c55e;
  color: white;
}
.platform-spotify::before {
  background: #22c55e;
}
.platform-spotify:hover {
  border-color: rgba(34, 197, 94, 0.5);
}
.platform-deezer .platform-icon {
  background: #a855f7;
  color: white;
}
.platform-deezer::before {
  background: #a855f7;
}
.platform-deezer:hover {
  border-color: rgba(168, 85, 247, 0.5);
}
.platform-apple .platform-icon {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
}
.platform-apple::before {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.platform-apple:hover {
  border-color: rgba(168, 85, 247, 0.5);
}

.linkedin-post {
  background: var(--darker-bg);
  border: 1px solid var(--border-color);
  padding: 2rem;
  transition: all 0.3s ease ease;
  position: relative;
}
.linkedin-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #c4eb2a, #d9ff3d);
  transform: scaleY(0);
  transition: transform 0.3s ease ease;
}
.linkedin-post:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}
.linkedin-post:hover::before {
  transform: scaleY(1);
}
.linkedin-post p {
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.linkedin-post .article-meta {
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.linkedin-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.linkedin-icon {
  width: 40px;
  height: 40px;
  background: #0077b5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}
.linkedin-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.linkedin-info span {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.card-admin {
  margin: 1rem;
  border: white solid 1px;
  padding: 1rem;
  text-align: center;
}

.page-contact {
  background-color: #0a0a0a;
}

.hero-page-contact {
  padding: 5rem 0 3rem;
  text-align: center;
}
.hero-page-contact-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-page-contact-title span {
  color: #c4eb2a;
}
.hero-page-contact-subtitle {
  font-size: 1.25rem;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto;
}

.content-section-page-contact {
  padding: 3rem 0;
}

.content-grid-page-contact {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.content-block-page-contact {
  background: linear-gradient(135deg, #242428 0%, #1a1a1a 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.content-block-page-contact h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  color: #c4eb2a;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.content-block-page-contact p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 1rem;
}
.content-block-page-contact p:last-child {
  margin-bottom: 0;
}

.cta-section-page-contact {
  background: #1a1a1a;
  padding: 4rem 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 4rem;
}

.cta-title-page-contact {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  font-weight: 700;
}

.cta-grid-page-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-card-page-contact {
  background: linear-gradient(135deg, #1e2530 0%, #2a3441 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease ease;
}
.cta-card-page-contact:hover {
  transform: translateY(-5px);
  border-color: #c4eb2a;
  box-shadow: 0 20px 60px rgba(217, 255, 61, 0.15);
}
.cta-card-page-contact h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #c4eb2a;
  font-weight: 700;
}
.cta-card-page-contact p {
  color: #a0a0a0;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.btn-page-contact {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-page-contact-primary {
  background-color: #c4eb2a;
  color: #050505;
}
.btn-page-contact-primary:hover {
  background-color: #c4eb2a;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(217, 255, 61, 0.3);
}
.btn-page-contact-secondary {
  background-color: transparent;
  color: #c4eb2a;
  border: 2px solid #c4eb2a;
}
.btn-page-contact-secondary:hover {
  background-color: #c4eb2a;
  color: #050505;
  transform: scale(1.05);
}

.form-container {
  background-color: #1a1a1a;
}

.form-side {
  padding: 4rem 3rem;
}
.form-header {
  margin-bottom: 2.5rem;
}
.form-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #c4eb2a;
}
.form-subtitle {
  color: #a0a0a0;
  font-size: 0.95rem;
}
.form-group {
  margin-bottom: 1.75rem;
}
.form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: whitesmoke;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease ease;
  outline: none;
  border-radius: 4px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #c4eb2a;
  box-shadow: 0 0 0 3px rgba(255, 22, 84, 0.1);
}
.form-input::placeholder, .form-select::placeholder, .form-textarea::placeholder {
  color: white;
  opacity: 0.5;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  background-color: #1a1a1a;
}
.form-checkbox, .form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.form-checkbox input, .form-radio input {
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.form-checkbox label, .form-radio label {
  cursor: pointer;
  margin: 0;
}

.input-error {
  border-color: #ef4444 !important;
}
.input-success {
  border-color: #22c55e !important;
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: block;
}

.help-text {
  color: #a0a0a0;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: block;
}

.input-group {
  display: flex;
  align-items: stretch;
}
.input-group .form-input, .input-group .form-textarea, .input-group .form-select {
  border-radius: 0;
}
.input-group .form-input:first-child, .input-group .form-textarea:first-child, .input-group .form-select:first-child {
  border-radius: 4px 0 0 4px;
}
.input-group .form-input:last-child, .input-group .form-textarea:last-child, .input-group .form-select:last-child {
  border-radius: 0 4px 4px 0;
}
.input-group .input-addon {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
}
.input-group .input-addon:first-child {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
.input-group .input-addon:last-child {
  border-radius: 0 4px 4px 0;
  border-left: 0;
}

.search-form {
  position: relative;
}
.search-form input {
  padding-right: 3rem;
}
.search-form button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #a0a0a0;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.search-form button:hover {
  color: #c4eb2a;
}

.file-input-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.file-input-label {
  display: inline-block;
  padding: 1rem 2rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.file-input-label:hover {
  border-color: #c4eb2a;
}
.file-input input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}
@media (max-width: 640px) {
  .form-actions {
    flex-direction: column;
  }
  .form-actions button,
  .form-actions a {
    width: 100%;
  }
}

.invalid-feedback,
ul.form-error-message,
.form-error-icon + .form-error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: block;
  list-style: none;
  padding: 0;
}
.invalid-feedback li,
ul.form-error-message li,
.form-error-icon + .form-error-message li {
  color: #ef4444;
  margin-bottom: 0.25rem;
  padding-left: 0;
}
.invalid-feedback li::before,
ul.form-error-message li::before,
.form-error-icon + .form-error-message li::before {
  content: "⚠ ";
  margin-right: 0.25rem;
}

.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
  border-color: #ef4444 !important;
}
.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus,
.form-select.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}
.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #1e1e1e;
  color: #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}
.admin-table th,
.admin-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #333;
}
.admin-table th {
  background: #2b2b2b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.admin-table tr {
  transition: background 0.3s ease ease;
}
.admin-table tr:hover {
  background: #2a2a2a;
}
.admin-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .admin-table {
    font-size: 12px;
  }
  .admin-table th,
  .admin-table td {
    padding: 8px 10px;
  }
}

.thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #444;
}

.no-img {
  color: #777;
  font-style: italic;
}

.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.empty {
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-style: italic;
}

.table-striped tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.table-bordered th,
.table-bordered td {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.table-hover tbody tr {
  transition: background 0.3s ease ease;
}
.table-hover tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}
.table-dark {
  background: #0a0a0a;
  color: #ffffff;
}
.table-dark th {
  background: #050505;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.table-responsive::-webkit-scrollbar-track {
  background: #0a0a0a;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #d9ff3d;
  border-radius: 50%;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: rgb(207.0103092784, 255, 10);
}
.table-responsive table {
  min-width: 600px;
}

@media (max-width: 640px) {
  .table-mobile-stack thead {
    display: none;
  }
  .table-mobile-stack tbody,
  .table-mobile-stack tr,
  .table-mobile-stack td {
    display: block;
    width: 100%;
  }
  .table-mobile-stack tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
  }
  .table-mobile-stack td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  .table-mobile-stack td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    width: 45%;
    text-align: left;
    font-weight: 700;
    color: var(--primary-pink);
  }
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-text {
  color: #ffffff;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: zoomInOut 10s ease-in-out infinite;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.hero-content h1 {
  font-size: 40px;
  margin-bottom: 6px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
}
.hero-content p {
  font-size: 16px;
  opacity: 0.9;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1.18);
  }
}
.hero-formations {
  padding: 12rem 3rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-formations::before {
  content: "";
  position: absolute;
  height: 600px;
}
.hero-formations-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero-formations-label {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 22, 84, 0.3);
  color: var(--primary-pink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.hero-formations-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-formations-subtitle {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  line-height: 1.6;
}
.hero-formations-cta {
  display: inline-block;
  padding: 1.2rem 3rem;
  color: var(--text-white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease ease;
  box-shadow: 0 10px 30px rgba(255, 22, 84, 0.3);
}
.hero-formations-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 22, 84, 0.5);
}
@media (max-width: 768px) {
  .hero-formations {
    padding: 8rem 1rem 2rem;
  }
}

.corps-contenu {
  padding: 4rem 10rem;
}
@media (max-width: 768px) {
  .corps-contenu {
    padding: 2rem;
  }
}

.about {
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  color: #333;
  -webkit-text-stroke: 1px #aaa;
  text-stroke: 1px #aaa;
  z-index: 1;
}
.about::before {
  content: "ABOUT ME";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 100%;
  color: #d9ff3d;
  -webkit-text-stroke: 0;
  z-index: 0;
}

.about-me {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f5f5f5;
  padding: 1rem 0;
  gap: 4rem;
}
@media (max-width: 768px) {
  .about-me {
    flex-direction: column;
    gap: 2rem;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 60%;
}
@media (max-width: 640px) {
  .about-text {
    max-width: 100%;
  }
}
.about-text p {
  color: #a0a0a0;
  line-height: 1.75;
  margin: 0;
}
.about-text .about-intro {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}
.about-text .about-axes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-text .about-axes li {
  color: #a0a0a0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
  font-size: 1.1rem;
}
.about-text .about-axes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: #d9ff3d;
  border-radius: 50%;
}
.about-text .about-quote {
  margin: 0.5rem 0 0;
  padding: 1rem 1rem 1rem 1.5rem;
  border-left: 3px solid #d9ff3d;
  color: #999;
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.7;
  background: rgba(217, 255, 61, 0.03);
  border-radius: 0 4px 4px 0;
}

p {
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: 100%;
  max-width: 400px;
  transform: rotate(-4deg);
  filter: grayscale(100%);
  border-radius: 6px;
  transition: transform 0.3s ease ease;
}
.about-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-section {
  background-color: #1a1a1a;
}

.perspective-image {
  box-shadow: rgba(0, 0, 0, 0.3) 20px 30px 30px, rgba(0, 0, 0, 0.22) 30px 30px 30px;
}

.formations {
  padding: 0 0 7rem 0;
  background-color: #242428;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  padding: 5rem 11rem;
  color: #d9ff3d;
  letter-spacing: 1px;
  background-color: #242428;
}
.section-title span {
  display: block;
  margin-top: 10px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .section-title {
    padding: 2rem;
    font-size: 1.5rem;
  }
  .section-title span {
    font-size: 3rem;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.cards-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #242428;
}

.header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 100px;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  .header-section {
    padding: 2rem;
  }
}

.header-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formations-section {
  max-width: 1400px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.item-formation-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.item-formation-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.item-formation-objectives {
  margin-bottom: 2rem;
}
.item-formation-objectives h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  margin-bottom: 1rem;
}
.item-objectives-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.item-objective-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-white);
  font-size: 0.95rem;
}

.objective-icon {
  color: var(--primary-pink);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cards-container,
  .formation-card {
    flex-direction: column;
    max-width: 100%;
  }
}
.conference {
  display: flex;
  align-items: stretch;
  height: 100vh;
  overflow: hidden;
}
.conference-left {
  flex: 0 0 55%;
  height: 100%;
}
.conference-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.conference-right {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  box-sizing: border-box;
}
.conference-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1;
}
.conference-title {
  width: 85%;
  text-align: right;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #d9ff3d;
}
.conference-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
}
.conference-text {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.6;
}
.conference-text strong {
  font-weight: 700;
}
.conference-button {
  background-color: #d9ff3d;
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease ease;
}
.conference-button:hover {
  background-color: #c4eb2a;
}
@media (max-width: 900px) {
  .conference {
    flex-direction: column;
    height: auto;
  }
  .conference-left, .conference-right {
    width: 100%;
    height: auto;
  }
  .conference-right {
    padding: 2rem;
  }
  .conference-header, .conference-body {
    align-items: center;
    text-align: center;
  }
  .conference-title {
    font-size: 2.5rem;
    text-align: center;
    width: 100%;
  }
  .conference-body {
    align-items: center;
  }
}

.partenaires {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background-color: #242428;
  gap: 2rem;
}

.part-titre {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
  background-color: #242428;
}

.container-partenaires {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
}

.line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.item img {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease ease;
}
.item img:hover {
  transform: scale(1.05);
}

.audit-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-white);
  padding: 0;
}

.audit {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.audit-header {
  text-align: center;
  margin-bottom: 3rem;
}
.audit-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(80, 128, 8, 0.1);
  border: 1px solid rgba(74, 95, 20, 0.3);
  color: var(--primary-pink);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.audit-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #d9ff3d;
}
.audit-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.audit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}
.audit-bottom {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .audit-section {
    padding: 4rem 2rem;
  }
  .audit-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
  }
  .audit-card {
    padding: 2rem;
  }
}
@media (max-width: 640px) {
  .audit {
    padding: 0 0;
  }
}

.bottom-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.podcast-section {
  margin: 0 auto;
  padding: 4rem 11rem;
  width: 100%;
  background-color: #242428;
}
@media (max-width: 768px) {
  .podcast-section {
    padding: 2rem;
  }
}
@media (max-width: 640px) {
  .podcast-section {
    padding: 2rem 1rem;
  }
}

.podcast-header {
  margin-bottom: 2rem;
  text-align: center;
}
.podcast-label {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(80, 128, 8, 0.1);
  border: 1px solid rgba(74, 95, 20, 0.3);
  color: var(--primary-pink);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}
.podcast-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #d9ff3d;
}
.podcast-subtitle {
  font-size: 0.9rem;
  color: var(--text-gray);
}
.podcast-content {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 2.5rem;
  align-items: center;
}
.podcast-image-wrapper {
  position: relative;
}
.podcast-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}
.podcast-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 40px);
}
.podcast-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 968px) {
  .podcast-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .podcast-content .podcast-image-wrapper {
    position: relative;
    top: 0;
  }
  .podcast-content .podcast-image {
    height: 350px;
  }
}

.text-section h2 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.text-section p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.key-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--primary-pink);
  transition: all 0.3s ease ease;
}
.key-point:hover {
  background: rgba(80, 128, 8, 0.1);
  transform: translateX(3px);
}

.key-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.key-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.platforms-section {
  margin-top: 0;
}
.platforms-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 0.85rem;
  font-weight: 700;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

.img-podcast {
  width: 100%;
}

/* ===== HERO ===== */
.hero-formations-page {
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(217, 255, 61, 0.1) 0%, transparent 50%);
}

.hero-formations-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 255, 61, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
  }
}
.badge-formations-page {
  display: inline-block;
  background: rgba(217, 255, 61, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-formations-page h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.highlight-formations-page {
  background: linear-gradient(135deg, #c4eb2a, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-formations-page p {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--text-gray);
  letter-spacing: 4px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== FORMATIONS GRID ===== */
.formations-page {
  padding: 4rem 2rem 6rem;
  max-width: 1600px;
  margin: 0 auto;
}

.grid-formations-page {
  display: flex;
  gap: 2rem;
  perspective: 1000px;
}

.card-formations-page {
  flex: 1;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  animation: fadeInUp 0.8s ease-out both;
  animation-delay: calc(var(--card-index) * 0.1s);
}

.card-formations-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d9ff3d, transparent);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-formations-page:hover::before {
  opacity: 1;
}

.card-formations-page:hover {
  transform: translateY(-15px) rotateX(5deg);
  border-color: rgba(217, 255, 61, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(217, 255, 61, 0.2);
}

.card-formations-page-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(217, 255, 61, 0.05);
  line-height: 1;
  z-index: 0;
}

.card-formations-page-icon {
  width: 80px;
  height: 80px;
  background: rgba(217, 255, 61, 0.1);
  border: 2px solid rgba(217, 255, 61, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.card-formations-page:hover .card-formations-page-icon {
  background: rgba(217, 255, 61, 0.2);
  border-color: #d9ff3d;
  transform: scale(1.1) rotate(5deg);
}

.card-formations-page-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(217, 255, 61, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.card-formations-page:hover .card-formations-page-icon::before {
  transform: translateX(100%);
}

.icon-formations-page {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(217, 255, 61, 0.5));
}

.card-formations-page h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card-formations-page p {
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.features-formations-page {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.feature-formations-page {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #a0a0a0;
}

.feature-formations-page-dot {
  width: 8px;
  height: 8px;
  background: #c4eb2a;
  border-radius: 50%;
  box-shadow: 0 0 10px #d9ff3d;
}

.card-formations-page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.duration-formations-page {
  font-size: 0.85rem;
  color: #a0a0a0;
  font-weight: 600;
}

.link-formations-page {
  color: #c4eb2a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.link-formations-page:hover {
  gap: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-formations-page-section {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(217, 255, 61, 0.05), transparent);
  position: relative;
  overflow: hidden;
}

.cta-formations-page-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(217, 255, 61, 0.02) 20px, rgba(217, 255, 61, 0.02) 40px);
  animation: move 20s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.cta-formations-page-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-formations-page-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.cta-formations-page-section p {
  color: #a0a0a0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn-formations-page-primary {
  display: inline-block;
  background: #c4eb2a;
  color: #0a0a0a;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid #c4eb2a;
  position: relative;
  overflow: hidden;
}

.btn-formations-page-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  color: #050505;
}

.btn-formations-page-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-formations-page-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(217, 255, 61, 0.4);
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-formations-page {
    flex-direction: column;
  }
  nav-formations-page {
    display: none;
  }
  .hero-formations-page {
    padding: 4rem 2rem 3rem;
  }
}
@media (max-width: 640px) {
  .hero-formations-page h1 {
    font-size: 2rem;
  }
  .hero-formations-page p {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .card-formations-page {
    padding: 2rem;
  }
}
.blog-section {
  padding: 8rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  margin-bottom: 5rem;
}
.blog-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.blog-subtitle {
  color: #a0a0a0;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
.blog-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.featured-article {
  margin-bottom: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease ease;
}
.featured-article:hover {
  border-color: rgba(255, 255, 255, 0.05);
}
.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.featured-image {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  position: relative;
  overflow: hidden;
}
.featured-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}
.featured-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 900;
}
.featured-text p {
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
@media (max-width: 968px) {
  .featured-content {
    grid-template-columns: 1fr;
  }
  .featured-image {
    min-height: 300px;
  }
}

@keyframes shimmer {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.article-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #c4eb2a;
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.article-meta {
  display: flex;
  gap: 1.5rem;
  color: #a0a0a0;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-block;
  color: #c4eb2a;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease ease;
}
.read-more:hover {
  color: #d9ff3d;
  transform: translateX(5px);
}

.linkedin-section {
  margin-top: 5rem;
}

.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.section-divider {
  text-align: center;
  margin: 5rem 0 3rem;
}
.section-divider h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #c4eb2a;
  margin-bottom: 0.5rem;
}
.section-divider p {
  color: #a0a0a0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}
.pagination a,
.pagination span {
  padding: 0.75rem 1.25rem;
  background: #1a1a1a;
  color: #a0a0a0;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease ease;
  font-weight: 500;
}
.pagination a:hover {
  border-color: #c4eb2a;
  color: #999;
}
.pagination .active {
  background: #c4eb2a;
  color: #999;
  border-color: #c4eb2a;
}

.idee-blog-header {
  margin-bottom: 6rem;
  text-align: left;
}
.idee-blog-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 2rem;
  position: relative;
}
.idee-blog-title span {
  display: block;
}
.idee-blog-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px #c4eb2a;
  text-stroke: 2px #c4eb2a;
}
.idee-blog-nav {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.idee-nav-item {
  font-size: 1.5rem;
  color: #a0a0a0;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease ease;
  position: relative;
}
.idee-nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #c4eb2a;
  transition: width 0.3s ease ease;
}
.idee-nav-item:hover::after, .idee-nav-item.active::after {
  width: 100%;
}
.idee-nav-item:hover {
  color: #c4eb2a;
}

@media (max-width: 968px) {
  .blog-section {
    padding: 5rem 2rem;
  }
  .blog-grid,
  .linkedin-grid {
    grid-template-columns: 1fr;
  }
}
.page-article-header {
  padding: 10rem 3rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-article-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #c4eb2a;
  color: black;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.page-article-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.page-article-meta {
  color: #a0a0a0;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.page-article-excerpt {
  font-size: 1.3rem;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.page-article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}
.page-article-content h2, .page-article-content h3 {
  margin: 3rem 0 1rem;
  line-height: 1.3;
}
.page-article-content h2 {
  font-size: 2rem;
  font-weight: 700;
}
.page-article-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c4eb2a;
}
.page-article-content p {
  font-size: 1.1rem;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.page-article-content ul, .page-article-content ol {
  margin: 1.5rem 0 1.5rem 2rem;
  color: #a0a0a0;
}
.page-article-content ul li, .page-article-content ol li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.7;
}
.page-article-content img {
  width: 100%;
  margin: 2rem 0;
}
.page-article-footer {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-featured-image {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 3rem;
}
.page-image-wrapper {
  height: 500px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.page-info-box {
  background: #1a1a1a;
  border: 1px solid rgba(196, 235, 42, 0.5);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}
.page-info-box h4 {
  color: #c4eb2a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.page-code-block {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  margin: 2rem 0;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  color: #a0a0a0;
  overflow-x: auto;
}
.page-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.page-tag {
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--text-gray);
}
.page-share-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.page-share-buttons {
  display: flex;
  gap: 1rem;
}
.page-author-box {
  max-width: 800px;
  margin: 3rem auto;
  padding: 3rem;
  background: #1a1a1a;
  border: 1px solid rgba(196, 235, 42, 0.5);
  display: flex;
  gap: 2rem;
  align-items: center;
}
.page-author-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d9ff3d, #ff4d7d);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.page-author-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.page-author-info p {
  color: #a0a0a0;
  font-size: 1rem;
  margin: 0;
}
.page-related-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 3rem 5rem;
}
.page-related-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.page-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.page-related-card {
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease ease;
  text-decoration: none;
  color: inherit;
}
.page-related-card:hover {
  border-color: rgba(196, 235, 42, 0.5);
  transform: translateY(-5px);
}
.page-related-image {
  height: 180px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
}
.page-related-content {
  padding: 1.5rem;
}
.page-related-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.page-related-meta {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.page-toc-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 3rem;
}
.page-toc-list {
  list-style: none;
  margin: 0;
}
.page-toc-list li {
  margin-bottom: 0.75rem;
}
.page-toc-list a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease ease;
}
.page-toc-list a:hover {
  color: #c4eb2a;
}
.page-toc-list .toc-sub {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.page-table-of-contents {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
}
.page-table-of-contents h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.page-section-divider {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 3rem;
  text-align: center;
}

.page-divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #c4eb2a, transparent);
}

@media (max-width: 768px) {
  .page-article-header {
    padding: 8rem 1.5rem 2rem;
  }
  .page-article-content {
    padding: 2rem 1.5rem;
  }
  .page-article-content h2 {
    font-size: 1.6rem;
  }
  .page-article-footer {
    padding: 2rem 1.5rem;
  }
  .page-featured-image {
    padding: 0 1.5rem;
  }
  .page-image-wrapper {
    height: 300px;
  }
  .page-author-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .page-share-buttons {
    flex-direction: column;
  }
  .page-related-section {
    padding: 0 1.5rem 3rem;
  }
  .page-toc-container {
    padding: 0 1.5rem;
  }
}
.login-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  margin: 10rem;
}

.login {
  width: 100%;
  max-width: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  display: grid;
  grid-template-columns: 45% 55%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .login {
    grid-template-columns: 1fr;
  }
}

.logo-side {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.logo-side::before {
  content: "";
  position: absolute;
  inset: 0;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 2;
}

.logo-title {
  display: block;
}
.logo-title.gradient {
  background: linear-gradient(135deg, #d9ff3d, #ff4d7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-img {
  filter: invert(1);
}

.controller {
  margin: 10rem;
}
@media (max-width: 768px) {
  .controller {
    margin: 2rem;
  }
}

.cards-admin {
  width: 100%;
}

.admin-formation {
  padding: 1rem;
  text-align: center;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.admin-articles {
  margin: 2rem;
  padding: 1rem;
  text-align: center;
}
.admin-text {
  padding: 1rem;
}

.profile-edit {
  min-height: 100vh;
  background-color: #1a1a1a;
  padding: 4rem 2rem;
}
.profile-edit__container {
  max-width: 640px;
  margin: 0 auto;
}
.profile-edit__header {
  margin-bottom: 4rem;
}
.profile-edit__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.profile-edit__subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #a0a0a0;
  margin: 0;
}
.profile-edit__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.profile-edit__section {
  background-color: #242428;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile-edit__section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d9ff3d;
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.profile-edit__hint {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  color: #a0a0a0;
  margin: 0;
}
.profile-edit__actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

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

.form-label,
label {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}
.form-control::placeholder {
  color: #999;
}
.form-control:focus {
  border-color: #d9ff3d;
  box-shadow: 0 0 0 3px rgba(217, 255, 61, 0.12);
}

.form-error,
ul.form-error,
.form-group > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-error li, .form-error,
ul.form-error li,
ul.form-error,
.form-group > ul li,
.form-group > ul {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  color: #ff4d4d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:active {
  transform: scale(0.98);
}
.btn--primary {
  background-color: #d9ff3d;
  color: #1a1a1a;
}
.btn--primary:hover {
  background-color: #c4eb2a;
}
.btn--ghost {
  background-color: transparent;
  color: #a0a0a0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
}

.alert {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.alert--success {
  background-color: rgba(217, 255, 61, 0.1);
  border: 1px solid rgba(217, 255, 61, 0.3);
  color: #d9ff3d;
}
.alert--error {
  background-color: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff4d4d;
}

@media (max-width: 640px) {
  .profile-edit {
    padding: 2rem 1rem;
  }
  .profile-edit__title {
    font-size: 2rem;
  }
  .profile-edit__section {
    padding: 1rem;
  }
}
/* Hero */
.hero-conf-page {
  padding: 5rem 2rem 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-conf-page h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-conf-page .highlight {
  color: #c4eb2a;
}

.hero-conf-page p {
  font-size: 1.2rem;
  color: #a0a0a0;
  line-height: 1.8;
}

/* Stats */
.stats-conf-page {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item-conf-page {
  text-align: center;
}

.stat-number-conf-page {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #d9ff3d;
  display: block;
}

.stat-label-conf-page {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Section */
.section-conf-page {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.section-title-conf-page {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-subtitle-conf-page {
  color: #a0a0a0;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Conférences Grid */
.conferences-grid-conf-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.conference-card-conf-page {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.conference-card-conf-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #d9ff3d;
  opacity: 0;
  transition: opacity 0.3s;
}

.conference-card-conf-page:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.conference-card-conf-page:hover::before {
  opacity: 1;
}

.conference-date-conf-page {
  display: inline-block;
  background-color: rgba(217, 255, 61, 0.1);
  color: #c4eb2a;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.conference-card-conf-page h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.conference-organizer-conf-page {
  color: #c4eb2a;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.conference-description-conf-page {
  color: #a0a0a0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Gallery Simple */
.gallery-simple-conf-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.photo-item-conf-page {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background-color: #0a0a0a;
}

.photo-item-conf-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.photo-item-conf-page:hover img {
  transform: scale(1.05);
}

/* CTA */
.cta-section-conf-page {
  background: #1a1a1a;
  border: 1px solid rgba(196, 235, 42, 0.5);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 6rem auto;
}

.cta-section-conf-page h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-section-conf-page p {
  color: #a0a0a0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button-conf-page {
  background-color: #c4eb2a;
  color: #1a1a1a;
  padding: 1.2rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.cta-button-conf-page:hover {
  background-color: #c4eb2a;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-conf-page h1 {
    font-size: 2.5rem;
  }
  .stats-conf-page {
    gap: 2rem;
  }
  .conferences-grid-conf-page,
  .gallery-simple-conf-page {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=theme.css.map */
