@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0a0a12;
  --bg-alt: #0e0e18;
  --bg-card: #14141e;
  --text: #eeeffe;
  --text-light: #b0b4cc;
  --text-muted: #8a8aaa;
  --accent: #8B5CF6;
  --accent-dark: #7C3AED;
  --accent-light: #a78bfa;
  --accent-glow: rgba(139, 92, 246, 0.3);
  --accent-soft: rgba(139, 92, 246, 0.1);
  --accent-gradient: linear-gradient(135deg, #8B5CF6 0%, #a78bfa 100%);
  --bubble-gradient: linear-gradient(145deg, #8B5CF6 0%, #7C3AED 100%);
  --heading-gradient: linear-gradient(90deg, #d8dcff 0%, #c4aafc 50%, #8B5CF6 100%);
  --border: rgba(139, 92, 246, 0.15);
  --white: #ffffff;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  --transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.spline-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

spline-viewer::part(logo),
spline-viewer::part(badge) {
  display: none !important;
}

.xk1-badge {
  position: fixed;
  bottom: 14px;
  right: 14px;
  z-index: 1;
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #eeeffe;
  pointer-events: none;
  user-select: none;
}

.xk1-badge span {
  background: linear-gradient(90deg, #a78bfa, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body {
  position: relative;
}

header, main, footer, .cookie-banner {
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: transparent;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 500;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; color: #d0d4f0; }

p { 
  margin-bottom: 1rem; 
  color: var(--text-light);
}

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

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

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

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

.section {
  padding: 7rem 0;
  position: relative;
}

.section-alt {
  background: rgba(14, 10, 28, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  color: #9090b0;
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  border-radius: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #a78bfa 0%, #8B5CF6 100%);
  color: var(--white);
  box-shadow: 
    0 8px 30px rgba(139, 92, 246, 0.35),
    0 4px 12px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: var(--white);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 15px 45px rgba(139, 92, 246, 0.45),
    0 8px 20px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
  background: rgba(180, 160, 255, 0.06);
  color: #c4aafc;
  border: 1.5px solid rgba(180, 160, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(180, 160, 255, 0.12);
  color: #d8dcff;
  border-color: rgba(180, 160, 255, 0.5);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.btn-cta {
  background: linear-gradient(135deg, #a78bfa 0%, #8B5CF6 100%);
  color: var(--white);
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
  box-shadow: 
    0 10px 40px rgba(139, 92, 246, 0.4),
    0 5px 15px rgba(139, 92, 246, 0.2);
}

.btn-cta:hover {
  color: var(--white);
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    0 20px 55px rgba(139, 92, 246, 0.5),
    0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 18, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 15px var(--accent-glow));
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  color: #b0b4cc;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

nav a:hover,
nav a.active {
  color: var(--white);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.nav-cta {
  background: linear-gradient(135deg, #a78bfa 0%, #8B5CF6 100%);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.35);
  transition: var(--transition);
}

nav a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

nav a.nav-cta::after {
  display: none;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding-left: 1rem;
  border-left: 2px solid rgba(139, 92, 246, 0.2);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .logo-tagline {
    display: none;
  }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--accent-light);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 2.5rem;
    gap: 1.75rem;
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    transform: translateY(0);
  }
}

.hero {
  padding: 12rem 0 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

.floating-blob {
  display: none;
}

@keyframes floatGlow {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.1);
  }
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4aafc;
  background: linear-gradient(135deg, rgba(216, 220, 255, 0.08) 0%, rgba(139, 92, 246, 0.12) 100%);
  border: 1px solid rgba(180, 160, 255, 0.25);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards 0.1s;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1s ease forwards 0.25s;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1s ease forwards 0.4s;
}

.hero .btn-group {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1s ease forwards 0.6s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: rgba(18, 14, 32, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(180, 160, 255, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--heading-gradient);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 50px rgba(139, 92, 246, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.25);
  border-color: rgba(180, 160, 255, 0.28);
}

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

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(216, 220, 255, 0.1) 0%, rgba(139, 92, 246, 0.18) 100%);
  border: 1px solid rgba(180, 160, 255, 0.2);
  border-radius: 50% 60% 50% 70% / 60% 50% 70% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  font-size: 1.75rem;
  animation: iconFloat 5s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    border-radius: 50% 60% 50% 70% / 60% 50% 70% 50%;
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
    border-radius: 60% 50% 70% 50% / 50% 60% 50% 70%;
  }
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.pricing-card {
  background: rgba(18, 14, 32, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1.5px solid rgba(180, 160, 255, 0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2), 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(180, 160, 255, 0.3);
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card.featured {
  border: 1.5px solid rgba(180, 160, 255, 0.45);
  background: rgba(100, 60, 200, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(216, 220, 255, 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-card.featured::before {
  content: 'Offre la plus choisie';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a78bfa 0%, #8B5CF6 100%);
  color: var(--white);
  padding: 0.5rem 2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  white-space: nowrap;
}

.pricing-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: var(--text);
}

.pricing-card .card-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.pricing-card .card-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  position: relative;
  z-index: 1;
}

.pricing-card .card-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1.25rem 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  -webkit-text-fill-color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.pricing-card li {
  padding: 0.7rem 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.pricing-card li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px var(--accent-glow);
}

.pricing-card li::after {
  content: '✓';
  position: absolute;
  left: 0;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 6px;
}

.launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(216, 220, 255, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
  color: #c4aafc;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(180, 160, 255, 0.3);
}

.price-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.options-list {
  background: rgba(18, 14, 32, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(180, 160, 255, 0.1);
}

.options-list h3 {
  margin-bottom: 2rem;
  text-align: center;
}

.option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.option-item:last-child {
  border-bottom: none;
}

.option-item .option-name {
  color: var(--text-light);
}

.option-item .option-price {
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Poppins', sans-serif;
}

.option-item.option-featured {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(180, 160, 255, 0.15);
  margin: -0.5rem -1rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border-bottom: none;
}

.option-item.option-featured .option-name {
  color: var(--accent-light);
  font-weight: 600;
}

.project-card {
  background: rgba(18, 14, 32, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(180, 160, 255, 0.1);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.18), 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(180, 160, 255, 0.28);
}

.project-card .project-image {
  height: 200px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5rem;
  overflow: hidden;
  position: relative;
}

.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-card .project-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 18, 0.6) 100%);
  pointer-events: none;
}

.project-card .project-content {
  padding: 2rem;
}

.project-card .project-type {
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-card h3 {
  margin-bottom: 0.75rem;
}

.project-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.project-card .project-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.project-card .project-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--accent-glow);
  color: white;
}

.loading-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.contact-form {
  background: rgba(18, 14, 32, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(180, 160, 255, 0.12);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.12), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-group {
  margin-bottom: 1.75rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.1rem 1.5rem;
  border: 1.5px solid rgba(180, 160, 255, 0.15);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: rgba(180, 160, 255, 0.04);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(167, 139, 250, 0.6);
  background: rgba(139, 92, 246, 0.07);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

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

.contact-form .btn {
  width: 100%;
}

.cta-section {
  background: rgba(14, 10, 28, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: 
    radial-gradient(ellipse at 30% 100%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0.5;
}

.cta-section h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

footer {
  background: rgba(8, 5, 18, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(139, 92, 246, 0.12);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
  opacity: 0.3;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand .logo img {
  height: 45px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}

.why-intro h2 {
  margin-bottom: 1rem;
}

.why-intro p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(18, 14, 32, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(180, 160, 255, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
  border-color: rgba(180, 160, 255, 0.28);
}

.feature-item .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(216, 220, 255, 0.1) 0%, rgba(139, 92, 246, 0.18) 100%);
  border: 1px solid rgba(180, 160, 255, 0.2);
  border-radius: 50% 60% 50% 70% / 60% 50% 70% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.12);
}

.feature-item .content h4 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  color: var(--text);
}

.feature-item .content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.page-header {
  padding: 12rem 0 5rem;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 55%);
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

.page-header h1 {
  margin-bottom: 1rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease forwards;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: #9090b0;
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.25rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease 0.15s forwards;
}

.mention {
  text-align: center;
  padding: 2.5rem;
  background: var(--accent-gradient);
  border-radius: var(--radius-xl);
  margin-top: 4rem;
  box-shadow: 0 15px 40px var(--accent-glow);
}

.mention p {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding: 9rem 0 5rem;
    min-height: auto;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .contact-form {
    padding: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: var(--accent);
  color: var(--white);
}

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

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.legal-page {
  padding-top: 120px;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page .last-update {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-content {
  background: rgba(18, 14, 32, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--accent-light);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.legal-content ul li {
  color: var(--text-muted);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  line-height: 1.6;
}

.legal-content ul li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.legal-content a {
  color: var(--accent-light);
  text-decoration: none;
  transition: var(--transition);
}

.legal-content a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-table td {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:hover td {
  background: rgba(139, 92, 246, 0.05);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.pricing-card.promo {
  border-color: var(--accent);
  position: relative;
}

.pricing-card.promo .launch-badge {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.price-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 1.25rem 0;
  min-height: 4rem;
  justify-content: center;
}

.old-price {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.new-price {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pack-info-section {
  padding: 2rem 0;
  animation: slideDown 0.4s ease-out;
}

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

.pack-info-card {
  background: rgba(18, 14, 32, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  border: 2px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pack-info-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  line-height: 1;
}

.pack-info-close:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--text);
}

.pack-info-card h2 {
  margin-bottom: 1.5rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pack-info-card h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--accent-light);
}

.pack-info-card h3:first-of-type {
  margin-top: 0;
}

.pack-info-card ul {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

.pack-info-card li {
  margin-bottom: 0.4rem;
  color: var(--text-light);
  line-height: 1.6;
}

.recommended-tag {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .pack-info-card {
    padding: 1.5rem;
    padding-top: 3rem;
  }

  .pack-info-card h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .cookie-table {
    font-size: 0.8rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem 0.5rem;
  }
}


/* ===== REFERRAL SECTION ===== */
.referral-section {
  padding: 3rem 0;
  background: var(--bg-primary);
}

.referral-card {
  max-width: 580px;
  margin: 0 auto;
  background: rgba(123, 95, 201, 0.08);
  border: 1.5px solid rgba(123, 95, 201, 0.35);
  border-radius: 20px;
  padding: 2.2rem 2.5rem;
  text-align: center;
  box-shadow: 0 0 28px rgba(123, 95, 201, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.referral-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.referral-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.referral-eq {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-shadow: 0 0 14px rgba(123, 95, 201, 0.45);
  margin: 0.2rem 0;
}

.referral-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
  opacity: 0.65;
  font-style: italic;
  margin: 0;
}

/* ===== SECTION BEYOND (Un site, mais pas seulement) ===== */
.beyond-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.beyond-text h2 {
  margin-bottom: 1.25rem;
}

.beyond-text p {
  color: var(--text-light);
  line-height: 1.75;
}

.beyond-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.beyond-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: var(--transition-smooth);
}

.beyond-item:hover {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.1);
  transform: translateX(4px);
}

.beyond-item-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.beyond-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #d0d4f0;
  margin-bottom: 0.35rem;
  font-family: 'Poppins', sans-serif;
}

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

@media (max-width: 768px) {
  .beyond-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ===== SECTION PROBLÈME ===== */
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(20, 20, 35, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition-smooth);
}

.problem-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(25, 20, 45, 0.75);
  transform: translateY(-3px);
}

.problem-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.problem-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #d0d4f0;
  margin-bottom: 0.4rem;
  font-family: 'Poppins', sans-serif;
}

.problem-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SECTION IA ===== */
.ia-section {
  position: relative;
}

.ia-block {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(20, 20, 35, 0.7) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.ia-block-content p.mt-2 {
  color: var(--text-light);
  font-size: 1.05rem;
}

.ia-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ia-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-light);
  font-size: 0.97rem;
}

.ia-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

.ia-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 2px solid rgba(139, 92, 246, 0.3);
  padding-left: 1rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(20, 20, 35, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(139, 92, 246, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: #d0d4f0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.75rem;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 1.75rem 1.4rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--text-light);
}

/* ===== OFFRES INTRO ===== */
.offres-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.offres-intro-text h2 {
  margin-bottom: 1.25rem;
}

.offres-intro-text p {
  color: var(--text-light);
  line-height: 1.75;
}

.offres-intro-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.intro-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
}

.intro-point-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ===== CARD TARGET (pour les offres) ===== */
.card-target {
  font-size: 0.85rem;
  color: var(--accent-light);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  line-height: 1.5;
}

/* ===== OPTION DESC ===== */
.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.option-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.25rem;
}

/* ===== RESPONSIVE NOUVELLES SECTIONS ===== */
@media (max-width: 768px) {
  .ia-block {
    padding: 2rem 1.5rem;
  }

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

  .faq-question {
    font-size: 0.92rem;
    padding: 1.1rem 1.25rem;
  }

  .faq-answer.open {
    padding: 0 1.25rem 1.1rem;
  }

  .problem-item {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ===== PAGE ACCOMPAGNEMENT — AFTER GRID ===== */
.after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.after-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(20, 20, 35, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.after-item:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-3px);
}

.after-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.after-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #d0d4f0;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.after-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== INTERVENTION CARDS ===== */
.intervention-card {
  background: rgba(20, 20, 35, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.intervention-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-4px);
}

.intervention-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intervention-card h3 {
  margin-bottom: 0.75rem;
}

.intervention-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.intervention-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.intervention-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.intervention-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-size: 0.8rem;
}

/* ===== PROGRESSIVE BLOCK ===== */
.progressive-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.progressive-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prog-step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.prog-step:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.35);
}

.prog-step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 1.5rem;
  text-align: center;
}

/* ===== FOR WHO LIST ===== */
.for-who-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.for-who-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  color: var(--text-light);
  font-size: 0.97rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.for-who-item:hover {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.1);
}

.for-who-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ===== HOW STEPS ===== */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(20, 20, 35, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

.how-step:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.how-step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.how-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #d0d4f0;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.how-step-arrow {
  font-size: 1.5rem;
  color: var(--accent-light);
  opacity: 0.5;
  padding: 0 0.5rem;
  margin-top: 3rem;
  flex-shrink: 0;
}

/* ===== COMPLEMENT BLOCK ===== */
.complement-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.complement-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.complement-option {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: var(--transition-smooth);
}

.complement-option:hover {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.1);
}

.complement-option-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.complement-option h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #d0d4f0;
  margin-bottom: 0.3rem;
  font-family: 'Poppins', sans-serif;
}

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

/* ===== RESPONSIVE ACCOMPAGNEMENT ===== */
@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .how-step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

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

  .progressive-block,
  .complement-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
