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

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

/* Skip navigation */
.skip-nav {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden; z-index: 9999;
}
.skip-nav:focus {
  position: fixed; left: 1rem; top: 0; width: auto; height: auto;
  overflow: visible; background: #3b82f6; color: #fff; padding: 0.65rem 1.25rem;
  border-radius: 0 0 0.5rem 0.5rem; font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
}

/* ------------------------------
   FOND + ORBES
------------------------------ */
body {
  min-height: 100vh;
  background: #07111f;
  color: #f8fafc;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1rem 3rem;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  filter: blur(60px);
  top: -250px; left: -250px;
  animation: drift 14s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -200px; right: -200px;
  animation: drift 14s ease-in-out infinite alternate-reverse;
  pointer-events: none; z-index: 0;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(60px,50px) scale(1.12); }
}

/* ------------------------------
   TOPNAV
------------------------------ */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(7,17,31,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.topnav-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em;
  color: #f8fafc; text-decoration: none;
}
.topnav-logo {
  width: 36px; height: 36px; object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(59,130,246,0.5));
}
.topnav-links { display: flex; align-items: center; gap: 0.25rem; }
.topnav-links a {
  color: #f1f5f9; text-decoration: none; font-size: 0.85rem; font-weight: 500;
  padding: 0.45rem 0.85rem; border-radius: 0.55rem;
  transition: color 0.2s, background 0.2s;
}
.topnav-links a:hover { color: #e2e8f0; background: rgba(255,255,255,0.07); }
.topnav-faq { color: #93c5fd !important; }
.topnav-trial {
  background: linear-gradient(135deg,#3b82f6,#6366f1) !important;
  color: #fff !important; font-weight: 700 !important;
  border-radius: 0.5rem !important; margin-left: 0.25rem;
  box-shadow: 0 2px 12px rgba(59,130,246,0.3) !important;
}
.topnav-trial:hover { filter: brightness(1.1) !important; transform: translateY(-1px); }
.topnav-cta {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #f1f5f9 !important; margin-left: 0.25rem;
}
.topnav-cta:hover {
  background: rgba(255,255,255,0.1) !important;
  color: #e2e8f0 !important;
  color: #bfdbfe !important;
}
.topnav-burger {
  display: none; background: none;
  border: 1px solid rgba(255,255,255,0.12); color: #f1f5f9;
  border-radius: 0.5rem; padding: 0.4rem 0.65rem;
  font-size: 1rem; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.topnav-burger:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-menu {
  display: none; position: fixed;
  top: 57px; left: 0; right: 0; z-index: 99;
  background: rgba(7,17,31,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  padding: 0.75rem 1.5rem;
  flex-direction: column; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #f1f5f9; text-decoration: none; font-size: 0.9rem; font-weight: 500;
  padding: 0.7rem 0.85rem; border-radius: 0.55rem;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: #e2e8f0; background: rgba(255,255,255,0.07); }
@media (max-width: 640px) {
  .topnav-links { display: none; }
  .topnav-burger { display: block; }
}

/* ------------------------------
   ANIMATIONS
------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 40px rgba(167,139,250,0.0); }
  50%      { text-shadow: 0 0 60px rgba(167,139,250,0.35), 0 0 120px rgba(147,197,253,0.2); }
}
@keyframes dotBlink {
  0%,100% { opacity: 1; box-shadow: 0 0 6px #22c55e; }
  50%      { opacity: 0.4; box-shadow: 0 0 2px #22c55e; }
}

/* ------------------------------
   GRILLE DE FOND (SaaS grid)
------------------------------ */
.grid-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(148,163,184,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 20%, transparent 85%);
}

/* ------------------------------
   HERO
------------------------------ */
.hero {
  max-width: 1600px; width: 100%;
  text-align: center; position: relative; z-index: 1;
  padding: 1.5rem 1.5rem 1.75rem;
}

/* Logo flottant */
.hero-logo-wrap { margin-bottom: 1.75rem; }
.hero-logo-img {
  width: 72px; height: 72px; object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(59,130,246,0.6)) brightness(1.1);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
  transition: filter 0.3s, transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.hero-logo-img:hover {
  filter: drop-shadow(0 0 36px rgba(139,92,246,0.7)) brightness(1.2);
  animation-play-state: paused;
  transform: scale(1.06);
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 2rem; padding: 0.3rem 0.9rem;
  font-size: 0.8rem; font-weight: 600; color: #93c5fd;
  letter-spacing: 0.02em; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s cubic-bezier(.22,1,.36,1) both;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 6px #22c55e; flex-shrink: 0;
  animation: dotBlink 2.5s ease-in-out infinite;
}

/* Titre */
.hero-title {
  font-size: 4.0rem; font-weight: 900;
  letter-spacing: -0.05em; line-height: 1.08;
  color: #f8fafc; margin-bottom: 1.25rem;
  animation: fadeUp 0.7s 0.25s cubic-bezier(.22,1,.36,1) both, glowPulse 4s 1.5s ease-in-out infinite;
}

/* Gradient animé sur le mot clé */
.hero-grad {
  background: linear-gradient(270deg,
    #93c5fd 0%, #a78bfa 25%, #f472b6 50%, #a78bfa 75%, #93c5fd 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s ease infinite;
  display: inline-block;
}

/* Ligne de titre avec entrée décalée */
.hero-title .line1 {
  display: block;
  animation: fadeUp 0.65s 0.3s cubic-bezier(.22,1,.36,1) both;
}
.hero-title .line2 {
  display: block;
  animation: fadeUp 0.65s 0.45s cubic-bezier(.22,1,.36,1) both;
}

/* Sous-titre */
.hero-sub {
  font-size: 1rem; color: #f1f5f9; line-height: 1.75;
  margin: 0 auto 1.75rem; max-width: 760px; text-align: left;
  animation: fadeUp 0.6s 0.55s cubic-bezier(.22,1,.36,1) both;
}
.hero-sub p { margin: 0 0 1.1rem; }
.hero-sub p:last-child { margin-bottom: 0; }
.hero-sub-list { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.hero-sub-list li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.95rem; }
.hcheck { color: #34d399; font-weight: 700; flex-shrink: 0; margin-top: 0.15rem; }

/* Plateformes compatibles */
.hero-platforms {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.65s cubic-bezier(.22,1,.36,1) both;
}
.platform-label { font-size: 0.9rem; color: #f1f5f9; font-weight: 500; }
.platform-list  { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.plat {
  display: inline-flex; align-items: center;
  padding: 0.4rem 1rem; border-radius: 0.55rem;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.01em; border: 1px solid;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plat:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.plat-airbnb  { color: #ff6b6b; background: rgba(255,90,95,0.1);  border-color: rgba(255,90,95,0.25); }
.plat-booking { color: #60a5fa; background: rgba(0,53,128,0.15);  border-color: rgba(59,130,246,0.25); }
.plat-abritel { color: #4ade80; background: rgba(26,108,55,0.12); border-color: rgba(34,197,94,0.25); }

/* Boutons CTA */
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.75s cubic-bezier(.22,1,.36,1) both;
}
.cta-primary {
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 0.18rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: #fff; text-decoration: none;
  border-radius: 0.875rem; position: relative; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(99,102,241,0.3), 0 8px 30px rgba(59,130,246,0.4);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.cta-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.4), 0 14px 40px rgba(59,130,246,0.55);
  filter: brightness(1.06);
}
.cta-main-text { font-size: 0.92rem; font-weight: 800; letter-spacing: -0.01em; }
.cta-sub-text  { font-size: 0.65rem; opacity: 0.7; font-weight: 500; }

.cta-secondary {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.6rem;
  background: rgba(255,255,255,0.05); color: #f1f5f9;
  text-decoration: none; border-radius: 0.875rem;
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.09); color: #e2e8f0;
  border-color: rgba(255,255,255,0.18);
}

/* Réassurance */
.trust-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.35rem 0.85rem;
  animation: fadeUp 0.6s 0.9s cubic-bezier(.22,1,.36,1) both;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.73rem; color: #f1f5f9; font-weight: 500;
}
.tcheck { color: #22c55e; font-weight: 700; font-size: 0.8rem; }
.trust-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: #334155; flex-shrink: 0;
}

/* Responsive hero */
@media (max-width: 600px) {
  .hero-title { font-size: 2.6rem; }
  .hero { padding: 1.5rem 1.25rem 1.5rem; }
  .trust-sep { display: none; }
  .hero-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 1.25rem; }
  .hero-sub p { margin-bottom: 0.8rem; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 2.1rem; }
  .hero-ctas { flex-direction: column; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
}

/* ------------------------------
   DIVIDER
------------------------------ */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
  margin: 2.25rem 0;
  width: 100%; max-width: 860px;
  position: relative; z-index: 1;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
  font-size: 0.85rem; color: #f1f5f9;
  text-align: center; position: relative; z-index: 1;
  max-width: 860px; width: 100%;
}
.footer a { color: #f1f5f9; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: #93c5fd; }
.footer-links {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-top: 0.8rem;
}
.footer-legal {
  display: flex; justify-content: center; gap: 1.25rem;
  flex-wrap: wrap; margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-legal a { font-size: 0.76rem; }

/* ------------------------------
   TEMOIGNAGES HOMEPAGE
------------------------------ */
.home-temoignages {
  width: 100vw; max-width: 100vw;
  position: relative; z-index: 1; margin-bottom: 1rem;
  left: 50%; transform: translateX(-50%);
}
.home-temoignages-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #f1f5f9;
  text-align: center; margin-bottom: 1.25rem;
  position: relative;
}
.home-temoignages-title::after {
  content: ''; display: block; margin: 0.6rem auto 0;
  width: 2.5rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

/* Marquee */
@keyframes homeTapeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.home-marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.home-marquee-track {
  display: flex; gap: 0.85rem; width: max-content;
  animation: homeTapeScroll 120s linear infinite;
}
.home-marquee-wrap:hover .home-marquee-track { animation-play-state: paused; }

.home-tcard {
  width: 240px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.home-tcard:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28), 0 0 0 1px rgba(59,130,246,0.08);
}
.home-tcard-stars { color: #fbbf24; font-size: 0.85rem; letter-spacing: 0.05em; }
.home-tcard-quote {
  font-size: 0.78rem; color: #f1f5f9; line-height: 1.6; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
}
.home-tcard-author { display: flex; align-items: center; gap: 0.6rem; }
.home-tcard-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.home-tcard-name { font-size: 0.78rem; font-weight: 700; color: #f8fafc; }
.home-tcard-role { font-size: 0.68rem; color: #f1f5f9; }
@media (prefers-reduced-motion: reduce) {
  .home-marquee-track { animation: none; }
}

/* ------------------------------
   FEATURES SECTION
------------------------------ */
.features-section {
  max-width: 1400px; width: 100%;
  position: relative; z-index: 1;
  margin-top: 4rem;
}
.features-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #f1f5f9;
  text-align: center; margin-bottom: 1.75rem;
  position: relative;
}
.features-label::after {
  content: ''; display: block; margin: 0.6rem auto 0;
  width: 2.5rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: 100%;
}
.feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.1rem; padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  text-decoration: none; color: inherit;
  transition: background 0.22s, border-color 0.22s, transform 0.2s, box-shadow 0.22s;
  opacity: 0; transform: translateY(16px);
  position: relative; overflow: hidden;
}
.feat-card.fc-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.feat-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, var(--card-color, #3b82f6) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.feat-card:hover { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,0.14); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.35); }
.feat-card:hover::after { opacity: 0.07; }
/* Large cards — 2 colonnes */
.feat-card--wide { grid-column: span 2; }
.feat-card--wide .feat-icon-wrap { width: 3.25rem; height: 3.25rem; }
.feat-card--wide .feat-name { font-size: 0.95rem; }
.feat-card--wide .feat-desc { color: #f1f5f9; }
.feat-icon-wrap {
  width: 2.6rem; height: 2.6rem; border-radius: 0.7rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--icon-bg, rgba(59,130,246,0.12));
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  position: relative; overflow: hidden;
}
/* Shimmer au hover */
.feat-icon-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0s;
}
.feat-card:hover .feat-icon-wrap::after {
  transform: translateX(100%); transition: transform 0.45s ease;
}
.feat-card:hover .feat-icon-wrap {
  background: var(--icon-bg-hover, rgba(59,130,246,0.22));
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 4px 16px var(--icon-bg, rgba(59,130,246,0.3));
}
/* Pulse discret sur les cartes larges */
.feat-card--wide .feat-icon-wrap {
  animation: iconPulse 3.5s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--icon-bg, rgba(59,130,246,0.2)); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}
.feat-icon-ring, .feat-icon-bg, .feat-icon-glow { display: none; }
.feat-icon { width: 1.1rem; height: 1.1rem; display: flex; align-items: center; justify-content: center; }
.feat-name { font-size: 0.85rem; font-weight: 700; color: #f8fafc; line-height: 1.35; }
.feat-desc { font-size: 0.85rem; color: #f1f5f9; line-height: 1.55; }
@media (max-width: 680px) { .bento-grid { grid-template-columns: repeat(2,1fr); } .feat-card--wide { grid-column: span 2; } }
.feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem; padding: 1.35rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem;
  text-decoration: none; color: inherit;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s, border-color 0.25s, transform 0.22s, box-shadow 0.25s;
  opacity: 0; transform: translateY(20px);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse at 30% 0%, var(--card-color, #3b82f6) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card.fc-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feat-card:hover { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,0.14); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.38), 0 0 0 1px rgba(59,130,246,0.08); }
.feat-card:hover::before { opacity: 0.06; }
.feat-icon-wrap {
  position: relative; width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-icon-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from var(--ring-angle, 0deg), var(--ring-color, #3b82f6) 0%, transparent 35%, transparent 75%, var(--ring-color, #3b82f6) 100%);
  opacity: 0.6; transition: opacity 0.25s;
}
.feat-icon-bg {
  position: absolute; inset: 3px; border-radius: 50%;
  background: rgba(7,17,31,0.93);
}
.feat-icon-glow {
  position: absolute; inset: -6px; border-radius: 50%;
  background: radial-gradient(circle, var(--ring-color, #3b82f6) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s; filter: blur(8px);
}
.feat-card:hover .feat-icon-ring { opacity: 1; }
.feat-card:hover .feat-icon-glow { opacity: 0.3; }
.feat-icon {
  position: relative; z-index: 1;
  width: 1.1rem; height: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.feat-name { font-size: 0.85rem; font-weight: 700; color: #f8fafc; line-height: 1.35; }
.feat-desc { font-size: 0.85rem; color: #f1f5f9; line-height: 1.6; }
@media (max-width: 680px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) {
  .features-grid { grid-template-columns: 1fr; }
  .features-section { margin-top: 2.5rem; }
}
@media (max-width: 680px) { .starter-check-grid { column-count: 2 !important; } }
@media (max-width: 400px) { .starter-check-grid { column-count: 1 !important; } }

/* -- PREFERS-REDUCED-MOTION -- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── AMÉLIORATIONS VISUELLES 2025 ── */

/* Dot grid (complément au grid-overlay existant) */
body::before {
  background-image:
    radial-gradient(rgba(59,130,246,0.18) 0%, transparent 70%),
    radial-gradient(rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 700px 700px, 36px 36px;
  background-position: -250px -250px, 0 0;
}

/* Trust row items - hover interactif */
.trust-item {
  transition: color 0.2s;
}
.trust-item:hover .tcheck { filter: drop-shadow(0 0 4px #22c55e); }

/* Testimonials cards - glow au hover */
.home-tcard:hover {
  border-color: rgba(59,130,246,0.4) !important;
  box-shadow: 0 8px 24px rgba(59,130,246,0.1);
  transform: translateY(-2px);
}
.home-tcard {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s cubic-bezier(.34,1.56,.64,1) !important;
}

/* CTA secondaire amélioré */
.cta-secondary:hover {
  background: rgba(255,255,255,0.09) !important;
  color: #e2e8f0 !important;
  border-color: rgba(255,255,255,0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.cta-secondary {
  transition: background 0.2s, color 0.2s, border-color 0.2s,
              transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s !important;
}

/* Section labels gradient */
.features-label {
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Divider lueur */
.divider {
  border-top: 1px solid rgba(59,130,246,0.1) !important;
  box-shadow: 0 1px 0 rgba(59,130,246,0.05);
}

/* Footer links hover bleu */
.footer a:hover { color: #60a5fa !important; }
