/* ═══════════════════════════════════════════════════════
   PREMIUM CSS — v2.0
   ═══════════════════════════════════════════════════════ */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --bg-dark: #0b1220;
  --bg-dark-2: #111b32;
  --text: #1a1f36;
  --text-2: #2d3352;
  --muted: #6b7394;
  --muted-2: #8f96b3;
  --white: #ffffff;
  --soft: #f6f8fc;
  --soft-2: #eef4ff;
  --soft-3: #f1f5f9;
  --cloud: #f4f5fb;
  --cloud-2: #eceef8;
  --border: #d8dcea;
  --border-2: #cbd5e1;
  --border-light: #e8ebf4;

  /* Accents */
  --gold: #d4a843;
  --gold-light: #f1d58b;
  --gold-dark: #9a6b00;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-deep: #1e40af;
  --cyan: #06b6d4;
  --violet-glow: rgba(124, 58, 237, 0.22);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(12, 15, 26, 0.04);
  --shadow-sm: 0 4px 16px rgba(12, 15, 26, 0.06);
  --shadow-md: 0 12px 32px rgba(12, 15, 26, 0.08);
  --shadow-lg: 0 20px 48px rgba(12, 15, 26, 0.10);
  --shadow-xl: 0 32px 72px rgba(12, 15, 26, 0.14);
  --shadow-2xl: 0 44px 100px rgba(12, 15, 26, 0.20);
  --shadow-gold: 0 18px 40px rgba(212, 168, 67, 0.25);
  --shadow-blue: 0 18px 40px rgba(37, 99, 235, 0.20);
  --shadow-green: 0 18px 40px rgba(37, 211, 102, 0.22);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-2xl: 34px;
  --radius-full: 999px;
  --r-md: 20px;
  --r-lg: 26px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Layout and motion */
  --max: 1200px;
  --section-pad: 82px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.35s;
  --duration-fast: 0.2s;
  --t-fast: 0.18s;
  --t-base: 0.32s;
}
/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html.is-anchor-settling {
  scroll-behavior: auto;
}

:where(section, main, header, div)[id] {
  scroll-margin-top: 18px;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: clip;
  overflow-wrap: anywhere;
  line-height: 1.6;
  font-size: 16px;
}

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

::selection {
  background: rgba(37, 99, 235, 0.16);
  color: var(--blue-deep);
}

/* ---------- Skip Link (A11y) ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 14px 24px;
  background: var(--bg-dark);
  color: #fff;
  z-index: 9999;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top var(--duration-fast) ease;
}
.skip-link:focus {
  top: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    background var(--duration-fast) ease,
    color var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
  cursor: pointer;
  user-select: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  -webkit-tap-highlight-color: transparent;
}
.btn:active {
  transform: translateY(1px) scale(0.985);
}
.btn > * {
  position: relative;
  z-index: 1;
}
.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.5);
  outline-offset: 3px;
}

/* --- Primary (Gold) --- */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #121826;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 70px rgba(212, 168, 67, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.6) 45%, transparent 60%);
  transform: translateX(-140%);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
.btn-primary:hover::before {
  opacity: 0.9;
  animation: btnShine 0.85s var(--ease-out);
}

@keyframes btnShine {
  from { transform: translateX(-140%); }
  to   { transform: translateX(140%); }
}

/* --- WhatsApp --- */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1fcb60 45%, #128C7E 100%);
  color: #ffffff;
  box-shadow: var(--shadow-green), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 70px rgba(37, 211, 102, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-whatsapp::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 60%);
  transform: translateX(-140%);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
.btn-whatsapp:hover::before {
  opacity: 0.9;
  animation: btnShine 0.85s var(--ease-out);
}

/* --- Ghost --- */
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
}

/* --- Dark --- */
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover {
  background: var(--bg-dark-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* --- Cursor halo for ghost/dark/whatsapp/submit --- */
.btn-ghost::after,
.btn-dark::after,
.btn-whatsapp::after,
.submit::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--halo, 0);
  transition: opacity 0.25s ease;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}
.btn-ghost::after {
  background: radial-gradient(130px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 60%);
}
.btn-dark::after,
.submit::after {
  background: radial-gradient(130px circle at var(--mx, 50%) var(--my, 50%), rgba(37, 99, 235, 0.28), transparent 60%);
}
.btn-whatsapp::after {
  background: radial-gradient(130px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.20), transparent 60%);
}

/* ═══════════════════════════════════════════════════════
   FLOATING WHATSAPP — Pulsing ring
   ═══════════════════════════════════════════════════════ */
.floating-whatsapp {
	text-decoration:none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 16px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: white;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  border: none;
  transition:
    transform var(--t-fast) var(--ease),
    box-shadow var(--t-base) var(--ease),
    opacity var(--t-fast) ease,
    padding var(--t-fast) ease;
  transform: translateY(80px) scale(0.6);
  opacity: 0;
}
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: var(--r-full);
  border: 2px solid rgba(124, 58, 237, 0.35);
  animation: pulse-ring 2.5s ease-in-out infinite;
  pointer-events: none;
}
.floating-whatsapp.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.floating-whatsapp:hover {
  padding: 20px;
  box-shadow: var(--shadow-2xl);
  transform: translateY(-4px) scale(1.05);
}
.floating-whatsapp.visible:hover {
  transform: translateY(-4px) scale(1.05);
}
.floating-whatsapp:focus-visible {
  outline: 3px solid var(--violet-glow);
  outline-offset: 4px;
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  50%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — Common
   ═══════════════════════════════════════════════════════ */
section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.13);
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.section-title h2 {
  margin-top: 16px;
  font-size: 42px;
  letter-spacing: -1.4px;
  font-weight: 950;
  line-height: 1.06;
  color: var(--text);
}

.section-title p {
  margin: 14px auto 0;
  max-width: 800px;
  color: var(--muted);
  line-height: 1.78;
  font-size: 17px;
}

/* ---------- Separator ---------- */
.separator {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.14) 50%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 76px 0 62px;
  background:
    linear-gradient(rgba(2, 6, 23, 0.80), rgba(2, 6, 23, 0.92)),
    url(/assets/img/hero_background.webp) center / cover no-repeat;
  color: #fff;
  overflow: hidden;
  border-bottom: 4px solid var(--blue);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  margin: 0;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: auto;
  height: 112px;
  margin: 10px 0 18px;
  border-radius: 6px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -2.2px;
  font-weight: 950;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero p {
  margin: 18px 0px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.82;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px auto 20px;
}

/* Hero Card */
.hero-card {
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.40);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-illustration {
  padding: 26px;
}

.hero-illustration img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-illustration .caption {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(2, 6, 23, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.caption strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 800;
}

.caption span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(2px);
  opacity: 0.80;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.orb.two {
  width: 300px;
  height: 300px;
  right: -100px;
  top: 80px;
  background: radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.28), rgba(37, 99, 235, 0));
  animation: floatB 14s ease-in-out infinite;
}
.orb.three {
  width: 450px;
  height: 450px;
  left: 38%;
  bottom: -280px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  animation: floatC 16s ease-in-out infinite;
  opacity: 0.65;
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-12px, -16px) rotate(3deg); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(14px, 12px) rotate(-2deg); }
}

/* ═══════════════════════════════════════════════════════
   STAT BAR — Glass cards
   ═══════════════════════════════════════════════════════ */
.stat-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 8px;
  position: relative;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 16px 14px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--cloud) 0%, var(--cloud-2) 100%);
  border: 1px solid var(--border-light);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) ease;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-item strong {
  display: inline-block; padding:1px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 650;
  letter-spacing: 0.3px;
}

.stat-item small {
  display: block;
  max-width: 25ch;
  min-height: 38px;
  margin: 7px auto 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.55;
}

.stat-source {
  margin-top: 14px;
  opacity: 0.76;
  font-size: 12px;
  text-align: center;
}

.stat-source a {
  color: #ffffff;
  text-underline-offset: 3px;
}

.hero-meta-dot,
.availability-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-meta-dot {
  background: rgba(37, 99, 235, 0.85);
}

.pricing-kicker {
  color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.14);
}

/* ---------- Trust ---------- */
.trust {
  padding: 84px 0;
  background:
    radial-gradient(900px 520px at 8% 15%, rgba(37, 99, 235, 0.24), transparent 58%),
    radial-gradient(760px 480px at 92% 75%, rgba(212, 168, 67, 0.17), transparent 60%),
    linear-gradient(145deg, #070b16 0%, #0b1220 48%, #111b32 100%);
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
  pointer-events: none;
}

.trust-shell {
  position: relative;
  z-index: 2;
}

.trust-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.trust-orb-one {
  top: -130px;
  left: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  box-shadow: inset 0 0 90px rgba(37, 99, 235, 0.09);
}

.trust-orb-two {
  right: -80px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(212, 168, 67, 0.16);
  box-shadow: inset 0 0 100px rgba(212, 168, 67, 0.08);
}

.trust-heading {
  color: #ffffff;
}

.trust-heading .kicker {
  color: var(--gold-light);
  background: rgba(212, 168, 67, 0.10);
  border-color: rgba(212, 168, 67, 0.22);
}

.trust-heading h2 {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 20%, rgba(255, 255, 255, 0.78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.trust-profile,
.trust-reviews {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.trust-profile {
  padding: 1px;
}

.trust-profile::before,
.trust-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration) ease;
}

.trust-profile::before {
  background:
    radial-gradient(620px 260px at 10% 0%, rgba(37, 99, 235, 0.20), transparent 58%),
    radial-gradient(520px 260px at 90% 100%, rgba(212, 168, 67, 0.10), transparent 60%);
}

.trust-reviews::before {
  background:
    radial-gradient(520px 240px at 90% 0%, rgba(212, 168, 67, 0.16), transparent 62%),
    radial-gradient(480px 260px at 0% 100%, rgba(37, 99, 235, 0.13), transparent 62%);
}

.trust-profile:hover::before,
.trust-reviews:hover::before {
  opacity: 1;
}

.trust-profile-inner {
  min-height: 100%;
  padding: 34px;
}

.trust-identity {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 26px;
  align-items: center;
}

.trust-avatar {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 32px;
  background:url('/assets/img/avatar.webp');
  background-size:100%;
  background-position:0px -4px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 22px 48px rgba(37, 99, 235, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -1px;
  transform: rotate(-3deg);
  transition: transform var(--duration) var(--ease-spring);
}

.trust-profile:hover .trust-avatar {
  transform: rotate(0deg) scale(1.04);
}

.trust-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(52, 211, 153, 0.18);
  color: #a7f3d0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.10);
}

.trust-profile-name {
  display: block;
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.trust-profile h3 {
  margin-top: 6px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.trust-role {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.trust-intro {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.82;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.trust-points div {
  padding: 17px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.trust-points div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(212, 168, 67, 0.22);
}

.trust-points strong,
.trust-points span {
  display: block;
}

.trust-points strong {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 950;
}

.trust-points span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.trust-photo-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.trust-photo-note span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(212, 168, 67, 0.10);
  border: 1px solid rgba(212, 168, 67, 0.16);
  color: var(--gold-light);
  font-weight: 900;
}

.trust-reviews {
  padding: 34px;
}

.trust-stars {
  color: var(--gold);
  margin-left: 12px;
  vertical-align:middle;
  font-size: 22px;
  letter-spacing: 4px;
  filter: drop-shadow(0 4px 14px rgba(212, 168, 67, 0.22));
}

.trust-review-label {
  display: inline-flex;
  padding: 6px 10px;
  vertical-align:middle;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 67, 0.10);
  border: 1px solid rgba(212, 168, 67, 0.18);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-reviews h3 {
  margin-top: 18px;
  color: #ffffff;
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.trust-review-head p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.72;
}

.trust-platforms {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.trust-platform {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform var(--duration) var(--ease-out),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.trust-platform:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.trust-platform-top {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.trust-platform-icon {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(66, 133, 244, 0.20);
}

.trust-platform-icon img {
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin: 0;
  object-fit: contain;
  object-position: 50% 50%;
}

.trust-platform-icon-pj {
  background: #ffd400;
  box-shadow: 0 12px 28px rgba(255, 212, 0, 0.16);
}

.trust-platform-icon-pj img {
  width: 44px;
  height: 44px;
}

.trust-platform-top strong,
.trust-platform-top > div span {
  display: block;
}

.trust-platform-top strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.trust-platform-top > div span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.trust-review-foot {
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.62;
}

/* ═══════════════════════════════════════════════════════
   CARDS & GRIDS
   ═══════════════════════════════════════════════════════ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) ease,
    border-color var(--duration) ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.20);
}

/* Gradient overlay */
.card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 200px at 15% 0%, rgba(37, 99, 235, 0.07), transparent 55%),
    radial-gradient(700px 200px at 85% 0%, rgba(212, 168, 67, 0.08), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration) ease;
}
.card:hover::after {
  opacity: 1;
}
.card > * {
  position: relative;
  z-index: 2;
}

/* Card inner layout */
.card > div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
}

/* Icon */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(212, 168, 67, 0.10));
  border: 1px solid rgba(2, 6, 23, 0.06);
  transition: transform var(--duration) var(--ease-spring);
}
.card:hover .icon {
  transform: scale(1.08) rotate(-3deg);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: var(--bg-dark);
  opacity: 0.92;
}
.icon svg.stroke-icon {
  fill: none;
  stroke: var(--bg-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card > div > h3 {
  margin-left: 6px;
  font-size: 20px;
  letter-spacing: -0.5px;
  font-weight: 900;
  line-height: 1.25;
}
.card > div > p {
  grid-column: span 2;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.78;
  font-size: 15.5px;
}

.card-more {
  grid-column: span 2;
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.card-more:hover {
  color: var(--blue);
}

/* Badge "Nouveau 2026" */
.badge-new {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

/* ═══════════════════════════════════════════════════════
   ZONE
   ═══════════════════════════════════════════════════════ */
.zone {
  background: linear-gradient(180deg, var(--soft) 0%, var(--soft-2) 100%);
}

.zone-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}

.zone-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  padding: 10px 14px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.13);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 13px;
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease, transform var(--duration-fast) var(--ease-out);
}
.chip:hover {
  background: rgba(37, 99, 235, 1);
  color:white;
  transform: translateY(-2px);
}

/* Map */
.zone-title {
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.zone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.zone-advice {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #16a34a;
  font-weight: 900;
}

.availability-dot {
  background: #22c55e;
}

.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  align-self: start;
}

.map-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.map-top strong {
  font-weight: 950;
  letter-spacing: -0.3px;
}
.map-top span {
  color: var(--muted);
  font-size: 13px;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  pointer-events: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.map-card.map-active iframe {
  pointer-events: auto;
}

.map-card .tilt-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  background:
    radial-gradient(800px 260px at 60% 0%, rgba(37, 99, 235, 0.07), transparent 65%),
    linear-gradient(180deg, transparent 40%, rgba(2, 6, 23, 0.12) 100%);
  z-index: 3;
  opacity: 1;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-xl);
}
.map-card.map-active .map-overlay {
	pointer-events: none;
}
.map-card.map-active .map-cta {
  opacity: 0;
  pointer-events: none;
}

.map-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--shadow-lg);
  font-weight: 950;
  letter-spacing: -0.2px;
  cursor: pointer;
  user-select: none;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration) ease;
}
.map-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.map-cta span {
  font-size: 13px;
  font-weight: 800;
  color: #334155;
}
.map-cta svg {
  width: 18px;
  height: 18px;
  fill: var(--bg-dark);
  opacity: 0.85;
}

.map-hint {
	opacity: 0;
  pointer-events: none;
  cursor:pointer;
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 850;
  color: #334155;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  pointer-events: none;
}
.map-card.map-active .map-hint {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════ */
.process {
  background: #f8fafc;
  border-top: 1px solid #dfe7f1;
  border-bottom: 1px solid #dfe7f1;
  overflow: visible;
}

.process-deco-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.process-deco-a {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
}
.process-deco-b {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 50%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.process-card {
  background: white;
  position: relative;
  border-radius: var(--radius-xl);
  padding: 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) ease,
    border-color var(--duration) ease;
}
.process-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 168, 67, 0.30);
}

/* Hover gradient on process card */
.process-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(212, 168, 67, 0.10), transparent 55%),
    radial-gradient(700px 220px at 80% 0%, rgba(37, 99, 235, 0.08), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration) ease;
}
.process-card:hover::after {
  opacity: 1;
}
.process-card > * {
  position: relative;
  z-index: 2;
}

.process-number {
	display:inline-block;
  font-size: 76px;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.06);
  letter-spacing: -3px;
  line-height: 1;
  transform-origin:50% 50%;
  transition: transform var(--duration) ease, color var(--duration) ease;
  /* transition: transform var(--duration) var(--ease-spring), background var(--duration) ease; */
}
.process-card:hover .process-number {
  color: rgba(37, 99, 235, 0.10);
  transform: scale(1.1) rotate(4deg);
}

.process-card h3 {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.8px;
  line-height: 1.12;
}

.process-card p {
  margin-top: 13px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 16px;
}

.spark {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(212, 168, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 168, 67, 0.18);
  transition: transform var(--duration) var(--ease-spring), background var(--duration) ease;
}
.spark::before,
.spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: var(--radius-full);
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.spark::before {
  width: 18px;
  height: 2px;
}
.spark::after {
  width: 2px;
  height: 18px;
}
.process-card:hover .spark {
  background: rgba(212, 168, 67, 0.14);
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing {
  /* background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); */
  background:repeating-linear-gradient(135deg,  rgba(37, 99, 235, 0.025) 0px,  rgba(37, 99, 235, 0.025) 24px,  transparent 24px,  transparent 64px);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 27px;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) ease,
    border-color var(--duration) ease;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.20);
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 200px at 20% 0%, rgba(37, 99, 235, 0.07), transparent 55%),
    radial-gradient(700px 200px at 80% 0%, rgba(212, 168, 67, 0.08), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration) ease;
}
.pricing-card:hover::after {
  opacity: 1;
}
.pricing-card > * {
  position: relative;
  z-index: 2;
}

/* Popular badge / highlight */
.pricing-card.popular {
  border-color: rgba(37, 99, 235, 0.30);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.08);
}
.pricing-card.popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--gold));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 3;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 67, 0.10);
  border: 1px solid rgba(212, 168, 67, 0.18);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pricing-card h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-weight: 950;
}

.price {
  margin-top: 18px;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -1.8px;
  color: var(--blue);
  line-height: 1;
}
.price span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 6px;
}

.pricing-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.78;
  font-size: 15px;
}

.pricing-card ul {
  margin-top: 13px;
  padding-left: 0;
  list-style: none;
  color: #334155;
  line-height: 1.85;
  font-size: 14px;
}
.pricing-card li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  opacity: 0.7;
}

.pricing-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════
   AIDES 2026 BAND
   ═══════════════════════════════════════════════════════ */

.aides-band {
  background:
    radial-gradient(760px 380px at 8% 12%, rgba(37, 99, 235, 0.19), transparent 62%),
    radial-gradient(640px 360px at 92% 88%, rgba(212, 168, 67, 0.12), transparent 62%),
    linear-gradient(145deg, #070b16 0%, #0b1220 52%, #111b32 100%);
  color: #ffffff;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aides-shell {
  position: relative;
  z-index: 2;
}

.aides-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.aides-orb-one {
  top: -150px;
  right: 8%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(212, 168, 67, 0.14);
  box-shadow: inset 0 0 90px rgba(212, 168, 67, 0.06);
}

.aides-orb-two {
  bottom: -190px;
  left: -90px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: inset 0 0 110px rgba(37, 99, 235, 0.07);
}

.aides-heading .kicker {
  color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.10);
  border-color: rgba(212, 168, 67, 0.20);
}

.aides-heading h2 {
  color: #ffffff;
}

.aides-heading p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.66);
}

.aide-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform var(--duration) var(--ease-out),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    box-shadow var(--duration) ease;
}

.aide-eyebrow {
  display: inline-flex;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.aide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(460px 180px at 0% 0%, rgba(37, 99, 235, 0.10), transparent 62%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.aide-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

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

.aide-card > * {
  position: relative;
  z-index: 2;
}

.aide-card-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}

.aide-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.20), rgba(212, 168, 67, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 25px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.aide-card h3 {
  margin-top: 5px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.45px;
}

.aide-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.68;
}

.aide-card .aide-more {
  margin-top: auto;
  padding-top: 11px;
}

.aides-disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.aides-disclaimer strong {
  color: var(--gold-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aides-disclaimer p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq {
  background:
    radial-gradient(680px 300px at 8% 15%, rgba(37, 99, 235, 0.055), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.faq-shell {
  position: relative;
  z-index: 2;
}

.faq-grid {
  display: grid;
  max-width: 940px;
  margin: 0 auto;
  gap: 12px;
}

details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) ease,
    border-color var(--duration) ease;
}
details.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.20);
  box-shadow: var(--shadow-md);
}
details.faq-item[open] {
  border-color: rgba(37, 99, 235, 0.22);
  background:
    radial-gradient(520px 170px at 0% 0%, rgba(37, 99, 235, 0.055), transparent 65%),
    #ffffff;
  box-shadow: var(--shadow-md);
}

details.faq-item-featured {
  border: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

.faq .faq-item summary {
  display: grid;
  align-items: center;
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  gap: 15px;
  min-height: 80px;
  padding: 18px 20px;
  font-weight: 950;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  transition: color var(--duration-fast) ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] summary {
  color: var(--blue-dark);
}
.faq-item summary:focus-visible {
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.faq-item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: -4px;
  justify-self: center;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.28s var(--ease-out);
  opacity: 0.80;
}

.faq-question-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.13);
  color: var(--blue-dark);
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.5px;
  transition:
    transform var(--duration-fast) var(--ease-spring),
    background var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

.faq-item[open] .faq-question-icon {
  transform: rotate(-4deg) scale(1.04);
  border-color: var(--blue-light);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}
.faq-item[open] summary::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.faq .faq-content {
  padding: 0 62px 22px 79px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 15.5px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact {
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(37, 99, 235, 0.20), transparent 55%),
    radial-gradient(900px 520px at 88% 28%, rgba(212, 168, 67, 0.16), transparent 55%),
    linear-gradient(180deg, #050814 0%, #0b1220 100%);
  color: #fff;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact h2 {
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: -1.4px;
  font-weight: 950;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact > .container > .contact-grid > div > p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.78;
  font-size: 17px;
  max-width: 56ch;
}

.contact-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Form */
.contact-kicker {
  color: #f1d58b;
  background: rgba(212, 168, 67, 0.14);
  border-color: rgba(212, 168, 67, 0.22);
}

.contact-title,
.contact-intro,
.contact-note {
  margin-top: 14px;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.contact-links-spaced,
.contact-coverage {
  margin-top: 22px;
}

.contact-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.contact-coverage {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-coverage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.7;
}

.contact-coverage strong {
  color: rgba(255, 255, 255, 0.85);
}

.service-boundaries {
  padding: 80px 0;
  background: var(--soft);
}

.service-boundaries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.service-boundary-card {
  padding: 28px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-boundary-card-muted {
  border-color: rgba(100, 116, 139, 0.18);
  background: #f8fafc;
}

.service-boundary-card h3 {
  margin: 0 0 16px;
  font-size: 21px;
}

.service-boundary-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-boundary-card li {
  margin: 9px 0;
  line-height: 1.65;
}

.form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form {
  background: #fff;
  color: var(--text);
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.40);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.form::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 32px 32px 0 0;
  opacity: 0.6;
}

.form h3 {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.8px;
}
.form > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
}

.form-safety {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #f0d58c;
  border-radius: 14px;
  background: #fff9e8;
  color: #59440f;
  font-size: 12.5px;
  line-height: 1.5;
}

.field {
  margin-top: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent-field label {
  margin: 0;
  color: #334155;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.field > small,
.form form > small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.form textarea {
  min-height: 96px;
}

.form-privacy {
  text-align: center;
}

.field > small a,
.form form > small a {
  color: var(--blue-dark);
  font-weight: 700;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .service-boundaries {
    padding: 62px 0;
  }

  .service-boundaries-grid {
    grid-template-columns: 1fr;
  }
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1.5px solid var(--border-2);
  font: inherit;
  font-size: 15px;
  transition:
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    background var(--duration-fast) ease;
  background: #fff;
}
input:hover,
textarea:hover {
  border-color: #94a3b8;
}
input:focus,
textarea:focus {
  border-color: rgba(37, 99, 235, 0.60);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  background: #fafcff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-status:empty {
  min-height: 0;
  margin-top: 0;
}

.form-status.is-success {
  color: #047857;
}

.form-status.is-error {
  color: #b91c1c;
}

.submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
  font-weight: 500;
}

.submit {
  margin-top: 16px;
  width: 100%;
  padding: 17px 20px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--bg-dark);
  color: #fff;
  font-weight: 950;
  font-size: 15px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) ease,
    box-shadow var(--duration) ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 620px) {
  .form {
    padding: 26px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.submit:hover {
  background: var(--bg-dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.submit:active {
  transform: translateY(1px);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: #070b16;
  color: rgba(255, 255, 255, 0.88);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 950;
  letter-spacing: -0.6px;
  font-size: 18px;
}

.small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  font-size: 13px;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) ease,
    background var(--duration-fast) ease,
    color var(--duration-fast) ease;
}
.footer-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.995);
  transition:
    opacity 0.52s var(--ease-out),
    transform 0.52s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.reveal-pending.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal.reveal-pending[data-anim="glide-left"] {
  transform: translate3d(-18px, 10px, 0) scale(0.997);
  transform-origin: 20% 60%;
}

.reveal.reveal-pending[data-anim="glide-right"] {
  transform: translate3d(18px, 10px, 0) scale(0.997);
  transform-origin: 80% 60%;
}

.reveal.reveal-pending[data-anim="pop"] {
  transform: translate3d(0, 24px, 0) scale(0.975);
}

.reveal.reveal-pending[data-anim="fade"] {
  transform: translate3d(0, 12px, 0);
}

/* Stagger delay helpers */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ═══════════════════════════════════════════════════════
   3D TILT
   ═══════════════════════════════════════════════════════ */
.tilt-wrap {
  perspective: 720px;
  transform-style: preserve-3d;
}

.tilt-inner {
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  position: relative;
  z-index: 2;
}

.tilt-pop {
  transform: translateZ(34px);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1020px) {
  :root {
    --section-pad: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero h1 {
    font-size: 44px;
    letter-spacing: -1.6px;
  }

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

  .zone-wrap {
    grid-template-columns: 1fr;
  }

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

  .section-title h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .contact h2 {
    font-size: 34px;
  }

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

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .trust-profile-inner,
  .trust-reviews {
    padding: 36px;
  }

}

@media (max-width: 520px) {
  :root {
    --section-pad: 58px;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 58px 0 44px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }
  .hero-logo {
    height: 88px;
    margin-bottom: 20px;
  }
  .hero-grid {
    margin: 0;
  }
  .hero p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    padding: 16px 20px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .process .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .process-card {
    padding: 28px;
    border-radius: 22px;
  }
  .process-number {
    font-size: 56px;
  }
  .process-card h3 {
    font-size: 22px;
  }

  .map-card iframe {
    height: 340px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item small {
    min-height: 52px;
  }

  .form {
    padding: 32px 24px;
    border-radius: var(--radius-xl);
  }

  .aides-band {
    padding: 62px 0;
  }

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

  .aide-card-head {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .aide-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .aides-disclaimer {
    grid-template-columns: 1fr;
  }

  .faq .faq-item summary {
    grid-template-columns: 38px 1fr 18px;
    gap: 12px;
    min-height: 72px;
    padding: 16px;
    font-size: 15px;
  }

  .faq-question-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .faq .faq-content {
    padding: 0 18px 20px;
    font-size: 14.5px;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    max-width: calc(100vw - 40px);
    white-space: normal;
  }

  .trust {
    padding: 62px 0;
  }

  .trust-profile {
    padding: 1px;
  }

  .trust-profile-inner,
  .trust-reviews {
    padding: 28px 24px;
  }

  .trust-identity {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-avatar {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    font-size: 26px;
  }

  .trust-profile h3,
  .trust-reviews h3 {
    font-size: 26px;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .trust-review-label {
    margin: 10px 0 0;
  }
}

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

  .stat-item small {
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .price {
    font-size: 36px;
  }
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .orb {
    animation: none;
  }

  .btn-primary::before,
  .btn-whatsapp::before {
    animation: none;
  }

  .tilt-inner {
    transition: none;
  }

  .faq-content {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .card:hover,
  .process-card:hover,
  .pricing-card:hover,
  .aide-card:hover,
  details.faq-item:hover {
    transform: none;
  }

  .floating-whatsapp {
    transform: none;
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════ */
@media print {
  .floating-whatsapp,
  .orb,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none;
    color: #000;
    padding: 20px 0;
  }

  .hero h1 {
    -webkit-text-fill-color: #000;
    background: none;
  }

  section {
    padding: 30px 0;
    page-break-inside: avoid;
  }

  .card,
  .process-card,
  .pricing-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}
.aide-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  width: 100%;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(212, 168, 67, 0.28);
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.11);
  color: #f1d58b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.aide-more::after {
  content: "→";
  transition: transform .18s ease;
}

.aide-more:hover::after {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════
   MODÈLE SIMPLE — PAGES SEO / RÉFÉRENCEMENT
   Objectif : page légère, sans header, sans sommaire sticky,
   avec contenu facilement modifiable et CTA vers index.html.
   Couleurs alignées sur le site existant : bleu nuit, doré,
   verts WhatsApp, textes et fonds d'origine.
   ═══════════════════════════════════════════════════════ */

/* Google Maps consent */
.map-consent {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(600px 300px at 50% 30%, rgba(37, 99, 235, 0.12), transparent 70%),
    linear-gradient(180deg, #0b1220 0%, #111b32 100%);
  color: #fff;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.map-consent[hidden] { display: none; }
.map-consent svg {
  width: 40px;
  height: 40px;
  fill: #bfdbfe;
}
.map-consent p {
  margin: 0;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.map-consent .cookie-btn {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue-dark);
  padding: 12px 20px;
  font-weight: 900;
}
.map-consent .cookie-btn:hover {
  background: var(--blue-dark);
}
.map-consent-link {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.map-consent-link:hover { text-decoration: underline; }

/* Bandeau de consentement en bas d'écran */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: cookieIn 0.4s ease both;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 22px;
}
.cookie-banner-text { flex: 1 1 420px; }
.cookie-banner-text > strong {
  display: block;
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 6px;
  color: var(--text);
}
.cookie-banner-text p strong {
  font-weight: 800;
  color: var(--text);
}
.cookie-banner-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}
.cookie-banner-text a { color: var(--blue-dark); font-weight: 700; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-btn {
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 11px 18px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid var(--border-2);
}
.cookie-refuse {
  background: #fff;
  color: var(--text-2);
}
.cookie-refuse:hover { background: var(--soft-3); border-color: var(--muted-2); }
.cookie-accept {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}
.cookie-accept:hover { background: var(--blue-dark); }

/* Petit bouton flottant pour rouvrir les préférences cookies */
.cookie-reopen {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 900;
  cursor: pointer;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cookie-reopen:hover { background: #fff; border-color: rgba(37, 99, 235, 0.30); }
.cookie-reopen[hidden] { display: none; }

@media (max-width: 560px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-banner-inner {
    padding: 16px;
  }

  .cookie-banner-actions {
    display: grid;
    flex: 1 1 100%;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .cookie-btn {
    min-width: 0;
    white-space: normal;
  }
}

/* Homepage guide and trust CTAs */
.card .card-more {
  grid-column: span 2;
  margin-top: 20px;
  border-color: rgba(37, 99, 235, 0.18);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(212, 168, 67, 0.08));
  color: var(--blue-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.70);
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}

.card .card-more:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.32);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(212, 168, 67, 0.12));
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.10);
}

.trust .trust-more {
  margin-top: 16px;
  border-color: rgba(212, 168, 67, 0.24);
  background: rgba(212, 168, 67, 0.09);
  color: var(--gold-light);
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.trust .trust-more:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 67, 0.40);
  background: rgba(212, 168, 67, 0.15);
}

/* Simplified 2026 aids grid */
.aides-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.aides-grid-simple .aide-card {
  min-height: 220px;
  padding: 22px;
}

.aides-grid-simple .aide-card-head {
  grid-template-columns: 46px 1fr;
  gap: 12px;
}

.aides-grid-simple .aide-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
}

.aides-grid-simple .aide-card h3 {
  font-size: 17px;
}

.aides-grid-simple .aide-card p {
  margin-top: 13px;
  line-height: 1.55;
}

.aides-grid-simple .aide-card::after {
  background:
    radial-gradient(480px 180px at 0% 0%, rgba(37, 99, 235, 0.07), transparent 62%),
    radial-gradient(380px 180px at 100% 100%, rgba(212, 168, 67, 0.07), transparent 62%);
}

.aides-grid-simple .aide-card-highlight {
  border-color: rgba(212, 168, 67, 0.28);
}

.aides-grid-simple .aide-more {
  border-color: rgba(212, 168, 67, 0.24);
  background: rgba(212, 168, 67, 0.09);
  color: var(--gold-light);
}

@media (max-width: 1120px) {
  .aides-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Google reviews panel */
.trust-google-reviews {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform var(--duration) var(--ease-out),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.trust-google-reviews:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.trust-google-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.trust-google-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(52, 168, 83, 0.22);
  border-radius: var(--radius-full);
  background: rgba(52, 168, 83, 0.10);
  color: #a7f3d0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.trust-google-review-body {
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(440px 180px at 0% 0%, rgba(66, 133, 244, 0.13), transparent 65%),
    rgba(7, 11, 22, 0.22);
}

.trust-google-review-body .trust-stars {
  display: block;
  font-size: 20px;
}

.trust-google-review-body p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

/* FAQ accent and compact call to action */
.faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 0 0 var(--radius-full) var(--radius-full);
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 940px;
  margin: 24px auto 0;
  padding: 20px 22px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.055), rgba(212, 168, 67, 0.055));
}

.faq-cta p {
  color: var(--muted);
  line-height: 1.6;
}

.faq-cta p strong {
  color: var(--text);
}

.faq-cta > div {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.faq-cta .btn {
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

@media (max-width: 760px) {
  .aides-grid-simple {
    grid-template-columns: 1fr;
  }

  .aides-grid-simple .aide-card {
    min-height: 0;
  }

  .faq-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-cta > div {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .trust-google-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-cta > div {
    display: grid;
  }

}

@media (max-width: 760px), (pointer: coarse) {
  .hero-card,
  .trust-profile,
  .trust-reviews,
  .aide-card,
  .cookie-banner-inner {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .btn-ghost {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .orb.two,
  .orb.three,
  .floating-whatsapp::after {
    animation: none;
  }

  .reveal.reveal-pending[data-anim="glide-left"],
  .reveal.reveal-pending[data-anim="glide-right"] {
    transform: translate3d(0, 16px, 0) scale(0.997);
  }

  .card:hover,
  .process-card:hover,
  .pricing-card:hover,
  .aide-card:hover,
  details.faq-item:hover {
    transform: none;
  }
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 3px;
}

/* Compact luminous feedback for calls to action. */
:is(.btn, .aide-more, .submit, .map-cta, .cookie-btn, button) {
  --button-glow: 37, 99, 235;
  box-shadow:
    0 5px 13px rgba(var(--button-glow), 0.18),
    0 0 10px rgba(var(--button-glow), 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: compactButtonGlow 4.8s ease-in-out infinite;
  cursor: pointer;
}

:is(.btn, .aide-more, .submit, .map-cta, .cookie-btn, button) * {
  cursor: inherit;
}

:is(.btn-primary, .aide-more) {
  --button-glow: 212, 168, 67;
}

.btn-whatsapp {
  --button-glow: 37, 211, 102;
}

.btn-ghost {
  --button-glow: 96, 165, 250;
}

.floating-whatsapp {
  --button-glow: 37, 99, 235;
  animation: compactButtonGlow 4.8s ease-in-out infinite;
}

@keyframes compactButtonGlow {
  0%, 100% {
    box-shadow:
      0 5px 13px rgba(var(--button-glow), 0.17),
      0 0 8px rgba(var(--button-glow), 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow:
      0 7px 17px rgba(var(--button-glow), 0.27),
      0 0 14px rgba(var(--button-glow), 0.17),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-immersive :is(.btn, .aide-more, .submit, .map-cta, .cookie-btn, button):hover {
    animation-play-state: paused;
    transform: none;
    filter: none;
    box-shadow:
      0 9px 20px rgba(var(--button-glow), 0.29),
      0 0 16px rgba(var(--button-glow), 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.20);
  }

  :is(.card, .process-card, .pricing-card, .aide-card, .trust-platform, .trust-google-reviews):hover {
    filter: brightness(1.025);
  }
}

@media (hover: none), (pointer: coarse) {
  :is(.btn, .aide-more, .submit, .map-cta, .cookie-btn, button):active {
    transform: scale(0.965);
    filter: brightness(1.10) saturate(1.05);
    box-shadow:
      0 3px 10px rgba(var(--button-glow), 0.24),
      0 0 12px rgba(var(--button-glow), 0.18),
      inset 0 2px 5px rgba(15, 23, 42, 0.12);
  }

  :is(.card, .process-card, .pricing-card, .aide-card, .trust-platform, .trust-google-reviews):active {
    transform: scale(0.985);
    filter: brightness(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(.btn, .aide-more, .submit, .map-cta, .cookie-btn, button),
  .floating-whatsapp {
    animation: none;
  }
}
