/* ========================================
   STYLE CSS AMÉLIORÉ – Sparta Tech Solutions
   ======================================== */

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

/* ========== ACCESSIBILITÉ ========== */

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1e40af;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  z-index: 100;
  font-weight: 600;
}

.skip-to-main:focus {
  top: 0;
}

/* Réduction des animations pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --primary: #1e40af;
  --primary-light: #2563eb;
  --primary-lighter: #3b82f6;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #0a1428 0%, #1e40af 25%, #0d1b2a 50%, #0284c7 75%, #051120 100%);
  background-attachment: fixed;
  color: #f5f7ff;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

@media (prefers-reduced-motion: no-preference) {
  body {
    background-size: 400% 400%;
    animation: gradientShift 30s ease infinite;
  }

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

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

a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Focus visible pour l'accessibilité au clavier */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav a:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 4px;
  border-radius: 4px;
}

.page {
  min-height: 100vh;
}

/* ========== HEADER ========== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(30,41,59,0.85), transparent);
  backdrop-filter: blur(14px);
  z-index: 50;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.header-nav-center {
  display: none;
}

.header-nav-link {
  color: #cbd5f5;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.header-nav-link:hover {
  color: #60a5fa;
}

.header-nav-link:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 4px;
  border-radius: 4px;
}

.header-cta {
  display: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #1e40af;
  background: linear-gradient(135deg, rgba(30,64,175,0.2), rgba(2,132,199,0.1));
  color: #e0e7ff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30,64,175,0.2);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-cta:hover {
  background: linear-gradient(135deg, rgba(30,64,175,0.35), rgba(2,132,199,0.25));
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,64,175,0.4);
  color: #f1f5f9;
}

.header-cta:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 200px;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(100,180,255,0.2);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  display: block;
  transition: transform 0.3s ease;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Poppins', sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
  .brand-text span:first-child {
    animation: shimmer 3s ease-in-out infinite;
  }
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.brand-text span:last-child {
  font-size: 0.8rem;
  color: #cbd5f5;
}

.header-menu {
  position: relative;
  z-index: 100;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(30,64,175,0.15), rgba(2,132,199,0.1));
  border: 2px solid rgba(30,64,175,0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  gap: 6px;
  padding: 0;
}

.nav-toggle:hover {
  background: linear-gradient(135deg, rgba(30,64,175,0.25), rgba(2,132,199,0.2));
  border-color: rgba(30,64,175,0.5);
}

.nav-toggle:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 20px;
  background: #f9fafb;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.dropdown-menu {
  position: fixed;
  top: 74px;
  right: 18px;
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,41,59,0.9));
  border: 1px solid rgba(30,64,175,0.3);
  border-radius: 16px;
  min-width: 280px;
  min-height: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: visible;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 12px 0;
  animation: slideDownDropdown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  z-index: 101;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-menu.show {
  display: flex !important;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.close-menu {
  background: none;
  border: none;
  color: #cbd5f5;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 0 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 102;
}

.close-menu:hover {
  background: rgba(30,64,175,0.15);
  color: #60a5fa;
}

.close-menu:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

.close-menu:hover {
  background: rgba(30,64,175,0.15);
  color: #60a5fa;
}

.close-menu:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(30,64,175,0.2);
  font-weight: 600;
  color: #cbd5f5;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dropdown-close {
  background: none;
  border: none;
  color: #cbd5f5;
  font-size: 1.4rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.dropdown-close:hover {
  background: rgba(30,64,175,0.15);
  color: #60a5fa;
}

.dropdown-close:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

.dropdown-link {
  padding: 14px 20px;
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  background: transparent;
  border-left: 3px solid transparent;
  position: relative;
  transition: all 0.25s ease;
}

.dropdown-link:hover {
  background: rgba(30,64,175,0.15);
  color: #60a5fa;
  border-left-color: #0ea5e9;
  padding-left: 24px;
}

.dropdown-link:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: -2px;
  background: rgba(30,64,175,0.1);
}

.dropdown-menu.show .dropdown-link {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu.show .dropdown-link:nth-child(2) { transition-delay: 40ms; }
.dropdown-menu.show .dropdown-link:nth-child(3) { transition-delay: 80ms; }
.dropdown-menu.show .dropdown-link:nth-child(4) { transition-delay: 120ms; }
.dropdown-menu.show .dropdown-link:nth-child(5) { transition-delay: 160ms; }
.dropdown-menu.show .dropdown-link:nth-child(6) { transition-delay: 200ms; }
.dropdown-menu.show .dropdown-link:nth-child(7) { transition-delay: 240ms; }
.dropdown-menu.show .dropdown-link:nth-child(8) { transition-delay: 280ms; }

.dropdown-cta {
  background: linear-gradient(135deg, rgba(30,64,175,0.25), rgba(2,132,199,0.15));
  border: 1px solid rgba(30,64,175,0.3);
  color: #e0e7ff;
  font-weight: 600;
  margin: 8px;
  border-radius: 8px;
  border-left: none !important;
  padding-left: 20px !important;
  box-shadow: 0 4px 15px rgba(30,64,175,0.2);
}

.dropdown-cta:hover {
  background: linear-gradient(135deg, rgba(30,64,175,0.35), rgba(2,132,199,0.25));
  border-color: rgba(30,64,175,0.5);
  padding-left: 20px !important;
}

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

/* Nav desktop retirée : on passe tout par le menu déroulant pour uniformiser */
.nav { display: none; }

.nav-toggle {
  display: flex;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  background: rgba(30,64,175,0.12);
  border: 2px solid rgba(30,64,175,0.35);
  border-radius: 10px;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}

.nav-toggle:hover {
  background: rgba(30,64,175,0.2);
  transform: translateY(-1px);
}

.nav-toggle:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
  border-color: #1e40af;
  background: rgba(30,64,175,0.15);
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 22px;
  background: #f9fafb;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

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

.hero {
  padding: 120px 18px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: radial-gradient(circle, rgba(100,200,255,0.1), transparent);
  border-radius: 50%;
  filter: blur(40px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

@media (prefers-reduced-motion: no-preference) {
  .shape-1 {
    animation: float 8s ease-in-out infinite;
  }
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: 5%;
  animation-delay: 2s;
}

@media (prefers-reduced-motion: no-preference) {
  .shape-2 {
    animation: float 10s ease-in-out infinite;
  }
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 5%;
  animation-delay: 4s;
}

@media (prefers-reduced-motion: no-preference) {
  .shape-3 {
    animation: float 12s ease-in-out infinite;
  }
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30,64,175,0.2), rgba(2,132,199,0.2), rgba(30,64,175,0.1));
  background-size: 200% 200%;
  border: 1px solid;
  border-image: linear-gradient(135deg, rgba(30,64,175,0.6), rgba(2,132,199,0.6)) 1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff;
  margin-bottom: 18px;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), bgShimmer 4s ease infinite;
  animation-delay: 0.2s, 0s;
}

@keyframes bgShimmer {
  0%, 100% {
    background-position: 0% 0%;
    box-shadow: 0 0 15px rgba(30,64,175,0.3);
  }
  50% {
    background-position: 100% 100%;
    box-shadow: 0 0 25px rgba(2,132,199,0.5);
  }
}

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

@keyframes pulse-border {
  0%, 100% { border-color: rgba(100,180,255,0.4); }
  50% { border-color: rgba(100,180,255,0.8); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  box-shadow: 0 0 12px rgba(34,197,94,0.9), 0 0 24px rgba(16,185,129,0.5);
}

@media (prefers-reduced-motion: no-preference) {
  .badge-dot {
    animation: pulse 2s ease-in-out infinite, rotate-glow 3s linear infinite;
  }
}

@keyframes rotate-glow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(34,197,94,0.9), 0 0 24px rgba(16,185,129,0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(34,197,94,1), 0 0 35px rgba(16,185,129,0.8);
  }
}

@keyframes scaleOut {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-delay: 0.4s;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

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

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(59,130,246,0.3), 0 0 20px rgba(14,165,233,0.1);
  }
  50% {
    text-shadow: 0 0 20px rgba(59,130,246,0.6), 0 0 40px rgba(14,165,233,0.3);
  }
}

.hero-title span {
  display: block;
}

.hero-title-accent {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #ffffff;
  max-width: 430px;
  margin-bottom: 22px;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-delay: 0.6s;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  /* Accessibilité: minimum touch target size */
  min-height: 44px;
  min-width: 44px;
  text-decoration: none;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid #1e40af;
  outline-offset: 2px;
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.98);
}

.btn-primary {
  border: none;
  background: linear-gradient(135deg, #1e40af, #2563eb, #0284c7, #1e40af);
  background-size: 300% 300%;
  color: #fff;
  box-shadow: 0 12px 30px rgba(30,64,175,0.5), 0 0 30px rgba(2,132,199,0.3);
  position: relative;
  overflow: visible;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), gradientRotate 6s ease infinite;
  animation-delay: 0s, 0s;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.8), transparent);
  border-radius: inherit;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}

.btn-primary:hover::after {
  animation: scaleOut 0.6s ease-out;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(30,64,175,0.6), 0 0 40px rgba(2,132,199,0.4);
  animation: pulse-button 0.6s ease-in-out, glowPulse 1.5s ease-in-out infinite;
}

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

@keyframes pulse-button {
  0%, 100% {
    box-shadow: 0 18px 40px rgba(59,130,246,0.6), 0 0 40px rgba(14,165,233,0.4);
  }
  50% {
    box-shadow: 0 18px 50px rgba(59,130,246,0.8), 0 0 60px rgba(14,165,233,0.6);
  }
}

.btn-secondary {
  border: 2px solid #1e40af;
  background: rgba(30,41,59,0.6);
  color: #e0e7ff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
  background: rgba(30,64,175,0.15);
  border-color: #2563eb;
  color: #f1f5f9;
  box-shadow: 0 12px 30px rgba(30,64,175,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30,64,175,0.3);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3b8;
}

/* ========== HERO CARD ========== */

.hero-right {
  position: relative;
  perspective: 1000px;
}

.hero-card {
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(30,64,175,0.12), rgba(2,132,199,0.08), rgba(30,41,59,0.95));
  background-size: 250% 250%;
  border: 2px solid;
  border-image: linear-gradient(135deg, rgba(30,64,175,0.4), rgba(2,132,199,0.3)) 1;
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(30,64,175,0.15);
  backdrop-filter: blur(10px);
  animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), cardFlow 7s ease infinite;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes cardFlow {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

.hero-card:hover {
  border-color: rgba(30,64,175,0.6);
  box-shadow: 0 30px 70px rgba(30,64,175,0.3), inset 0 1px 0 rgba(30,64,175,0.2), 0 0 50px rgba(30,64,175,0.2);
  transform: translateY(-10px);
}

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

.hero-card-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-card-main {
  font-size: 0.98rem;
  margin-bottom: 16px;
  color: #f1f5f9;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 0.82rem;
  color: #cbd5f5;
}

.hero-card-grid strong {
  color: #a7d8ff;
}

.hero-pill {
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(14,165,233,0.1));
  border: 1px solid rgba(100,180,255,0.3);
  font-size: 0.78rem;
  margin-top: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #a7d8ff;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
}

/* ========== SECTIONS ========== */

.section {
  padding: 100px 18px;
  position: relative;
  z-index: 1;
}

.section:nth-child(even) {
  background: rgba(30,41,59,0.3);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 50px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 700;
  animation: fadeInLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-delay: 0.1s;
}

.section-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.section-sub {
  font-size: 0.95rem;
  color: #ffffff;
  max-width: 540px;
  line-height: 1.8;
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-delay: 0.2s;
}

/* ========== SERVICES ========== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.service-card {
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(2,132,199,0.05), rgba(30,41,59,0.8));
  background-size: 200% 200%;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(30,64,175,0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), cardGlow 6s ease infinite;
  animation-fill-mode: both;
  /* Accessibilité */
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.service-card:focus-visible {
  outline: 2px solid #1e40af;
}

@keyframes cardGlow {
  0%, 100% {
    background-position: 0% 0%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(30,64,175,0.1);
  }
  50% {
    background-position: 100% 100%;
    box-shadow: 0 10px 40px rgba(30,64,175,0.2), inset 0 1px 0 rgba(30,64,175,0.2);
  }
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(30,64,175,0.5);
  box-shadow: 0 20px 60px rgba(30,64,175,0.3), inset 0 1px 0 rgba(30,64,175,0.2), 0 0 40px rgba(30,64,175,0.2);
  animation: glowPulse 1.2s ease-in-out infinite;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(30,64,175,0.4), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service-card:hover::after {
  animation: ripple 0.6s ease-out;
}

.service-card-1 { --accent: #3b82f6; }
.service-card-2 { --accent: #10b981; }
.service-card-3 { --accent: #f59e0b; }
.service-card-4 { --accent: #8b5cf6; }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent, #3b82f6)20%, var(--accent, #3b82f6)80%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), spin 6s linear infinite;
  animation-delay: 0.3s, 0s;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spin {
  0%, 100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(5deg);
  }
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg) rotateZ(360deg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 40px currentColor;
  animation: gentleBounce 0.6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.service-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a7d8ff;
  margin-bottom: 8px;
  font-weight: 700;
}

.service-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  /* Contraste amélioré - ratio minimum 4.5:1 */
  letter-spacing: 0.3px;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent, #3b82f6), transparent);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-card:hover .service-title::after {
  width: 100%;
}

.service-text {
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.7;
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(2,132,199,0.05), rgba(30,64,175,0.02));
  background-size: 200% 200%;
  border: 1.5px solid;
  border-image: linear-gradient(135deg, rgba(30,64,175,0.3), rgba(2,132,199,0.2)) 1;
  border-radius: 18px;
  transition: all 0.3s ease;
  animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), stepFlow 8s ease infinite;
  animation-fill-mode: both;
}

@keyframes stepFlow {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }
.step:nth-child(4) { animation-delay: 0.8s; }

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

.step:hover {
  border-color: rgba(30,64,175,0.5);
  background: linear-gradient(135deg, rgba(30,64,175,0.1), rgba(2,132,199,0.08));
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(30,64,175,0.2), inset 0 1px 0 rgba(30,64,175,0.1);
  animation: glowPulse 1.2s ease-in-out infinite;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite, iconBounce 1.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.step-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: iconShine 2s infinite;
}

@keyframes iconShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.step-icon-1 { 
  background: linear-gradient(135deg, #1e40af, #0284c7);
  animation-delay: 0s;
}

.step-icon-2 { 
  background: linear-gradient(135deg, #059669, #047857);
  animation-delay: 0.2s;
}

.step-icon-3 { 
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  animation-delay: 0.4s;
}

.step-icon-4 { 
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.step:hover .step-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: none;
  filter: drop-shadow(0 0 15px currentColor);
}

.step-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-weight: 800;
  color: #f1f5f9;
  position: relative;
}

.step-title::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, currentColor, transparent);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.step:hover .step-title::before {
  width: 100%;
}

.step-text {
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.6;
}

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

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30,64,175,0.12), rgba(2,132,199,0.08), rgba(30,41,59,0.93));
  background-size: 300% 300%;
  padding: 48px 40px;
  border: 2px solid;
  border-image: linear-gradient(135deg, rgba(30,64,175,0.4), rgba(2,132,199,0.3), rgba(30,64,175,0.2)) 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(30,64,175,0.15);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), wrapperFlow 9s ease infinite;
  position: relative;
}

@keyframes wrapperFlow {
  0%, 100% {
    background-position: 0% 0%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(30,64,175,0.15);
  }
  50% {
    background-position: 100% 100%;
    box-shadow: 0 20px 60px rgba(30,64,175,0.1), inset 0 1px 0 rgba(2,132,199,0.2);
  }
}

.contact-main-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 900;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-lead {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.7;
}

.contact-list {
  list-style: none;
  margin-top: 16px;
  font-size: 0.9rem;
  padding-left: 0;
}

.contact-list li + li {
  margin-top: 12px;
}

.contact-list span {
  color: #a7d8ff;
  font-weight: 600;
}

/* ========== FORMULAIRE ========== */

.form-premium {
  display: grid;
  gap: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  background: rgba(30,41,59,0.8);
  border-radius: 12px;
  border: 2px solid rgba(30,64,175,0.3);
  font-size: 0.95rem;
  color: #f1f5f9;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: inherit;
  animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
  /* Accessibilité: minimum height pour cible de cliquage */
  min-height: 44px;
}

.form-group:nth-child(1) input { animation-delay: 0.2s; }
.form-group:nth-child(2) input { animation-delay: 0.4s; }
.form-group:nth-child(3) textarea { animation-delay: 0.6s; }

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148,163,184,0.7);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  border-color: #2563eb;
  background: rgba(30,41,59,0.95);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15), 0 0 20px rgba(59,130,246,0.3), inset 0 2px 6px rgba(0,0,0,0.2);
  outline: 2px solid #1e40af;
  outline-offset: 1px;
  animation: inputFocus 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #3b82f6;
  background: rgba(30,41,59,0.95);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1), 0 0 20px rgba(59,130,246,0.3), inset 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(-2px);
  animation: inputFocus 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), softGlow 1.5s ease-in-out infinite;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: #1e2333;
  color: #f1f5f9;
}

.form-group select option:hover {
  background: #2563eb;
}

.form-group label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: rgba(148,163,184,0.7);
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 600;
  letter-spacing: 0.3px;
  /* Accessibilité - visible pour lecteurs d'écran */
}

/* Labels flottants pour les inputs et textarea */
.form-group input:not(:placeholder-shown) + label,
.form-group input:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group textarea:focus + label {
  top: -12px;
  font-size: 0.75rem;
  color: #1e40af;
  background: linear-gradient(135deg, #0a1428 0%, #0a1428 50%, transparent 100%);
  padding: 0 6px;
  animation: textShine 0.6s ease-out;
}

/* Labels flottants permanents pour les selects */
.form-group select ~ label {
  top: -12px;
  font-size: 0.75rem;
  color: #1e40af;
  background: linear-gradient(135deg, #0a1428 0%, #0a1428 50%, transparent 100%);
  padding: 0 6px;
}

.form-help {
  position: absolute;
  left: 18px;
  bottom: -20px;
  font-size: 0.75rem;
  color: rgba(148,163,184,0.6);
  font-weight: 400;
  letter-spacing: 0;
  visibility: hidden;
}

.form-group input:focus ~ .form-help,
.form-group textarea:focus ~ .form-help,
.form-group select:focus ~ .form-help {
  visibility: visible;
}

.form-full {
  grid-column: 1 / -1;
}

.form-btn {
  padding: 16px 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e40af, #2563eb, #0284c7);
  background-size: 300% 300%;
  border: 2px solid transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(30,64,175,0.4);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 12px;
  /* Accessibilité: minimum touch target size */
  min-height: 44px;
  min-width: 44px;
  font-family: inherit;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(30,64,175,0.6);
  background-position: 100% center;
}

.form-btn:focus-visible {
  outline: 3px solid #1e40af;
  outline-offset: 2px;
  border-color: #1e40af;
}

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

.form-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.5s ease;
}

.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59,130,246,0.5);
}

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

.form-btn:active {
  transform: translateY(-1px);
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #ef4444;
  background: rgba(239,68,68,0.08);
}

.form-group input[aria-invalid="true"]:focus-visible,
.form-group textarea[aria-invalid="true"]:focus-visible {
  border-color: #ef4444;
  outline-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15), 0 0 20px rgba(239,68,68,0.2);
}

.form-success,
.form-error {
  display: none;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: slideInDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  margin-top: 16px;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.form-success {
  color: #10b981;
  background: rgba(16,185,129,0.12);
  border: 2px solid rgba(16,185,129,0.4);
}

.form-error {
  color: #ef4444;
  background: rgba(239,68,68,0.12);
  border: 2px solid rgba(239,68,68,0.4);
}

#formValidation {
  padding: 12px 0;
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========== PRICING ========== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(2,132,199,0.05), rgba(30,41,59,0.8));
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(30,64,175,0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), cardGlow 6s ease infinite;
  animation-fill-mode: both;
  text-align: center;
}

.pricing-card:nth-child(1) { animation-delay: 0.2s, 0s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s, 0s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s, 0s; }
.pricing-card:nth-child(4) { animation-delay: 0.8s, 0s; }

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(30,64,175,0.1);
}

.pricing-card-primary {
  background: linear-gradient(135deg, rgba(30,64,175,0.15), rgba(2,132,199,0.1), rgba(30,41,59,0.85));
  border: 1px solid rgba(30,64,175,0.3);
}

.pricing-card-primary:hover {
  box-shadow: 0 20px 60px rgba(30,64,175,0.4), inset 0 1px 0 rgba(30,64,175,0.2);
}

.pricing-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #60a5fa;
  margin-bottom: 12px;
  font-weight: 700;
}

.pricing-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
}

.pricing-text {
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.6;
  margin: 0;
}

.pricing-card:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

/* ========== WHY US ========== */

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-us-card {
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(2,132,199,0.05));
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-us-card:nth-child(1) { animation-delay: 0.2s; }
.why-us-card:nth-child(2) { animation-delay: 0.4s; }
.why-us-card:nth-child(3) { animation-delay: 0.6s; }
.why-us-card:nth-child(4) { animation-delay: 0.8s; }

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30,64,175,0.3);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(30,64,175,0.15), rgba(2,132,199,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}

.why-us-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.why-us-card p {
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ========== PRICING ENHANCED ========== */

.pricing-header {
  margin-bottom: 16px;
}

.pricing-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.pricing-badge {
  display: inline-block;
  background: rgba(96,165,250,0.2);
  border: 1px solid rgba(96,165,250,0.4);
  color: #60a5fa;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-badge.featured {
  background: linear-gradient(135deg, rgba(30,64,175,0.3), rgba(2,132,199,0.2));
  border-color: rgba(30,64,175,0.6);
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(2,132,199,0.05), rgba(30,41,59,0.8));
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), cardGlow 6s ease infinite;
  animation-fill-mode: both;
}

.pricing-card:nth-child(1) { animation-delay: 0.2s, 0s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s, 0s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s, 0s; }

.pricing-card-featured {
  border: 2px solid rgba(30,64,175,0.5);
  background: linear-gradient(135deg, rgba(30,64,175,0.15), rgba(2,132,199,0.1), rgba(30,41,59,0.85));
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  animation: borderGlow 1.2s ease-in-out infinite;
}

.pricing-card-featured:hover {
  box-shadow: 0 20px 60px rgba(30,64,175,0.4);
  animation: glowPulse 1s ease-in-out infinite;
}

.pricing-desc {
  color: #cbd5f5;
  font-size: 0.95rem;
  margin: 12px 0 20px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  color: #cbd5f5;
  font-size: 0.9rem;
  line-height: 1.8;
}

.pricing-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.pricing-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.2em;
}

.pricing-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(96,165,250,0.08);
  border-left: 4px solid #60a5fa;
  border-radius: 8px;
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-note p {
  margin: 0;
}

.pricing-note strong {
  color: #ffffff;
}

/* ========== TESTIMONIALS ========== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(2,132,199,0.05));
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(30,64,175,0.2);
  border-color: rgba(30,64,175,0.3);
  animation: softGlow 1.2s ease-in-out infinite;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  animation: sparkle 1.5s ease-in-out infinite;
}

.testimonial-text {
  color: #cbd5f5;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

.testimonial-author span {
  display: block;
  color: #60a5fa;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ========== AVANTAGES ========== */

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.advantage-card {
  background: linear-gradient(135deg, rgba(30,64,175,0.1), rgba(2,132,199,0.08));
  border: 1.5px solid rgba(30,64,175,0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
}

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

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30,64,175,0.4);
  box-shadow: 0 15px 40px rgba(30,64,175,0.2), inset 0 1px 0 rgba(30,64,175,0.1);
  animation: softGlow 1.2s ease-in-out infinite;
}

.advantage-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  font-weight: 900;
  margin: 0 auto 16px;
  animation: gentleBounce 2s ease-in-out infinite;
}

.advantage-card:hover .advantage-icon {
  animation: bounce 0.6s ease-in-out infinite;
}

.advantage-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  font-family: 'Poppins', sans-serif;
}

.advantage-text {
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

.faq-list {
  margin-top: 48px;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(2,132,199,0.05));
  border-radius: 12px;
  overflow: hidden;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.faq-toggle {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-toggle:hover {
  background: rgba(30,64,175,0.1);
  color: #60a5fa;
}

.faq-toggle:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: -2px;
}

.faq-toggle svg {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #60a5fa;
}

.faq-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: #0ea5e9;
}

.faq-content {
  padding: 0 24px 20px;
  color: #cbd5f5;
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid rgba(96,165,250,0.2);
  animation: slideDown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-content p {
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

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

footer {
  padding: 48px 18px;
  background: linear-gradient(180deg, rgba(15,23,42,0.95), rgba(30,41,59,0.9));
  border-top: 1px solid rgba(30,64,175,0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-main h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
}

.footer-main p {
  font-size: 0.85rem;
  color: #60a5fa;
  margin: 0;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #cbd5f5;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

.footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3b8;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(30,64,175,0.2);
}

/* ========== CTA FINAL ========== */

.cta-final {
  background: linear-gradient(135deg, rgba(30,64,175,0.15), rgba(2,132,199,0.1));
  border-top: 2px solid rgba(30,64,175,0.3);
  border-bottom: 2px solid rgba(30,64,175,0.3);
  padding: 64px 18px;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-final h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-final p {
  font-size: 1.05rem;
  color: #cbd5f5;
  margin: 0 0 32px;
  line-height: 1.7;
}

.btn-large {
  padding: 18px 40px !important;
  font-size: 1.05rem !important;
  animation: pulse-button 0.6s ease-in-out infinite;
}

/* ========== ZONES DE SERVICE ========== */

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.zone-card {
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(2,132,199,0.05));
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.zone-card:nth-child(1) { animation-delay: 0.2s; }
.zone-card:nth-child(2) { animation-delay: 0.4s; }
.zone-card:nth-child(3) { animation-delay: 0.6s; }

.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30,64,175,0.2);
}

.zone-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(30,64,175,0.15), rgba(2,132,199,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
}

.zone-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.zone-card p {
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 16px;
}

.zone-status {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: #10b981;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.zones-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(96,165,250,0.08);
  border-left: 4px solid #60a5fa;
  border-radius: 8px;
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.zones-note p {
  margin: 0;
}

.zones-note strong {
  color: #ffffff;
}

/* ========= RESPONSIVE ÉCRANS LARGES ========== */

@media (min-width: 881px) {
  .header-nav-center,
  .header-cta,
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .dropdown-menu {
    display: none;
  }
}

/* ========= RESPONSIVE MEDIA QUERIES ========== */

@media (max-width: 880px) {
  .why-us-grid,
  .testimonials-grid,
  .pricing-grid,
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .dropdown-menu {
    display: flex !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transform: translateY(-6px) scale(0.98) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }

  .dropdown-menu.show {
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  .header-nav-center {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .faq-toggle {
    padding: 18px 16px;
    font-size: 0.95rem;
  }

  .faq-content {
    padding: 0 16px 16px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-note {
    padding: 16px 20px;
  }

  .why-us-card {
    padding: 24px 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .step {
    grid-template-columns: 60px 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== NOUVELLES ANIMATIONS AMÉLIORÉES ========== */

@keyframes borderGlow {
  0% {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(59, 130, 246, 0);
  }
  100% {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

@keyframes subtleShimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes wobble {
  0% { transform: translateY(0); }
  25% { transform: translateY(-2px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-1px); }
  100% { transform: translateY(0); }
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes borderPulse {
  0%, 100% { 
    border-color: rgba(30, 64, 175, 0.2);
  }
  50% { 
    border-color: rgba(59, 130, 246, 0.4);
  }
}

@keyframes softGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.3));
  }
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-3px); }
}

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

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

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

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes textShine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(251, 191, 36, 0), 0 0 5px rgba(251, 191, 36, 0.4);
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(251, 191, 36, 0.5);
  }
}

/* Améliorations des animations existantes */
@media (prefers-reduced-motion: no-preference) {
  .service-card {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), glowPulse 3s ease-in-out infinite !important;
    animation-fill-mode: both;
  }

  .pricing-card {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), glowPulse 3s ease-in-out infinite !important;
    animation-fill-mode: both;
  }

  .service-card:hover,
  .pricing-card:hover {
    animation: none !important;
  }

  .service-icon {
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), iconBounce 2.5s ease-in-out infinite !important;
  }

  .service-card:hover .service-icon {
    animation: none !important;
    transform: scale(1.1) rotate(5deg);
  }

  .step {
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }

  .step-icon {
    animation: gentleBounce 2s ease-in-out infinite !important;
  }

  .hero-title {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }

  .btn-primary {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .btn-primary:hover {
    animation: glowPulse 0.8s ease-in-out;
  }

  .testimonial-card {
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }

  .dropdown-link {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .dropdown-link:hover {
    animation: fadeInRight 0.4s ease-in-out;
  }
}

@media (max-width: 600px) {
  .why-us-grid {
    gap: 16px;
  }

  .why-us-card {
    padding: 20px 16px;
  }

  .why-us-icon {
    width: 50px;
    height: 50px;
  }

  .why-us-card h3 {
    font-size: 1rem;
  }

  .pricing-grid {
    gap: 12px;
  }

  .pricing-card {
    padding: 20px 16px;
  }

  .pricing-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .pricing-list {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .pricing-list li {
    padding: 6px 0;
    padding-left: 24px;
  }

  .pricing-note {
    padding: 16px;
    font-size: 0.9rem;
  }

  .testimonials-grid {
    gap: 16px;
  }

  .testimonial-card {
    padding: 16px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    margin: 0 0 16px;
  }

  .testimonial-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .testimonial-author strong {
    font-size: 0.9rem;
  }

  .testimonial-author span {
    font-size: 0.75rem;
  }

  .faq-toggle {
    padding: 16px 12px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-toggle svg {
    width: 20px;
    height: 20px;
  }

  .faq-content {
    padding: 0 12px 16px;
    font-size: 0.9rem;
  }

  .zones-grid {
    gap: 12px;
  }

  .zone-card {
    padding: 20px 16px;
  }

  .zone-icon {
    width: 50px;
    height: 50px;
  }

  .zone-card h3 {
    font-size: 1rem;
  }

  .zones-note {
    padding: 16px;
    font-size: 0.9rem;
  }
}

/* ========= MEDIA QUERIES = ACCESSIBILITÉ ========== */

/* Amélioration du focus sur les appareils tactiles */
@media (hover: none) and (pointer: coarse) {
  .btn-primary,
  .btn-secondary,
  .nav-cta,
  .service-card,
  a {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Support des préférences utilisateur pour les contrastes élevés */
@media (prefers-contrast: more) {
  body {
    color: #f1f5f9;
  }
  
  .btn-primary,
  .btn-secondary {
    border-width: 3px;
  }
  
  .nav-cta {
    border-width: 2px;
  }
  
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline-width: 4px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 16px 60px;
  }

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

  .section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    padding: 20px 16px;
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 50px 1fr;
    padding: 18px 16px;
  }

  .contact-wrapper {
    padding: 24px 18px;
  }

  .shape {
    filter: blur(60px);
  }
}
