/* =====================================================================
   HILLOOL — STATIC STYLESHEET
   Structure:
     1. Reset & variables
     2. Base typography
     3. Utilities (buttons, eyebrow label, section shells, reveal anim)
     4. Custom cursor
     5. Navbar
     6. Hero
     7. Problem
     8. Credibility
     9. What We Do (services / method / products)
     10. Reassurance
     11. Testimonials
     12. About
     13. Contact
     14. Footer
     15. Support chat widget
     16. Reduced motion
   Breakpoints match the original design: 640px / 768px / 1024px
   ===================================================================== */

/* ---------- 1. Reset & variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --night-blue: #1B3572;
  --solar-amber: #F7B500;
  --growth-green: #3A9A58;
  --warm-white: #FAFAF9;
  --soft-clay: #F2EFE9;
  --slate: #8A91A8;
  --navy-dark: #162d66;
  --footer-dark: #0D1523;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 5rem; }

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

/* ---------- 2. Base typography ---------- */
body {
  background: var(--warm-white);
  color: var(--night-blue);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); }

/* ---------- 3. Utilities ---------- */
.text-amber { color: var(--solar-amber); }

.section-inner { position: relative; z-index: 1; margin-inline: auto; }
.section-inner--narrow { max-width: 64rem; } /* 5xl */
.section-inner--wide { max-width: 72rem; }   /* 6xl */

section[id]:not(#hero) {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
}
@media (min-width: 640px) {
  section[id]:not(#hero) { padding-left: 2rem; padding-right: 2rem; padding-top: 5rem; padding-bottom: 5rem; }
}
@media (min-width: 768px) {
  section[id]:not(#hero) { padding-left: 3rem; padding-right: 3rem; }
}
@media (min-width: 1024px) {
  section[id]:not(#hero) { padding-left: 5rem; padding-right: 5rem; padding-top: 6rem; padding-bottom: 6rem; }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--solar-amber);
}
.eyebrow--center { justify-content: center; }
.eyebrow__line { display: inline-block; width: 22px; height: 1.5px; background: var(--solar-amber); flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  border-radius: 9999px;
  padding: .875rem 2rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn--primary { background: var(--solar-amber); color: var(--night-blue); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,181,0,.3); }
.btn--dark { background: var(--night-blue); color: #fff; }
.btn--dark:hover { transform: scale(1.05); }
.btn--ghost { background: transparent; color: rgba(27,53,114,.55); padding: 0; border-radius: 0; font-weight: 400; }
.btn--ghost:hover { color: var(--night-blue); }

/* Scroll-reveal — toggled by IntersectionObserver in js/main.js */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}
.reveal { transform: translateY(26px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal.in, .reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }

/* ---------- 4. Custom cursor (fine-pointer only, see js/main.js) ---------- */
html.custom-cursor, html.custom-cursor * { cursor: none !important; }

#cursor-dot, #cursor-ring { display: none; }

html.custom-cursor #cursor-dot {
  display: block; position: fixed; width: 9px; height: 9px;
  background: var(--solar-amber); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
html.custom-cursor #cursor-ring {
  display: block; position: fixed; width: 34px; height: 34px;
  border: 1.5px solid var(--night-blue); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .35s cubic-bezier(.23,1,.32,1), height .35s cubic-bezier(.23,1,.32,1), border-color .2s;
}
body.cursor-hover #cursor-dot { width: 0; height: 0; }
body.cursor-hover #cursor-ring { width: 54px; height: 54px; border-color: var(--solar-amber); }

/* ---------- 5. Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(27,53,114,.08);
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(27,53,114,.1); }

.navbar__inner {
  max-width: 80rem; margin-inline: auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .navbar__inner { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 768px) { .navbar__inner { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .navbar__inner { padding-left: 5rem; padding-right: 5rem; } }

.navbar__logo { display: block; line-height: 0; }
.navbar__logo img { height: 2.75rem; width: auto; mix-blend-mode: multiply; }

.navbar__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .navbar__links { display: flex; } }

.navbar__link {
  font-family: var(--font-body); font-size: .875rem; font-weight: 500;
  color: var(--night-blue); text-decoration: none; transition: opacity .2s;
}
.navbar__link:hover { opacity: .7; }

.navbar__cta {
  padding: .5rem 1.25rem; color: #fff; overflow: hidden;
  background: linear-gradient(90deg,
    var(--night-blue) 0%, var(--night-blue) 33.333%,
    var(--growth-green) 33.333%, var(--growth-green) 66.666%,
    var(--night-blue) 66.666%, var(--night-blue) 100%);
  background-size: 300% 100%;
  text-shadow: 0 1px 2px rgba(0,0,0,.6), 0 0 8px rgba(0,0,0,.3);
  animation: navCtaSlide 14s linear infinite;
}
.navbar__cta:hover { animation-play-state: paused; transform: scale(1.05); }
@keyframes navCtaSlide {
  0% { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}
@media (prefers-reduced-motion: reduce) { .navbar__cta { animation: none; } }

.navbar__hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 2.5rem; height: 2.5rem; gap: .375rem;
  background: none; border: none; cursor: pointer;
}
@media (min-width: 1024px) { .navbar__hamburger { display: none; } }
.navbar__hamburger-line {
  display: block; width: 1.5rem; height: 2px; border-radius: 2px;
  background: var(--night-blue); transition: transform .25s ease, opacity .2s ease;
}
.navbar__hamburger.open .navbar__hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__hamburger.open .navbar__hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open .navbar__hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.navbar__drawer {
  display: flex; flex-direction: column; gap: 1rem;
  max-height: 0; overflow: hidden; opacity: 0;
  padding: 0 1.5rem;
  background: var(--warm-white);
  transition: max-height .28s ease, opacity .22s ease, padding .28s ease;
}
@media (min-width: 640px) { .navbar__drawer { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 768px) { .navbar__drawer { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .navbar__drawer { display: none; } }
.navbar__drawer.open { max-height: 24rem; opacity: 1; padding-top: .5rem; padding-bottom: 1.5rem; }

.navbar__drawer-link {
  padding: .5rem 0; border-bottom: 1px solid rgba(27,53,114,.08);
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--night-blue); text-decoration: none;
}
.navbar__drawer-cta { justify-content: center; width: 100%; margin-top: .5rem; }

/* ---------- 6. Hero ---------- */
.hero { position: relative; min-height: 100vh; overflow: hidden; background: var(--warm-white); }

.hero__motif { position: absolute; pointer-events: none; z-index: 55; }

/* Both the big background rings and their orbit wrappers/dots are scaled
   down below 640px — otherwise a desktop-sized 680px/420px decoration
   overruns a mobile viewport entirely. Dot radius is recalculated to match
   each breakpoint's ring size so the dot stays glued to the line. */
.hero__motif--1 { width: 380px; right: -7rem; top: -6rem; opacity: .08; }
.hero__motif--2 { width: 260px; right: -3rem; top: 0; opacity: .12; }
@media (min-width: 640px) {
  .hero__motif--1 { width: 680px; right: -13rem; top: -11rem; }
  .hero__motif--2 { width: 420px; right: -5rem; top: -2rem; }
}

/* Orbit wrappers share each ring's exact position/size so their transform-origin
   (center) lines up with the ring's true center — rotating them sweeps the
   dot along the actual circle path rather than an approximated arc. */
.hero__motif--orbit-inner {
  width: 260px; height: 260px; right: -3rem; top: 0;
  transform-origin: center;
  animation: dotOrbitInner 5s ease-in-out infinite;
}
.hero__motif--orbit-outer {
  width: 380px; height: 380px; right: -7rem; top: -6rem;
  transform-origin: center;
  animation: dotOrbitOuter 6s ease-in-out infinite .6s;
}
/* Third dot, same outer ring, resting at 9 o'clock (pure left) instead of
   amber's 7:30 — its ±19° sweep (161°–199°) never overlaps amber's
   (203°–247°), with a real ~4° gap on each side, and stays clear of the
   ring's off-screen right portion (unlike a naive left/right mirror of
   amber's position, which would land in the clipped area). */
.hero__motif--orbit-outer-green {
  width: 380px; height: 380px; right: -7rem; top: -6rem;
  transform-origin: center;
  animation: dotOrbitOuterGreen 7s ease-in-out infinite 1.2s;
}
@media (min-width: 640px) {
  .hero__motif--orbit-inner { width: 420px; height: 420px; right: -5rem; top: -2rem; }
  .hero__motif--orbit-outer,
  .hero__motif--orbit-outer-green { width: 680px; height: 680px; right: -13rem; top: -11rem; }
}

/* Each dot is centered on its wrapper via translate(-50%,-50%), then pushed
   out along the ring's radius at a fixed angle — precise regardless of the
   dot's own size, since the centering step happens first. */
.hero__motif-dot { position: absolute; top: 50%; left: 50%; width: 1rem; }
.hero__motif-dot--inner { opacity: .7; transform: translate(calc(-50% - 127.4px), -50%); }
.hero__motif-dot--outer { opacity: .85; transform: translate(calc(-50% - 131.7px), calc(-50% + 131.7px)); }
.hero__motif-dot--outer-green { opacity: .85; transform: translate(-50%, calc(-50% + 186.2px)); }
@media (min-width: 640px) {
  .hero__motif-dot--inner { transform: translate(calc(-50% - 206px), -50%); }
  .hero__motif-dot--outer { transform: translate(calc(-50% - 235.6px), calc(-50% + 235.6px)); }
  .hero__motif-dot--outer-green { transform: translate(-50%, calc(-50% + 333.2px)); }
}

@keyframes dotOrbitInner {
  0%, 100% { transform: rotate(-22deg); }
  50% { transform: rotate(22deg); }
}
@keyframes dotOrbitOuter {
  0%, 100% { transform: rotate(-22deg); }
  50% { transform: rotate(22deg); }
}
@keyframes dotOrbitOuterGreen {
  0%, 100% { transform: rotate(-19deg); }
  50% { transform: rotate(19deg); }
}
.hero__motif--3 { width: 150px; right: 5rem; bottom: 6rem; opacity: .2; transform: rotate(-20deg); }

.hero__wrap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 80rem; margin-inline: auto; width: 100%;
  padding: 7rem 1.5rem 4rem;
}
@media (min-width: 640px) { .hero__wrap { padding-left: 2rem; padding-right: 2rem; padding-top: 8rem; padding-bottom: 5rem; } }
@media (min-width: 768px) { .hero__wrap { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .hero__wrap { padding-left: 5rem; padding-right: 5rem; } }

.hero__content { position: relative; z-index: 1; max-width: 48rem; }

.hero__drum {
  display: flex; flex-direction: column; gap: .25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem; overflow: hidden;
  font-size: clamp(2rem, 6.5vw, 5rem);
}
@media (min-width: 640px) { .hero__drum { flex-direction: row; align-items: center; gap: 1rem; } }

.hero__drum-word {
  flex-shrink: 0; line-height: 1.4;
  font-family: var(--font-heading); font-weight: 800; font-size: 1em;
  color: var(--night-blue); letter-spacing: -.04em;
}

/* Same line-height as .hero__drum-word above so the two boxes are identical
   heights — that's what keeps "No" and the rotating phrase's baselines
   aligned when centered together in the row (mismatched line-heights was
   why the phrase used to sit visibly higher than "No"). */
.hero__drum-mask {
  position: relative; overflow: hidden;
  animation: heroDrumIn .6s cubic-bezier(.16, 1, .3, 1) .2s both;
}
.hero__drum-track { display: flex; flex-direction: column; will-change: transform; }
.hero__drum-item {
  display: block; white-space: nowrap;
  font-family: var(--font-heading); font-weight: 300; font-size: 1em;
  line-height: 1.4;
  color: rgba(27,53,114,.5); letter-spacing: -.04em;
}

.hero__resolution {
  margin-bottom: 1.75rem; max-width: 660px; line-height: 1.2;
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  color: var(--night-blue); letter-spacing: -.04em;
}

.hero__intro {
  margin-bottom: 2.5rem; max-width: 580px; line-height: 1.85;
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: rgba(27,53,114,.65);
}

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }

.hero__trust {
  margin-top: 2rem; font-family: var(--font-body); font-size: .9375rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--growth-green);
}

.hero__scroll-hint {
  position: absolute; bottom: 2.5rem; left: 0;
  display: none; flex-direction: column; align-items: center; gap: .5rem;
}
@media (min-width: 640px) { .hero__scroll-hint { display: flex; } }

.hero__scroll-line { position: relative; width: 1px; height: 2.75rem; overflow: hidden; background: rgba(27,53,114,.1); }
.hero__scroll-fill { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: var(--solar-amber); animation: scrollFill 1.8s ease-in-out infinite 1.2s; }
@keyframes scrollFill { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
.hero__scroll-label { font-family: var(--font-body); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }

/* First-load entrance for the drum mask (see .hero__drum-mask above) — makes
   the opening phrase arrive the same way every phrase after it does,
   instead of just appearing statically. */
@keyframes heroDrumIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 7. Problem ---------- */
.problem { background: var(--warm-white); }
.problem__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--solar-amber); }
.problem__motif { position: absolute; pointer-events: none; right: -8rem; top: 50%; transform: translateY(-50%); width: 500px; opacity: .05; }

.problem__heading {
  margin-bottom: 1.25rem; max-width: 36rem; line-height: 1.08;
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--night-blue); letter-spacing: -.05em;
}
.problem__intro {
  margin-bottom: 3.5rem; max-width: 32rem; line-height: 1.85;
  font-family: var(--font-body); font-weight: 300; font-size: 1.1rem; color: var(--slate);
}

.problem__grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(27,53,114,.07); border-radius: 1rem; overflow: hidden; margin-bottom: 4rem;
}
@media (min-width: 768px) { .problem__grid { grid-template-columns: 1fr 1fr; } }
.problem__grid .pain-card:nth-child(1) { transition-delay: 0s; }
.problem__grid .pain-card:nth-child(2) { transition-delay: .08s; }
.problem__grid .pain-card:nth-child(3) { transition-delay: .16s; }
.problem__grid .pain-card:nth-child(4) { transition-delay: .24s; }

.pain-card { background: #fff; padding: 2.25rem; transition: background-color .3s ease; }
.pain-card:hover { background: var(--soft-clay); }
.pain-card__icon { position: relative; display: block; margin-bottom: 1.25rem; width: 1.75rem; height: 1.75rem; }
.pain-card__icon-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(27,53,114,.18); }
.pain-card__icon-arc {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--solar-amber);
  border-right-color: var(--solar-amber);
  transform: rotate(-45deg);
}
.pain-card__title { margin-bottom: .65rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--night-blue); letter-spacing: -.01em; }
.pain-card__body { font-family: var(--font-body); font-weight: 300; font-size: .95rem; color: var(--slate); line-height: 1.7; }

.problem__pivot {
  position: relative; overflow: hidden; border-radius: 1rem;
  background: var(--night-blue);
  padding: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media (min-width: 768px) { .problem__pivot { padding: 3.5rem; grid-template-columns: 1fr auto; } }
.problem__pivot-motif { position: absolute; pointer-events: none; right: -4rem; bottom: -4rem; width: 260px; opacity: .09; }
.problem__pivot-text {
  position: relative; z-index: 1; line-height: 1.4;
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  color: #fff; letter-spacing: -.03em;
}
.problem__pivot .btn { position: relative; z-index: 1; white-space: nowrap; }

/* ---------- 8. Credibility ---------- */
.credibility { background: var(--soft-clay); }
.credibility__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--night-blue); }
.credibility__motif { position: absolute; pointer-events: none; left: -11rem; bottom: -9rem; width: 600px; opacity: .05; }

.credibility__heading {
  margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.2rem, 4.2vw, 3.75rem); color: var(--night-blue); letter-spacing: -.05em;
}
.credibility__intro { margin-bottom: 2.5rem; line-height: 1.75; font-family: var(--font-body); font-weight: 300; font-size: 1.15rem; color: var(--growth-green); }

/* Reusable auto-scrolling logo marquee — used by the Credibility client-logos
   strip and the Technologies section. Duplicate the logo set in the HTML
   (once normal, once aria-hidden) for a seamless loop via translateX(-50%). */
.logo-marquee {
  margin-bottom: .75rem; overflow: hidden;
  background: #fff; border-radius: 1rem; padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
@media (min-width: 768px) { .logo-marquee { padding: 2rem 0; } }
.logo-marquee__track {
  display: flex; align-items: center; gap: 3rem; width: max-content; padding-inline: 1.5rem;
  animation: logoMarqueeScroll 28s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
@keyframes logoMarqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-marquee__track { animation: none; } }
.logo-marquee__img { flex: 0 0 auto; height: 4rem; width: auto; max-width: 300px; object-fit: contain; }
@media (min-width: 768px) { .logo-marquee__img { height: 4.5rem; max-width: 320px; } }
.credibility .logo-marquee__img { height: 2.75rem; max-width: 200px; }
@media (min-width: 768px) { .credibility .logo-marquee__img { height: 3.25rem; max-width: 220px; } }

.logo-marquee__placeholder {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 6rem; height: 3.5rem; border-radius: .75rem;
  background: var(--soft-clay); border: 1.5px dashed rgba(27,53,114,.25); color: rgba(27,53,114,.3);
}
@media (min-width: 768px) { .logo-marquee__placeholder { height: 4rem; } }

.credibility__universities { margin-bottom: 2.5rem; border-radius: 1rem; padding: 1.5rem; background: #fff; }
.credibility__universities-label { margin-bottom: .65rem; font-family: var(--font-body); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.credibility__universities-list { font-family: var(--font-body); font-size: .9rem; color: var(--night-blue); line-height: 1.6; }

.credibility__stats {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(27,53,114,.08); border-radius: 1rem; overflow: hidden;
}
@media (min-width: 640px) { .credibility__stats { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .credibility__stats { grid-template-columns: repeat(4, 1fr); } }

.stat-card { background: #fff; padding: 1.75rem; transition: background-color .3s ease; }
.stat-card:hover { background: var(--night-blue); }
.stat-card__number {
  margin-bottom: .5rem; line-height: 1; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--night-blue); letter-spacing: -.06em;
  transition: color .3s ease;
}
.stat-card:hover .stat-card__number { color: var(--solar-amber); }
.stat-card__number--growth { color: var(--growth-green); }
.stat-card__desc { font-family: var(--font-body); font-weight: 300; font-size: .9rem; color: var(--slate); line-height: 1.6; transition: color .3s ease; }
.stat-card:hover .stat-card__desc { color: rgba(255,255,255,.6); }

.credibility__closer { margin-top: 2.5rem; font-family: var(--font-body); font-weight: 300; font-size: .95rem; font-style: italic; color: var(--slate); }

/* ---------- 9. What We Do ---------- */
.wwd { background: #fff; }
.wwd__motif { position: absolute; pointer-events: none; right: -9rem; top: -6rem; width: 500px; opacity: .05; }

.wwd__header { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: end; margin-bottom: 4rem; }
@media (min-width: 768px) { .wwd__header { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.wwd__heading {
  line-height: 1.05; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.5rem, 4.8vw, 4rem); color: var(--night-blue); letter-spacing: -.06em;
}
.wwd__heading-outline { color: transparent; -webkit-text-stroke: 2px var(--night-blue); }
.wwd__intro { line-height: 1.85; font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: var(--slate); }

.wwd__services {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(27,53,114,.07); border-radius: 1rem; overflow: hidden; margin-bottom: 5rem;
}
@media (min-width: 1024px) { .wwd__services { grid-template-columns: repeat(3, 1fr); } }
.wwd__services .service-card:nth-child(1) { transition-delay: 0s; }
.wwd__services .service-card:nth-child(2) { transition-delay: .08s; }
.wwd__services .service-card:nth-child(3) { transition-delay: .16s; }

.service-card { background: #fff; padding: 2.25rem; transition: background-color .3s ease; }
.service-card:hover { background: var(--night-blue); }
.service-card__num { display: block; margin-bottom: 1.5rem; font-family: var(--font-heading); font-size: .75rem; font-weight: 700; letter-spacing: .14em; color: var(--solar-amber); transition: color .3s ease; }
.service-card:hover .service-card__num { color: rgba(247,181,0,.7); }
.service-card__title { margin-bottom: 1.25rem; line-height: 1.3; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--night-blue); letter-spacing: -.02em; transition: color .3s ease; }
.service-card:hover .service-card__title { color: #fff; }
.service-card__list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.service-card__list li { position: relative; padding-left: 1.1rem; font-family: var(--font-body); font-weight: 300; font-size: .92rem; color: var(--slate); line-height: 1.6; transition: color .3s ease; }
.service-card:hover .service-card__list li { color: rgba(255,255,255,.6); }
.service-card__list li::before { content: '→'; position: absolute; left: 0; top: .12em; font-size: .75rem; color: var(--solar-amber); }

.wwd__method { margin-bottom: 5rem; }
.wwd__method-heading { margin-bottom: .65rem; font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--night-blue); letter-spacing: -.05em; }
.wwd__method-intro { margin-bottom: 2.5rem; max-width: 36rem; line-height: 1.85; font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: var(--slate); }

.wwd__method-steps {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(27,53,114,.07); border-radius: 1rem; overflow: hidden; margin-bottom: 2.5rem;
}
@media (min-width: 1024px) { .wwd__method-steps { grid-template-columns: repeat(3, 1fr); } }
.wwd__method-steps .method-card:nth-child(1) { transition-delay: 0s; }
.wwd__method-steps .method-card:nth-child(2) { transition-delay: .08s; }
.wwd__method-steps .method-card:nth-child(3) { transition-delay: .16s; }

.method-card { position: relative; overflow: hidden; background: var(--soft-clay); padding: 2.25rem; transition: background-color .3s ease; }
.method-card:hover { background: var(--night-blue); }
.method-card__ghost-num {
  position: absolute; right: -.5rem; bottom: -1.5rem; line-height: 1;
  font-family: var(--font-heading); font-weight: 800; font-size: 7rem;
  color: rgba(27,53,114,.04); transition: color .3s ease; pointer-events: none;
}
.method-card:hover .method-card__ghost-num { color: rgba(247,181,0,.05); }
.method-card__num { position: relative; display: block; margin-bottom: .75rem; font-family: var(--font-heading); font-size: .75rem; font-weight: 700; letter-spacing: .14em; color: var(--solar-amber); }
.method-card__phase { position: relative; margin-bottom: .2rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--night-blue); letter-spacing: -.03em; transition: color .3s ease; }
.method-card:hover .method-card__phase { color: #fff; }
.method-card__sub { position: relative; margin-bottom: 1.25rem; font-family: var(--font-body); font-size: .85rem; font-style: italic; color: var(--slate); transition: color .3s ease; }
.method-card:hover .method-card__sub { color: rgba(255,255,255,.4); }
.method-card__list { position: relative; list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.method-card__list li { position: relative; padding-left: .9rem; font-family: var(--font-body); font-weight: 300; font-size: .9rem; color: rgba(27,53,114,.62); line-height: 1.55; transition: color .3s ease; }
.method-card:hover .method-card__list li { color: rgba(255,255,255,.55); }
.method-card__list li::before { content: '·'; position: absolute; left: 0; font-weight: 700; color: var(--solar-amber); }

.wwd__method-cta { text-align: center; }

.wwd__products-header { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .wwd__products-header { grid-template-columns: 1fr 1fr; } }
.wwd__products-heading { line-height: 1.2; font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.9rem, 3.2vw, 2.5rem); color: var(--night-blue); letter-spacing: -.05em; }
.wwd__products-intro { line-height: 1.8; font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: var(--slate); }

.wwd__products-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.wwd__products-row--2 { margin-bottom: 0; }
@media (min-width: 640px) { .wwd__products-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .wwd__products-row--3 { grid-template-columns: repeat(3, 1fr); } }
.wwd__products-row--3 .product-card:nth-child(1) { transition-delay: 0s; }
.wwd__products-row--3 .product-card:nth-child(2) { transition-delay: .08s; }
.wwd__products-row--3 .product-card:nth-child(3) { transition-delay: .16s; }
.wwd__products-row--2 .product-card:nth-child(2) { transition-delay: .08s; }

.product-card {
  position: relative; display: block; overflow: hidden; border-radius: 1rem;
  border: 1.5px solid rgba(27,53,114,.1); background: #fff; padding: 2rem;
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(27,53,114,.2); box-shadow: 0 16px 40px rgba(27,53,114,.07); }
.product-card__top-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--solar-amber); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.product-card:hover .product-card__top-line { transform: scaleX(1); }
.product-card__logo {
  display: flex; align-items: center; justify-content: center;
  width: 4.5rem; height: 4.5rem; margin-bottom: 1.25rem;
  border-radius: 1rem; overflow: hidden;
  background: #fff; border: 1.5px solid rgba(27,53,114,.1);
  font-family: var(--font-heading); font-weight: 700; font-size: .8rem; letter-spacing: .02em; color: var(--night-blue);
}
.product-card__logo-img { width: 100%; height: 100%; object-fit: contain; padding: .45rem; box-sizing: border-box; }
.product-card__name { margin-bottom: .6rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--night-blue); letter-spacing: -.02em; }
.product-card__desc { margin-bottom: 1.5rem; line-height: 1.7; font-family: var(--font-body); font-weight: 300; font-size: .92rem; color: var(--slate); }
.product-card__link { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-body); font-size: .88rem; font-weight: 500; color: var(--solar-amber); transition: gap .2s ease; }
.product-card:hover .product-card__link { gap: .6rem; }

.wwd__figure {
  display: none;
  margin-top: 3rem; max-width: 42rem; margin-inline: auto;
  aspect-ratio: 1920 / 509; overflow: hidden;
}
.wwd__figure-video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- 9b. Technologies ---------- */
.technologies { background: #fff; text-align: center; padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.technologies__heading {
  margin-bottom: 2.5rem; line-height: 1.15; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem); color: var(--night-blue); letter-spacing: -.05em;
}
.technologies .logo-marquee { background: transparent; }
/* ---------- 10. Reassurance ---------- */
.reassurance { background: var(--night-blue); }
.reassurance__motif { position: absolute; pointer-events: none; }
.reassurance__motif--1 { top: -3.5rem; right: 5rem; width: 200px; opacity: .12; }
.reassurance__motif--2 { left: -13rem; bottom: -13rem; width: 580px; opacity: .05; }

.reassurance__heading { margin-bottom: 1rem; max-width: 36rem; line-height: 1.1; font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.2rem, 4.4vw, 3.75rem); color: #fff; letter-spacing: -.06em; }
.reassurance__intro { margin-bottom: 3.5rem; max-width: 32rem; line-height: 1.85; font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: rgba(255,255,255,.5); }

.reassurance__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.06); border-radius: 1rem; overflow: hidden; }
@media (min-width: 768px) { .reassurance__grid { grid-template-columns: 1fr 1fr; } }
.reassurance__grid .trust-card:nth-child(1) { transition-delay: 0s; }
.reassurance__grid .trust-card:nth-child(2) { transition-delay: .08s; }
.reassurance__grid .trust-card:nth-child(3) { transition-delay: .16s; }
.reassurance__grid .trust-card:nth-child(4) { transition-delay: .24s; }

.trust-card { background: rgba(255,255,255,.04); padding: 2.25rem; transition: background-color .25s ease; }
.trust-card:hover { background: rgba(247,181,0,.06); }
.trust-card__head { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.trust-card__dot { flex-shrink: 0; width: 1rem; height: 1rem; margin-top: .15em; border-radius: 50%; background: var(--solar-amber); }
.trust-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: #fff; letter-spacing: -.01em; }
.trust-card__body { padding-left: 1.75rem; line-height: 1.8; font-family: var(--font-body); font-weight: 300; font-size: .92rem; color: rgba(255,255,255,.45); }

/* ---------- 11. Testimonials ---------- */
.testimonials { background: var(--warm-white); }
.testimonials__motif { position: absolute; pointer-events: none; top: 2.5rem; right: 5rem; width: 120px; opacity: .2; transform: rotate(10deg); }

.testimonials__layout { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .testimonials__layout { grid-template-columns: 1fr 1.15fr; gap: 6rem; } }

.testimonials__heading { margin-bottom: 1.5rem; line-height: 1.15; font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.1rem, 3.8vw, 3rem); color: var(--night-blue); letter-spacing: -.05em; }
.testimonials__note { font-family: var(--font-body); font-weight: 300; font-size: .92rem; font-style: italic; line-height: 1.7; color: var(--slate); }

.testimonials__slider { position: relative; min-width: 0; }
.testimonials__viewport { overflow: hidden; border-radius: 1.5rem; }
.testimonials__track { display: flex; min-width: 0; transition: transform .5s cubic-bezier(.4,0,.2,1); }

.testimonial-card { flex: 0 0 100%; min-width: 0; border-radius: 1.5rem; padding: 2.5rem; background: #fff; border: 1.5px solid rgba(27,53,114,.08); }
@media (min-width: 768px) { .testimonial-card { padding: 3rem; } }
.testimonial-card__quote-mark { display: block; margin-bottom: 1.5rem; line-height: .6; font-family: var(--font-heading); font-weight: 800; font-size: 4.5rem; color: var(--solar-amber); }
.testimonial-card__text { margin-bottom: 2rem; line-height: 1.85; font-family: var(--font-body); font-weight: 300; font-size: 1.05rem; font-style: italic; color: var(--night-blue); }
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1.5px solid var(--soft-clay); }
.testimonial-card__avatar {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%; overflow: hidden;
  background: var(--soft-clay); border: 1.5px dashed rgba(27,53,114,.25);
  font-family: var(--font-heading); font-weight: 700; font-size: .85rem; color: var(--night-blue);
}
.testimonial-card__avatar-img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__avatar:has(.testimonial-card__avatar-img),
.testimonial-card__avatar--filled { background: #fff; border-style: solid; border-color: rgba(27,53,114,.1); }
.testimonial-card__name { margin-bottom: .2rem; font-family: var(--font-heading); font-weight: 700; font-size: .95rem; color: var(--night-blue); }
.testimonial-card__title { line-height: 1.5; font-family: var(--font-body); font-weight: 300; font-size: .82rem; color: var(--slate); }

.testimonial-card--pending {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  min-height: 260px; text-align: center; background: var(--soft-clay); border-style: dashed;
}
.testimonial-card--pending .testimonial-card__avatar { width: 3.5rem; height: 3.5rem; font-size: 1.1rem; }
.testimonial-card__pending-text { font-family: var(--font-body); font-size: .85rem; font-style: italic; color: var(--slate); }

.testimonials__controls { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1.25rem; }
.testimonials__arrow {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1.5px solid rgba(27,53,114,.15);
  background: #fff; color: var(--night-blue); font-size: 1.25rem; line-height: 1; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.testimonials__arrow:hover { background: var(--night-blue); color: #fff; border-color: var(--night-blue); }
.testimonials__dots { display: flex; align-items: center; gap: .5rem; }
.testimonials__dot { width: .5rem; height: .5rem; border-radius: 50%; background: rgba(27,53,114,.2); border: none; padding: 0; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.testimonials__dot.is-active { background: var(--solar-amber); transform: scale(1.3); }

/* ---------- 12. About ---------- */
.about { background: var(--soft-clay); }
.about__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--solar-amber); }
.about__motif { position: absolute; pointer-events: none; right: -11rem; top: 50%; transform: translateY(-50%); width: 520px; opacity: .05; }

.about__layout { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: start; }
@media (min-width: 1024px) { .about__layout { grid-template-columns: 1fr 1fr; } }

.about__heading { margin-bottom: 1.5rem; line-height: 1.15; font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.1rem, 3.8vw, 3rem); color: var(--night-blue); letter-spacing: -.05em; }
.about__paragraph { margin-bottom: 1.25rem; line-height: 1.9; font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: rgba(27,53,114,.72); }

.about__quote {
  margin: 1.75rem 0; border-left: 3px solid var(--solar-amber); background: rgba(247,181,0,.05);
  border-radius: 0 .5rem .5rem 0; padding: 1.25rem 1.5rem;
  font-family: var(--font-body); font-weight: 300; font-size: 1.05rem; font-style: italic; line-height: 1.85;
  color: var(--night-blue);
}
.about__quote-cite { display: block; margin-top: .75rem; font-family: var(--font-heading); font-weight: 700; font-size: .82rem; font-style: normal; letter-spacing: .04em; color: var(--solar-amber); }
.about__closer { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; line-height: 1.7; color: var(--night-blue); }

.founders__slider {
  position: relative; width: 100%; max-width: 24rem; margin-inline: auto;
}
@media (min-width: 1024px) { .founders__slider { max-width: none; } }

.founders__viewport { overflow: hidden; border-radius: 1.5rem; }
.founders__track { display: flex; min-width: 0; transition: transform .5s cubic-bezier(.4,0,.2,1); }

.founder-slide {
  position: relative; flex: 0 0 100%; min-width: 0;
  aspect-ratio: 4 / 5; max-height: 480px; overflow: hidden;
  border-radius: 1.5rem; background: #fff; border: 1.5px solid rgba(27,53,114,.1);
}
.founder-slide__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-slide__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.5rem 1.5rem;
  text-align: center; background: linear-gradient(to top, rgba(11,20,44,.82), transparent);
}
.founder-slide__name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: #fff; }
.founder-slide__role { margin-top: .2rem; font-family: var(--font-body); font-size: .82rem; color: var(--solar-amber); }

.founders__arc { position: absolute; pointer-events: none; right: -1rem; bottom: -1rem; width: 5rem; transform: rotate(90deg); z-index: -1; }

.founders__controls { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1.25rem; }
.founders__arrow {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1.5px solid rgba(27,53,114,.15);
  background: #fff; color: var(--night-blue); font-size: 1.25rem; line-height: 1; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.founders__arrow:hover { background: var(--night-blue); color: #fff; border-color: var(--night-blue); }
.founders__dots { display: flex; align-items: center; gap: .5rem; }
.founders__dot { width: .5rem; height: .5rem; border-radius: 50%; background: rgba(27,53,114,.2); border: none; padding: 0; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.founders__dot.is-active { background: var(--solar-amber); transform: scale(1.3); }

/* ---------- 13. Contact ---------- */
.contact {
  background: var(--night-blue);
  min-height: 80vh; display: flex; flex-direction: column; justify-content: center;
}
.contact__motif { position: absolute; pointer-events: none; }
.contact__motif--1 { right: -13rem; top: -13rem; width: 700px; opacity: .06; }
.contact__motif--2 { bottom: 4rem; left: 1.5rem; width: 120px; opacity: .1; transform: rotate(-15deg); }
@media (min-width: 640px) { .contact__motif--2 { left: 2rem; } }
@media (min-width: 768px) { .contact__motif--2 { left: 3rem; } }
@media (min-width: 1024px) { .contact__motif--2 { left: 5rem; } }

.contact__inner { position: relative; z-index: 1; max-width: 48rem; margin-inline: auto; text-align: center; }

.contact__heading { margin-bottom: 2.5rem; line-height: 1.1; font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; letter-spacing: -.06em; }

.contact__steps { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.06); border-radius: 1rem; overflow: hidden; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .contact__steps { grid-template-columns: repeat(3, 1fr); } }
.contact__steps .step-card:nth-child(1) { transition-delay: 0s; }
.contact__steps .step-card:nth-child(2) { transition-delay: .1s; }
.contact__steps .step-card:nth-child(3) { transition-delay: .2s; }

.step-card { background: rgba(255,255,255,.04); padding: 1.75rem; text-align: left; }
.step-card__num { margin-bottom: .75rem; line-height: 1; font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--solar-amber); letter-spacing: -.06em; }
.step-card__title { margin-bottom: .5rem; font-family: var(--font-heading); font-weight: 700; font-size: .95rem; color: #fff; }
.step-card__body { line-height: 1.7; font-family: var(--font-body); font-weight: 300; font-size: .9rem; color: rgba(255,255,255,.42); }

.contact__note { margin-top: .75rem; font-family: var(--font-body); font-weight: 300; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- 14. Footer ---------- */
.footer { position: relative; background: var(--footer-dark); }
.footer__bar { height: 3px; background: var(--solar-amber); }

.footer__inner { max-width: 80rem; margin-inline: auto; padding: 2.5rem 1.5rem; }
@media (min-width: 640px) { .footer__inner { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 768px) { .footer__inner { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .footer__inner { padding-left: 5rem; padding-right: 5rem; } }

.footer__top { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .footer__top { flex-direction: row; justify-content: space-between; } }

.footer__logo { height: 2.25rem; width: auto; filter: brightness(0) invert(1); opacity: .6; }

.footer__nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; }
.footer__link { position: relative; font-family: var(--font-body); font-size: .875rem; color: #fff; text-decoration: none; padding-bottom: 2px; }
.footer__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--solar-amber); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.footer__link:hover::after { transform: scaleX(1); }

.footer__domain { font-family: var(--font-body); font-size: .875rem; color: var(--slate); }

.footer__social { display: flex; align-items: center; gap: .875rem; }
.footer__social-link { display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); transition: color .2s ease, background .2s ease; }
.footer__social-link:hover { color: var(--solar-amber); background: rgba(255,255,255,.1); }

.footer__legal { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
@media (min-width: 768px) { .footer__legal { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__legal-entity { font-family: var(--font-body); font-weight: 300; font-size: .8rem; line-height: 1.6; color: var(--slate); }
.footer__legal-email { font-family: var(--font-body); font-size: .8rem; color: #fff; text-decoration: none; white-space: nowrap; }
.footer__legal-email:hover { color: var(--solar-amber); }

.footer__bottom { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; align-items: center; gap: .875rem; text-align: center; font-family: var(--font-body); font-size: .75rem; color: var(--slate); }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__policies { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem; }
.footer__policy-link { font-family: var(--font-body); font-size: .75rem; color: var(--slate); text-decoration: none; }
.footer__policy-link:hover { color: var(--solar-amber); }

/* ---------- Auto-hover preview sweep ----------
   Plays once when a card grid scrolls into view (js/main.js toggles the
   .auto-hover class via IntersectionObserver), pulsing each card through
   its real hover appearance in sequence before settling back to normal.
   Real :hover keeps working independently — this only adds a class, it
   doesn't touch the existing hover rules above. */
@keyframes autoHoverPain { 0%, 100% { background: #fff; } 50% { background: var(--soft-clay); } }
.problem__grid.auto-hover > .pain-card:nth-child(1) { animation: autoHoverPain .7s ease-in-out 0s; }
.problem__grid.auto-hover > .pain-card:nth-child(2) { animation: autoHoverPain .7s ease-in-out .55s; }
.problem__grid.auto-hover > .pain-card:nth-child(3) { animation: autoHoverPain .7s ease-in-out 1.1s; }
.problem__grid.auto-hover > .pain-card:nth-child(4) { animation: autoHoverPain .7s ease-in-out 1.65s; }

@keyframes autoHoverStatCard { 0%, 100% { background: #fff; } 50% { background: var(--night-blue); } }
@keyframes autoHoverStatNum { 0%, 100% { color: var(--night-blue); } 50% { color: var(--solar-amber); } }
@keyframes autoHoverStatNumGrowth { 0%, 100% { color: var(--growth-green); } 50% { color: var(--solar-amber); } }
@keyframes autoHoverStatDesc { 0%, 100% { color: var(--slate); } 50% { color: rgba(255,255,255,.6); } }
.credibility__stats.auto-hover > .stat-card:nth-child(1) { animation: autoHoverStatCard .7s ease-in-out 0s; }
.credibility__stats.auto-hover > .stat-card:nth-child(1) .stat-card__number { animation: autoHoverStatNum .7s ease-in-out 0s; }
.credibility__stats.auto-hover > .stat-card:nth-child(1) .stat-card__desc { animation: autoHoverStatDesc .7s ease-in-out 0s; }
.credibility__stats.auto-hover > .stat-card:nth-child(2) { animation: autoHoverStatCard .7s ease-in-out .55s; }
.credibility__stats.auto-hover > .stat-card:nth-child(2) .stat-card__number { animation: autoHoverStatNumGrowth .7s ease-in-out .55s; }
.credibility__stats.auto-hover > .stat-card:nth-child(2) .stat-card__desc { animation: autoHoverStatDesc .7s ease-in-out .55s; }
.credibility__stats.auto-hover > .stat-card:nth-child(3) { animation: autoHoverStatCard .7s ease-in-out 1.1s; }
.credibility__stats.auto-hover > .stat-card:nth-child(3) .stat-card__number { animation: autoHoverStatNum .7s ease-in-out 1.1s; }
.credibility__stats.auto-hover > .stat-card:nth-child(3) .stat-card__desc { animation: autoHoverStatDesc .7s ease-in-out 1.1s; }
.credibility__stats.auto-hover > .stat-card:nth-child(4) { animation: autoHoverStatCard .7s ease-in-out 1.65s; }
.credibility__stats.auto-hover > .stat-card:nth-child(4) .stat-card__number { animation: autoHoverStatNum .7s ease-in-out 1.65s; }
.credibility__stats.auto-hover > .stat-card:nth-child(4) .stat-card__desc { animation: autoHoverStatDesc .7s ease-in-out 1.65s; }

@keyframes autoHoverServiceCard { 0%, 100% { background: #fff; } 50% { background: var(--night-blue); } }
@keyframes autoHoverServiceNum { 0%, 100% { color: var(--solar-amber); } 50% { color: rgba(247,181,0,.7); } }
@keyframes autoHoverServiceTitle { 0%, 100% { color: var(--night-blue); } 50% { color: #fff; } }
@keyframes autoHoverServiceList { 0%, 100% { color: var(--slate); } 50% { color: rgba(255,255,255,.6); } }
.wwd__services.auto-hover > .service-card:nth-child(1) { animation: autoHoverServiceCard .7s ease-in-out 0s; }
.wwd__services.auto-hover > .service-card:nth-child(1) .service-card__num { animation: autoHoverServiceNum .7s ease-in-out 0s; }
.wwd__services.auto-hover > .service-card:nth-child(1) .service-card__title { animation: autoHoverServiceTitle .7s ease-in-out 0s; }
.wwd__services.auto-hover > .service-card:nth-child(1) .service-card__list li { animation: autoHoverServiceList .7s ease-in-out 0s; }
.wwd__services.auto-hover > .service-card:nth-child(2) { animation: autoHoverServiceCard .7s ease-in-out .55s; }
.wwd__services.auto-hover > .service-card:nth-child(2) .service-card__num { animation: autoHoverServiceNum .7s ease-in-out .55s; }
.wwd__services.auto-hover > .service-card:nth-child(2) .service-card__title { animation: autoHoverServiceTitle .7s ease-in-out .55s; }
.wwd__services.auto-hover > .service-card:nth-child(2) .service-card__list li { animation: autoHoverServiceList .7s ease-in-out .55s; }
.wwd__services.auto-hover > .service-card:nth-child(3) { animation: autoHoverServiceCard .7s ease-in-out 1.1s; }
.wwd__services.auto-hover > .service-card:nth-child(3) .service-card__num { animation: autoHoverServiceNum .7s ease-in-out 1.1s; }
.wwd__services.auto-hover > .service-card:nth-child(3) .service-card__title { animation: autoHoverServiceTitle .7s ease-in-out 1.1s; }
.wwd__services.auto-hover > .service-card:nth-child(3) .service-card__list li { animation: autoHoverServiceList .7s ease-in-out 1.1s; }

@keyframes autoHoverMethodCard { 0%, 100% { background: var(--soft-clay); } 50% { background: var(--night-blue); } }
@keyframes autoHoverMethodGhost { 0%, 100% { color: rgba(27,53,114,.04); } 50% { color: rgba(247,181,0,.05); } }
@keyframes autoHoverMethodPhase { 0%, 100% { color: var(--night-blue); } 50% { color: #fff; } }
@keyframes autoHoverMethodSub { 0%, 100% { color: var(--slate); } 50% { color: rgba(255,255,255,.4); } }
@keyframes autoHoverMethodList { 0%, 100% { color: rgba(27,53,114,.62); } 50% { color: rgba(255,255,255,.55); } }
.wwd__method-steps.auto-hover > .method-card:nth-child(1) { animation: autoHoverMethodCard .7s ease-in-out 0s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(1) .method-card__ghost-num { animation: autoHoverMethodGhost .7s ease-in-out 0s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(1) .method-card__phase { animation: autoHoverMethodPhase .7s ease-in-out 0s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(1) .method-card__sub { animation: autoHoverMethodSub .7s ease-in-out 0s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(1) .method-card__list li { animation: autoHoverMethodList .7s ease-in-out 0s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(2) { animation: autoHoverMethodCard .7s ease-in-out .55s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(2) .method-card__ghost-num { animation: autoHoverMethodGhost .7s ease-in-out .55s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(2) .method-card__phase { animation: autoHoverMethodPhase .7s ease-in-out .55s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(2) .method-card__sub { animation: autoHoverMethodSub .7s ease-in-out .55s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(2) .method-card__list li { animation: autoHoverMethodList .7s ease-in-out .55s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(3) { animation: autoHoverMethodCard .7s ease-in-out 1.1s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(3) .method-card__ghost-num { animation: autoHoverMethodGhost .7s ease-in-out 1.1s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(3) .method-card__phase { animation: autoHoverMethodPhase .7s ease-in-out 1.1s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(3) .method-card__sub { animation: autoHoverMethodSub .7s ease-in-out 1.1s; }
.wwd__method-steps.auto-hover > .method-card:nth-child(3) .method-card__list li { animation: autoHoverMethodList .7s ease-in-out 1.1s; }

@keyframes autoHoverProductCard {
  0%, 100% { transform: translateY(0); border-color: rgba(27,53,114,.1); box-shadow: none; }
  50% { transform: translateY(-4px); border-color: rgba(27,53,114,.2); box-shadow: 0 16px 40px rgba(27,53,114,.07); }
}
@keyframes autoHoverProductLine { 0%, 100% { transform: scaleX(0); } 50% { transform: scaleX(1); } }
.wwd__products-row--3.auto-hover > .product-card:nth-child(1) { animation: autoHoverProductCard .7s ease-in-out 0s; }
.wwd__products-row--3.auto-hover > .product-card:nth-child(1) .product-card__top-line { animation: autoHoverProductLine .7s ease-in-out 0s; }
.wwd__products-row--3.auto-hover > .product-card:nth-child(2) { animation: autoHoverProductCard .7s ease-in-out .55s; }
.wwd__products-row--3.auto-hover > .product-card:nth-child(2) .product-card__top-line { animation: autoHoverProductLine .7s ease-in-out .55s; }
.wwd__products-row--3.auto-hover > .product-card:nth-child(3) { animation: autoHoverProductCard .7s ease-in-out 1.1s; }
.wwd__products-row--3.auto-hover > .product-card:nth-child(3) .product-card__top-line { animation: autoHoverProductLine .7s ease-in-out 1.1s; }
.wwd__products-row--2.auto-hover > .product-card:nth-child(1) { animation: autoHoverProductCard .7s ease-in-out 1.65s; }
.wwd__products-row--2.auto-hover > .product-card:nth-child(1) .product-card__top-line { animation: autoHoverProductLine .7s ease-in-out 1.65s; }
.wwd__products-row--2.auto-hover > .product-card:nth-child(2) { animation: autoHoverProductCard .7s ease-in-out 2.2s; }
.wwd__products-row--2.auto-hover > .product-card:nth-child(2) .product-card__top-line { animation: autoHoverProductLine .7s ease-in-out 2.2s; }

@keyframes autoHoverTrustCard { 0%, 100% { background: rgba(255,255,255,.04); } 50% { background: rgba(247,181,0,.06); } }
.reassurance__grid.auto-hover > .trust-card:nth-child(1) { animation: autoHoverTrustCard .7s ease-in-out 0s; }
.reassurance__grid.auto-hover > .trust-card:nth-child(2) { animation: autoHoverTrustCard .7s ease-in-out .55s; }
.reassurance__grid.auto-hover > .trust-card:nth-child(3) { animation: autoHoverTrustCard .7s ease-in-out 1.1s; }
.reassurance__grid.auto-hover > .trust-card:nth-child(4) { animation: autoHoverTrustCard .7s ease-in-out 1.65s; }

/* ---------- 15. Support chat widget ---------- */
.chat-widget__toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--night-blue);
  box-shadow: 0 8px 24px rgba(27,53,114,.25);
  cursor: pointer;
  transition: transform .2s ease;
}
@media (min-width: 640px) { .chat-widget__toggle { bottom: 32px; right: 32px; } }
.chat-widget__toggle:hover { transform: scale(1.06); }
.chat-widget__toggle:active { transform: scale(.94); }

.chat-widget__toggle-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--solar-amber);
  opacity: .55;
  animation: chatPulse 2.2s ease-out infinite;
}
.chat-widget__toggle.has-opened .chat-widget__toggle-pulse { display: none; }
@keyframes chatPulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.5); opacity: 0; }
}

.chat-widget__icon { position: relative; transition: opacity .2s ease, transform .2s ease; }
.chat-widget__icon--close { position: absolute; opacity: 0; transform: rotate(45deg); }
.chat-widget__toggle.open .chat-widget__icon--chat { opacity: 0; transform: rotate(-45deg); }
.chat-widget__toggle.open .chat-widget__icon--close { opacity: 1; transform: rotate(0); }

.chat-widget {
  position: fixed;
  z-index: 60;
  bottom: calc(5rem + 20px);
  right: 20px;
  width: min(380px, calc(100vw - 2.5rem));
  height: min(600px, 75vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(27,53,114,.08);
  box-shadow: 0 24px 60px rgba(27,53,114,.18);
  opacity: 0;
  transform: translateY(24px) scale(.96);
  pointer-events: none;
  visibility: hidden;
  transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
}
@media (min-width: 640px) { .chat-widget { bottom: calc(5rem + 32px); right: 32px; } }
.chat-widget.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .28s ease, transform .28s ease;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--night-blue);
  flex-shrink: 0;
}
.chat-widget__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--solar-amber);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--night-blue);
}
.chat-widget__header-text { min-width: 0; }
.chat-widget__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .875rem;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-widget__status {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  line-height: 1.2;
  color: rgba(255,255,255,.6);
}
.chat-widget__status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--growth-green); flex-shrink: 0; }
.chat-widget__close {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.chat-widget__messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1rem;
  background: var(--warm-white);
}

.chat-widget__msg {
  max-width: 82%;
  border-radius: 1rem;
  padding: .6rem 1rem;
  font-size: .875rem;
  line-height: 1.4;
  white-space: pre-wrap;
}
.chat-widget__msg--bot {
  align-self: flex-start;
  background: #fff;
  color: var(--night-blue);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(27,53,114,.06);
}
.chat-widget__msg--user {
  align-self: flex-end;
  background: var(--night-blue);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-widget__typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: .25rem;
  border-radius: 1rem;
  border-bottom-left-radius: 4px;
  padding: .7rem 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(27,53,114,.06);
}
.chat-widget__typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate);
  animation: chatTypingDot 1s ease-in-out infinite;
}
.chat-widget__typing-dot:nth-child(2) { animation-delay: .15s; }
.chat-widget__typing-dot:nth-child(3) { animation-delay: .3s; }
@keyframes chatTypingDot { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

.chat-widget__summary {
  align-self: flex-start;
  width: 100%;
  max-width: 92%;
  border-radius: 1rem;
  border-bottom-left-radius: 4px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(27,53,114,.06);
}
.chat-widget__summary-row { display: flex; gap: .5rem; font-size: .75rem; margin-bottom: .35rem; }
.chat-widget__summary-label { width: 7rem; flex-shrink: 0; color: var(--slate); }
.chat-widget__summary-value { font-weight: 500; color: var(--night-blue); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat-widget__actions { display: flex; gap: .5rem; margin-top: .75rem; }
.chat-widget__actions .btn { flex: 1; justify-content: center; padding: .55rem 1rem; font-size: .75rem; }

.chat-widget__chips {
  align-self: flex-start;
  max-width: 92%;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.chat-widget__chip {
  border: 1px solid rgba(27,53,114,.15);
  border-radius: 9999px;
  padding: .4rem .85rem;
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--night-blue);
  background: #fff;
  cursor: pointer;
}
.chat-widget__chip:hover { background: var(--soft-clay); }

.chat-widget__restart {
  align-self: flex-start;
  margin-top: .1rem;
  border: none;
  border-radius: 9999px;
  padding: .5rem 1rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  color: var(--night-blue);
  background: var(--soft-clay);
  cursor: pointer;
}

.chat-widget__form {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  border-top: 1px solid rgba(27,53,114,.08);
  background: #fff;
  flex-shrink: 0;
}
.chat-widget__input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 9999px;
  padding: .6rem 1rem;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--night-blue);
  background: var(--soft-clay);
  outline: none;
}
.chat-widget__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: var(--solar-amber);
  cursor: pointer;
}
.chat-widget__send:disabled { opacity: .4; cursor: not-allowed; }

.chat-widget__sending {
  padding: .75rem 1rem;
  text-align: center;
  font-size: .75rem;
  color: var(--slate);
  border-top: 1px solid rgba(27,53,114,.08);
  flex-shrink: 0;
}

/* ---------- 16. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
