/* ============================================================
   GetBoost — section styles
   ============================================================ */

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .01em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: #5F6368;
  line-height: 1;
}

.logo .ring {
  display: inline-block;
  width: .78em;
  height: .78em;
  border-radius: 50%;
  flex: none;
  vertical-align: -.04em;
  margin: 0 .03em;
  background:
    conic-gradient(var(--g-red) 0 25%, var(--g-yellow) 0 50%, var(--g-green) 0 75%, var(--g-blue) 0 100%);
  -webkit-mask: radial-gradient(circle, transparent 28%, #000 30%);
  mask: radial-gradient(circle, transparent 28%, #000 30%);
}

.logo .ring.r2 {
  background:
    conic-gradient(var(--g-green) 0 25%, var(--g-blue) 0 50%, var(--g-red) 0 75%, var(--g-yellow) 0 100%);
}

.logo.on-dark {
  color: #fff;
}

/* ---------- Nav ---------- */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 18px 16px;
  transition: padding .35s var(--ease);
}

.nav {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--sh-md);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

.nav-scrolled .nav {
  box-shadow: 0 12px 34px rgba(20, 40, 90, .14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-weight: 500;
  font-size: .97rem;
  color: var(--slate-700);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}

.nav-links a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.nav-cta {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav .btn {
  padding: 12px 20px;
  font-size: .95rem;
}

.nav-burger {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(14, 23, 41, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(14, 23, 41, 0.05);
  transition: all 0.25s var(--ease);
}

.nav-burger:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  box-shadow: 0 4px 12px rgba(57, 111, 238, 0.15);
  transform: translateY(-1px);
}

.nav-burger:active {
  transform: scale(0.95);
}

.nav-burger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-burger span:nth-child(1) {
  width: 18px;
}

.nav-burger span:nth-child(2) {
  width: 12px;
  margin-left: auto;
  margin-right: 3px;
}

.nav-burger span:nth-child(3) {
  width: 16px;
}

.nav-open .nav-burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 18px;
}

.nav-open .nav-burger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-open .nav-burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 18px;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  z-index: 99;
  background: rgba(245, 248, 253, .97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 100px 30px 40px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}

.nav-open .mobile-menu {
  transform: none;
}

.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  display: block;
  transition: color .2s, padding-left .2s;
}

.mobile-menu a:not(.btn):hover,
.mobile-menu a:not(.btn):active {
  color: var(--blue-600);
  padding-left: 8px;
}

.mobile-menu .btn {
  margin-top: 18px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% -8%, rgba(57, 111, 238, .07), transparent 70%);
}

.hero-sprinkles i {
  position: absolute;
  border-radius: 50%;
  opacity: .8;
  animation: drift 7s ease-in-out infinite;
}

.hero .b1,
.hero .b2,
.hero .b3 {
  display: none;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 1.4rem + 3.4vw, 4.1rem);
  font-weight: 600;
  letter-spacing: -.03em;
}

.hero-copy h1 b {
  font-weight: 700;
}

.hero-copy .lead {
  margin-top: 22px;
  max-width: 30em;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta-group .btn {
  margin: 0;
}

.hero-cta-group .hero-trust {
  margin-top: 0;
}

/* Discreet diagnostic teaser link under the hero CTAs */
.hero-diag-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  border-bottom: 1px dashed rgba(57, 111, 238, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero-diag-link:hover {
  color: var(--blue-800);
  border-bottom-color: var(--blue-600);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-meta .m {
  display: flex;
  flex-direction: column;
}

.hero-meta .m b {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1.05;
}

.hero-meta .m b .pct {
  color: var(--blue-600);
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 1px;
}

.hero-meta .m span {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 6px;
}

.hero-meta .div {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  align-self: center;
  box-shadow: 0 0 0 4px rgba(57, 111, 238, .10);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--slate-700);
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}

.hero-trust .stars {
  color: var(--yellow-400);
  letter-spacing: 2px;
  font-size: 1rem;
}

.hero-trust b {
  color: var(--blue-700);
  font-weight: 700;
}

/* Hero visual — Boost Pharma post card + floating badges */
.hero-visual {
  position: relative;
  height: 540px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hv-dots {
  position: absolute;
  inset: -40px;
  z-index: 0;
  background-image: radial-gradient(rgba(57, 111, 238, .16) 1.6px, transparent 1.6px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(circle at 55% 45%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 55% 45%, #000, transparent 72%);
}

.post {
  position: absolute;
  left: 9%;
  right: 1%;
  top: 26px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 44px 90px rgba(20, 40, 90, .20), 0 12px 30px rgba(20, 40, 90, .10);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .85);
  z-index: 2;
  transform: rotateY(-14deg) rotateX(10deg) rotateZ(-3deg);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.post:hover {
  transform: rotateY(-8deg) rotateX(6deg) rotateZ(-1deg) translateZ(15px);
  box-shadow: 0 54px 110px rgba(20, 40, 90, .25), 0 20px 45px rgba(57, 111, 238, .15);
}

.post-hd {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-hd .lg {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.post-hd .lg .logo {
  font-size: 1.05rem;
  color: #000;
}

.post-hd b {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.15;
  display: block;
  white-space: nowrap;
}

.post-hd span {
  color: rgba(255, 255, 255, .82);
  font-size: .8rem;
}

.post-bd {
  padding: 18px;
}

.post-bd .txt {
  font-size: .96rem;
  color: var(--slate-700);
  line-height: 1.5;
}

.post-bd .txt b {
  color: var(--blue-600);
  font-weight: 600;
}

.post-visual {
  margin-top: 16px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  padding: 34px 26px;
  text-align: center;
}

.post-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .20), transparent 65%);
}

.post-visual h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.46rem;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.01em;
  position: relative;
}

.post-visual .tag {
  margin-top: 16px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .8);
  position: relative;
}

.post-ft {
  display: flex;
  gap: 22px;
  padding: 14px 18px;
  border-top: 1px solid var(--line-2);
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem;
}

.post-ft span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.post-meta {
  padding: 0 18px 16px;
  font-size: .8rem;
  color: var(--faint);
}

.fbadge {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 22px 48px rgba(20, 40, 90, .18);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* "Exemple" tag — keeps mockup figures honest */
.fbadge .fb-ex {
  position: absolute;
  top: -9px;
  left: 12px;
  z-index: 4;
  background: var(--ink, #0f172a);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  opacity: 0.82;
}

.fbadge .ic {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.fbadge b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  line-height: 1.1;
  color: var(--ink);
  display: block;
}

.fbadge span {
  font-size: .76rem;
  color: var(--muted);
}

.fb-top {
  top: -34px;
  right: -2%;
}

.fb-eng {
  left: -5%;
  top: 38%;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 14px 16px;
}

.fb-eng .lbl {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
}

.fb-eng .spark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
}

.fb-eng .spark i {
  width: 7px;
  height: 0;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
  display: block;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fb-reach {
  left: -7%;
  bottom: 22px;
}

.fb-reach .ic {
  background: linear-gradient(135deg, #FF6B8A, #E11D48);
}

.float-a {
  animation: float 9s ease-in-out infinite;
}

.float-b {
  animation: float 11s ease-in-out infinite -4s;
}

.float-c {
  animation: float 10s ease-in-out infinite -2s;
}

/* ---------- Client Logos Showcase ---------- */
.client-logos-sec,
.press-sec {
  padding: 70px 0;
  background: var(--surface);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.logos-group {
  margin-bottom: 50px;
  text-align: center;
}

.logos-group:last-child {
  margin-bottom: 0;
}

.logos-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  text-align: center;
}

.logos-title .brand-green {
  background: linear-gradient(100deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logos-group .logos-title {
  margin-bottom: 10px;
}

.logos-sub {
  text-align: center;
  color: var(--slate-700, #475569);
  font-size: 1.02rem;
  max-width: 38em;
  margin: 0 auto 38px;
}

/* Client / Press Logos Marquee */
.logos-marquee {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logos-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: scrollx 35s linear infinite;
}

.logos-marquee-track.alt-direction {
  animation-direction: reverse;
  animation-duration: 40s;
}

.logos-marquee:hover .logos-marquee-track {
  animation-play-state: paused;
}

.logo-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  transition: transform 0.3s var(--ease);
  margin-right: 60px;
}

.logo-card:hover {
  transform: scale(1.08);
}

.logo-card img {
  max-height: 45px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.press-logos-static {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(50px, 10vw, 150px);
  width: 100%;
  margin: 50px auto 20px;
  flex-wrap: wrap;
}

.press-logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s var(--ease);
}

.press-logo-card:hover {
  transform: translateY(-5px) scale(1.05);
}

.press-logo-card img {
  max-height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .logo-card {
    height: 60px;
    margin-right: 48px;
  }

  .logo-card img {
    max-height: 35px;
    max-width: 130px;
  }

  .press-logos-static {
    gap: clamp(30px, 8vw, 100px);
    margin: 40px auto 10px;
  }

  .press-logo-card img {
    max-height: 40px;
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .client-logos-sec {
    padding: 50px 0;
  }

  .logos-group {
    margin-bottom: 40px;
  }

  .logos-marquee-track {}

  .logo-card {
    height: 45px;
    margin-right: 32px;
  }

  .logo-card img {
    max-height: 28px;
    max-width: 100px;
  }

  .press-logos-static {
    gap: 25px;
    margin: 30px auto 0;
    flex-direction: column;
  }

  .press-logo-card img {
    max-height: 32px;
    max-width: 130px;
  }
}

/* ---------- Modules (FB / IG / Blog) ---------- */
.modules {
  padding: 100px 0;
}

.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.mod {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 30px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  box-shadow: var(--sh-sm);
}

.mod:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.mod .glow {
  position: absolute;
  width: 200px;
  height: 200px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .5;
}

.mod-ico {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-md);
}

.mod h3 {
  margin-top: 22px;
  font-size: 1.32rem;
  position: relative;
  z-index: 1;
}

.mod p {
  margin-top: 10px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.mod .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.chip {
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
}

.mod .more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-weight: 600;
  color: var(--blue-700);
  position: relative;
  z-index: 1;
}

.mod .more .arr {
  transition: transform .25s var(--ease);
}

.mod:hover .more .arr {
  transform: translateX(4px);
}

/* ---------- Stats / Key results ---------- */
.stats {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600) 45%, var(--blue-800));
  color: #fff;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 85% 10%, rgba(52, 211, 153, .28), transparent 60%),
    radial-gradient(50% 70% at 5% 90%, rgba(251, 191, 36, .18), transparent 60%);
}

.stats .wrap {
  position: relative;
  z-index: 1;
}

.stats .section-head h2 {
  color: #fff;
}

.stats .section-head .lead {
  color: #C9D9FF;
}

.stats .eyebrow {
  color: #DCE8FF;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 30px 26px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.stat .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.stat .num .suf {
  font-size: 1.6rem;
  margin-left: 2px;
  color: var(--yellow-300);
}

.stat .lbl {
  margin-top: 12px;
  color: #C9D9FF;
  font-size: 1rem;
}

/* ---------- Premium Features Grid ---------- */
.features-sec {
  padding: 100px 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 24px;
  margin-top: 56px;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-200);
}

.feat-card.feat-card-first {
  background: linear-gradient(135deg, var(--blue-50) 0%, #ffffff 80%);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feat-card.feat-card-first:hover {
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feat-card.feat-card-first .feat-ico {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: var(--blue-600);
}

/* Specific column spans on desktop */
@media (min-width: 1025px) {
  .feat-card.span-2 {
    grid-column: span 2;
  }
}

/* Specific column spans on tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feat-card.span-2-tablet {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-sec {
    padding: 70px 0;
  }

  .feat-card {
    padding: 24px;
  }
}

/* Card inner layout */
.feat-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.feat-ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: var(--sh-sm);
  font-weight: 700;
  flex-shrink: 0;
}

/* Accents for icons */
.feat-ico.blue {
  background: var(--blue-50);
  color: var(--blue-600);
}

.feat-ico.green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green-600);
}

.feat-ico.yellow {
  background: rgba(245, 168, 0, 0.12);
  color: var(--yellow-500);
}

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.feat-card p {
  font-size: 0.95rem;
  color: var(--slate-700);
  margin: 0;
  line-height: 1.5;
}

.feat-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.4;
}

.feat-list li .tick {
  color: var(--green-600);
  font-weight: 700;
  flex-shrink: 0;
}

/* Card custom layouts */
.feat-card-layout-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 768px) {
  .feat-card-layout-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Image styling inside cards */
.feat-visual-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-visual-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform .5s var(--ease);
}

.feat-card:hover .feat-visual-wrapper img {
  transform: scale(1.03);
}

/* Specific wrappers */
.feat-card-publications .feat-visual-wrapper,
.feat-card-website .feat-visual-wrapper {
  max-height: 220px;
  border-color: var(--line-2);
}

.feat-card-statistics .feat-visual-wrapper {
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 140px;
  margin: 12px auto 0 auto;
}

.feat-card-statistics .feat-visual-wrapper img {
  max-height: 140px;
}

/* High-end design elements */
.feat-card.on-dark-gradient {
  background: radial-gradient(120% 120% at 50% -20%, var(--navy-soft) 0%, var(--navy-2) 60%, var(--navy) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--sh-md);
}

.feat-card.on-dark-gradient h3 {
  color: #fff;
}

.feat-card.on-dark-gradient p {
  color: #c9d9ff;
}

.feat-card.on-dark-gradient .feat-list li {
  color: #c7d4ee;
}

.feat-card.on-dark-gradient .feat-ico.blue {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Highlight badge inside cards */
.feat-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
}

.feat-card.on-dark-gradient .feat-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}


/* ---------- Timeline (5 steps) ---------- */
.steps {
  padding: 100px 0;
  background: linear-gradient(180deg, #F5F8FD, #EAF0FB);
}

.steps-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============================================================
   SECTION 8 — PRODUCT OVERVIEW (5 channel cards)
   ============================================================ */
.overview-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF, #F4F7FC);
}

.ov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 50px auto 0;
}

.ov-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--sh-sm, 0 4px 16px rgba(20, 40, 90, 0.05));
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ov-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(57, 111, 238, 0.22);
}

/* Card 4 spans two columns */
.ov-wide {
  grid-column: span 2;
}

.ov-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(57, 111, 238, 0.06);
  margin-bottom: 16px;
}

.ov-ic img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.ov-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ov-sub {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-600);
  background: rgba(57, 111, 238, 0.08);
  padding: 2px 9px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
}

.ov-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--slate-700, #475569);
}

@media (max-width: 900px) {
  .ov-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ov-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .ov-grid {
    grid-template-columns: 1fr;
  }
  .ov-wide {
    grid-column: span 1;
  }
}

/* ============================================================
   SECTION 9 — OBJECTIONS / REASSURANCE (8 visible cards)
   ============================================================ */
.objections-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #F4F7FC, #FFFFFF);
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px auto 0;
}

.obj-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: var(--sh-sm, 0 4px 16px rgba(20, 40, 90, 0.05));
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.obj-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(57, 111, 238, 0.22);
}

.obj-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(57, 111, 238, 0.06);
  margin-bottom: 14px;
  flex: none;
}

.obj-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 9px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.obj-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--slate-700, #475569);
}

.obj-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.obj-link:hover {
  color: var(--blue-800);
}

.obj-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 1080px) {
  .obj-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .obj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================================
   SECTION 10 — PRESS BANNER + GOOGLE REVIEWS
   ============================================================ */
/* Slim "Vu dans la presse" banner */
.press-slim {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 36px;
}

.press-slim-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-600, #64748b);
}

.press-slim .press-logos-static {
  margin: 0;
}

/* Google reviews widget */
.greviews {
  max-width: 1080px;
  margin: 50px auto 0;
}

.greviews-head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: var(--sh-sm, 0 4px 16px rgba(20, 40, 90, 0.05));
}

.greviews-glogo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: none;
}

.greviews-meta {
  display: flex;
  flex-direction: column;
}

.greviews-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.greviews-rating b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.gstars {
  color: var(--yellow-400);
  letter-spacing: 1px;
}

.greviews-sub {
  font-size: 0.82rem;
  color: var(--slate-600, #64748b);
}

.greviews-link {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
}

.greviews-link:hover {
  color: var(--blue-800);
}

/* 3 cards in row 1, 2 centered in row 2 */
.greviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.greview {
  flex: 0 0 calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--sh-sm, 0 4px 16px rgba(20, 40, 90, 0.05));
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.greview:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.greview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.gr-stars {
  color: var(--yellow-400);
  letter-spacing: 1px;
  font-size: 0.92rem;
}

.gr-g {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: none;
}

.greview p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink, #0E1729);
  flex-grow: 1;
}

.gr-who {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2, #eef1f6);
}

.gr-who b {
  font-size: 0.88rem;
  color: var(--navy);
}

@media (max-width: 860px) {
  .greview {
    flex-basis: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
  .greviews-link {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .greview {
    flex-basis: 100%;
    max-width: 100%;
  }
  .greviews-head {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

.tl {
  position: relative;
  max-width: 920px;
  margin: 60px auto 0;
}

.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}

.tl-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-500), var(--green-500));
  transform: translateX(-50%);
  height: 0;
  transition: height .2s linear;
}

.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  margin-bottom: 30px;
}

.tl-node {
  grid-column: 2;
  justify-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
  z-index: 2;
  transition: .5s var(--ease);
}

.tl-row.in .tl-node {
  border-color: var(--blue-500);
  color: var(--blue-700);
  box-shadow: 0 0 0 6px var(--blue-50);
}

.tl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--sh-sm);
}

.tl-row:nth-child(odd) .tl-card {
  grid-column: 1;
}

.tl-row:nth-child(even) .tl-card {
  grid-column: 3;
}

.tl-card .hd {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tl-card .hd .ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-card h3 {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}

.tl-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .97rem;
}

.tl-card ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tl-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--slate-600);
}

.tl-card li .tick {
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.step-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: block;
  margin: 0 auto;
  animation: float-step 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.step-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  animation-play-state: paused;
}

.pstep.rev .step-image {
  animation-delay: -3s;
}

@keyframes float-step {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ---------- Showcase Site ---------- */
.showcase-site {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}



.showcase-site-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.sc-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sc-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  padding: 30px 20px;
  background: radial-gradient(circle at top left, var(--blue-100) 0%, transparent 60%);
  border-radius: 24px;
  transition: transform 0.4s var(--ease);
}

.sc-feat:hover {
  transform: translateY(-4px);
}

.sc-ico {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  color: var(--green-500);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.sc-feat.shine.glow-h:hover .sc-ico {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  color: var(--green-500);
}

.sc-feat h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.sc-feat p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.sc-mockup {
  width: 100%;
  max-width: 320px;
  display: block;
  animation: float-step 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@media (max-width: 1024px) {
  .showcase-site-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sc-col {
    gap: 24px;
  }

  .sc-center {
    order: -1;
  }

  .sc-mockup {
    margin: 0 auto;
    max-width: 280px;
  }
}

/* ---------- App showcase ---------- */
.showcase {
  padding: 100px 0;
  overflow: hidden;
}

.show-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.sc-simple-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.sc-simple-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sc-simple-item .si {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-simple-item h4 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.sc-simple-item p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
}

.show-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.show-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: .35s var(--ease);
  cursor: default;
}

.show-item:hover {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--sh-md);
}

.show-item .si {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-item h4 {
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.show-item p {
  margin-top: 5px;
  color: var(--muted);
  font-size: .96rem;
}

.dash {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.dash .top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-2);
  background: #FBFCFE;
}

.dash .top i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dash .top .url {
  margin-left: 10px;
  font-size: .8rem;
  color: var(--faint);
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 14px;
  border-radius: 8px;
}

.dash .body {
  padding: 22px;
}

.dash .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dash .kpi {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.dash .kpi .l {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
}

.dash .kpi .v {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 4px;
}

.dash .kpi .v small {
  font-size: .8rem;
  color: var(--green-600);
  font-weight: 600;
}

.dash .chart {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.dash .chart .ttl {
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate-700);
  display: flex;
  justify-content: space-between;
}

.dash .bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-top: 16px;
}

.dash .bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
  transition: height 1s var(--ease);
  display: block;
}

.dash .bars i.g {
  background: linear-gradient(180deg, var(--green-400), var(--green-600));
}

/* ---------- Pricing ---------- */
/* ============================================================
   SECTION 11 — THE COMPLETE SOLUTION (former pricing, no price)
   ============================================================ */
.solution-complete-sec {
  padding: 110px 0;
  background: radial-gradient(120% 80% at 50% -10%, #13224A 0%, var(--navy-2) 40%, var(--navy) 100%);
  color: #fff;
  overflow: hidden;
}

.solution-complete-sec .section-head h2 {
  color: #fff;
  font-size: clamp(2.1rem, 1.2rem + 3vw, 3.4rem);
}

.solution-complete-sec .section-head .lead {
  color: #9DB2DF;
}

.sc-anchor {
  max-width: 720px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px 38px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(8, 14, 34, 0.4);
}

.sc-anchor-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.sc-chan {
  font-size: 0.82rem;
  font-weight: 600;
  color: #CFE0FF;
  background: rgba(57, 111, 238, 0.16);
  border: 1px solid rgba(120, 160, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
}

.sc-anchor-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36em;
  margin: 0 auto;
}

.sc-anchor-text b {
  color: #fff;
  font-weight: 700;
}

.sc-anchor-mod {
  margin-top: 16px;
  font-size: 0.92rem;
  color: #9DB2DF;
}

.sc-anchor .btn {
  margin-top: 28px;
}

.sc-reassure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 26px;
}

.sc-reassure span {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  color: #CFE0FF;
  padding-left: 22px;
}

.sc-reassure span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-400, #34D399);
  font-weight: 700;
}

.pricing {
  padding: 110px 0;
  background: radial-gradient(120% 80% at 50% -10%, #13224A 0%, var(--navy-2) 40%, var(--navy) 100%);
  color: #fff;
  overflow: hidden;
}

.pricing .section-head h2 {
  color: #fff;
  font-size: clamp(2.1rem, 1.2rem+3vw, 3.4rem);
}

.pricing .section-head .lead {
  color: #9DB2DF;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
  max-width: 840px;
  margin-inline: auto;
}

.pcard {
  position: relative;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 32px;
}

.pcard.feature {
  background: rgba(11, 21, 46, .5);
}

.pcard.highlight {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.p-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--sh-blue);
}

.p-app {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--green-400), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(34, 197, 94, .4);
}

.pcard .p-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.p-soft {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #BFD3FF;
}

.pcard.highlight .p-soft {
  background: var(--blue-50);
  color: var(--blue-700);
}

.p-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 18px;
}

.p-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}

.p-price .amt {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--blue-400);
}

.pcard.highlight .p-price .amt {
  color: var(--blue-700);
}

.p-price .per {
  color: #9DB2DF;
  font-size: .95rem;
}

.pcard.highlight .p-price .per {
  color: var(--muted);
}

.p-feats {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.p-feats li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .96rem;
  color: #C7D4EE;
}

.pcard.highlight .p-feats li {
  color: var(--slate-600);
}

.p-feats .tick {
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 50%;
  background: rgba(91, 141, 251, .18);
  color: var(--blue-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pcard.highlight .p-feats .tick {
  background: var(--blue-50);
  color: var(--blue-600);
}

.pcard .btn {
  width: 100%;
  margin-top: 26px;
}

.p-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.p-mini .m {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 12px 14px;
}

.p-mini .m b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  min-width: 48px;
}

.p-mini .m span {
  font-size: .9rem;
  color: #9DB2DF;
}

.price-foot {
  text-align: center;
  margin-top: 34px;
  color: #8FA5D2;
  font-size: .95rem;
}

/* ---------- Testimonials (wall, no people) ---------- */
.testi {
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #FFFFFF, #F1F5FC);
  overflow: hidden;
}

.t-wall {
  position: relative;
  margin-top: 46px;
  height: 560px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.t-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.t-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
  animation: vUp 40s linear infinite;
}

.t-col.c2 {
  animation-name: vDown;
  animation-duration: 48s;
}

.t-col.c3 {
  animation-duration: 34s;
}

.t-wall:hover .t-col {
  animation-play-state: paused;
}

@keyframes vUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes vDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion:reduce) {
  .t-wall {
    height: auto;
    overflow: visible;
  }

  .t-col {
    animation: none;
  }

  .t-col.c3 {
    display: none;
  }
}

.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.tcard .stars {
  color: var(--blue-500);
  letter-spacing: 2px;
  font-size: .92rem;
}

.tcard p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.5;
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}

.tcard .mono {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: .92rem;
}

.tcard .who b {
  font-family: var(--font-display);
  font-size: .98rem;
  display: block;
  color: var(--ink);
}

.tcard .who span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}

/* Testimonials Expand/Collapse */
.t-slide .tcard.truncatable p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.t-slide .tcard.truncatable.expanded p {
  display: block;
  overflow: visible;
}

.tcard-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--blue-600);
  font-size: 0.88rem;
  font-weight: 600;
  gap: 6px;
  cursor: pointer;
  margin: 14px auto 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--blue-50);
  transition: all 0.2s var(--ease);
}

.tcard-expand-btn:hover {
  background: var(--blue-100);
}

.tcard-expand-btn svg {
  transition: transform 0.3s var(--ease);
}

.tcard.expanded .tcard-expand-btn svg {
  transform: rotate(180deg);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF, #F2F6FD);
}

.faq-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 34px 0 6px;
}

.faq-cat {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate-600);
  cursor: pointer;
  transition: .25s var(--ease);
}

.faq-cat:hover {
  border-color: var(--blue-200);
  color: var(--blue-700);
}

.faq-cat.active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
  box-shadow: var(--sh-blue);
}

.faq-cols {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 26px auto 0;
  width: 100%;
  box-sizing: border-box;
}

.fcol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.fitem {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
  width: 100%;
  box-sizing: border-box;
}

.fitem.hide {
  display: none;
}

.fitem.open {
  box-shadow: var(--sh-md);
  border-color: var(--blue-200);
}

.fq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  min-height: 70px;
  box-sizing: border-box;
}

.fq .pm {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 9px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform .35s var(--ease), background .3s, color .3s;
}

.fitem.open .fq .pm {
  transform: rotate(360deg);
  background: var(--blue-600);
  color: #fff;
}

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.fa-in {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.6;
  font-size: .96rem;
}

.faq-more {
  text-align: center;
  margin-top: 40px;
}

.faq-more p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* ---------- Premium CTA band ---------- */
/* ============================================================
   SECTION 13 — FINAL CTA + CONTACT FORM
   ============================================================ */
.final-cta-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #F4F7FC, #FFFFFF);
}

.final-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.final-form-wrap {
  position: relative;
}

.final-reassure {
  margin-top: 18px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700, #475569);
}

.final-reassure .stars {
  color: var(--yellow-400);
  letter-spacing: 1px;
}

/* Confirmation state */
.form-success {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 54px 32px;
  box-shadow: var(--sh-lg);
}

.form-success .fs-ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400, #34D399), var(--green-600, #16a34a));
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.3);
}

.form-success h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--slate-700, #475569);
}

/* Groups / partners block */
.final-partners {
  background: radial-gradient(120% 120% at 0% 0%, var(--navy-soft, #13224A) 0%, var(--navy-2, #0C1733) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 24px 56px rgba(12, 23, 51, 0.24);
}

.final-partners h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.final-partners > p {
  color: #9DB2DF;
  margin-bottom: 22px;
}

.fp-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.fp-btn span {
  color: var(--blue-300, #9DBBF8);
  transition: transform 0.2s var(--ease);
}

.fp-btn:hover {
  background: rgba(57, 111, 238, 0.18);
  border-color: rgba(120, 160, 255, 0.4);
}

.fp-btn:hover span {
  transform: translateX(4px);
}

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

.premium {
  padding: 40px 0 80px;
}

.prem-band {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 74px 40px;
  text-align: center;
  background: radial-gradient(120% 130% at 50% -20%, var(--navy-soft) 0%, var(--navy-2) 42%, var(--navy) 100%);
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255, 255, 255, .06);
}

.prem-band .pgrid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .6;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 85% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 85% at 50% 0%, #000, transparent 75%);
}

.prem-band .pglow {
  position: absolute;
  width: 560px;
  height: 320px;
  left: 50%;
  top: -130px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(57, 111, 238, .5), transparent 65%);
  filter: blur(34px);
  z-index: 0;
}

.prem-in {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.prem-in .eyebrow {
  color: #9FC0FF;
  background: rgba(91, 141, 251, .12);
  border-color: rgba(91, 141, 251, .25);
}

.prem-in h2 {
  color: #fff;
  font-size: clamp(2rem, 1.2rem+2.8vw, 3.3rem);
}

.prem-in .lead {
  color: #9FB4DD;
  max-width: 34em;
}

.prem-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 6px;
}

.btn-darkline {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
}

.btn-darkline:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.prem-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  margin-top: 8px;
  color: #B9C7E6;
  font-size: .96rem;
}

.prem-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.prem-checks .ck {
  color: var(--green-400);
  font-weight: 700;
}

/* ---------- Contact (info + form) ---------- */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.9rem, 1.2rem+2.2vw, 2.9rem);
  margin-top: 18px;
}

.contact-copy .lead {
  margin-top: 18px;
  max-width: 34ch;
  font-size: 1.05rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
}

.cinfo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cinfo .ic {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 13px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinfo .l {
  font-size: .82rem;
  color: var(--muted);
}

.cinfo b {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink);
  display: block;
}

.cform2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--sh-lg);
}

.cform2 .frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cform2>* {
  margin-top: 16px;
}

.cform2>*:first-child {
  margin-top: 0;
}

.cform2 .field {
  margin-top: 16px;
}

.cform2 .field:first-child {
  margin-top: 0;
}

.cform2 .frow .field {
  margin-top: 0;
}

.cform2 label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-700);
  display: block;
  margin-bottom: 7px;
}

.cform2 input,
.cform2 textarea,
.cform2 select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  outline: none;
  transition: .2s;
}

.cform2 input:focus,
.cform2 textarea:focus,
.cform2 select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px var(--blue-50);
  background: #fff;
}

.cform2 textarea {
  resize: vertical;
  min-height: 110px;
}

.cform2 select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2364748B' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.cform2 .btn {
  width: 100%;
  margin-top: 20px;
}

/* ---------- Newsletter ---------- */
.news {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, #EFF4FC);
  text-align: center;
}

.news .wrap {
  position: relative;
  z-index: 1;
}

.news h2 {
  font-size: clamp(2rem, 1.2rem+2.8vw, 3.2rem);
}

.news h2 .b {
  color: var(--blue-600);
}

.news .lead {
  max-width: 36em;
  margin-inline: auto;
  margin-top: 8px;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 46px auto 0;
}

.ncard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.ncard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.ncard .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ncard .big {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 16px;
}

.ncard .sub {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 2px;
}

.news-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 32px auto 0;
}

.news-form input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font: inherit;
  font-size: 1rem;
  outline: none;
  box-shadow: var(--sh-sm);
  transition: .2s;
}

.news-form input:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px var(--blue-50);
}

.news-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
  font-size: .95rem;
}

.news-avs {
  display: flex;
}

.news-avs .av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: .7rem;
  margin-left: -10px;
  box-shadow: var(--sh-sm);
}

.news-avs .av:first-child {
  margin-left: 0;
}

/* ---------- Footer stat strip ---------- */
.fstats {
  padding: 56px 0;
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}

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

.fstat .n {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: -.03em;
  line-height: 1;
}

.fstat .l {
  color: var(--muted);
  margin-top: 10px;
  font-size: .98rem;
}

.fstat .u {
  width: 36px;
  height: 4px;
  border-radius: 3px;
  background: var(--blue-600);
  margin: 14px auto 0;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: radial-gradient(100% 100% at 50% 0%, var(--navy-2), var(--navy));
  color: #fff;
  padding: 70px 0 30px;
  overflow: hidden;
}

.footer .mark {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24vw;
  line-height: .8;
  color: rgba(255, 255, 255, .025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

.foot-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.foot-brand p {
  color: #9DABC7;
  margin-top: 18px;
  max-width: 32ch;
  font-size: .96rem;
}

.foot-soc {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

/* Footer Google rating chip */
.foot-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.foot-rating:hover {
  color: #fff;
}

.foot-rating .fr-star {
  color: var(--yellow-400);
  font-size: 1.05rem;
}

.foot-soc a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
}

/* Official brand colours (app-icon style) */
.soc-fb { background: #1877F2; }
.soc-ig { background: radial-gradient(circle at 28% 100%, #FEDA77 0%, #FA7E1E 22%, #D62976 48%, #962FBF 72%, #4F5BD5 100%); }
.soc-li { background: #0A66C2; }
.soc-gg { background: #fff; }

.foot-soc a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .28);
  filter: brightness(1.05);
}

.foot-col h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.foot-col a {
  display: block;
  color: #9DABC7;
  padding: 6px 0;
  font-size: .95rem;
  transition: color .2s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #7C8AA8;
  font-size: .9rem;
}

.foot-bot a {
  color: #9DABC7;
}

.foot-bot .lk {
  display: flex;
  gap: 24px;
}

/* ---------- Soft section backdrops (more substance) ---------- */
.modules,
.bento,
.showcase {
  position: relative;
}

.modules::before,
.bento::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(58% 48% at 82% 2%, var(--blue-50), transparent 60%),
    radial-gradient(46% 42% at 4% 100%, #EAF7F0, transparent 60%);
  opacity: .85;
}

.bento {
  background: linear-gradient(180deg, #FFFFFF, #F4F7FC);
}

.modules .wrap,
.bento .wrap,
.showcase .wrap {
  position: relative;
  z-index: 1;
}

/* ---------- Partners ecosystem map ---------- */
.partners {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(50% 45% at 50% 50%, var(--blue-50), transparent 70%);
  opacity: .7;
}

.partners .wrap {
  position: relative;
  z-index: 1;
}

.pmap {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 50px auto 0;
  aspect-ratio: 1200/360;
}

.pmap-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pmap-svg path {
  fill: none;
  stroke: var(--blue-200);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 1.4s var(--ease);
}

.pmap.in .pmap-svg path {
  stroke-dashoffset: 0;
}

.pnode,
.ptile {
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.pnode {
  left: 50%;
  top: 50%;
  width: 152px;
  height: 152px;
  border-radius: 38px;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 26px 58px rgba(57, 111, 238, .45);
  z-index: 3;
  animation: pulse 3.2s ease-in-out infinite;
}

.pnode:hover {
  transform: translate(-50%, -50%) scale(1.05) !important;
  box-shadow: 0 32px 70px rgba(57, 111, 238, .6);
}

.pnode-logo-wrap {
  background: #fff;
  width: 110px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease);
}

.pnode:hover .pnode-logo-wrap {
  transform: scale(1.03);
}

.pnode-logo-wrap img {
  max-height: 22px;
  width: auto;
}

.pnode::after {
  content: "";
  position: absolute;
  inset: -11px;
  border-radius: 46px;
  border: 1.5px solid var(--blue-200);
  opacity: .6;
  transition: inset .3s var(--ease), border-color .3s var(--ease);
}

.pnode:hover::after {
  inset: -14px;
  border-color: var(--blue-400);
}

.pnode .logo {
  color: #fff;
  font-size: 1.85rem;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 24px 50px rgba(57, 111, 238, .38);
  }

  50% {
    box-shadow: 0 26px 66px rgba(57, 111, 238, .62);
  }
}

.ptile {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slate-700);
  font-size: 1rem;
  z-index: 2;
  opacity: 0;
}

.pmap.in .ptile {
  animation: pop .55s var(--ease) forwards;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.55);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.ptile:hover {
  transform: translate(-50%, -50%) scale(1.12) !important;
  box-shadow: var(--sh-lg);
  z-index: 4;
}

.ptile.hl {
  width: 74px;
  height: 74px;
  border: 2px solid #EC2C8F;
  box-shadow: 0 16px 36px rgba(236, 44, 143, .34);
  color: var(--blue-700);
  font-size: 1.05rem;
}

.pmap-caps {
  display: flex;
  justify-content: space-between;
  max-width: 1040px;
  margin: 22px auto 0;
  padding: 0 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--faint);
}

.proc {
  max-width: 1000px;
  margin: 54px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pstep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.pstep-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pnum {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: var(--sh-md);
}

.pstep-text h3 {
  font-size: 1.5rem;
  margin-top: 18px;
}

.pstep-text .pl {
  color: var(--muted);
  margin-top: 10px;
  max-width: 42ch;
}

.pchecks {
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pchecks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--slate-700);
  font-size: .98rem;
}

.pchecks .tick {
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 6px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  margin-top: 1px;
}

.pstep-empty {
  display: block;
}

.pmock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.pmock .pm-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-2);
  background: #FBFCFE;
}

.pmock .pm-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  display: block;
}

.pmock .pm-bar .t {
  margin-left: 6px;
  font-size: .76rem;
  color: var(--faint);
  font-weight: 600;
}

.pmock .pm-body {
  padding: 18px;
}

.pconnect {
  display: flex;
  justify-content: center;
  height: 84px;
  opacity: 0;
  transform: scaleX(.6);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.pconnect.in {
  opacity: 1;
  transform: scaleX(1);
}

.pconnect svg {
  height: 100%;
  width: 440px;
}

.pconnect path {
  fill: none;
  stroke: var(--blue-300);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1 13;
  opacity: .7;
}

/* Sequential reveal for proc items — timing via JS setTimeout, no extra CSS delay */
.proc .pstep,
.proc .pconnect {
  --d: 0ms;
}

.pm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
}

.pm-row:last-child {
  margin-bottom: 0;
}

.pm-ic {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pm-row b {
  font-size: .92rem;
}

.pm-row .ok {
  margin-left: auto;
  color: var(--green-600);
  font-weight: 700;
  font-size: .84rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pm-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.pm-cal i {
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--blue-50);
  display: block;
}

.pm-cal i.on {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
}

.pm-cal i.g {
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
}

.pm-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 108px;
}

.pm-bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
  display: block;
}

.pm-bars i.g {
  background: linear-gradient(180deg, var(--green-400), var(--green-600));
}

.pm-kpi {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.pm-kpi .k {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.pm-kpi .k .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}

.pm-kpi .k .v small {
  font-size: .72rem;
  color: var(--green-600);
}

.pm-kpi .k .l {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}

.pm-post {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.pm-post .ph {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.pm-post .av {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
}

.pm-post .nm {
  font-size: .82rem;
  font-weight: 600;
}

.pm-post .vis {
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  color: #fff;
  padding: 22px 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- Comparison (old vs Boost) ---------- */
/* ============================================================
   SECTION 3 — THE PROBLEM (pain cards + 3-column comparison)
   ============================================================ */
.problem-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #F4F7FC, #FFFFFF);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 48px auto 0;
  align-items: stretch;
}

.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: var(--sh-sm, 0 4px 16px rgba(20, 40, 90, 0.05));
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(57, 111, 238, 0.25);
}

.pain-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: rgba(57, 111, 238, 0.06);
  margin-bottom: 16px;
}

.pain-ic img,
.b5-ic img,
.obj-ic img {
  object-fit: contain;
  display: block;
}

.pain-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--slate-700, #475569);
}

/* 3-column comparison */
.cmp3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 56px auto 0;
  align-items: stretch;
}

.cmp3 {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.cmp3-hd h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.cmp3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.cmp3 li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--slate-700, #475569);
}

.cmp3 .m {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 1px;
}

.cmp3-bad .m,
.cmp3-mid .m {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.cmp3-mid .m.euro {
  background: rgba(234, 179, 8, 0.16);
  color: #b8860b;
}

.cmp3-best .m {
  background: rgba(22, 163, 74, 0.12);
  color: var(--green-600, #16a34a);
}

.cmp3-bad,
.cmp3-mid {
  background: #fbfcfe;
}

/* Highlighted Boost column — must jump out */
.cmp3-best {
  background: linear-gradient(165deg, #ffffff, #f3f8ff);
  border: 2px solid var(--blue-500);
  box-shadow: 0 26px 56px rgba(30, 64, 150, 0.16);
  transform: translateY(-10px);
}

.cmp3-best:hover {
  transform: translateY(-14px);
}

.cmp3-best .cmp3-hd h3 {
  color: var(--blue-700);
  font-size: 1.35rem;
}

.cmp3-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(30, 64, 150, 0.28);
}

.cmp3-cta {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 980px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cmp3-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .cmp3-best {
    transform: none;
  }
  .cmp3-best:hover {
    transform: translateY(-4px);
  }
}

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

.compare {
  padding: 100px 0;
  background: linear-gradient(180deg, #F4F7FC, #FFFFFF);
}

.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 48px auto 0;
  align-items: stretch;
}

.cmp {
  border-radius: 24px;
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--sh-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cmp.bad {
  background: #FEF6F6;
  border-color: #FDE4E4;
}

.cmp.good {
  background: linear-gradient(160deg, #F5FDF8, #ffffff);
  border-color: #D1F2DD;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.06);
  position: relative;
}

.cmp:hover {
  transform: translateY(-6px);
}

.cmp.bad:hover {
  box-shadow: 0 20px 38px rgba(180, 83, 79, 0.06);
  border-color: rgba(180, 83, 79, 0.25);
}

.cmp.good:hover {
  box-shadow: 0 20px 38px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}

.cmp h3 {
  font-size: 1.35rem;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
  font-weight: 700;
  font-family: var(--font-display);
}

.cmp.bad h3 {
  color: #B4534F;
}

.cmp.good h3 {
  color: #10B981;
}

.cmp ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  flex-grow: 1;
}

.cmp li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: var(--slate-700);
  line-height: 1.53;
}

.cmp li b {
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.cmp li p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.cmp .m {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  margin-top: 2px;
}

.cmp.bad .m {
  background: #FCE2E2;
  color: #D4504C;
}

.cmp.good .m {
  background: #D6F5E2;
  color: #10B981;
}

.cmp-cta {
  text-align: center;
  margin-top: 38px;
}

/* ---------- Stack / integrations cluster ---------- */
.stack {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, #F4F7FC);
}

.stack-ring {
  position: relative;
  width: min(540px, 84vw);
  aspect-ratio: 1;
  margin: 30px auto 0;
}

.sr {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid var(--blue-100);
  background: radial-gradient(circle, rgba(57, 111, 238, .05), transparent 70%);
  animation: ringPulse 4.5s ease-in-out infinite;
}

.sr1 {
  width: 100%;
  height: 100%;
  margin: -50% 0 0 -50%;
}

.sr2 {
  width: 73%;
  height: 73%;
  margin: -36.5% 0 0 -36.5%;
  animation-delay: .5s;
}

.sr3 {
  width: 48%;
  height: 48%;
  margin: -24% 0 0 -24%;
  animation-delay: 1s;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: .45;
    transform: scale(1);
  }

  50% {
    opacity: .85;
    transform: scale(1.015);
  }
}

.stack-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  height: 46%;
  margin: -23% 0 0 -23%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 111, 238, .16), transparent 70%);
  filter: blur(14px);
}

.stack-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 134px;
  height: 134px;
  margin: -67px 0 0 -67px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 32px 72px rgba(57, 111, 238, .36), 0 8px 22px rgba(57, 111, 238, .20);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.stack-center::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 26px;
  background: linear-gradient(150deg, #EAF1FF, #F6EEFB);
}

.stack-center .logo {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.stack-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  animation: orbit 46s linear infinite;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitRev {
  to {
    transform: rotate(-360deg);
  }
}

.stile-wrap {
  position: absolute;
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
  animation: orbitRev 46s linear infinite;
  z-index: 10;
}

.stile {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(20, 40, 90, .20), 0 4px 12px rgba(20, 40, 90, .10);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .3s var(--ease);
}

.stile::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -120%;
  width: 55%;
  height: 160%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .7), transparent);
  transform: skewX(-18deg);
  transition: left .85s var(--ease);
  pointer-events: none;
}

.stile-wrap:hover .stile {
  box-shadow: 0 28px 60px rgba(57, 111, 238, .3);
}

.stile-wrap:hover .stile::after {
  left: 160%;
}


.stack-ring:hover .stack-orbit,
.stack-ring:hover .stile-wrap {
  animation-play-state: paused;
}

.stile-wrap.s1 {
  left: 50%;
  top: 3%;
}

.stile-wrap.s2 {
  left: 94.7%;
  top: 35.5%;
}

.stile-wrap.s3 {
  left: 77.6%;
  top: 88%;
}

.stile-wrap.s4 {
  left: 22.4%;
  top: 88%;
}

.stile-wrap.s5 {
  left: 5.3%;
  top: 35.5%;
}

@media (prefers-reduced-motion:reduce) {
  .stack-orbit,
  .stile-wrap {
    animation: none;
  }
}

/* ---------- Custom select (contact Objet) ---------- */
.cselect {
  position: relative;
}

.cselect-btn {
  width: 100%;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: .2s;
}

.cselect-btn svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform .3s var(--ease);
  flex: none;
}

.cselect.open .cselect-btn {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px var(--blue-50);
  background: rgba(255, 255, 255, 0.9);
}

.cselect.open .cselect-btn svg {
  transform: rotate(180deg);
}

.cselect-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow: var(--sh-lg);
  padding: 6px;
  z-index: 20;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.cselect.open .cselect-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cselect-opt {
  padding: 11px 13px;
  border-radius: 9px;
  cursor: pointer;
  font-size: .96rem;
  color: var(--slate-700);
  transition: background .15s, color .15s;
}

.cselect-opt:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.cselect-opt.sel {
  background: var(--blue-600);
  color: #fff;
  font-weight: 600;
}

.cselect-opt.sel:hover {
  background: var(--blue-600);
  color: #fff;
}

/* ---------- Client Benefits (4 cards, "Pourquoi Boost") ---------- */
/* ============================================================
   FREE DIAGNOSTIC MODULE (under hero)
   ============================================================ */
.diag-sec {
  padding: 90px 0;
  background: linear-gradient(180deg, #FFFFFF, #F4F7FC);
}

.diag-card {
  max-width: 760px;
  margin: 44px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px 36px;
  box-shadow: var(--sh-lg);
}

.diag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.diag-form .field {
  margin-bottom: 16px;
}

.diag-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700, #475569);
  margin-bottom: 7px;
}

.diag-form input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
}

.diag-form input:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px var(--blue-50, rgba(57, 111, 238, 0.12));
  background: #fff;
}

.diag-opt {
  color: var(--slate-600, #64748b);
  font-weight: 400;
}

.diag-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.diag-note {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--slate-600, #64748b);
  text-align: center;
  line-height: 1.5;
}

/* Loading */
.diag-loading {
  text-align: center;
  padding: 20px 0;
}

.diag-spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 5px solid rgba(57, 111, 238, 0.15);
  border-top-color: var(--blue-500);
  animation: diag-spin 0.8s linear infinite;
}

@keyframes diag-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Inline button loading spinner — reuses the diag-spin animation used by the
   landing-page diagnostic loader, sized to sit inside a submit button. */
.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: diag-spin 0.8s linear infinite;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.9;
}

/* On light/ghost buttons the spinner needs the brand colour instead of white. */
.btn-ghost .btn-spinner,
.btn-light .btn-spinner,
.btn-outline .btn-spinner {
  border-color: rgba(57, 111, 238, 0.25);
  border-top-color: var(--blue-500);
}

@media (prefers-reduced-motion: reduce) {
  .btn-spinner {
    animation-duration: 1.6s;
  }
}

.diag-loading-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

.diag-steps {
  list-style: none;
  margin: 16px auto 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.diag-steps li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--slate-700, #475569);
  opacity: 0;
  animation: diag-fade 0.5s var(--ease) forwards;
}

.diag-steps li:nth-child(1) {
  animation-delay: 0.1s;
}

.diag-steps li:nth-child(2) {
  animation-delay: 0.8s;
}

.diag-steps li:nth-child(3) {
  animation-delay: 1.5s;
}

.diag-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600, #16a34a);
  font-weight: 700;
}

@keyframes diag-fade {
  to {
    opacity: 1;
  }
}

/* Score result */
.diag-score {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.diag-ring {
  --p: 0%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--ring-color, var(--blue-500)) var(--p), #e8eef9 0);
  transition: none;
}

.diag-ring-val {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy);
  padding-top: 30px;
  box-sizing: border-box;
}

.diag-ring-val small {
  font-size: 0.85rem;
  color: var(--slate-600, #64748b);
  font-weight: 600;
}

.diag-score-txt {
  text-align: left;
}

.diag-score-txt h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.diag-score-txt p {
  color: var(--slate-700, #475569);
}

.diag-report {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2, #eef1f6);
  text-align: center;
}

.diag-report > p {
  color: var(--slate-700, #475569);
  margin-bottom: 16px;
}

.diag-email-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.diag-email-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 1rem;
  font-family: inherit;
}

.diag-email-form input:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px var(--blue-50, rgba(57, 111, 238, 0.12));
}

.diag-sent {
  text-align: center;
  padding: 16px 0;
}

.diag-sent h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 14px 0 8px;
}

.diag-sent p {
  color: var(--slate-700, #475569);
  max-width: 30em;
  margin: 0 auto 20px;
}

@media (max-width: 560px) {
  .diag-row {
    grid-template-columns: 1fr;
  }
  .diag-email-form {
    flex-direction: column;
  }
  .diag-card {
    padding: 28px 22px;
  }
}

/* ============================================================
   SECTION 4 — SOLUTION + 5 HIERARCHISED BENEFITS
   ============================================================ */
.solution-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF, #F4F7FC);
}

.benefit5 {
  max-width: 1040px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.benefit5-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit5-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.b5card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: var(--sh-sm, 0 4px 16px rgba(20, 40, 90, 0.05));
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.b5card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.b5-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: rgba(57, 111, 238, 0.06);
  margin-bottom: 16px;
}

.b5-ic.sm {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.b5card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.b5card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.b5card p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--slate-700, #475569);
}

/* Highlighted hero benefits */
.b5hero {
  background: linear-gradient(165deg, #ffffff, #f1f7ff);
  border: 1.5px solid rgba(57, 111, 238, 0.3);
  box-shadow: 0 18px 44px rgba(30, 64, 150, 0.1);
}

.b5hero .b5-ic {
  background: rgba(57, 111, 238, 0.1);
}

.b5-star {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--yellow-400);
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 860px) {
  .benefit5-sub {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .benefit5-hero {
    grid-template-columns: 1fr;
  }
}

.benefits {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF, #F4F7FC);
}

.benefits .wrap {
  max-width: 1400px;
}

.b-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 54px;
}

@media (max-width: 1240px) {
  .b-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 20px;
  box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.06);
}

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

/* Custom hover border glow for each social channel card */
.b-grid article:nth-child(1):hover {
  border-color: rgba(66, 103, 178, 0.4);
  box-shadow: 0 20px 38px rgba(66, 103, 178, 0.06);
}

.b-grid article:nth-child(2):hover {
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 20px 38px rgba(225, 48, 108, 0.06);
}

.b-grid article:nth-child(3):hover {
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 20px 38px rgba(66, 133, 244, 0.06);
}

.b-grid article:nth-child(4):hover {
  border-color: rgba(30, 69, 176, 0.4);
  box-shadow: 0 20px 38px rgba(30, 69, 176, 0.06);
}

.bcard .num {
  display: none;
}

.bcard .ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  color: #fff;
  box-shadow: var(--sh-md);
}

.bcard h3 {
  margin-top: 22px;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
}

.bcard p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
  flex-grow: 1;
}

.b-grid article:nth-child(1):hover {
  border-color: rgba(64, 111, 232, .32);
  box-shadow:
    0 16px 40px rgba(64, 111, 232, .16),
    0 0 45px rgba(64, 111, 232, .24);
  background: radial-gradient(circle at top left, rgba(64, 111, 232, .08) 0%, rgba(255, 255, 255, 1) 68%);
}

.b-grid article:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  z-index: 0;
  background: linear-gradient(135deg, #406FE8, rgba(64, 111, 232, 0) 65%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.4s var(--ease);
}

.b-grid article:nth-child(1):hover::before {
  opacity: .85;
  animation: pulseGlow 4s ease-in-out infinite;
}

.b-grid article:nth-child(1):hover::after {
  animation: autoShine 7s infinite ease-in-out;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: .75;
    filter: blur(14px);
  }

  50% {
    opacity: .95;
    filter: blur(17px);
  }
}

@keyframes autoShine {
  0% {
    left: -120%;
  }

  12% {
    left: 160%;
  }

  100% {
    left: 160%;
  }
}

/* ---------- Stats (deck slide 9 — avg vs TOP 10%) ---------- */
/* ============================================================
   SECTION 5 — PROOF FIGURES + TESTIMONIALS
   ============================================================ */
.proof-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #F4F7FC, #FFFFFF);
}

/* Block A — figures strip */
.proof-figures {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 48px auto 0;
}

.pfig {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--sh-sm, 0 4px 16px rgba(20, 40, 90, 0.05));
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pfig-ic {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}

/* ============================================================
   BRAND ICONS — shine + hover + subtle idle animation
   (applies to all icon tiles site-wide)
   ============================================================ */
.pain-ic,
.b5-ic,
.ov-ic,
.obj-ic {
  position: relative;
  overflow: hidden;
}

/* inner icon: subtle continuous float + smooth hover transition */
.pain-ic img,
.pain-ic svg,
.b5-ic img,
.b5-ic svg,
.ov-ic img,
.obj-ic img,
.pfig-ic {
  position: relative;
  z-index: 1;
  animation: ic-idle 4.5s ease-in-out infinite;
  transition: transform 0.35s var(--ease);
}

@keyframes ic-idle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* stagger so icons don't bob in unison */
.pain-grid .pain-card:nth-child(even) .pain-ic img,
.benefit5-sub .b5card:nth-child(even) .b5-ic img,
.ov-grid .ov-card:nth-child(even) .ov-ic img,
.obj-grid .obj-card:nth-child(even) .obj-ic img,
.proof-figures .pfig:nth-child(even) .pfig-ic {
  animation-delay: -2.25s;
}

.obj-grid .obj-card:nth-child(3n) .obj-ic img {
  animation-delay: -1.1s;
}

/* hover pop */
.pain-card:hover .pain-ic img,
.pain-card:hover .pain-ic svg,
.b5card:hover .b5-ic img,
.b5card:hover .b5-ic svg,
.ov-card:hover .ov-ic img,
.obj-card:hover .obj-ic img,
.pfig:hover .pfig-ic {
  transform: scale(1.12) translateY(-2px);
  animation-play-state: paused;
}

/* shine sweep across the tile on card hover */
.pain-ic::after,
.b5-ic::after,
.ov-ic::after,
.obj-ic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.75) 50%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
  z-index: 2;
  pointer-events: none;
}

.pain-card:hover .pain-ic::after,
.b5card:hover .b5-ic::after,
.ov-card:hover .ov-ic::after,
.obj-card:hover .obj-ic::after {
  transform: translateX(130%);
}

/* Google review GMB logo — gentle hover lift */
.gr-g {
  transition: transform 0.3s var(--ease);
}

.greview:hover .gr-g {
  transform: scale(1.12) rotate(-4deg);
}

@media (prefers-reduced-motion: reduce) {
  .pain-ic img,
  .pain-ic svg,
  .b5-ic img,
  .b5-ic svg,
  .ov-ic img,
  .obj-ic img,
  .pfig-ic {
    animation: none;
  }
}

.pfig:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.pfig-n {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--blue-600), var(--blue-800));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
}

.pfig-n .suf {
  -webkit-text-fill-color: var(--blue-600);
}

.pfig-l {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--slate-700, #475569);
  line-height: 1.35;
}

/* Block B — results cards */
.proof-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 720px;
  margin: 30px auto 0;
}

.presult {
  background: radial-gradient(120% 120% at 0% 0%, var(--navy-soft, #13224A) 0%, var(--navy-2, #0C1733) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 20px 48px rgba(12, 23, 51, 0.22);
}

.presult-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-300, #9DBBF8);
  margin-bottom: 12px;
}

.presult-main {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.presult-main b {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.presult-top {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}

.presult-top b {
  color: var(--green-400, #34D399);
  font-weight: 700;
}

.proof-source {
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate-600, #64748b);
  max-width: 640px;
  margin: 18px auto 0;
  font-style: italic;
}

/* Block C — story testimonials */
.proof-testi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 50px auto 0;
}

.ptesti {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--sh-sm, 0 4px 16px rgba(20, 40, 90, 0.05));
  display: flex;
  flex-direction: column;
}

.ptesti-stars {
  color: var(--yellow-400);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.ptesti p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink, #0E1729);
  flex-grow: 1;
}

.ptesti-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2, #eef1f6);
}

.ptesti-who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.ptesti-who b {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}

.ptesti-who span {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-600, #64748b);
}

.proof-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   SECTION 6 — ADDITIONAL-MARGIN SIMULATOR
   ============================================================ */
.sim-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF, #F4F7FC);
}

.sim-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
  max-width: 980px;
  margin: 48px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.sim-inputs {
  padding: 38px 38px 42px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sim-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-field > label,
.sim-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sim-val {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue-600);
  font-size: 1.1rem;
}

.sim-hint {
  font-size: 0.8rem;
  color: var(--slate-600, #64748b);
}

/* Range slider */
.sim-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
}

.sim-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--blue-500);
  box-shadow: 0 4px 12px rgba(30, 64, 150, 0.3);
  cursor: pointer;
}

.sim-field input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--blue-500);
  box-shadow: 0 4px 12px rgba(30, 64, 150, 0.3);
  cursor: pointer;
}

/* Radio group */
.sim-radios {
  display: flex;
  gap: 10px;
}

.sim-radio {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.sim-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sim-radio span {
  display: block;
  text-align: center;
  padding: 10px 6px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-700, #475569);
  transition: all 0.2s var(--ease);
}

.sim-radio input:checked + span {
  border-color: var(--blue-500);
  background: rgba(57, 111, 238, 0.08);
  color: var(--blue-700);
}

.sim-radio input:focus-visible + span {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* Number fields */
.sim-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sim-inputwrap {
  position: relative;
  display: flex;
  align-items: center;
}

.sim-inputwrap input {
  width: 100%;
  padding: 12px 38px 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-family: inherit;
}

.sim-inputwrap input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(57, 111, 238, 0.12);
}

.sim-unit {
  position: absolute;
  right: 14px;
  font-weight: 700;
  color: var(--slate-600, #64748b);
  pointer-events: none;
}

/* Output panel */
.sim-output {
  background: radial-gradient(120% 120% at 100% 0%, var(--navy-soft, #13224A) 0%, var(--navy-2, #0C1733) 100%);
  color: #fff;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.sim-out-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-out-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.sim-out-period {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 6px;
}

.sim-output .btn {
  margin-top: 18px;
}

/* Methodology tooltip */
.sim-tip {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: var(--blue-100, #DCE7FD);
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: italic;
  cursor: help;
  position: relative;
  line-height: 18px;
  text-align: center;
}

.sim-tip.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.sim-tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  background: var(--ink, #0E1729);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease);
  z-index: 10;
  box-shadow: 0 12px 28px rgba(12, 23, 51, 0.28);
}

.sim-tip:hover::after,
.sim-tip:focus::after {
  opacity: 1;
  visibility: visible;
}

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

@media (max-width: 900px) {
  .proof-figures {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .proof-figures {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-results,
  .proof-testi {
    grid-template-columns: 1fr;
  }
}

.results {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(110% 90% at 50% -10%, var(--navy-soft) 0%, var(--navy-2) 40%, var(--navy) 100%);
  color: #fff;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 85% 12%, rgba(57, 111, 238, .4), transparent 60%),
    radial-gradient(45% 65% at 8% 92%, rgba(52, 211, 153, .18), transparent 60%);
}

.results .wrap {
  position: relative;
  z-index: 1;
}

.results .section-head h2 {
  color: #fff;
}

.results .section-head .lead {
  color: #9DB2DF;
}

.results .eyebrow {
  color: #BFD3FF;
  background: rgba(91, 141, 251, .14);
  border-color: rgba(91, 141, 251, .28);
}

.rstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
  max-width: 1000px;
  margin-inline: auto;
}

.rstat {
  background: rgba(13, 23, 51, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 24px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.rstat:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 141, 251, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(57, 111, 238, 0.15);
}

.rstat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.rstat .tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(91, 141, 251, .14);
  color: #BFD3FF;
  display: inline-block;
}

.rstat .tag.top {
  background: rgba(251, 191, 36, .18);
  color: var(--yellow-300);
}

.rstat .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.rstat .num .suf {
  font-size: 1.3rem;
  margin-left: 2px;
  color: var(--blue-300);
}

.rstat .num .pre {
  font-size: 1.4rem;
  margin-right: 2px;
  color: var(--green-400);
  font-weight: 700;
}

/* Mini charts styles */
.mini-chart {
  margin-top: 18px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.rstat:hover .mini-chart {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 141, 251, 0.2);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.25), 0 0 12px rgba(91, 141, 251, 0.08);
}

.sparkline {
  display: block;
}

.sparkline path {
  filter: drop-shadow(0 2px 5px rgba(110, 151, 244, 0.5));
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}

.bar-group .bar-lbl {
  width: 50px;
  text-align: left;
}

.bar-group .bar-track {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.bar-group .bar-fill {
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  transition: background 0.3s, box-shadow 0.3s;
}

.bar-group.highlight {
  color: #fff;
  font-weight: 600;
}

.bar-group.highlight .bar-track {
  height: 6px;
}

.bar-group.highlight .bar-fill {
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.bar-group .bar-val {
  width: 45px;
  text-align: right;
  font-weight: 600;
  font-family: var(--font-display);
}

.trend-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 38px;
  gap: 5px;
}

.trend-bar {
  flex-grow: 1;
  height: var(--height, 10%);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px 3px 0 0;
  transition: background 0.3s, transform 0.3s;
}

.trend-bar.highlight {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 0 12px rgba(57, 111, 238, 0.5);
}

.rstat:hover .trend-bar:not(.highlight) {
  background: rgba(255, 255, 255, 0.15);
  transform: scaleY(1.05);
  transform-origin: bottom;
}

.trend-label {
  margin-top: 8px;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rstat .lbl {
  margin-top: 12px;
  color: #9DB2DF;
  font-size: .95rem;
  line-height: 1.45;
}

.rstats-note {
  margin-top: 28px;
  text-align: center;
  color: #7C8AA8;
  font-size: .85rem;
}

/* ---------- Partner Logos Carousel (2-row) ---------- */
.logos {
  padding: 100px 0;
  background: #FFFFFF;
}

.logo-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 50px;
}

.logo-row {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-row-track {
  display: flex;
  width: max-content;
  animation: scrollx 44s linear infinite;
}

.logo-row.alt .logo-row-track {
  animation-direction: reverse;
  animation-duration: 52s;
}

.logo-row:hover .logo-row-track {
  animation-play-state: paused;
}

.logo-row .lcap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: linear-gradient(90deg, #fff 50%, transparent);
  padding: 6px 24px 6px 0;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.lchip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--sh-sm);
  white-space: nowrap;
  min-width: 180px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  margin-right: 14px;
}

.lchip:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-200);
}

.lchip .lmark {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}

.lchip .lname {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink);
  letter-spacing: -.01em;
}

.lchip .lname.brand-id {
  color: var(--blue-700);
}

.lchip .lname.brand-faks {
  color: #0AB4C9;
}

.lchip .partner-logo-img {
  height: 24px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* ---------- Press strip ---------- */
.press {
  padding: 90px 0;
  background: linear-gradient(180deg, #F4F7FC, #FFFFFF);
}

.press-cap {
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}

.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--sh-sm);
  color: var(--slate-700);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.01em;
  text-align: center;
  font-size: 1.04rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: 78px;
}

.press-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.press-logo em {
  font-style: italic;
  font-weight: 600;
  color: var(--blue-700);
}

.press-logo .lq {
  font-family: 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  color: #1A1A1A;
}

.press-quote {
  max-width: 780px;
  margin: 42px auto 0;
  padding: 30px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--sh-md);
  text-align: center;
  position: relative;
}

.press-quote::before {
  content: "\201C";
  position: absolute;
  top: -4px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--blue-100);
  font-weight: 700;
}

.press-quote p {
  font-size: 1.18rem;
  color: var(--slate-700);
  line-height: 1.5;
  font-family: var(--font-display);
  font-weight: 500;
}

.press-quote .src {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: .95rem;
  font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width:980px) {

  .hero .wrap,
  .show-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 430px;
    margin-top: 20px;
  }

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

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

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

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

  .press-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .press-logo {
    font-size: .95rem;
    height: 72px;
    padding: 14px 10px;
  }

  .press-logo .lq {
    font-size: 1.25rem;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }

  .b-card.span2 {
    grid-column: span 2;
  }

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

  .t-col.c3 {
    display: none;
  }

  .news-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .fstats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width:680px) {
  body {
    font-size: 16px;
  }

  .hl {
    white-space: normal !important;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-repeat: no-repeat;
    background-position: 0 88%;
    background-size: 100% 0.3em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-bottom: 0.05em;
  }

  .hl::after {
    display: none !important;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero {
    padding: 130px 0 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    align-items: center;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .eyebrow {
    font-size: 0.68rem;
    padding: 6px 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .hero-trust {
    font-size: 0.72rem;
    padding: 8px 14px;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .hero-trust .stars {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .fb-top {
    display: none !important;
  }

  .fb-eng {
    display: flex !important;
    left: -8px !important;
    top: 160px !important;
    transform-origin: left center !important;
    z-index: 10;
    animation: floatMobileLeft 11s ease-in-out infinite -4s !important;
  }

  .fb-reach {
    display: flex !important;
    left: auto !important;
    right: -8px !important;
    bottom: 35px !important;
    transform-origin: right center !important;
    z-index: 10;
    animation: floatMobileRight 10s ease-in-out infinite -2s !important;
  }

  .hero-visual {
    width: 88%;
    max-width: 380px;
    margin: 30px auto 0;
    position: relative;
    height: 480px;
    display: block;
    padding-bottom: 0;
    overflow: visible;
  }

  .post {
    position: absolute;
    left: 0;
    top: 15px;
    width: 100%;
    transform: rotate(-1.5deg);
    margin: 0;
  }

  .post-hd {
    padding: 14px 16px;
  }

  .post-hd .lg {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .post-hd b {
    font-size: 0.95rem;
  }

  .post-hd span {
    font-size: 0.72rem;
  }

  .post-bd {
    padding: 14px;
  }

  .post-bd .txt {
    font-size: 0.88rem;
  }

  .post-visual {
    padding: 24px 18px;
  }

  .post-visual h4 {
    font-size: 1.15rem;
  }

  .post-ft {
    gap: 14px;
    padding: 12px 14px;
    font-size: 0.8rem;
  }

  .post-meta {
    padding: 0 14px 12px;
    font-size: 0.75rem;
  }

  .mod-grid,
  .stat-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

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

  .bcard-stats li .desc {
    white-space: normal;
  }

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

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

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .press-logo {
    font-size: .88rem;
    height: 66px;
    padding: 12px 8px;
    border-radius: 12px;
  }

  .press-logo .lq {
    font-size: 1.12rem;
  }

  .lchip {
    min-width: 150px;
    padding: 12px 18px;
  }

  .press-quote {
    padding: 24px;
  }

  .press-quote p {
    font-size: 1rem;
  }

  .b-card.span2 {
    grid-column: span 1;
  }

  .tl-row {
    grid-template-columns: 44px 1fr;
  }

  .tl-line,
  .tl-fill {
    left: 22px;
  }

  .tl-node {
    grid-column: 1;
  }

  .tl-row:nth-child(odd) .tl-card,
  .tl-row:nth-child(even) .tl-card {
    grid-column: 2;
  }

  .t-cols {
    grid-template-columns: 1fr;
  }

  .t-wall {
    height: auto;
    overflow: visible;
  }

  .t-col {
    animation: none;
  }

  .t-col.c3 {
    display: none;
  }

  .faq-cols {
    grid-template-columns: 1fr;
  }

  .pstep {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
  }

  .pstep-text {
    order: 1;
    align-items: flex-start;
  }

  .pstep-empty {
    order: 2;
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0;
  }

  .pconnect {
    display: none;
  }

  .sc-feat {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 100% !important;
    gap: 20px !important;
    padding: 24px !important;
  }

  .sc-text {
    flex: 1;
  }

  .sc-ico {
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .sc-feat h3 {
    margin-top: 0 !important;
  }

  .cmp-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }

  .cmp {
    padding: 32px 24px;
  }

  .stile-wrap {
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
  }


  .stack-center {
    width: 104px;
    height: 104px;
    margin: -52px 0 0 -52px;
  }

  .pmap {
    aspect-ratio: 1200/620;
    width: 92%;
    max-width: 380px;
    margin: 30px auto 0;
    position: relative;
  }

  .pmap-svg {
    display: block;
  }

  .pmap-svg path {
    stroke-width: 1.8px;
    stroke: var(--blue-300);
  }

  .pmap .pnode,
  .pmap .ptile {
    position: absolute;
    transform: translate(-50%, -50%) !important;
    opacity: 1;
    animation: none;
  }

  .pmap .pnode {
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(57, 111, 238, .30);
  }

  .pmap .pnode::after {
    border-radius: 22px;
    inset: -7px;
    border-width: 1.5px;
  }

  .pnode-logo-wrap {
    width: 52px !important;
    height: 26px !important;
    border-radius: 7px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .10) !important;
  }

  .pnode-logo-wrap img {
    max-height: 12px !important;
  }

  .pmap .ptile {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.6rem;
    box-shadow: var(--sh-md);
    border-width: 1.5px;
  }

  .pmap .ptile:hover {
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .pmap .ptile svg {
    width: 16px !important;
    height: 16px !important;
  }

  .pmap .ptile b {
    font-size: 0.6rem !important;
  }

  .pmap .ptile span {
    font-size: 0.75rem !important;
  }

  .pmap-caps {
    display: none;
  }

  .partners {
    padding: 60px 0;
  }

  .partners .section-head h2 {
    font-size: 1.5rem;
  }

  .partners .section-head .lead {
    font-size: 0.95rem;
  }

  .news-cards {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .news-form {
    flex-direction: column;
  }

  .fstats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 18px;
  }

  .prem-band {
    padding: 48px 24px;
  }

  .contact-grid {
    gap: 36px;
  }

  .cform2 {
    padding: 24px;
  }

  .cform2 .frow {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    text-align: center;
  }
}

@media (max-width:440px) {
  .press-grid {
    gap: 8px;
  }

  .press-logo {
    font-size: .82rem;
    height: 60px;
    padding: 8px 4px;
    border-radius: 10px;
  }

  .press-logo .lq {
    font-size: 1rem;
  }

  .hero-copy h1 {
    font-size: 1.75rem;
  }

  .hero-trust {
    font-size: 0.65rem;
    padding: 7px 12px;
    gap: 6px;
  }

  .hero-trust .stars {
    font-size: 0.72rem;
    letter-spacing: 0;
  }

  .post {
    width: 90%;
    max-width: 340px;
  }

  .hero-visual {
    height: 440px;
    max-width: 340px;
  }

  .fb-eng {
    top: 140px !important;
    left: -4px !important;
  }

  .fb-reach {
    bottom: 25px !important;
    right: -4px !important;
  }

  .pmap {
    width: 96%;
    max-width: 340px;
    aspect-ratio: 1200/680;
  }

  .pmap .pnode {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .pnode-logo-wrap {
    width: 44px !important;
    height: 22px !important;
  }

  .pnode-logo-wrap img {
    max-height: 10px !important;
  }

  .pmap .ptile {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .pmap .ptile svg {
    width: 13px !important;
    height: 13px !important;
  }
}

/* Keyframes for horizontal marquee scrolling */
@keyframes scrollx {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Section Publication en 3 clics (P3C) ---------- */
.p3c-sec {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.p3c-quote {
  max-width: 760px;
  margin: 12px auto 20px auto;
  padding: 24px 32px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: var(--sh-sm);
}

.p3c-quote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--blue-200);
  opacity: 0.7;
  font-weight: 700;
  pointer-events: none;
}

.p3c-quote p {
  font-size: 1.05rem;
  color: var(--blue-900);
  line-height: 1.5;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.p3c-quote .quote-author {
  display: block;
  margin-top: 8px;
  color: var(--slate-700);
  font-size: 0.9rem;
}

.p3c-lead {
  margin-top: 10px;
}

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

.p3c-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}

.p3c-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-200);
}

.p3c-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #ffffff;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-2);
}

.p3c-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  display: block;
  transition: transform .5s var(--ease);
}

.p3c-card:hover .p3c-img-wrapper img {
  transform: scale(1.03);
}

.p3c-content {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.p3c-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p3c-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
}

.p3c-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.p3c-card p {
  font-size: 0.95rem;
  color: var(--slate-700);
  line-height: 1.5;
  margin: 0;
}

/* Responsivité */
@media (max-width: 980px) {
  .p3c-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    gap: 20px;
  }

  .p3c-sec {
    padding: 70px 0;
  }

  .p3c-card {
    padding: 0;
  }
}

/* Custom additions for stats inside cards */
.bcard-stats {
  margin: 18px 0 0 0;
  padding: 14px 0 0 0;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bcard-stats li {
  font-size: 0.86rem;
  color: var(--slate-700);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.bstat-val {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  min-width: 48px;
  flex-shrink: 0;
  line-height: 1;
}

.bstat-val .n {
  color: var(--blue-600);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.bstat-val .u {
  color: var(--blue-600);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin-left: 2px;
  text-transform: uppercase;
}

.bcard-stats li .desc {
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--slate-600);
  flex-grow: 1;
  text-align: left;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.rstat-details {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rstat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.rstat-row .lbl-small {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rstat-row .val-small {
  color: #fff;
}

.rstat-row .val-small b {
  color: var(--yellow-300);
  font-weight: 700;
  font-family: var(--font-display);
}

.cmp-channels {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 185, 129, 0.12);
}

.cmp-channels-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.cmp-channels-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cmp-channels-icons .c-tag {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 99px;
  background: rgba(57, 111, 238, 0.06);
  color: var(--blue-700);
  border: 1px solid rgba(57, 111, 238, 0.12);
  transition: all 0.25s;
}

.cmp-channels-icons .c-tag:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  transform: translateY(-1px);
}

/* Footer customizations */
.foot-phone {
  display: block;
  margin-top: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}

.foot-phone:hover {
  color: var(--blue-400);
}

.foot-soc a.g-rev:hover {
  background: var(--yellow-400);
  color: var(--ink);
  border-color: var(--yellow-500);
}

/* ---------- Legal Pages Layout ---------- */
.legal-main {
  flex-grow: 1;
  padding: 120px 0 80px;
  background: var(--bg);
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
}

.legal-toc {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--sh-sm);
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-200) transparent;
}

.legal-toc::-webkit-scrollbar {
  width: 5px;
}

.legal-toc::-webkit-scrollbar-track {
  background: transparent;
}

.legal-toc::-webkit-scrollbar-thumb {
  background-color: var(--blue-200);
  border-radius: 10px;
}

.legal-toc h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 8px;
}

.toc-link {
  display: block;
  font-size: 0.95rem;
  color: var(--slate-700);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all 0.2s;
  font-weight: 500;
}

.toc-link:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.toc-link.active {
  background: var(--blue-600);
  color: #ffffff;
  font-weight: 600;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--sh-md);
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* long URLs / unbreakable tokens must wrap (no horizontal overflow on mobile) */
.legal-card a,
.legal-section a,
.legal-details a,
.legal-toc a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-card h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-2);
  scroll-margin-top: 90px;
  /* anchor target clears the sticky header */
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-top: 24px;
  margin-bottom: 14px;
}

.legal-section p {
  font-size: 1.02rem;
  color: var(--slate-700);
  line-height: 1.65;
  margin-bottom: 18px;
}

.legal-details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
}

.legal-details li {
  font-size: 0.98rem;
  color: var(--slate-700);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.legal-details li:last-child {
  margin-bottom: 0;
}

.cookie-subsection {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2.5px solid var(--blue-200);
}

.warning-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 18px;
  font-size: 0.98rem !important;
  color: var(--ink) !important;
  line-height: 1.6;
}

.browser-settings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.browser-step {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 16px;
}

.browser-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.browser-step p {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  color: var(--muted) !important;
  margin: 0 !important;
}

.more-info {
  margin-top: 20px;
  font-size: 0.95rem;
}

.more-info a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-sidebar {
    position: static;
  }

  /* Mobile: keep the TOC visible as a compact scrollable card (not hidden) */
  .legal-toc {
    display: block;
    max-height: 240px;
    overflow-y: auto;
    padding: 18px 18px;
  }

  .legal-card {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .legal-card h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .browser-settings {
    grid-template-columns: 1fr;
  }
}

/* ---------- Testimonials Slider (React mockup aligned) ---------- */
.t-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 54px auto 0;
  padding: 0 60px;
  box-sizing: border-box;
}

.t-slider-view {
  overflow: hidden;
  width: 100%;
  padding: 50px 0 24px;
}

.t-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.t-slide {
  flex-shrink: 0;
  width: 33.333%;
  padding: 0 14px;
  box-sizing: border-box;
  display: flex;
}

@media (max-width: 980px) {
  .t-slider-container {
    max-width: 860px;
  }
  .t-slide {
    width: 50%;
  }
}

@media (max-width: 640px) {
  .t-slider-container {
    max-width: 480px;
    padding: 0 40px;
  }
  .t-slide {
    width: 100%;
  }
}

.t-slide .tcard {
  width: 100%;
  position: relative;
  margin-top: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  padding: 46px 36px 36px;
  box-shadow: 0 16px 40px rgba(57, 111, 238, 0.06);
  border: 1px solid var(--line);
}

.t-slide .tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(57, 111, 238, 0.12);
  border-color: var(--blue-200);
}

.t-avatar-container {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(20, 40, 90, 0.12);
  overflow: hidden;
  background: #fff;
  z-index: 2;
  transition: transform 0.3s var(--ease);
}

.t-slide .tcard:hover .t-avatar-container {
  transform: translateX(-50%) scale(1.06);
}

.t-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-slide .stars {
  margin-top: 32px;
  color: var(--blue-500);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-align: center;
}

.t-slide p {
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--slate-700);
  flex-grow: 1;
  text-align: center;
}

.t-sep {
  width: 48px;
  height: 3px;
  background: rgba(57, 111, 238, 0.12);
  margin: 22px auto;
  border-radius: 2px;
}

.t-slide .who {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.t-slide .who b {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.t-slide .who span {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 4px;
}

.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--blue-600);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.t-arrow:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(57, 111, 238, 0.18);
}

.t-arrow.prev {
  left: 4px;
}

.t-arrow.next {
  right: 4px;
}

.t-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.t-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
}

.t-dot.active {
  background: var(--blue-600);
  transform: scale(1.2);
}

.t-dot.active::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-600);
  animation: dotPulse 1.5s infinite;
  box-sizing: border-box;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .t-slide {
    width: 100%;
  }

  .t-slider-container {
    padding: 0 20px;
    max-width: 800px;
  }

  .t-arrow.prev {
    left: -10px;
  }

  .t-arrow.next {
    right: -10px;
  }
}

@media (max-width: 680px) {
  .t-slide {
    width: 100%;
  }

  .t-slider-container {
    padding: 0 10px;
  }

  .t-arrow {
    display: none;
  }
}

/* Custom styling for inactive/neglected channels in the 'bad' comparison card */
.cmp.bad .cmp-channels {
  border-top: 1px solid rgba(180, 83, 79, 0.12);
}

.cmp.bad .cmp-channels-icons .c-tag {
  background: rgba(180, 83, 79, 0.05);
  color: #B4534F;
  border: 1px solid rgba(180, 83, 79, 0.12);
}

.cmp.bad .cmp-channels-icons .c-tag:hover {
  background: #FEF2F2;
  border-color: rgba(180, 83, 79, 0.25);
}

/* ---------- CREDIBILITY STATS SECTION ---------- */
.trust-stats-sec {
  padding: 100px 0;
  background: radial-gradient(100% 100% at 50% 0%, var(--navy-2) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trust-stats-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at 50% 50%, rgba(57, 111, 238, 0.15), transparent 70%);
  pointer-events: none;
}

.trust-stats-sec .section-head h2 {
  color: #fff;
}

.trust-stats-sec .section-head .lead {
  color: #9DB2DF;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tstat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.tstat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.tstat-card:hover::before {
  left: 150%;
}

.tstat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 111, 238, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(57, 111, 238, 0.1);
}

.tstat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tstat-icon.blue {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(57, 111, 238, 0.25);
}

.tstat-icon.green {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.tstat-icon.yellow {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.tstat-card .n {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.tstat-card .l {
  font-size: 0.94rem;
  color: #9DB2DF;
  margin-top: 8px;
  line-height: 1.4;
}

.brand-green {
  background: linear-gradient(100deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

@media (max-width: 980px) {
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- GOOGLE VISUAL HUB ---------- */
.google-opt-sec {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

@media (max-width: 980px) {
  .google-opt-sec {
    padding: 70px 0;
  }
}

@media (max-width: 580px) {
  .google-opt-sec {
    padding: 50px 0;
  }
}

.google-visual-hub {
  position: relative;
  max-width: 900px;
  height: 570px;
  margin: 50px auto 0;
}

.hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hub-line-path {
  fill: none;
  stroke: var(--blue-100);
  stroke-width: 2px;
  stroke-dasharray: 6 4;
}

.hub-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 45px rgba(57, 111, 238, 0.18), 0 0 0 12px rgba(57, 111, 238, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 1px solid var(--blue-100);
}

.hub-center-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.google-hub-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.google-hub-badge {
  background: var(--blue-600);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 99px;
  box-shadow: var(--sh-blue);
}

.hub-node {
  position: absolute;
  width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: var(--sh-sm);
  z-index: 2;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.hub-node:hover {
  transform: translateY(-4px);
  border-color: var(--blue-300);
  box-shadow: var(--sh-lg);
}

.hub-node .si {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.hub-node h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.hub-node p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

.hub-node.top-left {
  left: 20px;
  top: 20px;
}

.hub-node.bottom-left {
  left: 20px;
  bottom: 20px;
}

.hub-node.top-right {
  right: 20px;
  top: 20px;
}

.hub-node.bottom-right {
  right: 20px;
  bottom: 20px;
}

@media (max-width: 980px) {
  .google-visual-hub {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .hub-lines,
  .hub-center {
    display: none;
  }

  .hub-node {
    position: static;
    width: auto;
    max-width: none;
  }
}

@media (max-width: 580px) {
  .google-visual-hub {
    grid-template-columns: 1fr;
  }
}

/* ---------- TIMELINE PLACEHOLDERS ---------- */
.pstep-placeholder {
  width: 100%;
  height: 240px;
  border: 2px dashed rgba(57, 111, 238, 0.18);
  border-radius: 20px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  box-sizing: border-box;
  transition: all 0.3s var(--ease);
}

.pstep-placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pstep-placeholder svg {
  color: var(--blue-300);
  transition: transform 0.3s var(--ease);
}

.pstep:hover .pstep-placeholder {
  border-color: var(--blue-400);
  background: rgba(57, 111, 238, 0.02);
}

.pstep:hover .pstep-placeholder svg {
  transform: scale(1.1);
  color: var(--blue-500);
}

/* Provided step visuals (replace the "image à fournir" placeholders) */
/* How-it-works step screenshots — glow + shine */
.pstep-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 22px 50px rgba(57, 111, 238, 0.22),
    0 6px 16px rgba(20, 40, 90, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pstep:hover .pstep-visual {
  transform: translateY(-5px);
  box-shadow:
    0 30px 66px rgba(57, 111, 238, 0.34),
    0 8px 20px rgba(20, 40, 90, 0.12);
}

.pstep-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* shine sweep that glides across the screenshot */
.pstep-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: pstep-shine 5s ease-in-out infinite;
}

.pstep:nth-of-type(2) .pstep-visual::after { animation-delay: 1.2s; }
.pstep:nth-of-type(3) .pstep-visual::after { animation-delay: 2.4s; }
.pstep:nth-of-type(4) .pstep-visual::after { animation-delay: 3.6s; }

@keyframes pstep-shine {
  0% { left: -80%; }
  40%, 100% { left: 140%; }
}

@media (prefers-reduced-motion: reduce) {
  .pstep-visual::after { animation: none; opacity: 0; }
}

/* ============================================================
   Custom SVG/CSS Step Illustrations (Client: No AI Icons)
   ============================================================ */
.step-illustration {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  background: rgba(57, 111, 238, 0.01);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.4s var(--ease);
}
.pstep:hover .step-illustration {
  border-color: rgba(57, 111, 238, 0.18);
  background: rgba(57, 111, 238, 0.03);
}

/* Base Node Styling (White Squircles) */
.step-node {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-node.large {
  width: 96px;
  height: 96px;
  border-radius: 22px;
}
.step-node.small {
  width: 60px;
  height: 60px;
  border-radius: 14px;
}

/* Glowing Shadows */
.blue-glow {
  box-shadow: 0 10px 24px rgba(57, 111, 238, 0.06), 0 0 15px rgba(57, 111, 238, 0.02);
}
.green-glow {
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.06), 0 0 15px rgba(16, 185, 129, 0.02);
}
.yellow-glow {
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.06), 0 0 15px rgba(245, 158, 11, 0.02);
}

/* Hover Elevation and Glowing Boosts */
.pstep:hover .step-node {
  border-color: var(--line);
}
.pstep:hover .blue-glow {
  box-shadow: 0 16px 36px rgba(57, 111, 238, 0.15), 0 0 20px rgba(57, 111, 238, 0.06);
  border-color: rgba(57, 111, 238, 0.25);
}
.pstep:hover .green-glow {
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.15), 0 0 20px rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.25);
}
.pstep:hover .yellow-glow {
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.15), 0 0 20px rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.25);
}

/* Icon Colors */
.step-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}
.step-icon-wrapper.blue { color: var(--blue-600); }
.step-icon-wrapper.green { color: var(--green-600); }
.step-icon-wrapper.yellow { color: var(--yellow-600); }

.pstep:hover .step-node .step-icon-wrapper {
  transform: scale(1.08);
}

/* Layout 1: Connect Flow */
.step-connect {
  gap: 48px;
}
.step-connect-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 40px;
  z-index: 1;
  pointer-events: none;
}
.step-connect-line path {
  stroke: var(--blue-200);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 6 5;
  animation: stepDashFlow 1.2s linear infinite;
  transition: stroke 0.3s;
}
.pstep:hover .step-connect-line path {
  stroke: var(--blue-400);
}
@keyframes stepDashFlow {
  to {
    stroke-dashoffset: -22;
  }
}
.pstep:hover .step-connect .step-node:nth-child(1) {
  transform: translateX(-4px) translateY(-2px);
}
.pstep:hover .step-connect .step-node:nth-child(3) {
  transform: translateX(4px) translateY(-2px);
}

/* Layout 2: Editorial Support / Content Group */
.step-editorial {
  gap: 0;
}
.step-editorial .step-node:nth-child(1) {
  margin-right: -10px;
  margin-top: 20px;
  z-index: 2;
}
.step-editorial .step-node:nth-child(2) {
  z-index: 3;
}
.step-editorial .step-node:nth-child(3) {
  margin-left: -10px;
  margin-top: 20px;
  z-index: 2;
}

.pstep:hover .step-editorial .step-node:nth-child(1) {
  transform: translateX(-8px) translateY(6px) rotate(-4deg);
}
.pstep:hover .step-editorial .step-node:nth-child(2) {
  transform: translateY(-6px) scale(1.03);
}
.pstep:hover .step-editorial .step-node:nth-child(3) {
  transform: translateX(8px) translateY(6px) rotate(4deg);
}

/* Layout 3: Dashboard Publish */
.pstep:hover .step-publish .step-node {
  transform: translateY(-6px) scale(1.02);
}

/* Layout 4: Measurement Group */
.step-measure {
  gap: 0;
}
.step-measure .step-node:nth-child(1) {
  margin-right: -10px;
  margin-top: 20px;
  z-index: 2;
}
.step-measure .step-node:nth-child(2) {
  z-index: 3;
}
.step-measure .step-node:nth-child(3) {
  margin-left: -10px;
  margin-top: 20px;
  z-index: 2;
}

.pstep:hover .step-measure .step-node:nth-child(1) {
  transform: translateX(-8px) translateY(6px) rotate(-4deg);
}
.pstep:hover .step-measure .step-node:nth-child(2) {
  transform: translateY(-6px) scale(1.03);
}
.pstep:hover .step-measure .step-node:nth-child(3) {
  transform: translateX(8px) translateY(6px) rotate(4deg);
}

/* ============================================================
   Stats Section Card Icon Hover Animations
   ============================================================ */
.tstat-card:hover .tstat-icon svg,
.tstat-card:hover .tstat-icon img {
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: center;
}
.tstat-card:nth-child(1):hover .tstat-icon svg,
.tstat-card:nth-child(1):hover .tstat-icon img {
  animation-name: floatHome;
}
.tstat-card:nth-child(2):hover .tstat-icon svg,
.tstat-card:nth-child(2):hover .tstat-icon img {
  animation-name: gazeEye;
}
.tstat-card:nth-child(3):hover .tstat-icon svg,
.tstat-card:nth-child(3):hover .tstat-icon img,
.tstat-card:nth-child(6):hover .tstat-icon svg,
.tstat-card:nth-child(6):hover .tstat-icon img {
  animation-name: swayPeople;
}
.tstat-card:nth-child(4):hover .tstat-icon svg,
.tstat-card:nth-child(4):hover .tstat-icon img {
  animation-name: flyPlane;
}
.tstat-card:nth-child(5):hover .tstat-icon svg,
.tstat-card:nth-child(5):hover .tstat-icon img {
  animation-name: clickWand;
}
.tstat-card:nth-child(7):hover .tstat-icon svg,
.tstat-card:nth-child(7):hover .tstat-icon img {
  animation-name: pulseShield;
}
.tstat-card:nth-child(8):hover .tstat-icon svg,
.tstat-card:nth-child(8):hover .tstat-icon img {
  animation-name: shakeCalendar;
}

@keyframes floatHome {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes gazeEye {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes swayPeople {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}
@keyframes flyPlane {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -4px); }
}
@keyframes clickWand {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.88) rotate(-4deg); }
}
@keyframes pulseShield {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes shakeCalendar {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

/* Orbit Node Hover Interactions */
.stile img,
.stile svg {
  transition: transform 0.3s var(--ease);
}
.stile-wrap:hover .stile img,
.stile-wrap:hover .stile svg {
  transform: scale(1.15) rotate(4deg);
}

/* Features Section Custom Icon Transitions & Hover Animations */
.feat-ico svg,
.feat-ico img {
  transition: transform 0.4s var(--ease);
}

/* Card 2 (Folder): Tilt left and scale on hover */
.feat-card-pages:hover .feat-ico svg,
.feat-card-pages:hover .feat-ico img {
  transform: scale(1.15) rotate(-10deg);
}

/* Card 3 (Heart): Heartbeat pulsing animation on hover */
.feat-card-publications:hover .feat-ico svg,
.feat-card-publications:hover .feat-ico img {
  animation: featHeartBeat 1.2s infinite ease-in-out;
}

/* Card 4 (Content): Bounce and scale on hover */
.feat-card-journalists:hover .feat-ico svg,
.feat-card-journalists:hover .feat-ico img {
  transform: scale(1.15) translateY(-3px);
}

/* Card 5 (Website): Slight tilt right and scale on hover */
.feat-card-website:hover .feat-ico svg,
.feat-card-website:hover .feat-ico img {
  transform: scale(1.15) rotate(15deg);
}

/* Card 6 (Statistics): grow/scale up and translateY on hover */
.feat-card-statistics:hover .feat-ico svg,
.feat-card-statistics:hover .feat-ico img {
  transform: scale(1.15) translateY(-4px);
}

@keyframes featHeartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.2); }
  28% { transform: scale(1); }
  42% { transform: scale(1.15); }
  70% { transform: scale(1); }
}

/* Showcase Site Section Custom Icon Transitions & Hover Animations */
.sc-ico svg,
.sc-ico img {
  transition: transform 0.4s var(--ease);
}

/* Item 1 (Setting): Smooth 180deg spin on hover */
.sc-feat:hover .sc-ico svg.sc-setting-svg,
.sc-feat:hover .sc-ico img.sc-setting-img {
  transform: rotate(180deg);
}

/* Item 2 (Website): Slow 15deg rotation and scale on hover */
.sc-feat:hover .sc-ico svg.sc-website-svg,
.sc-feat:hover .sc-ico img.sc-website-img {
  transform: scale(1.15) rotate(15deg);
}

/* Item 3 (Filter): Slight scale and rotate-tilt on hover */
.sc-feat:hover .sc-ico svg.sc-filter-svg,
.sc-feat:hover .sc-ico img.sc-filter-img {
  transform: scale(1.12) rotate(-8deg);
}

/* Item 4 (Arrow): Pulsing translate click-like motion on hover */
.sc-feat:hover .sc-ico svg.sc-arrow-svg,
.sc-feat:hover .sc-ico img.sc-arrow-img {
  animation: scArrowClick 0.6s ease-in-out;
}

@keyframes scArrowClick {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(0.85) translate(-2px, -2px); }
  100% { transform: scale(1) translate(0, 0); }
}

/* FAQ Section Custom Eyebrow Icon Transition & Wiggle Hover Animation */
.eyebrow svg.faq-eyebrow-svg {
  transition: transform 0.3s var(--ease);
}
.eyebrow:hover svg.faq-eyebrow-svg {
  animation: faqBubbleWiggle 0.6s ease-in-out;
}

@keyframes faqBubbleWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-12deg) scale(1.15); }
  75% { transform: rotate(12deg) scale(1.15); }
}

/* Google visual hub node icon transitions & animations */
.hub-node .si svg,
.hub-node .si img {
  transition: transform 0.4s var(--ease);
}

/* File icon (top-left): tilt left and scale on hover */
.hub-node.top-left:hover .si svg.hub-file-svg,
.hub-node.top-left:hover .si img.hub-file-img {
  transform: scale(1.15) rotate(-10deg);
}

/* News icon (bottom-left): scale and slight upward slide on hover */
.hub-node.bottom-left:hover .si svg.hub-news-svg,
.hub-node.bottom-left:hover .si img.hub-news-img {
  transform: scale(1.15) translateY(-2px);
}

/* Review icon (top-right): heartbeat pulsing review on hover */
.hub-node.top-right:hover .si svg.hub-review-svg,
.hub-node.top-right:hover .si img.hub-review-img {
  animation: hubReviewPulse 1.2s infinite ease-in-out;
}

/* Stats icon (bottom-right): grow/scale up and rotate-tilt right on hover */
.hub-node.bottom-right:hover .si svg.hub-stats-svg,
.hub-node.bottom-right:hover .si img.hub-stats-img {
  transform: scale(1.15) rotate(12deg);
}

@keyframes hubReviewPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2) rotate(5deg); }
}

/* Results Section Rocket Eyebrow Icon Transition & Launch Hover Animation */
.eyebrow svg.results-eyebrow-svg {
  transition: transform 0.3s var(--ease);
}
.eyebrow:hover svg.results-eyebrow-svg {
  animation: rocketLaunch 0.8s ease-in-out;
}

@keyframes rocketLaunch {
  0% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(1px, -1px) scale(0.9); }
  60% { transform: translate(-2px, -3px) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Mobile-specific float animations with built-in scale */
@keyframes floatMobileLeft {
  0%, 100% { transform: translate(0, 0) scale(0.78); }
  50% { transform: translate(6px, -10px) scale(0.82); }
}

@keyframes floatMobileRight {
  0%, 100% { transform: translate(0, 0) scale(0.78); }
  50% { transform: translate(-6px, -10px) scale(0.82); }
}

/* ============================================================
   Promo ID Boost & PLV — Showcase Sections
   ============================================================ */

/* ---------- Section Backgrounds ---------- */
.promo-boost-sec {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.plv-sec {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #EAF0FB 100%);
  overflow: hidden;
}

/* ---------- Split Layout Grid ---------- */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.promo-split-reverse {
  grid-template-columns: 1.15fr 1fr;
}

/* ---------- Text Column ---------- */
.promo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.promo-text .eyebrow {
  align-self: flex-start;
  margin-bottom: 20px;
}

.promo-text h2 {
  font-size: clamp(1.8rem, 1rem + 2.4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.promo-lead {
  max-width: 480px;
  margin-bottom: 24px;
}

.promo-feat-ico {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.promo-feat-ico:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

/* ---------- Feature Checklist ---------- */
.promo-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.promo-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.45;
}

.promo-checks li .tick {
  color: var(--green-600);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ---------- CTA Button ---------- */
.promo-cta {
  align-self: flex-start;
}

/* ---------- Visual Column ---------- */
.promo-visual {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Stacked Screenshot Cards ---------- */
.promo-screens {
  position: relative;
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
}

.promo-screen {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 40, 90, 0.18), 0 10px 24px rgba(20, 40, 90, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease), opacity 0.8s var(--ease);
}

.promo-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* Back card — slightly tilted and offset */
.promo-screen-back {
  transform: rotate(-4deg) translateX(-18px) translateY(12px) scale(0.92);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease), opacity 0.8s var(--ease), z-index 0s step-end 0.4s;
}

/* Front card — slightly tilted opposite direction */
.promo-screen-front {
  position: relative;
  z-index: 2;
  transform: rotate(2deg) translateX(14px) translateY(-8px);
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease), opacity 0.8s var(--ease), z-index 0s step-start;
}

/* Swapped state styles for Promo ID */
.promo-screens.swapped .promo-screen-front {
  transform: rotate(-4deg) translateX(-18px) translateY(12px) scale(0.92);
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease), opacity 0.8s var(--ease), z-index 0s step-end 0.4s;
}

.promo-screens.swapped .promo-screen-back {
  transform: rotate(2deg) translateX(14px) translateY(-8px);
  z-index: 2;
  opacity: 1;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease), opacity 0.8s var(--ease), z-index 0s step-start;
}

/* Hover lift effect */
.promo-screens:not(.swapped):hover .promo-screen-front {
  transform: rotate(1deg) translateX(14px) translateY(-16px);
  box-shadow: 0 40px 90px rgba(20, 40, 90, 0.24), 0 16px 32px rgba(57, 111, 238, 0.12);
}

.promo-screens:not(.swapped):hover .promo-screen-back {
  transform: rotate(-3deg) translateX(-22px) translateY(8px) scale(0.93);
  opacity: 0.85;
}

.promo-screens.swapped:hover .promo-screen-back {
  transform: rotate(1deg) translateX(14px) translateY(-16px);
  box-shadow: 0 40px 90px rgba(20, 40, 90, 0.24), 0 16px 32px rgba(57, 111, 238, 0.12);
}

.promo-screens.swapped:hover .promo-screen-front {
  transform: rotate(-3deg) translateX(-22px) translateY(8px) scale(0.93);
  opacity: 0.85;
}

/* PLV portrait orientation cards — slightly taller aspect */
.promo-screens-plv {
  max-width: 550px;
}

/* Remove white border & white background for PLV cards */
.promo-screens-plv .promo-screen {
  border: none;
  background: transparent;
}

.promo-screens-plv .promo-screen-back {
  transform: rotate(4deg) translateX(18px) translateY(14px) scale(0.9);
}

.promo-screens-plv .promo-screen-front {
  transform: rotate(-2deg) translateX(-10px) translateY(-6px);
}

/* Swapped state styles for PLV */
.promo-screens-plv.swapped .promo-screen-front {
  transform: rotate(4deg) translateX(18px) translateY(14px) scale(0.9);
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease), opacity 0.8s var(--ease), z-index 0s step-end 0.4s;
}

.promo-screens-plv.swapped .promo-screen-back {
  transform: rotate(-2deg) translateX(-10px) translateY(-6px);
  z-index: 2;
  opacity: 1;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease), opacity 0.8s var(--ease), z-index 0s step-start;
}

/* PLV Hover effects */
.promo-screens-plv:not(.swapped):hover .promo-screen-front {
  transform: rotate(-1deg) translateX(-10px) translateY(-14px);
  box-shadow: 0 40px 90px rgba(20, 40, 90, 0.24), 0 16px 32px rgba(57, 111, 238, 0.12);
}

.promo-screens-plv:not(.swapped):hover .promo-screen-back {
  transform: rotate(3deg) translateX(22px) translateY(10px) scale(0.91);
  opacity: 0.85;
}

.promo-screens-plv.swapped:hover .promo-screen-back {
  transform: rotate(-1deg) translateX(-10px) translateY(-14px);
  box-shadow: 0 40px 90px rgba(20, 40, 90, 0.24), 0 16px 32px rgba(57, 111, 238, 0.12);
}

.promo-screens-plv.swapped:hover .promo-screen-front {
  transform: rotate(3deg) translateX(22px) translateY(10px) scale(0.91);
  opacity: 0.85;
}

/* ---------- Floating Accent Badges ---------- */
.promo-badge {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 12px 32px rgba(20, 40, 90, 0.16);
  white-space: nowrap;
  pointer-events: none;
}

/* Discount badge — bold red/coral */
.promo-badge-discount {
  top: 10%;
  right: -6%;
  background: linear-gradient(135deg, #FF6B8A, #E11D48);
  color: #fff;
  font-size: 1.3rem;
  padding: 12px 22px;
  border-radius: 16px;
}

/* Percent badge — bold blue */
.promo-badge-percent {
  bottom: 14%;
  left: -4%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-size: 1.2rem;
  padding: 11px 20px;
  border-radius: 14px;
}

/* Channel badge — soft white */
.promo-badge-channel {
  bottom: 4%;
  right: 2%;
  background: #fff;
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
  font-size: 0.82rem;
  font-weight: 600;
}

.promo-badge-channel svg {
  color: #1877F2;
}

/* A4 format badge — green accent */
.promo-badge-a4 {
  top: 8%;
  left: -4%;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  font-size: 0.88rem;
  padding: 10px 18px;
}

.promo-badge-a4 svg {
  stroke: #fff;
}

/* Print badge — white with green accent */
.promo-badge-print {
  bottom: 10%;
  right: -2%;
  background: #fff;
  color: var(--green-600);
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-size: 0.82rem;
  font-weight: 600;
}

.promo-badge-print svg {
  stroke: var(--green-600);
}

/* ---------- Tablet (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .promo-boost-sec,
  .plv-sec {
    padding: 80px 0;
  }

  .promo-split,
  .promo-split-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .promo-text .eyebrow {
    align-self: center;
  }

  .promo-text h2 {
    text-align: center;
  }

  .promo-lead {
    max-width: 100%;
    margin-inline: auto;
  }

  .promo-feat-ico {
    margin-inline: auto;
  }

  .promo-checks {
    align-items: center;
  }

  .promo-checks li {
    text-align: left;
  }

  .promo-cta {
    align-self: center;
  }

  /* On tablet, reorder so text comes first, visual second */
  .promo-split-reverse .promo-visual {
    order: 2;
  }

  .promo-split-reverse .promo-text {
    order: 1;
  }

  .promo-visual {
    min-height: 580px;
  }

  .promo-screens {
    max-width: 480px;
  }

  .promo-screens-plv {
    max-width: 480px;
  }

  .promo-screens.swapped .promo-screen-front {
    transform: rotate(-4deg) translateX(-18px) translateY(12px) scale(0.92);
  }
  .promo-screens.swapped .promo-screen-back {
    transform: rotate(2deg) translateX(14px) translateY(-8px);
  }
  .promo-screens-plv.swapped .promo-screen-front {
    transform: rotate(4deg) translateX(18px) translateY(14px) scale(0.9);
  }
  .promo-screens-plv.swapped .promo-screen-back {
    transform: rotate(-2deg) translateX(-10px) translateY(-6px);
  }

  /* Reduce badge sizes on tablet */
  .promo-badge-discount {
    font-size: 1.1rem;
    padding: 10px 18px;
    right: 0;
  }

  .promo-badge-percent {
    font-size: 1rem;
    padding: 9px 16px;
    left: 0;
  }
}

/* ---------- Mobile (≤ 768px) ---------- */
@media (max-width: 768px) {
  .promo-boost-sec,
  .plv-sec {
    padding: 60px 0;
  }

  .promo-split,
  .promo-split-reverse {
    gap: 36px;
  }

  .promo-text h2 {
    font-size: 1.6rem;
  }

  .promo-lead {
    font-size: 1rem;
  }

  .promo-visual {
    min-height: 480px;
  }

  .promo-screens {
    max-width: 370px;
  }

  .promo-screens-plv {
    max-width: 390px;
  }

  .promo-screen-back {
    transform: rotate(-3deg) translateX(-10px) translateY(8px) scale(0.93);
  }

  .promo-screen-front {
    transform: rotate(1.5deg) translateX(8px) translateY(-4px);
  }

  .promo-screens-plv .promo-screen-back {
    transform: rotate(3deg) translateX(10px) translateY(8px) scale(0.92);
  }

  .promo-screens-plv .promo-screen-front {
    transform: rotate(-1.5deg) translateX(-6px) translateY(-4px);
  }

  /* Swapped mobile */
  .promo-screens.swapped .promo-screen-front {
    transform: rotate(-3deg) translateX(-10px) translateY(8px) scale(0.93);
  }
  .promo-screens.swapped .promo-screen-back {
    transform: rotate(1.5deg) translateX(8px) translateY(-4px);
  }
  .promo-screens-plv.swapped .promo-screen-front {
    transform: rotate(3deg) translateX(10px) translateY(8px) scale(0.92);
  }
  .promo-screens-plv.swapped .promo-screen-back {
    transform: rotate(-1.5deg) translateX(-6px) translateY(-4px);
  }

  /* Reposition badges for mobile */
  .promo-badge-discount {
    font-size: 1rem;
    padding: 8px 14px;
    top: 5%;
    right: -2%;
    border-radius: 12px;
  }

  .promo-badge-percent {
    font-size: 0.95rem;
    padding: 8px 14px;
    bottom: 8%;
    left: -2%;
    border-radius: 12px;
  }

  .promo-badge-channel {
    display: none;
  }

  .promo-badge-a4 {
    top: 5%;
    left: -2%;
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .promo-badge-print {
    bottom: 6%;
    right: -2%;
    font-size: 0.78rem;
    padding: 7px 12px;
  }

  .promo-checks li {
    font-size: 0.88rem;
  }

  .promo-feat-ico {
    width: 58px;
    height: 58px;
  }
}

/* ---------- Pricing Details Toggle & Footer Styles ---------- */
.p-feats.collapsed li:nth-child(n+5) {
  display: none;
}

.btn-toggle-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 6px;
  cursor: pointer;
  margin: 20px auto 0;
  padding: 8px 16px;
  border-radius: 99px;
  transition: all 0.2s var(--ease);
  width: auto;
}

/* Facebook Card (Dark) Toggle Button styling */
.pcard:not(.highlight) .btn-toggle-details {
  color: #9DB2DF;
}

.pcard:not(.highlight) .btn-toggle-details:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Instagram Card (Light) Toggle Button styling */
.pcard.highlight .btn-toggle-details {
  color: var(--blue-600);
}

.pcard.highlight .btn-toggle-details:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.btn-toggle-details .toggle-arrow {
  transition: transform 0.3s var(--ease);
}

.btn-toggle-details[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

.p-foot-info {
  margin-top: 24px;
  margin-bottom: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.p-foot-text {
  font-size: 0.88rem;
  line-height: 1.4;
  margin: 0;
}

.pcard:not(.highlight) .p-foot-text {
  color: #C7D4EE;
}

.pcard:not(.highlight) .p-foot-text.font-small {
  color: #9DB2DF;
  font-size: 0.82rem;
  opacity: 0.85;
}

.pcard.highlight .p-foot-text {
  color: var(--slate-600);
}

.pcard.highlight .p-foot-text.font-small {
  color: var(--muted);
  font-size: 0.82rem;
}

