/*
Theme Name: BLEASE_AXEL
Theme URI: https://blease.fr
Author: Axel Amadei
Author URI: https://blease.fr
Description: Theme WordPress Full Site Editing (FSE) premium pour B-LEASE, societe de leasing et financement d'actifs professionnels. Design elegant navy/gold avec typographie Playfair Display et Inter. Optimise pour WordPress 6.9.
Version: 1.1.0
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary
License URI: https://blease.fr
Text Domain: blease-axel
Tags: full-site-editing, block-patterns, block-styles, custom-colors, custom-logo, editor-style, featured-images, wide-blocks, translation-ready
*/

/* ==========================================================================
   VARIABLES CSS - Palette Premium B-LEASE
   ========================================================================== */
:root {
  --blease-navy: #1A2B4A;
  --blease-navy-light: #2E5A88;
  --blease-gold: #C9A962;
  --blease-gold-light: #e8d5a3;
  --blease-gold-pale: #f5edd8;
  --blease-bg-light: #F5F7FA;
  --blease-white: #ffffff;
  --blease-gray: #6b7280;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--blease-navy);
  background: var(--blease-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none !important; transition: var(--transition-base); }
a:hover, a:focus, a:active { text-decoration: none !important; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--blease-navy);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
p { margin: 0; }

/* ==========================================================================
   WORDPRESS FSE RESETS - Elimine les styles par defaut de WP
   ========================================================================== */
.wp-site-blocks {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.wp-site-blocks > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* Reset des styles de blocs WP */
.wp-block-html {
  margin: 0 !important;
  padding: 0 !important;
}
/* Enleve le soulignement sur tous les liens */
.wp-site-blocks a,
.wp-site-blocks a:hover,
.wp-site-blocks a:focus,
.wp-site-blocks a:visited {
  text-decoration: none !important;
}

/* ==========================================================================
   HEADER - Visible dans hero avec trait dore, fond blanc au scroll
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483647; /* max z-index - toujours au-dessus */
  background: transparent;
  transition: var(--transition-base);
  border-bottom: 1px solid rgba(201, 169, 98, 0.4);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(26, 43, 74, 0.08);
  border-bottom: none;
  overflow: visible;
}
/* Bordure dorée élégante en bas du header scrollé - interrompue au centre pour le logo */
.site-header.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 98, 0.3) 10%,
    var(--blease-gold) 25%,
    var(--blease-gold) 42%,
    transparent 46%,
    transparent 54%,
    var(--blease-gold) 58%,
    var(--blease-gold) 75%,
    rgba(201, 169, 98, 0.3) 90%,
    transparent 100%
  );
  animation: goldPulse 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes goldPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
/* Header centre - nouvelle structure */
.site-header-centered .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
/* Logo centre et plus gros */
.site-header-centered .header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
}
.site-header-centered .header-logo svg {
  height: 100px;
  width: auto;
  transition: var(--transition-base);
}
/* Blanc par defaut dans le hero */
.header-logo svg .logo-fill {
  fill: var(--blease-white);
  transition: var(--transition-base);
}
.header-logo svg .logo-line {
  stroke: var(--blease-white);
  transition: var(--transition-base);
}
/* Au scroll: logo devient navy */
.site-header.scrolled .header-logo svg .logo-fill {
  fill: var(--blease-navy);
}
.site-header.scrolled .header-logo svg .logo-line {
  stroke: var(--blease-navy);
}
/* Navigation + CTA en ligne */
.header-nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--blease-white);
  padding: 10px 16px;
  border-radius: 6px;
  transition: var(--transition-base);
}
.nav-link:hover {
  color: var(--blease-gold);
  background: rgba(255, 255, 255, 0.1);
}
/* Au scroll: nav devient sombre */
.site-header.scrolled .nav-link {
  color: var(--blease-navy);
  position: relative;
}
.site-header.scrolled .nav-link:hover {
  color: var(--blease-gold);
  background: rgba(201, 169, 98, 0.1);
}
/* CTA */
.header-cta-wrapper {
  margin-left: 8px;
}
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--blease-navy);
  background: var(--blease-gold);
  padding: 12px 24px;
  border-radius: 6px;
  transition: var(--transition-base);
}
.nav-cta:hover {
  background: #b8956d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}
/* CTA inactif */
.nav-cta-inactive {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   HEADER PREMIUM - Logo dominant avec animation circulaire
   ========================================================================== */
.site-header-premium {
  border-bottom: none;
}

/* Top bar - liens elegants avec animation */
.site-header-premium .header-top-bar {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  padding: 0 35px;
  display: flex;
  z-index: 10000;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  pointer-events: none; /* Laisse les clics passer aux nav-links en dessous */
}
.header-top-left,
.header-top-right {
  display: flex;
  pointer-events: auto; /* Re-active les clics sur les boutons */
}
.header-top-btn {
  color: var(--blease-white);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}
.header-top-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.header-top-btn:hover {
  color: var(--blease-white);
  border-color: rgba(201, 169, 98, 0.6);
  background: rgba(201, 169, 98, 0.1);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}
.header-top-btn:hover::before {
  left: 100%;
}
.site-header.scrolled .header-top-btn {
  color: var(--blease-navy);
  border-color: rgba(26, 43, 74, 0.2);
  background: rgba(26, 43, 74, 0.03);
}
.site-header.scrolled .header-top-btn:hover {
  color: var(--blease-navy);
  border-color: rgba(201, 169, 98, 0.5);
  background: rgba(201, 169, 98, 0.1);
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.15);
}
.header-top-btn-inactive {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.header-top-btn-inactive::before {
  display: none;
}

/* Main header row */
.site-header-premium .header-main {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 60px 30px; /* Plus de padding top pour les liens absolus */
  position: relative;
}
/* Header line aligned with logo separator */
.site-header-premium .header-main::before,
.site-header-premium .header-main::after {
  content: '';
  position: absolute;
  bottom: 26px; /* Aligne avec la ligne du logo */
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.25) 100%);
  pointer-events: none;
}
.site-header-premium .header-main::before {
  left: 30px;
  right: calc(50% + 115px); /* Stop before logo circle */
}
.site-header-premium .header-main::after {
  left: calc(50% + 115px); /* Start after logo circle */
  right: 30px;
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.25) 100%);
}

/* Navigation avec separateurs dores */
.site-header-premium .header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 22px; /* Aligne avec B-LEASE text et la ligne */
  position: relative;
  z-index: 9999;
}
.site-header-premium .header-nav-left {
  flex: 1;
  justify-content: flex-end;
  padding-right: 50px;
}
.site-header-premium .header-nav-right {
  flex: 1;
  justify-content: flex-start;
  padding-left: 50px;
}
.site-header-premium .nav-link {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 9999;
}
/* Separateurs dores elegants */
.nav-separator {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, transparent 0%, var(--blease-gold) 30%, var(--blease-gold) 70%, transparent 100%);
  opacity: 0.5;
}

/* Logo wrapper avec animation circulaire elegante */
.header-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -15px;
  margin-bottom: -30px; /* Logo bulges below header line */
  z-index: 10;
}
.header-logo-svg {
  height: 150px;
  width: auto;
  position: relative;
  z-index: 3;
  transition: var(--transition-base);
}
/* Logo fill pour le wrapper */
.header-logo-wrapper .logo-fill {
  fill: var(--blease-white);
  transition: var(--transition-base);
}
.header-logo-wrapper .logo-line {
  stroke: var(--blease-white);
  transition: var(--transition-base);
}
.site-header.scrolled .header-logo-wrapper .logo-fill {
  fill: var(--blease-navy);
}
.site-header.scrolled .header-logo-wrapper .logo-line {
  stroke: var(--blease-navy);
}

/* Anneaux animes autour du logo */
.logo-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: logoRingRotate 20s linear infinite;
  pointer-events: none;
}
.logo-ring::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: translateX(-50%);
}
.logo-ring-2 {
  width: 200px;
  height: 200px;
  border-color: rgba(255, 255, 255, 0.18);
  animation-direction: reverse;
  animation-duration: 30s;
}
.logo-ring-2::before {
  background: rgba(255, 255, 255, 0.5);
}
@keyframes logoRingRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hover sur logo */
.header-logo-wrapper:hover .logo-ring {
  border-color: rgba(255, 255, 255, 0.5);
}
.header-logo-wrapper:hover .header-logo-svg {
  transform: scale(1.03);
}

/* ==========================================================================
   HEADER SCROLLED - Design Premium Glassmorphism
   ========================================================================== */

/* Header main - hauteur fixe avec alignement central */
.site-header.scrolled .site-header-premium .header-main {
  height: 90px;
  padding: 0 60px;
  align-items: center;
}

/* Navs centrées verticalement, alignées avec les boutons */
.site-header.scrolled .site-header-premium .header-nav {
  padding-bottom: 0;
  margin-top: 0;
  height: 90px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Top bar repositionné au centre vertical du header */
.site-header.scrolled .header-top-bar {
  bottom: auto;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: auto;
  align-items: center;
  z-index: 10;
}

/* Logo wrapper - cercle doré élégant qui déborde */
.site-header.scrolled .header-logo-wrapper {
  margin-top: 0;
  margin-bottom: -30px;
  z-index: 100;
  position: relative;
}
.site-header.scrolled .header-logo-svg {
  height: 85px;
}

/* Cercles du logo - bordure dorée avec ombre */
.site-header.scrolled .logo-ring {
  width: 110px;
  height: 110px;
  border: 2px solid rgba(201, 169, 98, 0.5);
  background: var(--blease-white);
  box-shadow:
    0 0 0 6px var(--blease-white),
    0 8px 25px rgba(26, 43, 74, 0.12),
    0 0 40px rgba(201, 169, 98, 0.15);
  pointer-events: none;
}
.site-header.scrolled .logo-ring::before {
  background: var(--blease-gold);
  width: 6px;
  height: 6px;
}
.site-header.scrolled .logo-ring-2 {
  width: 125px;
  height: 125px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  background: transparent;
  pointer-events: none;
}
.site-header.scrolled .logo-ring-2::before {
  background: rgba(201, 169, 98, 0.5);
}

/* Overflow visible pour le cercle */
.site-header.scrolled .site-header-premium {
  overflow: visible;
}

/* Separateurs dorés entre les nav items */
.site-header.scrolled .nav-separator {
  background: linear-gradient(to bottom, transparent 0%, var(--blease-gold) 50%, transparent 100%);
  opacity: 0.6;
  height: 16px;
}

/* Nav links - style premium avec underline animé */
.site-header.scrolled .nav-link {
  position: relative;
  padding: 8px 18px;
  z-index: 100;
}
.site-header.scrolled .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blease-gold), transparent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  pointer-events: none;
}
.site-header.scrolled .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.site-header.scrolled .nav-link:hover {
  color: var(--blease-gold);
  background: transparent;
}

/* Boutons scrolled - style raffiné */
.site-header.scrolled .header-top-btn {
  color: var(--blease-navy);
  border: 1px solid rgba(26, 43, 74, 0.15);
  background: transparent;
  padding: 8px 18px;
  font-size: 10px;
}
.site-header.scrolled .header-top-btn:hover {
  color: var(--blease-gold);
  border-color: var(--blease-gold);
  background: rgba(201, 169, 98, 0.08);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.12);
}

/* Lignes décoratives - passent derrière le cercle */
.site-header.scrolled .site-header-premium .header-main::before,
.site-header.scrolled .site-header-premium .header-main::after {
  bottom: 50%;
  transform: translateY(50%);
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(201, 169, 98, 0.35) 50%, rgba(201, 169, 98, 0.35) 100%);
  pointer-events: none;
}
.site-header.scrolled .site-header-premium .header-main::before {
  left: 40px;
  right: calc(50% + 85px);
}
.site-header.scrolled .site-header-premium .header-main::after {
  left: calc(50% + 85px);
  right: 40px;
  background: linear-gradient(to left, transparent 0%, rgba(201, 169, 98, 0.35) 50%, rgba(201, 169, 98, 0.35) 100%);
}

/* Responsive header → moved to consolidated blocks */

/* ==========================================================================
   BURGER & MOBILE NAV
   ========================================================================== */
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 9999;
  position: relative;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blease-white);
  margin: 5px 0;
  transition: var(--transition-base);
}
.site-header.scrolled .burger-btn span {
  background: var(--blease-navy);
}
.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(165deg, var(--blease-navy) 0%, #0f1a2e 100%);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  gap: 12px;
  padding: 120px 30px 60px;
  box-sizing: border-box;
}
.mobile-nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--blease-white);
  padding: 12px 24px;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.mobile-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--blease-gold);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.mobile-nav-links a:hover {
  color: var(--blease-gold);
  transform: translateY(-2px);
}
.mobile-nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.mobile-nav-cta {
  margin-top: 20px;
  padding: 14px 36px !important;
  background: var(--blease-gold) !important;
  color: var(--blease-navy) !important;
  border-radius: 6px;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body.nav-open { overflow: hidden; }

/* ==========================================================================
   HERO - 100vh
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blease-navy);
}
/* Vagues de transition - fond la vague dans la section stats */
.hero-wave {
  position: relative;
  margin-top: -60px !important;
  margin-bottom: -4px !important;
  height: 60px;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}
.hero-wave svg path {
  fill: #d4b872;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(26, 43, 74, 0.82);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--blease-white);
  margin-bottom: 24px;
}
.hero-title .text-gold { color: var(--blease-gold); }
.hero-line {
  width: 80px;
  height: 3px;
  background: var(--blease-gold);
  margin: 0 auto 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  background: var(--blease-gold);
  color: var(--blease-navy);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: #b8956d;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  background: transparent;
  color: var(--blease-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blease-white);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  animation: bounce 2s infinite;
  cursor: pointer;
}
.hero-scroll-logo {
  width: 40px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 98, 0.4));
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
}

/* Vague doree bas des stats accueil - inversee, remonte dans les stats */
.hero-wave-bottom {
  margin-top: -58px;
  margin-bottom: -2px;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   SECTION STATS - Fond dore fondu vers blanc
   ========================================================================== */
.section-stats {
  background: linear-gradient(to bottom, #d4b872 0%, #d4b872 45%, #e0c78a 60%, #ebd9a8 75%, #f5ecd0 88%, #ffffff 100%);
  padding: 15px 24px 60px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 70px;
}
/* Vague inversee en bas des stats */
.stats-wave-bottom {
  position: relative;
  margin-top: -2px !important;
  height: 80px;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(245, 247, 250, 0.5) 50%,
    var(--blease-bg-light) 100%);
}
.stats-wave-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}
/* Points blancs flottants - Couche 1 (gros points) */
.section-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(6px 6px at 5% 20%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(5px 5px at 15% 70%, rgba(255,255,255,0.85) 50%, transparent 100%),
    radial-gradient(4px 4px at 25% 40%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(6px 6px at 35% 85%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(5px 5px at 48% 30%, rgba(255,255,255,0.85) 50%, transparent 100%),
    radial-gradient(4px 4px at 58% 65%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(6px 6px at 72% 15%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(5px 5px at 85% 50%, rgba(255,255,255,0.85) 50%, transparent 100%),
    radial-gradient(4px 4px at 95% 80%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(2px 2px at 12% 55%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(2px 2px at 32% 25%, rgba(255,255,255,0.55) 50%, transparent 100%),
    radial-gradient(2px 2px at 65% 45%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(2px 2px at 78% 75%, rgba(255,255,255,0.55) 50%, transparent 100%);
  animation: float-drift-1 25s ease-in-out infinite;
}
/* Points blancs flottants - Couche 2 (mix petits et moyens) */
.section-stats::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(5px 5px at 8% 35%, rgba(255,255,255,0.85) 50%, transparent 100%),
    radial-gradient(6px 6px at 22% 60%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(4px 4px at 38% 15%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(5px 5px at 52% 75%, rgba(255,255,255,0.85) 50%, transparent 100%),
    radial-gradient(6px 6px at 68% 40%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(4px 4px at 82% 25%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(5px 5px at 92% 65%, rgba(255,255,255,0.85) 50%, transparent 100%),
    radial-gradient(2px 2px at 18% 80%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(2px 2px at 42% 50%, rgba(255,255,255,0.55) 50%, transparent 100%),
    radial-gradient(2px 2px at 55% 20%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(2px 2px at 75% 90%, rgba(255,255,255,0.55) 50%, transparent 100%),
    radial-gradient(2px 2px at 88% 10%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: float-drift-2 30s ease-in-out infinite;
}
@keyframes float-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(8px, -12px); }
  40% { transform: translate(-5px, 8px); }
  60% { transform: translate(12px, 5px); }
  80% { transform: translate(-8px, -6px); }
}
@keyframes float-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  15% { transform: translate(-10px, 6px); }
  35% { transform: translate(6px, -10px); }
  55% { transform: translate(-4px, -8px); }
  75% { transform: translate(10px, 4px); }
  90% { transform: translate(-6px, 10px); }
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  position: relative;
  min-width: 160px;
}
/* Separateur vertical subtil entre stats */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--blease-gold), transparent);
  opacity: 0.4;
}
.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  height: 58px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--blease-navy);
  line-height: 1;
}
.stat-unit {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--blease-navy);
  margin-left: 2px;
  opacity: 0.7;
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blease-navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.5;
}
/* Variant: all navy stats (kept for compatibility) */
.stats-all-navy .stat-unit {
  color: var(--blease-navy);
}
.stats-all-navy .stat-label {
  color: var(--blease-navy);
  opacity: 0.5;
}

/* ==========================================================================
   SECTION FEATURES - Bloc centre opaque avec bordure doree
   ========================================================================== */
.section-features {
  padding: 30px 24px;
  display: flex;
  justify-content: center;
}
.features-block {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 2px solid var(--blease-gold);
  border-radius: 20px;
  padding: 50px 60px;
  max-width: 900px;
  box-shadow: 0 20px 60px rgba(26, 43, 74, 0.15);
}
.features-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
/* Colonne gauche - Accroche */
.features-intro {
  position: relative;
}
.features-intro .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blease-gold);
  margin-bottom: 16px;
}
.features-intro .section-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--blease-gold);
}
.features-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.features-intro .intro-text {
  font-size: 15px;
  color: var(--blease-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}
/* Stat mise en avant */
.features-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #243b5c 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(26, 43, 74, 0.2);
}
.highlight-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--blease-gold);
  line-height: 1;
}
.highlight-text {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
/* Colonne droite - Liste des avantages */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.25);
  transition: var(--transition-base);
}
.feature-item:first-child {
  padding-top: 0;
}
.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-item:hover {
  transform: translateX(6px);
}
.feature-item-number {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--blease-gold);
  opacity: 0.7;
  min-width: 36px;
}
.feature-item-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--blease-navy);
}
.feature-item-content p {
  font-size: 14px;
  color: var(--blease-gray);
  line-height: 1.6;
}
/* Responsive features → moved to consolidated blocks */

/* Trait dore fin entre sections */
.gold-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--blease-gold) 20%, var(--blease-gold) 80%, transparent 100%);
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   MAIN CONTENT NICE - Fond image Nice avec overlay degressif
   ========================================================================== */
.nice-background {
  position: relative;
  margin-top: -40px; /* Overlap with stats for seamless transition */
  padding-top: 40px;
  background-image: url('https://www.blease.fr/wp-content/uploads/2026/01/nice-baie-des-anges-1920x1080.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
/* Overlay blanc degressif - 100% opaque en haut, fondu progressif */
.nice-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 5%,
    rgba(255, 255, 255, 0.8) 15%,
    rgba(255, 255, 255, 0.5) 35%,
    rgba(255, 255, 255, 0.25) 55%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0.02) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.nice-background > * {
  position: relative;
  z-index: 2;
}
.nice-background .gold-separator:first-child {
  display: none; /* Hide the first separator for seamless transition */
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
.section { padding: 100px 24px; }
.section-transparent { background: transparent; }
.stats-wave-bottom + .section { padding-top: 50px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(255,255,255,0.9);
}
.section-title .text-gold { color: var(--blease-gold); }
.section-title.title-underline {
  display: inline-block;
  border-bottom: 3px solid var(--blease-navy);
  padding-bottom: 8px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--blease-gray);
  max-width: 600px;
  margin: 0 auto;
}
.section-subtitle.subtitle-bold {
  font-weight: 600;
  color: var(--blease-navy);
}


/* Header special pour section Solutions - effet nuage */
#solutions .section-header {
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
#solutions .section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0) 80%);
  z-index: -1;
  pointer-events: none;
}
#solutions .section-title {
  text-shadow: 0 2px 10px rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
#solutions .section-subtitle {
  color: var(--blease-navy);
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(255,255,255,0.9);
}

/* ==========================================================================
   SOLUTIONS CARDS - Cards avec bordure doree
   ========================================================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.solution-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid var(--blease-gold);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.15);
}
.solution-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(201, 169, 98, 0.25);
  border-color: #b8956d;
}
.solution-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #2c3e5c 100%);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(26, 43, 74, 0.2);
}
.solution-icon svg { color: var(--blease-gold); }
.solution-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--blease-navy);
}
.solution-card p {
  font-size: 13px;
  color: var(--blease-gray);
  margin-bottom: 16px;
  line-height: 1.5;
}
.solution-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blease-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-base);
}
.solution-link:hover {
  color: var(--blease-navy);
}
.section-cta {
  text-align: center;
  margin-top: 60px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blease-navy);
  border: 2px solid var(--blease-gold);
}
.btn-outline:hover {
  background: var(--blease-gold);
  color: var(--blease-navy);
}

/* ==========================================================================
   PROCESS - Timeline horizontale avec fond dore progressif
   ========================================================================== */
.section-process {
  padding: 60px 24px 60px;
  position: relative;
}
/* Fond dore progressif qui s'intensifie vers le bas */
.section-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(201, 169, 98, 0) 0%,
    rgba(201, 169, 98, 0.15) 30%,
    rgba(201, 169, 98, 0.4) 60%,
    rgba(180, 140, 60, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.section-process > * {
  position: relative;
  z-index: 2;
}
.section-process .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-process .section-title {
  text-shadow: 0 2px 4px rgba(255,255,255,0.6);
}
.section-process .section-subtitle {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
}
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
/* Ligne de connexion */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 100px;
  right: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--blease-gold), rgba(255,255,255,0.8), var(--blease-gold));
  z-index: 1;
}
.process-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-number-ring {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #243b5c 100%);
  border: 3px solid var(--blease-gold);
  box-shadow: 0 8px 24px rgba(26, 43, 74, 0.25);
  position: relative;
  transition: var(--transition-base);
}
.process-item:hover .process-number-ring {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}
.process-number-ring span {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blease-gold);
}
.process-icon {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  background: var(--blease-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(201, 169, 98, 0.4);
}
.process-icon svg {
  width: 13px;
  height: 13px;
  color: var(--blease-navy);
}
.process-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(26, 43, 74, 0.08);
}
.process-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--blease-navy);
}
.process-content p {
  font-size: 13px;
  color: var(--blease-gray);
  line-height: 1.4;
  margin: 0;
}
.section-process .section-cta {
  margin-top: 50px;
  padding-bottom: 60px;
}

/* ==========================================================================
   CTA FINAL - Fond navy elegant avec animation constellation
   ========================================================================== */
.section-cta-wrapper {
  padding: 50px 24px 120px;
  background: linear-gradient(to bottom, var(--blease-navy) 0%, #152238 60%, #0d1520 100%);
  position: relative;
  overflow: hidden;
}
/* Fond constellation animee */
.section-cta-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 98, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 40% 70%, rgba(201, 169, 98, 0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(201, 169, 98, 0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 80% 60%, rgba(201, 169, 98, 0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 10% 80%, rgba(201, 169, 98, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 40%, rgba(201, 169, 98, 0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 50%, rgba(201, 169, 98, 0.45) 0%, transparent 100%),
    radial-gradient(2px 2px at 30% 90%, rgba(201, 169, 98, 0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 85%, rgba(201, 169, 98, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 15% 45%, rgba(201, 169, 98, 0.3) 0%, transparent 100%);
  animation: constellation-float 20s ease-in-out infinite;
  opacity: 0.8;
}
/* Orbe doree flottante */
.section-cta-wrapper::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle at center,
    rgba(201, 169, 98, 0.15) 0%,
    rgba(201, 169, 98, 0.08) 30%,
    rgba(201, 169, 98, 0.03) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: orb-float 15s ease-in-out infinite;
}
@keyframes constellation-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  25% { transform: translateY(-5px) rotate(0.5deg); opacity: 0.9; }
  50% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  75% { transform: translateY(5px) rotate(-0.5deg); opacity: 0.85; }
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(-30px, 20px) scale(1.1); opacity: 0.8; }
  66% { transform: translate(20px, -10px) scale(0.95); opacity: 0.9; }
}
.cta-block {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #152238 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 169, 98, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}
/* Decoration doree animee */
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite 2s;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}
.cta-block-content {
  position: relative;
  z-index: 2;
  flex: 1;
}
.cta-block-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--blease-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.cta-block-title .text-gold { color: var(--blease-gold); }
.cta-block-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.cta-block-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  background: var(--blease-gold);
  color: var(--blease-navy);
  white-space: nowrap;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-cta-gold:hover {
  background: #b8956d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4);
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  background: transparent;
  color: var(--blease-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  transition: var(--transition-base);
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blease-white);
}

/* ==========================================================================
   FOOTER - Compact
   ========================================================================== */
.site-footer {
  background: linear-gradient(to bottom, #0d1520 0%, var(--blease-navy) 80px);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 24px 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo svg {
  height: 50px;
  width: auto;
}
.footer-logo svg .logo-fill {
  fill: var(--blease-white);
}
.footer-logo svg .logo-line {
  stroke: var(--blease-white);
}
.footer-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--blease-white);
}
.footer-social a:hover {
  background: var(--blease-gold);
  color: var(--blease-navy);
}
.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blease-gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-links a:hover { color: var(--blease-gold); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}
.footer-contact svg { color: var(--blease-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255, 255, 255, 0.8); }
.footer-contact a:hover { color: var(--blease-gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-right a:hover { color: var(--blease-gold); }

/* Responsive → moved to consolidated blocks */

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-gold { color: var(--blease-gold); }
.text-navy { color: var(--blease-navy); }
.text-white { color: var(--blease-white); }
.text-gray { color: var(--blease-gray); }
.text-center { text-align: center; }

/* ==========================================================================
   PAGE HERO - Inner pages (50vh compact, pas 100vh)
   ========================================================================== */
.page-hero {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #243b5c 60%, #1a2744 100%);
}
.page-hero-compact {
  min-height: 30vh;
}
.page-hero-short {
  min-height: 38vh;
}
/* Hero title shimmer animation */
@keyframes hero-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes hero-fade-up {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-title-animated {
  animation: hero-fade-up 1s ease-out both;
}
.hero-title-animated .text-gold {
  background: linear-gradient(90deg, var(--blease-gold) 0%, #f5edd8 25%, var(--blease-gold) 50%, #e8d5a3 75%, var(--blease-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-shimmer 3s linear infinite;
}
.hero-line-animated {
  animation: hero-fade-up 1s ease-out 0.3s both;
}
.hero-subtitle-animated {
  animation: hero-fade-up 1s ease-out 0.5s both;
}
.hero-buttons-animated {
  animation: hero-fade-up 1s ease-out 0.7s both;
}
.page-hero .hero-video-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.page-hero .hero-video {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: rgba(26, 43, 74, 0.8);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 900px;
}
.page-hero-content-spaced {
  padding-top: 160px;
}
.page-hero-content .hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--blease-white);
  margin-bottom: 20px;
  white-space: nowrap;
}
.page-hero-content .hero-line {
  width: 60px;
  height: 3px;
  background: var(--blease-gold);
  margin: 0 auto 20px;
}
.page-hero-content .hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}
/* Motif subtil de points sur le hero */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A962' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
/* Hero avec paillettes dorees scintillantes */
.page-hero-sparkles::after {
  background:
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='25' r='1' fill='%23C9A962'/%3E%3Ccircle cx='52' cy='8' r='0.8' fill='%23e8d5a3'/%3E%3Ccircle cx='85' cy='42' r='1.2' fill='%23C9A962'/%3E%3Ccircle cx='35' cy='65' r='0.7' fill='%23f5edd8'/%3E%3Ccircle cx='72' cy='78' r='1' fill='%23e8d5a3'/%3E%3Ccircle cx='8' cy='88' r='0.9' fill='%23C9A962'/%3E%3Ccircle cx='92' cy='15' r='0.6' fill='%23f5edd8'/%3E%3Ccircle cx='48' cy='48' r='1.1' fill='%23C9A962'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='35' r='1.3' fill='%23e8d5a3'/%3E%3Ccircle cx='75' cy='12' r='0.9' fill='%23C9A962'/%3E%3Ccircle cx='120' cy='55' r='1.5' fill='%23f5edd8'/%3E%3Ccircle cx='45' cy='90' r='0.8' fill='%23C9A962'/%3E%3Ccircle cx='105' cy='110' r='1.1' fill='%23e8d5a3'/%3E%3Ccircle cx='15' cy='130' r='1.4' fill='%23C9A962'/%3E%3Ccircle cx='135' cy='25' r='0.7' fill='%23f5edd8'/%3E%3Ccircle cx='65' cy='140' r='1' fill='%23e8d5a3'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='50' r='1' fill='%23C9A962'/%3E%3Ccircle cx='100' cy='20' r='1.5' fill='%23e8d5a3'/%3E%3Ccircle cx='170' cy='80' r='0.8' fill='%23f5edd8'/%3E%3Ccircle cx='60' cy='130' r='1.2' fill='%23C9A962'/%3E%3Ccircle cx='140' cy='160' r='1' fill='%23e8d5a3'/%3E%3Ccircle cx='20' cy='180' r='1.3' fill='%23C9A962'/%3E%3C/svg%3E");
  opacity: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 20%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 75%, rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 20%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 75%, rgba(0,0,0,1) 100%);
  animation: sparkle-drift 12s linear infinite, sparkle-twinkle 4s ease-in-out infinite alternate;
}
/* Second sparkle layer for depth + twinkle */
.page-hero-sparkles::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='60,56 61,59 64,60 61,61 60,64 59,61 56,60 59,59' fill='%23C9A962' opacity='0.9'/%3E%3Cpolygon points='20,16 21,19 24,20 21,21 20,24 19,21 16,20 19,19' fill='%23e8d5a3' opacity='0.7'/%3E%3Cpolygon points='95,86 96,89 99,90 96,91 95,94 94,91 91,90 94,89' fill='%23f5edd8' opacity='0.8'/%3E%3Cpolygon points='40,96 41,99 44,100 41,101 40,104 39,101 36,100 39,99' fill='%23C9A962' opacity='0.6'/%3E%3Cpolygon points='100,30 101,33 104,34 101,35 100,38 99,35 96,34 99,33' fill='%23e8d5a3' opacity='0.8'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='90,86 91,89 94,90 91,91 90,94 89,91 86,90 89,89' fill='%23C9A962' opacity='0.8'/%3E%3Cpolygon points='30,40 31,43 34,44 31,45 30,48 29,45 26,44 29,43' fill='%23f5edd8' opacity='0.6'/%3E%3Cpolygon points='150,120 151,123 154,124 151,125 150,128 149,125 146,124 149,123' fill='%23e8d5a3' opacity='0.9'/%3E%3Cpolygon points='60,160 61,163 64,164 61,165 60,168 59,165 56,164 59,163' fill='%23C9A962' opacity='0.7'/%3E%3C/svg%3E");
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,1) 100%);
  animation: sparkle-drift-reverse 15s linear infinite, sparkle-twinkle 3s ease-in-out 1.5s infinite alternate;
}
@keyframes sparkle-drift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 100px 100px, -150px 150px, 200px -200px; }
}
@keyframes sparkle-drift-reverse {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: -120px 120px, 180px -180px; }
}
@keyframes sparkle-twinkle {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ==========================================================================
   CARD GRIDS - Variantes pour pages interieures
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-6 { grid-template-columns: repeat(3, 1fr); }

/* Value card (variante de solution-card pour pages interieures) */
.value-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--blease-gold);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.12);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 169, 98, 0.2);
  border-color: #b8956d;
}
.value-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #2c3e5c 100%);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(26, 43, 74, 0.2);
}
.value-card .card-icon svg { color: var(--blease-gold); }
.value-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--blease-navy);
}
.value-card p {
  font-size: 14px;
  color: var(--blease-gray);
  line-height: 1.6;
}
.value-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blease-gold);
  transition: var(--transition-base);
}
.value-card .card-link:hover { color: var(--blease-navy); }

/* Large card (pour tailles entreprise, domaines) */
.large-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 32px;
  border: 2px solid var(--blease-gold);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.large-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 169, 98, 0.2);
}
.large-card .card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #2c3e5c 100%);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(26, 43, 74, 0.2);
}
.large-card .card-icon svg { color: var(--blease-gold); }
.large-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--blease-navy);
}
.large-card .card-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blease-gold);
  background: rgba(201, 169, 98, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.large-card p {
  font-size: 15px;
  color: var(--blease-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.large-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.large-card ul li {
  font-size: 14px;
  color: var(--blease-gray);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.large-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--blease-gold);
  border-radius: 50%;
  opacity: 0.7;
}

/* ==========================================================================
   PARTNER PROFILES - Horizontal cards pour page partenaires
   ========================================================================== */
.partner-profiles {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partner-profile-card {
  display: grid;
  grid-template-columns: 56px 72px 1fr;
  gap: 20px;
  align-items: start;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px 32px;
  border-left: 4px solid var(--blease-gold);
  box-shadow: 0 4px 24px rgba(26, 43, 74, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.partner-profile-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.18);
  border-left-color: #b8956d;
}
.partner-profile-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--blease-gold);
  opacity: 0.5;
  line-height: 1;
  padding-top: 8px;
}
.partner-profile-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #2c3e5c 100%);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(26, 43, 74, 0.2);
  flex-shrink: 0;
}
.partner-profile-icon svg { color: var(--blease-gold); }
.partner-profile-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blease-navy);
  margin-bottom: 4px;
}
.partner-profile-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blease-gold);
  background: rgba(201, 169, 98, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.partner-profile-content p {
  font-size: 14px;
  color: var(--blease-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}
.partner-profile-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.partner-profile-perks span {
  font-size: 12px;
  font-weight: 500;
  color: var(--blease-navy);
  background: var(--blease-bg-light);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(26, 43, 74, 0.1);
}

/* ==========================================================================
   CONTACT - Formulaire + Infos
   ========================================================================== */
.contact-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--blease-gold);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(26, 43, 74, 0.1);
}
.contact-form-wrapper h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.contact-form-wrapper .form-subtitle {
  font-size: 15px;
  color: var(--blease-gray);
  margin-bottom: 30px;
}
/* CF7 form styling */
.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--blease-navy);
  margin-bottom: 6px;
}
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wpcf7-form .form-col {
  min-width: 0;
}
.wpcf7-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--blease-gray, #6b7280);
  line-height: 1.5;
}
.wpcf7-form .form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--blease-gold);
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--blease-navy);
  background: var(--blease-white);
  border: 2px solid rgba(26, 43, 74, 0.15);
  border-radius: 8px;
  transition: var(--transition-base);
  margin-bottom: 20px;
  box-sizing: border-box;
}
/* Remove browser number input spinners */
.wpcf7-form input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.wpcf7-form input[type="number"]::-webkit-outer-spin-button,
.wpcf7-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--blease-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}
.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: 6px;
  background: var(--blease-gold);
  color: var(--blease-navy);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
  background: #b8956d;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}
.wpcf7-response-output {
  border-radius: 8px !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
}
/* Contact info card */
.contact-info-card {
  background: linear-gradient(135deg, var(--blease-navy) 0%, #243b5c 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(26, 43, 74, 0.2);
}
.contact-info-card h3 {
  font-size: 20px;
  color: var(--blease-white);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 10px;
}
.contact-info-icon svg { color: var(--blease-gold); }
.contact-info-item .info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blease-gold);
  margin-bottom: 4px;
}
.contact-info-item .info-value {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.contact-info-item a {
  color: rgba(255, 255, 255, 0.9);
}
.contact-info-item a:hover { color: var(--blease-gold); }
/* Map */
.contact-map {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(201, 169, 98, 0.3);
}
.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

/* ==========================================================================
   LEGAL CONTENT - Pages legales (mentions, confidentialite, cookies)
   ========================================================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blease-gold);
}
.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 15px;
  color: var(--blease-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 15px;
  color: var(--blease-gray);
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-content a {
  color: var(--blease-gold);
  font-weight: 500;
}
.legal-content a:hover { color: var(--blease-navy); }
.legal-content strong { color: var(--blease-navy); }

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #243b5c 60%, #1a2744 100%);
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
}
.thankyou-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A962' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.thankyou-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.15);
  border: 3px solid var(--blease-gold);
  border-radius: 50%;
  animation: check-appear 0.6s ease-out;
}
.thankyou-icon svg { color: var(--blease-gold); }
@keyframes check-appear {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.thankyou-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--blease-white);
  margin-bottom: 16px;
}
.thankyou-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}
.thankyou-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.section-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #243b5c 60%, #1a2744 100%);
  padding: 120px 24px 80px;
  text-align: center;
}
.section-404 .error-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 700;
  color: var(--blease-gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}
.section-404 h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--blease-white);
  margin-bottom: 16px;
}
.section-404 p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

/* ==========================================================================
   ABOUT PAGE - Histoire et valeurs
   ========================================================================== */
.about-story {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}
.about-story-text p {
  font-size: 15px;
  color: var(--blease-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-story-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 43, 74, 0.15);
  border: 3px solid var(--blease-gold);
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-stats-inline {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.about-stat {
  text-align: center;
  min-width: 100px;
}
.about-stat .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--blease-gold);
  line-height: 1;
}
.about-stat .stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--blease-gray);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 6px;
}

/* ==========================================================================
   FOND PARTICULES DOREES - Effet organique dispersé
   ========================================================================== */
.bg-gold-dots {
  position: relative;
  background-color: var(--blease-bg-light);
  overflow: hidden;
}
.bg-gold-dots::before,
.bg-gold-dots::after {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-gold-dots::before {
  /* Particules dispersées SVG - pattern organique */
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A962'%3E%3Ccircle cx='25' cy='45' r='2' opacity='0.5'/%3E%3Ccircle cx='180' cy='20' r='1.5' opacity='0.35'/%3E%3Ccircle cx='320' cy='70' r='2.5' opacity='0.45'/%3E%3Ccircle cx='90' cy='120' r='1.8' opacity='0.4'/%3E%3Ccircle cx='250' cy='95' r='2' opacity='0.5'/%3E%3Ccircle cx='370' cy='150' r='1.5' opacity='0.3'/%3E%3Ccircle cx='45' cy='200' r='2.2' opacity='0.45'/%3E%3Ccircle cx='150' cy='180' r='1.5' opacity='0.35'/%3E%3Ccircle cx='290' cy='210' r='2' opacity='0.5'/%3E%3Ccircle cx='380' cy='260' r='1.8' opacity='0.4'/%3E%3Ccircle cx='70' cy='290' r='2.5' opacity='0.45'/%3E%3Ccircle cx='200' cy='320' r='1.5' opacity='0.35'/%3E%3Ccircle cx='340' cy='340' r='2' opacity='0.5'/%3E%3Ccircle cx='120' cy='370' r='1.8' opacity='0.4'/%3E%3Ccircle cx='260' cy='385' r='2.2' opacity='0.45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  animation: particles-float 25s ease-in-out infinite;
}
.bg-gold-dots::after {
  /* Deuxième couche décalée */
  background-image: url("data:image/svg+xml,%3Csvg width='350' height='350' viewBox='0 0 350 350' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A962'%3E%3Ccircle cx='60' cy='30' r='1.5' opacity='0.3'/%3E%3Ccircle cx='200' cy='55' r='2' opacity='0.4'/%3E%3Ccircle cx='310' cy='90' r='1.8' opacity='0.35'/%3E%3Ccircle cx='40' cy='140' r='2.2' opacity='0.45'/%3E%3Ccircle cx='170' cy='170' r='1.5' opacity='0.3'/%3E%3Ccircle cx='280' cy='130' r='2' opacity='0.4'/%3E%3Ccircle cx='100' cy='230' r='1.8' opacity='0.35'/%3E%3Ccircle cx='230' cy='260' r='2.5' opacity='0.5'/%3E%3Ccircle cx='330' cy='220' r='1.5' opacity='0.3'/%3E%3Ccircle cx='55' cy='310' r='2' opacity='0.4'/%3E%3Ccircle cx='180' cy='330' r='1.8' opacity='0.35'/%3E%3Ccircle cx='300' cy='300' r='2.2' opacity='0.45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 350px 350px;
  animation: particles-float-reverse 30s ease-in-out infinite;
}
.bg-gold-dots > * {
  position: relative;
  z-index: 1;
}
@keyframes particles-float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -10px); }
  50% { transform: translate(-5px, 15px); }
  75% { transform: translate(-15px, -5px); }
}
@keyframes particles-float-reverse {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-10px, 12px); }
  50% { transform: translate(12px, -8px); }
  75% { transform: translate(5px, 10px); }
}

/* Responsive pages interieures → moved to consolidated blocks */

/* ==========================================================================
   MAIN CTA - Bouton central animé "Financer un projet"
   ========================================================================== */
.section-main-cta {
  background: linear-gradient(180deg, #d4b872 0%, #c9a962 15%, #f5f7fa 80%);
  padding: 60px 24px 80px;
  text-align: center;
}
.main-cta-container {
  max-width: 600px;
  margin: 0 auto;
}
.btn-main-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 48px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blease-white);
  background: var(--blease-navy);
  border-radius: 60px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-main-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(26, 43, 74, 0.4);
}
.btn-main-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.3) 0%, transparent 60%);
  animation: glow-rotate 4s linear infinite;
  pointer-events: none;
}
@keyframes glow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.btn-main-cta-border {
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 2px;
  background: linear-gradient(90deg, var(--blease-gold), #e8d5a3, var(--blease-gold));
  background-size: 200% 100%;
  animation: border-shimmer 2s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@keyframes border-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.btn-main-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-main-cta-content svg:first-child {
  color: var(--blease-gold);
}
.btn-main-cta-content svg:last-child {
  transition: transform 0.3s ease;
}
.btn-main-cta:hover .btn-main-cta-content svg:last-child {
  transform: translateX(4px);
}
.main-cta-subtitle {
  margin-top: 20px;
  font-size: 15px;
  color: var(--blease-navy);
  opacity: 0.7;
}

/* ==========================================================================
   TYPES DE SOLUTIONS - Cards principales et secondaires
   ========================================================================== */
.section-solutions-types {
  background: #f5f7fa;
  padding: 80px 24px;
}
.section-solutions-types .section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Solution principale (LLD) */
.solution-main-card {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 50px;
  background: var(--blease-white);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(26, 43, 74, 0.12);
  overflow: hidden;
  border: 2px solid var(--blease-gold);
}
.solution-main-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blease-gold);
  color: var(--blease-navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.solution-main-content {
  display: flex;
  gap: 40px;
  padding: 50px;
  align-items: flex-start;
}
.solution-main-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #2c4a6e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blease-gold);
}
.solution-main-text {
  flex: 1;
}
.solution-main-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--blease-navy);
  margin-bottom: 16px;
}
.solution-main-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--blease-gray);
  margin-bottom: 24px;
}
.solution-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.solution-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--blease-navy);
}
.solution-benefits svg {
  color: var(--blease-gold);
  flex-shrink: 0;
}
.btn-solution-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--blease-gold);
  color: var(--blease-navy);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-solution-main:hover {
  background: #b8956d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4);
}

/* Solutions secondaires (Leaseback, Rachat-Vente) */
.solutions-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.solution-secondary-card {
  background: var(--blease-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(26, 43, 74, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 169, 98, 0.2);
}
.solution-secondary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 43, 74, 0.15);
  border-color: var(--blease-gold);
}
.solution-secondary-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26, 43, 74, 0.08) 0%, rgba(201, 169, 98, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blease-navy);
  margin-bottom: 20px;
}
.solution-secondary-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blease-navy);
  margin-bottom: 14px;
}
.solution-secondary-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--blease-gray);
  margin-bottom: 20px;
}
.solution-secondary-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.solution-secondary-benefits span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--blease-navy);
  background: rgba(201, 169, 98, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
}
.solution-secondary-benefits svg {
  color: var(--blease-gold);
}
.solution-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blease-gold);
  transition: all 0.3s ease;
}
.solution-secondary-link:hover {
  color: var(--blease-navy);
}
.solution-secondary-link:hover svg {
  transform: translateX(4px);
}
.solution-secondary-link svg {
  transition: transform 0.3s ease;
}

/* Responsive types de solutions → moved to consolidated blocks */

/* ==========================================================================
   MODAL FINANCEMENT - Popup élégant
   ========================================================================== */
.financing-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.financing-modal.open {
  opacity: 1;
  visibility: visible;
}
.financing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 74, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.financing-modal-container {
  position: relative;
  z-index: 1;
  width: 95%;
  max-width: 700px;
  max-height: 90vh;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.financing-modal.open .financing-modal-container {
  transform: translateY(0) scale(1);
}
.financing-modal-content {
  background: var(--blease-white);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* Header du modal */
.financing-modal-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #2c4a6e 100%);
  color: var(--blease-white);
}
.financing-modal-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 98, 0.2);
  border: 2px solid var(--blease-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blease-gold);
}
.financing-modal-title-wrapper {
  flex: 1;
}
.financing-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--blease-white);
}
.financing-modal-title .text-gold {
  color: var(--blease-gold);
}
.financing-modal-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.financing-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--blease-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.financing-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Corps du modal */
.financing-modal-body {
  padding: 32px;
  max-height: 50vh;
  overflow-y: auto;
}

/* Placeholder pour le formulaire */
.financing-form-placeholder {
  min-height: 250px;
  border: 2px dashed rgba(201, 169, 98, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.05);
}
.placeholder-content {
  text-align: center;
  color: var(--blease-navy);
}
.placeholder-content svg {
  color: var(--blease-gold);
  margin-bottom: 16px;
}
.placeholder-content p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
}
.placeholder-content span {
  font-size: 14px;
  color: var(--blease-gray);
}

/* Footer du modal */
.financing-modal-footer {
  padding: 20px 32px;
  background: #f8f9fa;
  border-top: 1px solid rgba(26, 43, 74, 0.1);
}
.financing-modal-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--blease-navy);
}
.trust-item svg {
  color: var(--blease-gold);
}

/* Responsive modal → moved to consolidated blocks */

/* ==========================================================================
   PARTENAIRES - Nouveau design des cards
   ========================================================================== */

/* Grille 4 colonnes */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Sous-titre large invitant */
.section-subtitle-large {
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Grille types de partenaires */
.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card type partenaire redesignée */
.partner-type-card {
  background: var(--blease-white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(26, 43, 74, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partner-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 43, 74, 0.12);
  border-color: var(--blease-gold);
}

.partner-type-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blease-navy) 0%, #2c4a6e 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blease-gold);
}

.partner-type-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blease-navy);
  margin: 0 0 8px;
}

.partner-type-badge {
  display: inline-block;
  background: rgba(201, 169, 98, 0.15);
  color: var(--blease-navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.partner-type-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--blease-gray);
  margin: 0;
}

.partner-type-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 43, 74, 0.08);
}

.partner-type-perks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--blease-navy);
  font-weight: 500;
}

.partner-type-perks svg {
  color: var(--blease-gold);
}

/* Responsive partenaires → moved to consolidated blocks */

/* ==========================================================================
   RESPONSIVE DESIGN — 3 breakpoints consolidés
   ========================================================================== */

@media (max-width: 1024px) {
  /* --- HEADER --- */
  .site-header-premium .header-top-bar {
    top: 15px;
    bottom: auto;
    padding: 0 20px;
  }
  .site-header-premium .header-main {
    justify-content: center;
    align-items: center;
    padding: 45px 20px 15px;
  }
  .site-header-premium .header-main::before,
  .site-header-premium .header-main::after {
    display: none;
  }
  .site-header-premium .header-nav-left,
  .site-header-premium .header-nav-right {
    display: none;
  }
  .header-logo-wrapper {
    margin-top: 0;
    margin-bottom: 0;
  }
  .header-logo-svg {
    height: 100px;
  }
  .logo-ring {
    width: 120px;
    height: 120px;
  }
  .logo-ring-2 {
    width: 135px;
    height: 135px;
  }
  .header-nav,
  .header-cta-wrapper {
    display: none !important;
  }
  .burger-btn {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .mobile-nav {
    display: block !important;
  }

  /* --- SECTION PADDING --- */
  .section {
    padding: 70px 20px;
  }
  .section-process {
    padding: 70px 20px 0;
  }

  /* --- HERO --- */
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-content {
    padding: 180px 20px 60px;
  }
  .hero-scroll {
    display: none;
  }
  .page-hero-content {
    padding: 180px 20px 40px;
  }

  /* --- FRONT-PAGE HERO --- */
  .hero-title br {
    display: none;
  }
  .hero-buttons {
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* --- FRONT-PAGE FEATURES --- */
  .features-block {
    padding: 40px 30px;
  }
  #solutions .section-header::before {
    width: 400px;
    height: 120px;
  }

  /* --- GRIDS → 2 COLUMNS --- */
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* --- 2-COL → 1-COL --- */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .partner-types-grid {
    grid-template-columns: 1fr;
  }

  /* --- SOLUTIONS TYPES --- */
  .solution-main-content {
    flex-direction: column;
  }
  .solution-main-icon {
    width: 70px;
    height: 70px;
  }
  .solution-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* --- PROCESS TIMELINE → VERTICAL --- */
  .process-timeline {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .process-timeline::before {
    display: none;
  }
  .process-item {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .process-number-ring {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
  }

  /* --- FEATURES SPLIT → STACKED --- */
  .features-split {
    grid-template-columns: 1fr;
  }
  .features-intro {
    text-align: center;
  }
  .features-intro .section-eyebrow {
    justify-content: center;
  }
  .features-highlight {
    justify-content: center;
  }
  .feature-item:hover {
    transform: none;
  }

  /* --- HERO BUTTONS → STACK --- */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* --- CTA BLOCK --- */
  .cta-block {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .cta-block-content {
    text-align: center;
  }
  .cta-block-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  /* --- SOLUTIONS TYPES --- */
  .solutions-secondary-grid {
    grid-template-columns: 1fr;
  }
  .solution-main-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
  .solution-main-content {
    padding: 30px;
  }
  .solution-main-text h3 {
    font-size: 24px;
  }
  .section-main-cta {
    padding: 50px 20px 60px;
  }
  .btn-main-cta {
    padding: 18px 36px;
    font-size: 16px;
  }

  /* --- MODAL → FULLSCREEN --- */
  .financing-modal-container {
    width: 100%;
    max-width: 100%;
  }
  .financing-modal-content {
    border-radius: 0;
    height: 100%;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .financing-modal-header {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px 24px;
  }
  .financing-modal-icon {
    margin: 0 auto;
  }
  .financing-modal-close {
    top: 16px;
    right: 16px;
  }
  .financing-modal-body {
    flex: 1;
    max-height: none;
    overflow-y: auto;
    padding: 24px;
  }
  .financing-modal-footer {
    padding: 16px 24px;
  }
  .financing-modal-trust {
    gap: 16px;
  }
  .trust-item span {
    display: none;
  }

  /* --- ABOUT STATS --- */
  .about-stats-inline {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .about-stat {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  /* --- HEADER MOBILE --- */
  .site-header-premium .header-top-bar {
    top: 12px;
    padding: 0 15px;
  }
  .header-top-btn {
    font-size: 9px;
    letter-spacing: 1px;
    padding: 8px 14px;
  }
  .site-header-premium .header-main {
    padding: 40px 16px 12px;
  }
  .header-logo-svg {
    height: 80px;
  }
  .logo-ring,
  .logo-ring-2 {
    display: none;
  }
  .burger-btn {
    top: 16px;
    right: 16px;
  }

  /* --- ALL GRIDS → 1 COLUMN --- */
  .solutions-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .partner-profile-card {
    grid-template-columns: 1fr;
  }

  /* --- STATS --- */
  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .stat-item {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 12px 20px;
  }
  .stat-number {
    font-size: 38px;
  }
  .stat-unit {
    font-size: 22px;
  }
  .stat-value {
    height: auto;
    justify-content: center;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }

  /* --- SECTION PADDING MINIMAL --- */
  .section {
    padding: 50px 16px;
  }
  .section-process {
    padding: 50px 16px 0;
  }
  .legal-content {
    padding: 40px 16px 60px;
  }
  .section-404 {
    padding: 40px 16px;
  }

  /* --- FRONT-PAGE MOBILE --- */
  .hero-content {
    max-width: 100%;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
    max-width: 100%;
  }
  .section-stats {
    padding: 12px 16px 50px;
  }
  .section-features {
    padding: 20px 16px;
  }
  .features-highlight {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .highlight-number {
    font-size: 36px;
  }
  .feature-item {
    gap: 14px;
  }
  .feature-item-number {
    font-size: 20px;
    min-width: 28px;
  }
  .feature-item-content h3 {
    font-size: 15px;
  }
  .feature-item-content p {
    font-size: 13px;
  }
  .solution-card {
    padding: 24px 18px;
  }
  .section-cta {
    margin-top: 40px;
  }
  .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* --- CARDS PADDING --- */
  .features-block {
    padding: 28px 18px;
  }
  .contact-form-wrapper {
    padding: 24px;
  }
  .contact-info-card {
    padding: 24px;
  }
  .partner-type-card {
    padding: 24px;
  }
  .solution-main-content {
    padding: 24px;
  }

  /* --- FOOTER --- */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* --- FORMS --- */
  .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }

  /* --- HERO MOBILE --- */
  .hero-content {
    padding: 150px 16px 40px;
  }

  /* --- TYPOGRAPHY --- */
  .page-hero-content .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    white-space: normal;
  }
  .page-hero-content {
    padding: 150px 16px 30px;
  }
  .section-subtitle-large {
    font-size: 16px;
  }

  /* --- NICE BACKGROUND (fix iOS) --- */
  .nice-background {
    background-attachment: scroll;
  }

  /* --- CONTACT MAP --- */
  .contact-map iframe {
    height: 180px;
  }

  /* --- MISC --- */
  .thankyou-buttons {
    flex-direction: column;
  }
  .about-stats-inline {
    align-items: center;
    gap: 16px;
  }
  .about-stat {
    text-align: center;
    width: 100%;
  }
  .partner-profile-number {
    font-size: 24px;
  }
  .partner-profile-icon {
    width: 50px;
    height: 50px;
  }
  .header-container {
    padding: 12px 16px;
  }
}
