/* ============================================================
   RAIVO — shared stylesheet (header, nav, footer, components,
   and every page section). Colors/fonts per brand spec.
   ============================================================ */

:root {
  --navy: #060b35;
  --blue-deep: #0a2777;
  --blue-electric: #085cf0;
  --blue-mid: #3d8bf5;
  --sky: #b0e9fd;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: 'Raleway', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue-electric); color: #fff; }
a { text-decoration: none; color: inherit; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.42); }
h1, h2, h3, h4 { font-family: 'Clash Display', sans-serif; margin: 0; color: #fff; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

.grad-text {
  background: linear-gradient(120deg, var(--blue-electric), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------- keyframes ---------------- */
@keyframes raivoGrid { from { transform: translateY(0); } to { transform: translateY(64px); } }
@keyframes raivoFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-28px) rotate(8deg); } }
@keyframes raivoSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes raivoPulse { 0%,100% { opacity:.5; } 50% { opacity:1; } }
@keyframes raivoTwinkle { 0%,100% { opacity:.5; } 50% { opacity:.85; } }
@keyframes raivoMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- reveal on scroll ---------------- */
[data-reveal] { opacity: 0; transform: translateY(34px); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------------- starfield ---------------- */
.rv-stars {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 40px 60px, rgba(255,255,255,.85), transparent 62%),
    radial-gradient(1px 1px at 180px 120px, rgba(255,255,255,.6), transparent 62%),
    radial-gradient(1.3px 1.3px at 260px 220px, rgba(176,233,253,.7), transparent 62%),
    radial-gradient(1px 1px at 90px 290px, rgba(255,255,255,.55), transparent 62%),
    radial-gradient(1.4px 1.4px at 330px 50px, rgba(255,255,255,.7), transparent 62%),
    radial-gradient(1px 1px at 140px 200px, rgba(255,255,255,.5), transparent 62%);
  background-size: 360px 360px; background-repeat: repeat;
  animation: raivoTwinkle 7s ease-in-out infinite;
}
.rv-stars.s2 {
  background-size: 520px 470px; animation-duration: 11s; opacity: .7;
  background-image:
    radial-gradient(1px 1px at 70px 110px, rgba(255,255,255,.7), transparent 62%),
    radial-gradient(1.3px 1.3px at 300px 60px, rgba(176,233,253,.6), transparent 62%),
    radial-gradient(1px 1px at 200px 300px, rgba(255,255,255,.55), transparent 62%),
    radial-gradient(1.2px 1.2px at 430px 240px, rgba(255,255,255,.6), transparent 62%),
    radial-gradient(1px 1px at 30px 380px, rgba(255,255,255,.45), transparent 62%);
}

.rv-watermark {
  position: absolute; left: -140px; opacity: .05; animation: raivoSpin 70s linear infinite; pointer-events: none;
}
.rv-orb { position: absolute; border-radius: 50%; pointer-events: none; animation: raivoPulse 3s ease-in-out infinite; }

/* ============================================================
   HEADER + TUBELIGHT NAV
   ============================================================ */
.rv-progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: rgba(176,233,253,.08);
}
.rv-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--blue-electric), var(--sky));
  box-shadow: 0 0 12px rgba(176,233,253,.6);
  transition: width .12s linear;
}

.rv-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.rv-header.is-scrolled {
  background: rgba(6,11,53,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 34px rgba(0,0,0,.45);
  border-bottom-color: rgba(176,233,253,.1);
}
.rv-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.rv-logo { display: flex; align-items: center; }
.rv-logo img { height: 31px; width: auto; display: block; }

.rv-tubelight {
  position: relative; display: flex; align-items: center; gap: 2px;
  padding: 6px; border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(176,233,253,.16);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.rv-nav-hl {
  position: absolute; top: 6px; bottom: 6px; left: 0; width: 0;
  border-radius: 100px; background: rgba(176,233,253,.12);
  transform: translateX(0);
  transition: transform .42s cubic-bezier(.34,1.18,.4,1), width .42s cubic-bezier(.34,1.18,.4,1);
  pointer-events: none; z-index: 0;
}
.rv-nav-hl-lamp {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 4px; border-radius: 0 0 8px 8px;
  background: var(--sky); box-shadow: 0 0 12px 2px rgba(176,233,253,.75);
}
.rv-nav-hl-lamp span { position: absolute; border-radius: 50%; background: rgba(176,233,253,.32); }
.rv-nav-hl-lamp .g1 { left: -9px; top: -7px; width: 52px; height: 26px; filter: blur(13px); }
.rv-nav-hl-lamp .g2 { left: 1px; top: -4px; width: 32px; height: 18px; filter: blur(8px); background: rgba(176,233,253,.28); }
.rv-nav-hl-lamp .g3 { left: 9px; top: -1px; width: 16px; height: 12px; filter: blur(5px); }

.rv-nav-item {
  position: relative; z-index: 1; font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,.78); padding: 9px 20px; border-radius: 100px;
  transition: color .3s ease;
}
.rv-nav-item:hover { color: var(--sky); }
.rv-nav-item.is-active { color: #fff; }

.rv-cta-header {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-mid));
  color: #fff; font-weight: 600; font-size: 14px; padding: 12px 22px; border-radius: 10px;
  box-shadow: 0 6px 20px rgba(8,92,240,.35);
  transition: box-shadow .25s ease, transform .25s ease;
}
.rv-cta-header:hover { box-shadow: 0 10px 30px rgba(8,92,240,.55); transform: translateY(-2px); }

.rv-burger {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(176,233,253,.2);
  flex-shrink: 0; cursor: pointer;
}
.rv-burger svg .icon-close { display: none; }
.rv-burger.is-open svg .icon-open { display: none; }
.rv-burger.is-open svg .icon-close { display: block; }

.rv-mobile-menu {
  display: flex; flex-direction: column;
  position: fixed; top: 69px; left: 0; right: 0; z-index: 99;
  background: rgba(6,11,53,.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(176,233,253,.14);
  padding: 0 24px; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .3s ease, padding .38s ease;
}
.rv-mobile-menu.is-open {
  padding: 10px 24px 26px; max-height: 80vh; overflow: auto; opacity: 1;
}
.rv-mobile-menu a {
  font-size: 17px; font-weight: 600; color: #fff; padding: 14px 8px;
  border-bottom: 1px solid rgba(176,233,253,.1);
}
.rv-mobile-menu .rv-mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 18px; border-bottom: none;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-mid));
  color: #fff; font-weight: 600; font-size: 16px; padding: 15px 22px; border-radius: 11px;
  box-shadow: 0 6px 20px rgba(8,92,240,.35);
}

@media (max-width: 1150px) {
  .rv-tubelight { gap: 0; padding: 5px; }
  .rv-tubelight .rv-nav-item { font-size: 13px; padding: 8px 12px; }
  .rv-cta-header { font-size: 13px; padding: 11px 16px; white-space: nowrap; }
  .rv-header-inner { gap: 12px; padding: 16px; }
}
@media (max-width: 760px) {
  .rv-tubelight { display: none; }
  .rv-cta-header { display: none; }
  .rv-burger { display: flex; }
}

/* ============================================================
   BUTTONS & BADGES
   ============================================================ */
.rv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 16px; padding: 17px 36px; border-radius: 12px;
  border: none; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.rv-btn-primary {
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-mid));
  color: #fff; box-shadow: 0 10px 34px rgba(8,92,240,.4);
}
.rv-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(8,92,240,.6); }
.rv-btn-outline {
  background: rgba(255,255,255,.04); color: var(--sky);
  border: 1px solid rgba(176,233,253,.32); backdrop-filter: blur(8px);
}
.rv-btn-outline:hover { background: rgba(176,233,253,.1); border-color: rgba(176,233,253,.6); }
.rv-btn-sm { font-size: 15px; padding: 14px 30px; border-radius: 11px; }
.rv-btn-sky {
  background: rgba(176,233,253,.12); border: 1px solid rgba(176,233,253,.5);
  color: var(--sky); font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 11px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s ease, border-color .25s ease;
}
.rv-btn-sky:hover { background: rgba(176,233,253,.2); border-color: var(--sky); }
.rv-btn-pill {
  display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600;
  color: var(--sky); padding: 12px 26px; border-radius: 100px;
  border: 1px solid rgba(176,233,253,.3); background: rgba(176,233,253,.06);
  transition: border-color .25s ease, background .25s ease;
}
.rv-btn-pill:hover { border-color: rgba(176,233,253,.6); background: rgba(176,233,253,.1); }

.rv-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 3px; color: var(--blue-electric);
  text-transform: uppercase;
}
.rv-eyebrow.sky { color: var(--sky); }

.rv-icon-badge {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(8,92,240,.25), rgba(176,233,253,.18));
  border: 1px solid rgba(176,233,253,.25); flex-shrink: 0;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.rv-section { position: relative; padding: clamp(52px,6vw,78px) 24px; overflow: hidden; }
.rv-wrap { position: relative; margin: 0 auto; }
.rv-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.rv-head h2 { font-weight: 600; font-size: clamp(30px,4.4vw,50px); line-height: 1.1; letter-spacing: -1px; margin: 16px 0 18px; }
.rv-head p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.72); }

.rv-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(176,233,253,.16);
  border-radius: 20px; padding: 36px 32px; backdrop-filter: blur(12px);
}
.rv-card-tint { background: rgba(176,233,253,.07); border-color: rgba(176,233,253,.2); }
.rv-card-hover { transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.rv-card-hover:hover { transform: translateY(-8px); border-color: rgba(176,233,253,.45); box-shadow: 0 24px 60px rgba(8,92,240,.22); }

/* ---------------- Hero ---------------- */
.rv-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 130px 24px 78px;
  background: linear-gradient(180deg, #060b35 0%, #060b35 55%, #0a2777 100%);
}
.rv-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.rv-hero-grid {
  position: absolute; inset: -64px;
  background-image: linear-gradient(rgba(176,233,253,.07) 1px,transparent 1px), linear-gradient(90deg,rgba(176,233,253,.07) 1px,transparent 1px);
  background-size: 64px 64px; animation: raivoGrid 14s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%,#000 30%,transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%,#000 30%,transparent 75%);
}
.rv-hero-inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; z-index: 2; }
.rv-hero-tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 100px;
  background: rgba(176,233,253,.08); border: 1px solid rgba(176,233,253,.2); margin-bottom: 32px;
}
.rv-hero-tag span { font-size: 12.5px; font-weight: 600; letter-spacing: 2.5px; color: var(--sky); text-transform: uppercase; }
.rv-hero h1 { font-weight: 700; font-size: clamp(40px,7vw,86px); line-height: 1.02; letter-spacing: -1.5px; margin: 0 0 28px; }
.rv-hero-sub { max-width: 680px; margin: 0 auto 44px; font-size: clamp(17px,2.2vw,21px); line-height: 1.6; color: rgba(255,255,255,.74); }
.rv-hero-sub strong { color: #fff; font-weight: 600; }
.rv-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Proof marquee ---------------- */
.rv-proof {
  background: var(--blue-deep); padding: 36px 0;
  border-top: 1px solid rgba(176,233,253,.08); overflow: hidden;
}
.rv-marquee-mask {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.rv-marquee { display: flex; width: max-content; animation: raivoMarquee 28s linear infinite; }
.rv-marquee-mask:hover .rv-marquee { animation-play-state: paused; }
.rv-proof-item { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.rv-proof-item div { display: flex; align-items: center; gap: 12px; padding: 0 28px; }
.rv-proof-item span.txt { font-size: 15px; font-weight: 500; color: #fff; letter-spacing: .2px; white-space: nowrap; }
.rv-proof-sep { width: 1px; height: 26px; background: rgba(176,233,253,.18); flex-shrink: 0; }

/* ---------------- Qui est RAIVO ---------------- */
#qui { background: var(--blue-deep); }
#qui .rv-card { padding: 38px 34px; }
.rv-qui-lead { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.rv-qui-lead h2 { font-weight: 600; font-size: clamp(30px,4.4vw,50px); line-height: 1.08; letter-spacing: -1px; margin: 18px 0 26px; }
.rv-qui-lead p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.74); }
.rv-qui-lead strong { color: #fff; font-weight: 600; }
.rv-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.rv-grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 24px; align-items: stretch; }
.rv-card-title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.rv-card-title-row h3 { font-weight: 600; font-size: 21px; line-height: 1.2; letter-spacing: -.3px; }
.rv-list-check { display: flex; flex-direction: column; gap: 18px; }
.rv-list-check li { display: flex; align-items: flex-start; gap: 13px; }
.rv-list-check li svg { flex-shrink: 0; margin-top: 5px; }
.rv-list-check li span { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,.86); }
.rv-list-check li strong { color: #fff; font-weight: 600; }
.rv-position-card { display: flex; flex-direction: column; height: 100%; }
.rv-position-card .rv-eyebrow { margin-bottom: 14px; display: block; }
.rv-position-card h3 { font-size: 24px; line-height: 1.18; letter-spacing: -.3px; margin: 0 0 22px; }
.rv-position-card p { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,.78); margin: 0 0 18px; }
.rv-position-card p strong { color: #fff; font-weight: 600; }
.rv-position-tag {
  margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  border-radius: 12px; background: rgba(8,92,240,.14); border: 1px solid rgba(176,233,253,.18);
}
.rv-position-tag span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.9); letter-spacing: .2px; }
.rv-center-cta { text-align: center; margin-top: 52px; }

/* ---------------- Offres ---------------- */
#offres { background: linear-gradient(180deg, var(--blue-deep) 0%, var(--navy) 60%); }
.rv-offer-card { position: relative; display: flex; flex-direction: column; padding: 36px 30px; }
.rv-offer-card h3 { font-weight: 600; font-size: 23px; line-height: 1.18; letter-spacing: -.3px; margin: 0 0 14px; }
.rv-offer-card > p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.62); margin: 0 0 24px; }
.rv-offer-points { display: flex; flex-direction: column; gap: 13px; margin: 0 0 26px; }
.rv-offer-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.86); }
.rv-offer-points li svg { flex-shrink: 0; margin-top: 4px; }
.rv-offer-price { padding: 14px 0; border-top: 1px solid rgba(176,233,253,.12); margin-bottom: 22px; }
.rv-offer-price span { font-size: 14px; font-weight: 600; color: var(--sky); }
.rv-offer-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px;
  border-radius: 11px; background: linear-gradient(135deg, var(--blue-electric), var(--blue-mid));
  color: #fff; font-weight: 600; font-size: 15px; box-shadow: 0 8px 24px rgba(8,92,240,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.rv-offer-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(8,92,240,.5); }
.rv-offer-tag { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--sky); text-transform: uppercase; }

.rv-cta-bar { position: relative; margin-top: 32px; }
.rv-cta-bar-glow {
  position: absolute; inset: 0; border-radius: 18px;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(8,92,240,.55), rgba(61,139,245,.22) 55%, transparent 80%);
  filter: blur(26px); pointer-events: none; z-index: 0;
}
.rv-cta-bar-inner {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; padding: 28px 34px; border-radius: 18px;
  background: rgba(8,92,240,.16); border: 1px solid rgba(176,233,253,.3); box-shadow: 0 16px 50px rgba(8,92,240,.4);
}
.rv-cta-bar-inner p { margin: 0; font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.9); max-width: 640px; }
.rv-cta-bar-inner p strong { color: #fff; }

/* ---------------- A propos ---------------- */
#apropos { background: var(--navy); }
.rv-about {
  position: relative; max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: clamp(40px,6vw,72px); align-items: center;
}
.rv-avatar { display: flex; justify-content: center; }
.rv-avatar-ring {
  position: relative; width: 220px; height: 220px; border-radius: 50%; padding: 2px;
  background: linear-gradient(135deg, var(--blue-electric), var(--sky)); flex-shrink: 0;
}
.rv-avatar-ring img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center top; display: block;
  background: radial-gradient(circle at 50% 38%, #123089, #060b35 75%);
}
.rv-avatar-ring svg { position: absolute; right: -6px; top: 8px; }
.rv-about h2 { font-weight: 600; font-size: clamp(27px,3.8vw,42px); line-height: 1.14; letter-spacing: -.6px; margin: 14px 0 22px; }
.rv-about h2 span { color: rgba(255,255,255,.4); }
.rv-about p { font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,.74); margin: 0 0 18px; }
.rv-about p strong { color: #fff; font-weight: 600; }
.rv-stats-grid {
  position: relative; max-width: 1000px; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.rv-stat {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(176,233,253,.14); border-radius: 20px;
  padding: 34px 22px; backdrop-filter: blur(12px);
}
.rv-stat .num {
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: clamp(38px,4.6vw,52px); line-height: 1; letter-spacing: -1.5px;
  background: linear-gradient(120deg, var(--blue-electric), var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rv-stat .label { font-size: 14.5px; font-weight: 500; line-height: 1.45; color: rgba(255,255,255,.72); }

/* ---------------- Formations ---------------- */
#formations { background: linear-gradient(180deg, var(--navy) 0%, var(--blue-deep) 22%, var(--navy) 100%); }
#formations .rv-card { padding: 36px 34px; }
.rv-formats { display: flex; flex-direction: column; }
.rv-formats > div {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 0; border-bottom: 1px solid rgba(176,233,253,.12);
}
.rv-formats .label { font-size: 15px; line-height: 1.45; color: rgba(255,255,255,.88); }
.rv-formats .price { flex-shrink: 0; font-size: 14px; font-weight: 600; color: var(--sky); white-space: nowrap; }
.rv-cta-bar-flat {
  margin-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding: 24px 32px; border-radius: 18px; background: rgba(8,92,240,.1); border: 1px solid rgba(176,233,253,.16);
}
.rv-cta-bar-flat p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.68); max-width: 620px; }

/* ---------------- Pourquoi ---------------- */
#pourquoi { background: var(--navy); }
.rv-chart-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .5; }
.rv-chart-line { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2.1s cubic-bezier(.22,.61,.36,1); }
.rv-chart-bg.is-drawn .rv-chart-line { stroke-dashoffset: 0; }
.rv-chart-area { opacity: 0; transition: opacity 1.6s ease .25s; }
.rv-chart-bg.is-drawn .rv-chart-area { opacity: 1; }
.rv-reason { position: relative; display: flex; flex-direction: column; padding: 36px 32px; }
.rv-reason .num {
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 34px; line-height: 1; letter-spacing: -1px;
  background: linear-gradient(120deg, var(--blue-electric), var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px; display: block;
}
.rv-reason h3 { font-weight: 600; font-size: 21px; line-height: 1.22; letter-spacing: -.3px; margin: 0 0 14px; }
.rv-reason p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.68); }

/* ---------------- Methode ---------------- */
#methode { background: var(--navy); }
.rv-methode-glow {
  position: absolute; left: 50%; top: 50%; width: 620px; height: 520px; transform: translate(-50%,-50%);
  background: radial-gradient(ellipse at center, rgba(8,92,240,.22), transparent 70%); filter: blur(60px); pointer-events: none;
}
.rv-timeline { max-width: 780px; margin: 0 auto; }
.rv-step { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 26px; padding-bottom: 30px; }
.rv-step-col { position: relative; display: flex; justify-content: center; }
.rv-step-line {
  position: absolute; left: 50%; transform: translateX(-50%); top: 8px; bottom: -30px; width: 2px;
  background: linear-gradient(180deg, rgba(176,233,253,.22), rgba(8,92,240,.1)); transition: background .5s ease;
}
.rv-step-node {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.05);
  border: 2px solid rgba(176,233,253,.22); color: rgba(255,255,255,.45);
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 21px; box-shadow: none;
  transition: background .45s ease, color .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.rv-step-node.is-active {
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-mid)); color: #fff; border-color: transparent;
  box-shadow: 0 0 0 6px rgba(8,92,240,.12), 0 8px 24px rgba(8,92,240,.45);
}
.rv-step-line.is-active { background: linear-gradient(180deg, var(--sky), var(--blue-electric)); }
.rv-step-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(176,233,253,.14); border-radius: 18px;
  padding: 24px 28px; backdrop-filter: blur(12px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.rv-step-card:hover { transform: translateY(-4px); border-color: rgba(176,233,253,.4); box-shadow: 0 20px 50px rgba(8,92,240,.2); }
.rv-step-card h3 { font-weight: 600; font-size: 19px; line-height: 1.25; letter-spacing: -.2px; margin: 0 0 10px; }
.rv-step-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.7); }

/* ---------------- Stack ---------------- */
#stack { background: linear-gradient(180deg, var(--navy) 0%, var(--blue-deep) 100%); }
.rv-stack-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(176,233,253,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(176,233,253,.05) 1px,transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%,#000 30%,transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%,#000 30%,transparent 78%);
  pointer-events: none;
}
.rv-stack-photo {
  display: block; width: 100%; height: 100%; min-height: 520px;
  border: 1px solid rgba(176,233,253,.16); border-radius: 22px; overflow: hidden;
  object-fit: cover;
}
.rv-stack-panel {
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(176,233,253,.16); border-radius: 22px;
  padding: 8px 34px; backdrop-filter: blur(12px);
}
.rv-stack-row { border-bottom: 1px solid rgba(176,233,253,.1); }
.rv-stack-row:last-child { border-bottom: none; }
.rv-stack-toggle {
  display: flex; align-items: center; gap: 13px; width: 100%; padding: 22px 0;
  background: none; border: none; cursor: pointer; text-align: left; color: inherit;
}
.rv-stack-toggle .cat { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -.2px; color: #fff; }
.rv-stack-toggle .count { margin-left: 6px; font-size: 12.5px; font-weight: 600; color: rgba(176,233,253,.55); }
.rv-stack-toggle .chevron { margin-left: auto; flex-shrink: 0; transition: transform .42s cubic-bezier(.4,0,.2,1); }
.rv-stack-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.rv-stack-panel-inner {
  overflow: hidden; display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .42s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.rv-stack-row.is-open .rv-stack-panel-inner { grid-template-rows: 1fr; opacity: 1; }
.rv-stack-tools { display: flex; flex-wrap: wrap; gap: 9px; padding: 2px 0 26px 27px; min-height: 0; }
.rv-stack-tools span {
  padding: 7px 14px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; font-weight: 600; letter-spacing: .3px; color: var(--sky);
}

/* ---------------- Testimonials ---------------- */
.rv-testi-card { display: flex; flex-direction: column; padding: 32px 30px; background: rgba(255,255,255,.05); border: 1px solid rgba(176,233,253,.14); border-radius: 20px; backdrop-filter: blur(12px); transition: transform .35s ease, border-color .35s ease; }
.rv-testi-card:hover { transform: translateY(-6px); border-color: rgba(176,233,253,.4); }
.rv-testi-stars { display: flex; gap: 5px; margin-bottom: 20px; }
.rv-testi-card > p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.9); margin: 0 0 26px; flex-grow: 1; }
.rv-testi-who { display: flex; align-items: center; gap: 13px; }
.rv-testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-electric), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy);
}
.rv-testi-who .name { display: block; font-size: 15px; font-weight: 600; color: #fff; }
.rv-testi-who .role { display: block; font-size: 13px; color: rgba(255,255,255,.55); }

/* ---------------- FAQ (home strip) ---------------- */
.rv-faq-item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(176,233,253,.16); border-radius: 16px;
  overflow: hidden; transition: border-color .3s ease;
}
.rv-faq-item:hover { border-color: rgba(176,233,253,.35); }
.rv-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 26px; background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: 'Raleway', sans-serif;
}
.rv-faq-q span.txt { font-size: 16.5px; font-weight: 600; line-height: 1.4; color: #fff; }
.rv-faq-icon {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: rgba(176,233,253,.1);
  border: 1px solid rgba(176,233,253,.22); transition: transform .3s ease;
}
.rv-faq-q[aria-expanded="true"] .rv-faq-icon { transform: rotate(45deg); }
.rv-faq-ans { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .3s ease; }
.rv-faq-item[data-open="true"] .rv-faq-ans { max-height: 460px; opacity: 1; transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .35s ease .1s; }
.rv-faq-ans-inner { padding: 0 26px 24px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.7); }

/* ---------------- Blog preview (home) ---------------- */
.rv-blogcard {
  display: flex; flex-direction: column; gap: 14px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(176,233,253,.14); border-radius: 20px; padding: 32px 30px;
  transition: transform .35s ease, border-color .35s ease;
}
.rv-blogcard:hover { transform: translateY(-6px); border-color: rgba(176,233,253,.4); }
.rv-blogcard .cat { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--sky); text-transform: uppercase; }
.rv-blogcard h3 { font-weight: 600; font-size: 20px; line-height: 1.3; letter-spacing: -.3px; }
.rv-blogcard p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.65); flex-grow: 1; }
.rv-blogcard .link { font-size: 14px; font-weight: 600; color: var(--sky); }

/* ---------------- Contact ---------------- */
#contact { background: linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 100%); }
.rv-contact-card { min-width: 0; }
.rv-tally-wrap { position: relative; width: 100%; min-height: 408px; border-radius: 14px; overflow: hidden; }
.rv-tally-wrap iframe { display: block; width: 100%; border: 0; }
.rv-calendly-wrap {
  flex-grow: 1; min-width: 0; width: 100%; min-height: 620px; position: relative; border-radius: 14px;
  overflow: hidden; background: #fff;
}
.rv-calendly-loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  height: 100%; text-align: center; padding: 30px; color: #0a2777;
}
.rv-calendly-loading span { font-family: ui-monospace, Menlo, monospace; font-size: 13px; letter-spacing: 1px; color: rgba(10,39,119,.7); }
.rv-calendly-loading svg { animation: raivoFloat 6s ease-in-out infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
.rv-footer { position: relative; background: var(--navy); border-top: 1px solid rgba(176,233,253,.1); padding: 72px 24px 200px; overflow: hidden; }
.rv-footer-glow {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 680px; max-width: 90%; height: 200px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(8,92,240,.28), transparent 70%); pointer-events: none;
}
.rv-footer-watermark {
  position: absolute; left: 50%; bottom: -11vw; transform: translateX(-50%); width: min(1280px,108%); height: auto;
  opacity: .07; pointer-events: none; user-select: none;
}
.rv-footer-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.rv-footer-top {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(176,233,253,.08);
}
.rv-footer-brand { max-width: 340px; }
.rv-footer-brand img { height: 36px; width: auto; display: block; margin-bottom: 16px; }
.rv-footer-brand p { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.6); font-style: italic; }
.rv-footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.rv-footer-col { display: flex; flex-direction: column; gap: 12px; }
.rv-footer-col span.head { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,.4); text-transform: uppercase; }
.rv-footer-col a { font-size: 14.5px; color: rgba(255,255,255,.7); transition: color .2s ease; }
.rv-footer-col a:hover { color: var(--sky); }
.rv-footer-col a.is-current { color: var(--sky); }
.rv-footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.45);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero { position: relative; padding: 150px 24px 56px; background: linear-gradient(180deg, var(--navy) 0%, var(--blue-deep) 100%); overflow: hidden; }
.blog-hero-grid {
  position: absolute; inset: -64px;
  background-image: linear-gradient(rgba(176,233,253,.06) 1px,transparent 1px), linear-gradient(90deg,rgba(176,233,253,.06) 1px,transparent 1px);
  background-size: 64px 64px; animation: raivoGrid 16s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%,#000 25%,transparent 72%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%,#000 25%,transparent 72%);
  pointer-events: none;
}
.blog-hero-inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }
.blog-hero h1 { font-weight: 700; font-size: clamp(38px,6vw,72px); line-height: 1.04; letter-spacing: -1.5px; margin: 0 0 24px; }
.blog-hero p { max-width: 620px; margin: 0 auto; font-size: clamp(16px,2vw,20px); line-height: 1.6; color: rgba(255,255,255,.72); }

.blog-list-section { position: relative; padding: 8px 24px 110px; background: linear-gradient(180deg, var(--blue-deep) 0%, var(--navy) 70%); }
.blog-list-inner { max-width: 1140px; margin: 0 auto; }
.blog-featured {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 0; margin-bottom: 28px; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(176,233,253,.16); background: rgba(255,255,255,.04); backdrop-filter: blur(12px);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.blog-featured:hover { transform: translateY(-6px); border-color: rgba(176,233,253,.45); box-shadow: 0 30px 70px rgba(8,92,240,.28); }
.blog-featured-visual {
  position: relative; min-height: 340px; background: linear-gradient(150deg,#0a2777 0%,#0e3aa6 55%,#085cf0 110%); overflow: hidden;
}
.blog-featured-visual .grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(176,233,253,.1) 1px,transparent 1px), linear-gradient(90deg,rgba(176,233,253,.1) 1px,transparent 1px);
  background-size: 40px 40px; -webkit-mask-image: radial-gradient(ellipse 90% 90% at 70% 30%,#000,transparent 75%);
  mask-image: radial-gradient(ellipse 90% 90% at 70% 30%,#000,transparent 75%);
}
.blog-featured-visual svg.spin { position: absolute; right: -70px; bottom: -70px; opacity: .22; animation: raivoSpin 60s linear infinite; }
.blog-featured-badge {
  position: absolute; top: 26px; left: 28px; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 100px; background: rgba(6,11,53,.5); border: 1px solid rgba(176,233,253,.3); backdrop-filter: blur(6px);
}
.blog-featured-badge span { font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; color: var(--sky); text-transform: uppercase; }
.blog-featured-num { position: absolute; left: 28px; bottom: 20px; font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 120px; line-height: .8; letter-spacing: -4px; color: rgba(176,233,253,.16); }
.blog-featured-body { display: flex; flex-direction: column; justify-content: center; padding: 44px 46px; }
.blog-featured-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.blog-featured-meta .cat { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--sky); text-transform: uppercase; }
.blog-featured-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(176,233,253,.4); }
.blog-featured-meta .time { font-size: 13px; color: rgba(255,255,255,.5); }
.blog-featured-body h2 { font-weight: 600; font-size: clamp(26px,3.2vw,36px); line-height: 1.12; letter-spacing: -.6px; margin: 0 0 18px; }
.blog-featured-body p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.66); margin: 0 0 28px; }
.blog-featured-body .link { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: var(--sky); }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(176,233,253,.14); background: rgba(255,255,255,.04); backdrop-filter: blur(12px);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.blog-card:hover { transform: translateY(-8px); border-color: rgba(176,233,253,.45); box-shadow: 0 26px 60px rgba(8,92,240,.24); }
.blog-card-visual { position: relative; height: 172px; background: linear-gradient(150deg,#0a2777 0%,#103593 60%,#1f5bd8 120%); overflow: hidden; }
.blog-card-visual .grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(176,233,253,.1) 1px,transparent 1px), linear-gradient(90deg,rgba(176,233,253,.1) 1px,transparent 1px);
  background-size: 36px 36px; -webkit-mask-image: radial-gradient(ellipse 90% 100% at 75% 20%,#000,transparent 78%);
  mask-image: radial-gradient(ellipse 90% 100% at 75% 20%,#000,transparent 78%);
}
.blog-card-visual svg.mark { position: absolute; right: -34px; bottom: -44px; opacity: .2; }
.blog-card-visual .badge {
  position: absolute; top: 18px; left: 20px; display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 100px; background: rgba(6,11,53,.5); border: 1px solid rgba(176,233,253,.28);
  backdrop-filter: blur(6px); font-size: 11px; font-weight: 600; letter-spacing: 1.2px; color: var(--sky); text-transform: uppercase;
}
.blog-card-visual .num { position: absolute; left: 20px; bottom: 12px; font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 74px; line-height: .8; letter-spacing: -3px; color: rgba(176,233,253,.18); }
.blog-card-body { display: flex; flex-direction: column; flex-grow: 1; padding: 28px 28px 26px; }
.blog-card-body h3 { font-weight: 600; font-size: 21px; line-height: 1.2; letter-spacing: -.3px; margin: 0 0 14px; }
.blog-card-body p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.62); margin: 0 0 22px; }
.blog-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(176,233,253,.1); }
.blog-card-foot .time { font-size: 13px; color: rgba(255,255,255,.5); }
.blog-card-foot .link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--sky); }

/* Article view */
.blog-article-head { position: relative; padding: 128px 24px 40px; background: linear-gradient(180deg, var(--navy) 0%, var(--blue-deep) 100%); overflow: hidden; }
.blog-article-inner { position: relative; max-width: 760px; margin: 0 auto; }
.blog-back { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 34px; transition: color .2s ease; }
.blog-back:hover { color: var(--sky); }
.blog-back .arrow { font-size: 17px; }
.blog-article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.blog-article-cat {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 100px;
  background: rgba(176,233,253,.1); border: 1px solid rgba(176,233,253,.24); font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; color: var(--sky); text-transform: uppercase;
}
.blog-article-meta .time, .blog-article-meta .date { font-size: 13.5px; color: rgba(255,255,255,.5); }
.blog-article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(176,233,253,.4); }
.blog-article-inner h1 { font-weight: 700; font-size: clamp(30px,4.6vw,52px); line-height: 1.08; letter-spacing: -1px; margin: 0 0 28px; }
.blog-author { display: flex; align-items: center; gap: 14px; padding-bottom: 6px; }
.blog-author-avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; padding: 2px; background: linear-gradient(135deg, var(--blue-electric), var(--sky)); }
.blog-author-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center top; display: block; background: #123089; }
.blog-author .name { display: block; font-size: 14.5px; font-weight: 600; color: #fff; }
.blog-author .role { display: block; font-size: 13px; color: rgba(255,255,255,.5); }

.blog-body-wrap { position: relative; padding: 54px 24px 30px; background: var(--navy); }
.blog-body { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.blog-lead { font-size: 21px; line-height: 1.6; font-weight: 500; color: rgba(255,255,255,.92); margin: 0 0 14px; padding-left: 20px; border-left: 3px solid var(--blue-electric); }
.blog-body h2 { font-weight: 600; font-size: clamp(23px,3vw,30px); line-height: 1.18; letter-spacing: -.5px; margin: 30px 0 6px; }
.blog-body > p { font-size: 17.5px; line-height: 1.78; color: rgba(255,255,255,.78); margin: 0 0 6px; }
.blog-steps { display: flex; flex-direction: column; gap: 16px; margin: 10px 0; }
.blog-step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 26px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(176,233,253,.14); }
.blog-step .n { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--blue-electric), var(--blue-mid)); font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 24px; color: #fff; }
.blog-step h4 { font-weight: 600; font-size: 18.5px; line-height: 1.25; letter-spacing: -.2px; margin: 4px 0 8px; }
.blog-step p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.72); }
.blog-subs { display: flex; flex-direction: column; gap: 22px; margin: 10px 0; }
.blog-sub { padding-left: 22px; border-left: 2px solid rgba(176,233,253,.28); }
.blog-sub h4 { font-weight: 600; font-size: 19px; line-height: 1.25; letter-spacing: -.2px; margin: 0 0 10px; color: var(--sky); }
.blog-sub p { font-size: 17px; line-height: 1.74; color: rgba(255,255,255,.78); }
.blog-ul { margin: 8px 0; display: flex; flex-direction: column; gap: 13px; }
.blog-ul li { display: flex; align-items: flex-start; gap: 13px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.82); }
.blog-ul li svg { flex-shrink: 0; margin-top: 6px; }
.blog-ol { display: flex; flex-direction: column; gap: 12px; margin: 8px 0; }
.blog-ol .item { display: flex; align-items: flex-start; gap: 16px; }
.blog-ol .n { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: rgba(8,92,240,.16); border: 1px solid rgba(176,233,253,.3); font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 15px; color: var(--sky); }
.blog-ol .txt { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.82); padding-top: 4px; }
.blog-quote { position: relative; margin: 20px 0; padding: 30px 34px; border-radius: 18px; background: rgba(8,92,240,.1); border: 1px solid rgba(176,233,253,.2); overflow: hidden; }
.blog-quote .mark { position: absolute; right: 18px; top: 2px; font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 90px; line-height: 1; color: rgba(176,233,253,.14); }
.blog-quote p { position: relative; font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 22px; line-height: 1.4; letter-spacing: -.3px; color: #fff; margin: 0; }
.blog-cta-wrap { position: relative; margin: 34px 0 10px; }
.blog-cta-glow { position: absolute; inset: 0; border-radius: 20px; background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(8,92,240,.5), rgba(61,139,245,.18) 55%, transparent 80%); filter: blur(26px); pointer-events: none; }
.blog-cta { position: relative; display: flex; flex-direction: column; gap: 22px; padding: 34px 36px; border-radius: 20px; background: rgba(8,92,240,.16); border: 1px solid rgba(176,233,253,.3); box-shadow: 0 16px 50px rgba(8,92,240,.34); }
.blog-cta-head { display: flex; align-items: center; gap: 11px; }
.blog-cta-head span { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--sky); text-transform: uppercase; }
.blog-cta p { margin: 0; font-size: 17.5px; line-height: 1.65; color: rgba(255,255,255,.92); }
.blog-cta .rv-btn { align-self: flex-start; padding: 15px 30px; font-size: 15.5px; }

.blog-related { position: relative; padding: 60px 24px 100px; background: var(--navy); border-top: 1px solid rgba(176,233,253,.08); }
.blog-related-inner { max-width: 1000px; margin: 0 auto; }
.blog-related-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.blog-related-head h2 { font-weight: 600; font-size: 26px; letter-spacing: -.4px; }
.blog-related-head a { font-size: 14px; font-weight: 600; color: var(--sky); transition: color .2s ease; }
.blog-related-head a:hover { color: #fff; }
.blog-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-related-card {
  display: grid; grid-template-columns: 96px 1fr; gap: 20px; padding: 18px; border-radius: 18px;
  border: 1px solid rgba(176,233,253,.14); background: rgba(255,255,255,.04);
  transition: transform .35s ease, border-color .35s ease;
}
.blog-related-card:hover { transform: translateY(-4px); border-color: rgba(176,233,253,.42); }
.blog-related-visual { position: relative; border-radius: 13px; overflow: hidden; background: linear-gradient(150deg,#0a2777,#1f5bd8); min-height: 96px; }
.blog-related-visual .num { position: absolute; left: 10px; bottom: 2px; font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 50px; line-height: .8; color: rgba(176,233,253,.22); }
.blog-related-body { display: flex; flex-direction: column; justify-content: center; }
.blog-related-body .cat { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; color: var(--sky); text-transform: uppercase; margin-bottom: 8px; }
.blog-related-body h3 { font-weight: 600; font-size: 16.5px; line-height: 1.25; letter-spacing: -.2px; }

@media (max-width: 820px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-visual { min-height: 200px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-article-inner h1 { font-size: 34px; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page-bg { position: relative; min-height: 100vh; background: linear-gradient(180deg, var(--navy) 0%, var(--blue-deep) 22%, var(--navy) 46%); overflow: hidden; }
.faq-hero { position: relative; padding: 150px 24px clamp(40px,5vw,60px); overflow: hidden; }
.faq-hero-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.faq-hero h1 { font-weight: 700; font-size: clamp(34px,5.4vw,58px); line-height: 1.08; letter-spacing: -1px; margin: 16px 0 20px; }
.faq-hero > .faq-hero-inner > p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.7); margin: 0 0 32px; }
.faq-cats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; max-width: 720px; margin: 0 auto; }
.faq-cat-chip {
  display: flex; align-items: center; justify-content: center; gap: 7px; padding: 12px 14px; border-radius: 11px;
  background: rgba(176,233,253,.08); border: 1px solid rgba(176,233,253,.3); font-size: 13.5px; font-weight: 700;
  color: var(--sky); text-align: center; cursor: pointer; transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.faq-cat-chip:hover { border-color: var(--sky); background: rgba(176,233,253,.16); transform: translateY(-2px); }
.faq-cat-chip .arrow { font-size: 12px; }

.faq-body-wrap { position: relative; max-width: 820px; margin: 0 auto; padding: 0 24px clamp(80px,9vw,120px); }
.faq-cat-block { scroll-margin-top: 90px; margin-bottom: 56px; }
.faq-cat-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.faq-cat-head .n { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 15px; color: var(--blue-electric); }
.faq-cat-head h2 { font-weight: 600; font-size: clamp(22px,2.8vw,28px); letter-spacing: -.4px; }
.faq-cat-rule { height: 1px; background: rgba(176,233,253,.16); margin: 0 0 20px; }
.faq-items { display: flex; flex-direction: column; gap: 12px; }
.faq-cta-block { text-align: center; margin-top: 24px; padding: 36px 32px; border-radius: 20px; background: rgba(8,92,240,.1); border: 1px solid rgba(176,233,253,.18); }
.faq-cta-block h3 { font-weight: 600; font-size: 22px; margin: 0 0 12px; }
.faq-cta-block p { margin: 0 0 22px; font-size: 15px; color: rgba(255,255,255,.68); }

@media (max-width: 720px) { .faq-cats { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-hero { position: relative; padding: 150px 24px clamp(40px,5vw,60px); }
.legal-hero-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.legal-hero h1 { font-weight: 700; font-size: clamp(32px,5vw,50px); line-height: 1.1; letter-spacing: -1px; margin: 16px 0 0; }
.legal-body { position: relative; max-width: 760px; margin: 0 auto; padding: 0 24px clamp(80px,9vw,120px); }
.legal-body h2 { font-weight: 600; font-size: clamp(24px,3vw,32px); letter-spacing: -.5px; margin: 0 0 8px; }
.legal-body h2.second { margin-top: 56px; }
.legal-rule { height: 1px; background: rgba(176,233,253,.16); margin: 0 0 28px; }
.legal-group { display: flex; flex-direction: column; gap: 22px; }
.legal-group.first { margin-bottom: 16px; }
.legal-group h3 { font-weight: 600; font-size: 17px; margin: 0 0 10px; color: var(--sky); }
.legal-group p { margin: 0; font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,.75); }
.legal-updated { margin: 40px 0 0; font-size: 13.5px; color: rgba(255,255,255,.4); }

/* ============================================================
   RESPONSIVE (shared across pages)
   ============================================================ */
@media (max-width: 920px) {
  .rv-timeline .rv-step { display: flex; flex-direction: column; gap: 12px; }
  .rv-timeline .rv-step-col { display: none; }
  .rv-stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .rv-about { grid-template-columns: 1fr; gap: 30px; justify-items: center; text-align: center; }
  .rv-grid-2 { grid-template-columns: 1fr; }
  .rv-stack-row { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; }
}
@media (max-width: 480px) {
  #contact .rv-calendly-wrap { min-height: 520px; }
  .rv-cta-bar-flat { flex-direction: column; align-items: stretch; text-align: center; padding: 22px 20px; }
  .rv-cta-bar-flat p { text-align: center; }
  .rv-cta-bar-flat a { justify-content: center; white-space: normal; }
}
