.elementor-25382 .elementor-element.elementor-element-c168d9d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-06d8f6e */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #F8FAFC;
  --text-primary: #1E1E1E;
  --text-secondary: #475569;
  --accent-primary: #2563EB;
  --accent-secondary: #FACC15;
  --accent-hover: #1D4ED8;
  --accent-highlight: #F87171;
  --white: #FFFFFF;
  --gray-light: #E5E7EB;
  --gray-lighter: #F3F4F6;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 35px -10px rgba(37, 99, 235, 0.15);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =======================
   BACKGROUND PATTERN
   ======================= */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(250, 204, 21, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(248, 113, 113, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* =======================
   NAVIGATION (DESKTOP)
   ======================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(10px);
  z-index: 10000 !important;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  padding: 1rem 5%;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--gray-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo cliquable */
a.logo {
  height: 80px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

a.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 300px;
}

/* Lien Blog dans le menu */
.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-primary);
  background: var(--gray-lighter);
}

/* CTA button */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-secondary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: #F3BE07;
  transform: translateY(-2px);
  box-shadow: 0 20px 35px -10px rgba(250, 204, 21, 0.25);
}

/* =======================
   HAMBURGER MENU
   ======================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* =======================
   MOBILE MENU
   ======================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 10001 !important;
  transition: right 0.3s ease;
  padding: 5rem 2rem 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 2rem;
}

/* Mobile menu header avec bouton close */
.mobile-menu-header {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.mobile-menu-close {
  background: var(--gray-lighter);
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.mobile-menu-close:hover {
  background: var(--accent-primary);
  color: white;
  transform: rotate(90deg);
}

/* Lien Blog mobile */
.mobile-nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  background: var(--gray-lighter);
  width: 80%;
}

.mobile-nav-link:hover {
  background: var(--accent-primary);
  color: white;
}

.mobile-cta .cta-button {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 9999 !important;
  pointer-events: none;
  transition: background 0.3s ease;
}

.menu-overlay.active {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

/* =======================
   RESPONSIVE HEADER FIXES
   ======================= */

/* Tablette */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 5%;
  }

  a.logo {
    height: 60px;
  }

  .logo img {
    max-width: 220px;
  }

  .nav-right {
    gap: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    padding: 0.75rem 5%;
  }

  a.logo {
    height: 40px;
  }

  .logo img {
    max-width: 160px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.4rem;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu {
    padding-top: 4rem;
  }

  .mobile-menu-content {
    gap: 1.5rem;
  }

  .mobile-cta .cta-button {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
  }

  .mobile-nav-link {
    width: 90%;
    margin: 0 auto;
  }

  .menu-overlay.active {
    background: rgba(0, 0, 0, 0.45);
  }
}

/* Très petits écrans */
@media (max-width: 480px) {
  nav {
    padding: 0.5rem 4%;
  }

  a.logo {
    height: 36px;
  }

  .logo img {
    max-width: 140px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  .mobile-cta .cta-button {
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
  }

  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 0.9rem 1.5rem;
  }
}/* End custom CSS */