:root {
  --blue: #0868ff;
  --purple: #6a3cf4;
  --pink: #ff2c83;
  --ink: #09090d;
  --muted: #62626c;
  --surface: #ffffff;
  --surface-soft: #f7f7f9;
  --line: #dedee5;
  --gradient: linear-gradient(105deg, var(--blue) 0%, var(--purple) 53%, var(--pink) 100%);
  --shadow: 0 14px 40px rgba(24, 24, 35, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 120px), 1160px);
  margin-inline: auto;
}

.announcement {
  min-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 18px;
  color: #fff;
  background: linear-gradient(90deg, #066cff 0%, #6954f4 48%, #ff2b80 100%);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.announcement__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.11);
  flex: 0 0 auto;
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 48% 47%, rgba(56, 42, 98, .09), transparent 32%),
    #030305;
}

.navbar {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand__mark {
  width: 44px;
  height: 35px;
}

.brand__name {
  font-size: 25px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 12px;
  font-weight: 500;
}

.nav-links a,
.footer__column a {
  transition: color .2s ease, opacity .2s ease;
}

.nav-links a:hover,
.footer__column a:hover {
  color: #c3b8ff;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.button {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  background-clip: padding-box;
  transition: transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button svg {
  width: 16px;
  height: 16px;
}

.button--compact {
  min-height: 36px;
  padding: 9px 18px;
  border-radius: 14px;
  font-size: 11px;
}

.button--dark {
  color: #fff;
  background: #08080a;
  border-color: #74747c;
}

.button--gradient {
  color: #fff;
  background: var(--gradient);
}

.button--light {
  color: #0a0a0d;
  background: #fff;
  border-color: #f0f0f2;
  box-shadow: 0 5px 14px rgba(0,0,0,.14);
}

.button--outline-light {
  color: #fff;
  background: transparent;
  border-color: #72727b;
}

.button--outline-dark {
  min-height: 34px;
  color: #111116;
  background: #fff;
  border-color: #3a3a42;
  border-radius: 16px;
}

.button--wide {
  width: 100%;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero__main {
  padding: 8px 0 14px;
  text-align: center;
}

.hero h1 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(48px, 6.55vw, 67px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -0.058em;
}

.hero h1 > span {
  display: block;
}

.hero h1 strong {
  display: inline-block;
  margin: 0 7px;
  padding: 2px 18px 5px;
  color: #fff;
  background: var(--gradient);
  border-radius: 28px;
  font-weight: inherit;
  letter-spacing: -0.045em;
}

.hero__main > p {
  max-width: 570px;
  margin: 17px auto 0;
  color: #bdbdc5;
  font-size: 13.5px;
  line-height: 1.45;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 19px;
}

.hero__buttons .button {
  min-width: 158px;
}

.trusted {
  border-top: 1px solid #2b2b30;
}

.trusted__inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: 175px repeat(7, minmax(55px, 1fr)) 60px;
  align-items: center;
  gap: 12px;
}

.trusted__intro {
  padding-right: 18px;
  color: #b9b9c0;
  border-right: 1px solid #4a4a50;
  font-size: 10.5px;
  line-height: 1.45;
}

.station {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #efeff2;
  text-align: center;
  line-height: 1;
}

.station strong {
  font-size: 16px;
  letter-spacing: -.04em;
}

.station small {
  margin-top: 2px;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: .08em;
}

.station--nova strong,
.station--horizon strong,
.station--riviera strong,
.station--vibes strong {
  font-size: 13px;
  letter-spacing: .01em;
}

.station--pulse strong {
  font-size: 16px;
  font-weight: 400;
}

.station--urban strong {
  font-size: 15px;
  font-weight: 400;
}

.station--more {
  min-height: 38px;
  padding: 4px 8px;
  background: #17171b;
  border-radius: 8px;
}

.station--more strong {
  font-size: 13px;
}

.station--more small {
  font-weight: 500;
  letter-spacing: 0;
}

.section-light,
.offers,
.process {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.approach {
  padding: 22px 0 17px;
  background: #fff;
  border-bottom: 1px solid #e2e2e7;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: end;
  gap: 30px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #5e34f5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5e34f5;
}

.section-heading h2,
.offers__intro h2,
.process__intro h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -8px;
  width: 170px;
  height: 3px;
  background: var(--gradient);
  border-radius: 999px;
  transform: rotate(-2deg);
}

.section-heading__aside {
  margin: 0 0 2px;
  color: #222229;
  font-size: 10.5px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 18px;
}

.feature-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 53px 1fr;
  gap: 13px;
  padding: 16px;
  background: rgba(255,255,255,.87);
  border: 1px solid #f0f0f3;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.feature-card__icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(91, 58, 241, .22);
}

.feature-card__icon svg {
  width: 27px;
  height: 27px;
}

.feature-card h3 {
  margin: 8px 0 0;
  font-size: 16px;
  letter-spacing: -.025em;
}

.mini-rule {
  width: 20px;
  height: 2px;
  display: block;
  margin: 11px 0 7px;
  background: var(--gradient);
  border-radius: 999px;
}

.feature-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.48;
}

.offers {
  padding: 14px 0 10px;
  background:
    radial-gradient(circle at 70% 36%, rgba(106,60,244,.035), transparent 30%),
    #fbfbfc;
  border-bottom: 1px solid #e2e2e7;
}

.offers__layout {
  display: grid;
  grid-template-columns: 195px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.offers__intro {
  padding-top: 9px;
}

.offers__intro .eyebrow {
  margin-bottom: 11px;
}

.offers__intro h2,
.process__intro h2 {
  font-size: 24px;
  line-height: 1.13;
}

.offers__intro > p:last-child {
  margin: 16px 0 0;
  color: #393941;
  font-size: 10.3px;
  line-height: 1.7;
}

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

.price-card {
  position: relative;
  min-height: 238px;
  padding: 12px 18px 8px;
  background: rgba(255,255,255,.94);
  border: 1.5px solid;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(31,31,45,.035);
}

.price-card--essential {
  border-color: #8291ff;
}

.price-card--accompanied {
  border-color: #ff73ae;
}

.price-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-logo {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--gradient);
  border-radius: 10px;
}

.mini-logo svg {
  width: 28px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.price-card__title h3 {
  margin: 0;
  font-size: 14.5px;
  letter-spacing: -.025em;
}

.price-card__title h3 span {
  color: var(--blue);
}

.price-card--accompanied .price-card__title h3 span {
  color: var(--pink);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 15px;
  padding: 6px 10px;
  color: #fff;
  background: var(--pink);
  border-radius: 7px;
  font-size: 7px;
  font-weight: 800;
}

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

.price strong {
  font-size: 39px;
  line-height: 1;
  letter-spacing: -.055em;
}

.price span {
  font-size: 12px;
}

.price-card__lead {
  margin: 5px 0 8px;
  font-size: 9px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 9px;
  margin: 0 0 9px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8.6px;
  line-height: 1.15;
}

.feature-list svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: var(--blue);
}

.price-card--accompanied .feature-list svg {
  color: var(--pink);
}

.price-card .button {
  min-height: 30px;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 10px;
}

.pro-offer {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding: 7px 12px 7px 17px;
  background: #fff;
  border: 1px solid #eeeef2;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20,20,30,.035);
}

.pro-offer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pro-offer .mini-logo {
  width: 35px;
  height: 35px;
}

.pro-offer h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: -.015em;
}

.pro-offer p {
  margin: 4px 0 0;
  color: #55555d;
  font-size: 8.5px;
}

.pro-offer .button {
  min-width: 151px;
  padding: 8px 15px;
  font-size: 9px;
}

.fair-use {
  margin: 5px 0 0;
  color: #888890;
  font-size: 7.5px;
  text-align: center;
}

.process {
  padding: 14px 0 8px;
  background:
    radial-gradient(circle at 82% 85%, rgba(255,44,131,.035), transparent 28%),
    #fff;
}

.process__top {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.process__intro {
  padding-top: 5px;
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
  align-items: center;
}

.step-card {
  min-height: 112px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #efeff2;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20,20,30,.04);
}

.step-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-card__top span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--step-color);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.step-card__top span::first-line {
  color: #fff;
}

.step-card__top svg {
  width: 39px;
  height: 39px;
}

.step-card--blue { --step-color: var(--blue); color: var(--blue); }
.step-card--purple { --step-color: #6d3df2; color: #6d3df2; }
.step-card--violet { --step-color: #8d3ded; color: #8d3ded; }
.step-card--pink { --step-color: var(--pink); color: var(--pink); }

.step-card h3 {
  margin: 4px 0 5px;
  color: #111116;
  font-size: 12px;
}

.step-card p {
  margin: 0;
  color: #222228;
  font-size: 7.7px;
  line-height: 1.4;
}

.step-arrow {
  width: 20px;
  height: 20px;
  color: #111116;
}

.proof-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 9px;
  margin-top: 9px;
}

.testimonial,
.premium-cta {
  min-height: 141px;
  margin: 0;
  border-radius: 15px;
}

.testimonial {
  position: relative;
  padding: 15px 32px;
  background: #fff;
  border: 1px solid #dcdce2;
  box-shadow: 0 10px 28px rgba(20,20,30,.045);
}

.testimonial blockquote {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: -.025em;
}

.testimonial blockquote {
  position: relative;
  padding-left: 18px;
}

.testimonial blockquote::before {
  content: "“";
  position: absolute;
  left: -2px;
  top: -8px;
  color: #6b35f4;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.testimonial__stars {
  margin-top: 8px;
  color: #6939f5;
  font-size: 11px;
  letter-spacing: 2px;
}

.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 5px;
}

.testimonial figcaption strong {
  font-size: 10px;
}

.testimonial figcaption span {
  color: #73737b;
  font-size: 7.5px;
}

.testimonial__logo {
  position: absolute;
  right: 20px;
  bottom: 13px;
  width: 38px;
  height: 31px;
}

.premium-cta {
  display: flex;
  align-items: center;
  padding: 12px 38px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 32%, rgba(255, 45, 131, .42), transparent 42%),
    linear-gradient(105deg, #020313 0%, #09061b 54%, #3d0b35 100%);
  box-shadow: 0 14px 32px rgba(13, 3, 33, .15);
}

.premium-cta__content {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 13px;
  align-items: start;
}

.premium-cta__logo {
  width: 44px;
  height: 36px;
}

.premium-cta h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.premium-cta p {
  max-width: 420px;
  margin: 7px 0 0;
  color: #d0ccd9;
  font-size: 8.6px;
  line-height: 1.45;
}

.premium-cta__buttons {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}

.premium-cta__buttons .button {
  min-width: 145px;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 9.5px;
}

.footer {
  padding: 14px 0 5px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(33, 46, 100, .2), transparent 30%),
    #05060a;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.45fr .62fr .9fr .98fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.brand--footer .brand__mark {
  width: 42px;
}

.brand--footer .brand__name {
  font-size: 24px;
}

.footer__about > p {
  max-width: 220px;
  margin: 9px 0 0;
  color: #c4c4cc;
  font-size: 7.9px;
  line-height: 1.5;
}

.socials {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
}

.socials a {
  min-width: 16px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer__column h3,
.footer-contact h3 {
  margin: 4px 0 5px;
  font-size: 11px;
}

.footer__column a {
  color: #c7c7ce;
  font-size: 9px;
}

.footer-contact {
  padding: 14px 16px;
  background: rgba(255,255,255,.015);
  border: 1px solid transparent;
  border-radius: 16px;
  background-image:
    linear-gradient(#090a0f, #090a0f),
    linear-gradient(115deg, #0e65ff, #8d40ef 55%, #ff4a91);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.footer-contact h3 {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.35;
}

.footer-contact .button {
  min-height: 35px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 9px;
}

.footer__bottom {
  min-height: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  margin-top: 8px;
  padding-top: 5px;
  color: #aaaab3;
  border-top: 1px solid #2d2d33;
  font-size: 7.5px;
}

.footer__bottom a {
  justify-self: center;
}

.footer__bottom span:last-child {
  justify-self: end;
}

@media (max-width: 930px) {
  .container {
    width: min(calc(100% - 64px), 1160px);
  }

  .nav-links {
    gap: 24px;
  }

  .trusted__inner {
    grid-template-columns: 150px repeat(7, minmax(48px, 1fr)) 55px;
    gap: 7px;
  }

  .feature-card {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .offers__layout,
  .process__top {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .price-card {
    padding-inline: 14px;
  }

  .feature-list {
    gap: 6px;
  }

  .feature-list li {
    font-size: 8px;
  }

  .step-card {
    padding-inline: 10px;
  }

  .premium-cta {
    padding-inline: 28px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), 680px);
  }

  .announcement {
    font-size: 9px;
  }

  .navbar {
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    color: #fff;
    background: transparent;
    border: 1px solid #55555d;
    border-radius: 12px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: 20;
    top: 92px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(9,9,13,.98);
    border: 1px solid #3c3c43;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,.4);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a:not(.button) {
    padding: 8px 4px;
    border-bottom: 1px solid #29292f;
    font-size: 14px;
  }

  .hero__main {
    padding: 30px 0 38px;
  }

  .hero h1 {
    font-size: clamp(41px, 10vw, 58px);
    line-height: 1;
  }

  .hero h1 > span {
    display: inline;
  }

  .hero h1 strong {
    margin-block: 5px;
  }

  .hero__main > p {
    font-size: 13px;
  }

  .trusted {
    overflow-x: auto;
  }

  .trusted__inner {
    width: max-content;
    min-width: 860px;
    padding-inline: 16px;
  }

  .section-heading--split,
  .offers__layout,
  .process__top,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .section-heading__aside {
    margin-top: 12px;
  }

  .section-heading h2 br {
    display: none;
  }

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

  .feature-card {
    min-height: auto;
  }

  .offers,
  .approach,
  .process {
    padding-block: 38px;
  }

  .offers__intro {
    max-width: 500px;
    padding-top: 0;
  }

  .offers__intro h2,
  .process__intro h2 {
    font-size: 30px;
  }

  .offers__intro > p:last-child {
    font-size: 13px;
  }

  .price-card {
    min-height: auto;
    padding: 20px;
  }

  .price-card__lead,
  .feature-list li,
  .pro-offer p,
  .step-card p,
  .premium-cta p {
    font-size: 11px;
  }

  .feature-list {
    gap: 10px;
  }

  .pro-offer {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .pro-offer .button {
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step-card {
    min-height: auto;
    padding: 16px;
  }

  .step-arrow {
    margin: -1px auto;
    transform: rotate(90deg);
  }

  .testimonial,
  .premium-cta {
    min-height: auto;
  }

  .premium-cta {
    padding: 28px 24px;
  }

  .premium-cta h2 {
    font-size: 27px;
  }

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

  .footer__about,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer__about > p {
    max-width: 520px;
    font-size: 10px;
  }
}

@media (max-width: 520px) {
  .brand__name {
    font-size: 22px;
  }

  .hero__buttons,
  .premium-cta__buttons {
    flex-direction: column;
  }

  .hero__buttons .button,
  .premium-cta__buttons .button {
    width: 100%;
  }

  .section-heading h2,
  .offers__intro h2,
  .process__intro h2 {
    font-size: 28px;
  }

  .feature-card {
    grid-template-columns: 46px 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .popular-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }

  .pro-offer__left {
    align-items: flex-start;
  }

  .premium-cta__content {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 22px;
  }

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

  .footer__about,
  .footer-contact {
    grid-column: auto;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .footer__bottom a,
  .footer__bottom span:last-child {
    justify-self: start;
  }
}

/* Version agrandie : typographie, cartes et respirations plus généreuses. */
:root {
  --shadow: 0 18px 54px rgba(24, 24, 35, 0.075);
}

body {
  font-size: 16px;
}

.container {
  width: min(calc(100% - 64px), 1180px);
}

.announcement {
  min-height: 34px;
  gap: 10px;
  padding: 7px 20px;
  font-size: 13px;
  line-height: 1.35;
}

.announcement__dot {
  width: 8px;
  height: 8px;
}

.navbar {
  min-height: 86px;
  gap: 34px;
}

.brand {
  gap: 10px;
}

.brand__mark {
  width: 54px;
  height: 43px;
}

.brand__name {
  font-size: 31px;
}

.nav-links {
  gap: 38px;
  font-size: 14.5px;
}

.nav-actions {
  gap: 12px;
}

.button {
  min-height: 48px;
  gap: 9px;
  padding: 13px 25px;
  border-radius: 16px;
  font-size: 14px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button--compact {
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 16px;
  font-size: 13.5px;
}

.hero__main {
  padding: 26px 0 40px;
}

.hero h1 {
  max-width: 950px;
  font-size: clamp(62px, 7.15vw, 78px);
  line-height: .98;
  letter-spacing: -0.058em;
}

.hero h1 strong {
  margin-inline: 8px;
  padding: 3px 21px 7px;
  border-radius: 34px;
}

.hero__main > p {
  max-width: 700px;
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.55;
}

.hero__buttons {
  gap: 14px;
  margin-top: 27px;
}

.hero__buttons .button {
  min-width: 195px;
}

.trusted__inner {
  min-height: 92px;
  grid-template-columns: 190px repeat(7, minmax(64px, 1fr)) 70px;
  gap: 13px;
}

.trusted__intro {
  padding-right: 20px;
  font-size: 12.5px;
  line-height: 1.55;
}

.station strong {
  font-size: 19px;
}

.station small {
  margin-top: 4px;
  font-size: 8px;
}

.station--nova strong,
.station--horizon strong,
.station--riviera strong,
.station--vibes strong {
  font-size: 15px;
}

.station--pulse strong,
.station--urban strong {
  font-size: 18px;
}

.station--more {
  min-height: 50px;
  padding: 7px 10px;
  border-radius: 11px;
}

.station--more strong {
  font-size: 15px;
}

.approach {
  padding: 58px 0 52px;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1fr) 255px;
  gap: 42px;
}

.eyebrow {
  gap: 10px;
  margin-bottom: 17px;
  font-size: 11.5px;
  letter-spacing: .055em;
}

.eyebrow span {
  width: 9px;
  height: 9px;
}

.section-heading h2,
.offers__intro h2,
.process__intro h2 {
  font-size: 39px;
  line-height: 1.1;
}

.section-heading h2::after {
  right: 10px;
  bottom: -12px;
  width: 220px;
  height: 4px;
}

.section-heading__aside {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.65;
}

.feature-grid {
  gap: 20px;
  margin-top: 34px;
}

.feature-card {
  min-height: 190px;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  padding: 26px 24px;
  border-radius: 21px;
}

.feature-card__icon {
  width: 62px;
  height: 62px;
}

.feature-card__icon svg {
  width: 34px;
  height: 34px;
}

.feature-card h3 {
  margin-top: 8px;
  font-size: 20px;
}

.mini-rule {
  width: 28px;
  height: 3px;
  margin: 14px 0 10px;
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.58;
}

.offers {
  padding: 58px 0 48px;
}

.offers__layout {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
}

.offers__intro {
  padding-top: 5px;
}

.offers__intro .eyebrow {
  margin-bottom: 16px;
}

.offers__intro h2,
.process__intro h2 {
  font-size: 34px;
  line-height: 1.12;
}

.offers__intro > p:last-child {
  margin-top: 23px;
  font-size: 14.5px;
  line-height: 1.72;
}

.pricing-grid {
  gap: 16px;
}

.price-card {
  min-height: 370px;
  padding: 20px 20px 18px;
  border-radius: 20px;
}

.price-card__title {
  gap: 12px;
}

.mini-logo {
  width: 49px;
  height: 49px;
  border-radius: 13px;
}

.mini-logo svg {
  width: 36px;
  height: 30px;
}

.price-card__title h3 {
  font-size: 17px;
}

.popular-badge {
  top: 18px;
  right: 16px;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 9px;
}

.price {
  gap: 10px;
  margin-top: 13px;
}

.price strong {
  font-size: 51px;
}

.price span {
  font-size: 14px;
}

.price-card__lead {
  margin: 9px 0 15px;
  font-size: 12.5px;
  line-height: 1.4;
}

.feature-list {
  gap: 10px 12px;
  margin-bottom: 16px;
}

.feature-list li {
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.32;
}

.feature-list svg {
  width: 16px;
  height: 16px;
}

.price-card .button {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 12.5px;
}

.pro-offer {
  min-height: 76px;
  gap: 22px;
  margin-top: 16px;
  padding: 12px 16px 12px 20px;
  border-radius: 18px;
}

.pro-offer__left {
  gap: 15px;
}

.pro-offer .mini-logo {
  width: 46px;
  height: 46px;
}

.pro-offer h3 {
  font-size: 16px;
}

.pro-offer p {
  margin-top: 5px;
  font-size: 11.5px;
  line-height: 1.45;
}

.pro-offer .button {
  min-width: 178px;
  min-height: 42px;
  padding: 10px 17px;
  font-size: 11.5px;
}

.fair-use {
  margin-top: 8px;
  font-size: 10px;
}

.process {
  padding: 58px 0 48px;
}

.process__top {
  grid-template-columns: 1fr;
  gap: 30px;
}

.process__intro {
  max-width: 580px;
  padding-top: 0;
}

.process__intro h2 {
  font-size: 38px;
}

.steps {
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  gap: 0;
}

.step-card {
  min-height: 190px;
  padding: 19px 17px;
  border-radius: 19px;
}

.step-card__top {
  gap: 15px;
}

.step-card__top span {
  width: 39px;
  height: 39px;
  font-size: 11.5px;
}

.step-card__top svg {
  width: 49px;
  height: 49px;
}

.step-card h3 {
  margin: 11px 0 8px;
  font-size: 16px;
}

.step-card p {
  font-size: 11.5px;
  line-height: 1.52;
}

.step-arrow {
  width: 24px;
  height: 24px;
}

.proof-row {
  grid-template-columns: 41% 1fr;
  gap: 16px;
  margin-top: 22px;
}

.testimonial,
.premium-cta {
  min-height: 220px;
  border-radius: 21px;
}

.testimonial {
  padding: 30px 34px;
}

.testimonial blockquote {
  padding-left: 23px;
  font-size: 19px;
  line-height: 1.5;
}

.testimonial blockquote::before {
  left: -4px;
  top: -10px;
  font-size: 50px;
}

.testimonial__stars {
  margin-top: 13px;
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial figcaption {
  gap: 3px;
  margin-top: 8px;
}

.testimonial figcaption strong {
  font-size: 13px;
}

.testimonial figcaption span {
  font-size: 11px;
}

.testimonial__logo {
  right: 25px;
  bottom: 21px;
  width: 51px;
  height: 41px;
}

.premium-cta {
  padding: 26px 34px;
}

.premium-cta__content {
  grid-template-columns: 55px 1fr;
  gap: 18px;
}

.premium-cta__logo {
  width: 54px;
  height: 44px;
}

.premium-cta h2 {
  font-size: 32px;
  line-height: 1.08;
}

.premium-cta p {
  max-width: 500px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.premium-cta__buttons {
  gap: 12px;
  margin-top: 16px;
}

.premium-cta__buttons .button {
  min-width: 170px;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 13px;
  font-size: 12.5px;
}

.footer {
  padding: 42px 0 14px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.footer__grid {
  grid-template-columns: 1.4fr .62fr .9fr 1fr 1.2fr;
  gap: 28px;
}

.brand--footer .brand__mark {
  width: 50px;
}

.brand--footer .brand__name {
  font-size: 29px;
}

.footer__about > p {
  max-width: 250px;
  margin-top: 13px;
  font-size: 11.5px;
  line-height: 1.6;
}

.socials {
  gap: 16px;
  margin-top: 17px;
}

.socials a {
  min-width: 20px;
  font-size: 17px;
}

.footer__column {
  gap: 10px;
}

.footer__column h3,
.footer-contact h3 {
  margin: 5px 0 7px;
  font-size: 14px;
}

.footer__column a {
  font-size: 11.5px;
  line-height: 1.4;
}

.footer-contact {
  padding: 21px 20px;
  border-radius: 20px;
}

.footer-contact h3 {
  margin-bottom: 17px;
  font-size: 17px;
  line-height: 1.4;
}

.footer-contact .button {
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 11.5px;
}

.footer__bottom {
  min-height: 44px;
  margin-top: 22px;
  padding-top: 12px;
  font-size: 10px;
}

@media (max-width: 1100px) {
  .container {
    width: min(calc(100% - 48px), 1040px);
  }

  .navbar {
    gap: 22px;
  }

  .nav-links {
    gap: 27px;
  }

  .button--compact {
    padding-inline: 17px;
  }

  .trusted__inner {
    grid-template-columns: 175px repeat(7, minmax(58px, 1fr)) 66px;
    gap: 9px;
  }

  .offers__layout {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 22px;
  }

  .price-card {
    padding-inline: 17px;
  }

  .price-card__title h3 {
    font-size: 15.5px;
  }

  .feature-list li {
    font-size: 10.5px;
  }

  .footer__grid {
    gap: 21px;
  }
}

@media (max-width: 930px) {
  .container {
    width: min(calc(100% - 36px), 860px);
  }

  .navbar {
    min-height: 78px;
  }

  .brand__mark {
    width: 49px;
    height: 39px;
  }

  .brand__name {
    font-size: 28px;
  }

  .nav-links {
    gap: 20px;
    font-size: 13px;
  }

  .nav-actions .button:first-child {
    display: none;
  }

  .hero h1 {
    font-size: clamp(57px, 7.6vw, 70px);
  }

  .trusted {
    overflow-x: auto;
  }

  .trusted__inner {
    width: max-content;
    min-width: 930px;
    padding-inline: 18px;
  }

  .section-heading--split {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .feature-card {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding-inline: 19px;
  }

  .feature-card__icon {
    width: 56px;
    height: 56px;
  }

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

  .offers__intro {
    max-width: 680px;
  }

  .pricing-grid {
    gap: 18px;
  }

  .price-card {
    min-height: 355px;
    padding: 21px;
  }

  .price-card__title h3 {
    font-size: 17px;
  }

  .feature-list li {
    font-size: 11.5px;
  }

  .footer__grid {
    grid-template-columns: 1.35fr .72fr .9fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-contact h3 {
    margin: 0;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), 690px);
  }

  .announcement {
    min-height: 38px;
    font-size: 11.5px;
  }

  .navbar {
    min-height: 76px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .mobile-menu {
    top: 100px;
    padding: 22px;
  }

  .mobile-menu a:not(.button) {
    font-size: 16px;
  }

  .hero__main {
    padding: 38px 0 54px;
  }

  .hero h1 {
    font-size: clamp(47px, 11.4vw, 66px);
  }

  .hero__main > p {
    max-width: 590px;
    font-size: 16px;
  }

  .hero__buttons .button {
    min-width: 188px;
  }

  .approach,
  .offers,
  .process {
    padding-block: 54px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .offers__intro h2,
  .process__intro h2 {
    font-size: clamp(33px, 7.3vw, 43px);
  }

  .section-heading__aside {
    font-size: 15px;
  }

  .feature-grid,
  .pricing-grid,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 170px;
    grid-template-columns: 66px 1fr;
    padding: 25px;
  }

  .feature-card p {
    font-size: 14.5px;
  }

  .price-card {
    min-height: auto;
    padding: 25px;
  }

  .price-card__title h3 {
    font-size: 19px;
  }

  .price-card__lead {
    font-size: 14px;
  }

  .feature-list li {
    font-size: 13px;
  }

  .pro-offer {
    padding: 18px;
  }

  .pro-offer p {
    font-size: 13px;
  }

  .fair-use {
    font-size: 11px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-card {
    min-height: auto;
    padding: 22px;
  }

  .step-card h3 {
    font-size: 18px;
  }

  .step-card p {
    font-size: 14px;
  }

  .step-arrow {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .testimonial,
  .premium-cta {
    min-height: auto;
  }

  .testimonial {
    padding: 31px;
  }

  .premium-cta {
    padding: 32px 28px;
  }

  .premium-cta h2 {
    font-size: 31px;
  }

  .premium-cta p {
    font-size: 14px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__about,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer__about > p {
    max-width: 580px;
    font-size: 13px;
  }

  .footer__column h3 {
    font-size: 16px;
  }

  .footer__column a {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), 480px);
  }

  .brand__mark {
    width: 44px;
    height: 35px;
  }

  .brand__name {
    font-size: 25px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero h1 strong {
    margin-inline: 3px;
    padding-inline: 14px;
  }

  .hero__buttons,
  .premium-cta__buttons {
    gap: 11px;
  }

  .button,
  .hero__buttons .button,
  .premium-cta__buttons .button {
    width: 100%;
  }

  .section-heading h2,
  .offers__intro h2,
  .process__intro h2 {
    font-size: 34px;
  }

  .section-heading h2::after {
    width: 150px;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .popular-badge {
    position: static;
    width: fit-content;
    margin-bottom: 14px;
    font-size: 10px;
  }

  .pro-offer {
    align-items: stretch;
  }

  .pro-offer__left {
    align-items: flex-start;
  }

  .premium-cta__content {
    grid-template-columns: 1fr;
  }

  .testimonial blockquote {
    font-size: 18px;
  }

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

  .footer__about,
  .footer-contact {
    grid-column: auto;
  }

  .footer-contact {
    display: block;
  }

  .footer-contact h3 {
    margin-bottom: 17px;
  }

  .footer__bottom {
    gap: 10px;
    font-size: 11px;
  }
}

/* ===== Version agrandie : lisibilité et proportions généreuses ===== */
:root {
  --shadow: 0 18px 48px rgba(24, 24, 35, 0.075);
}

body {
  font-size: 17px;
}

.container {
  width: min(calc(100% - 96px), 1180px);
}

.announcement {
  min-height: 35px;
  gap: 10px;
  padding: 7px 20px;
  font-size: 14px;
  line-height: 1.25;
}

.announcement__dot {
  width: 8px;
  height: 8px;
}

.navbar {
  min-height: 86px;
  gap: 34px;
}

.brand {
  gap: 10px;
}

.brand__mark {
  width: 51px;
  height: 41px;
}

.brand__name {
  font-size: 30px;
}

.nav-links {
  gap: 36px;
  font-size: 15px;
}

.nav-actions {
  gap: 12px;
}

.button {
  min-height: 50px;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 17px;
  font-size: 15px;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button--compact {
  min-height: 47px;
  padding: 13px 23px;
  border-radius: 16px;
  font-size: 14px;
}

.button--outline-dark {
  min-height: 44px;
  border-radius: 18px;
}

.hero__main {
  padding: 22px 0 34px;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(64px, 7.7vw, 82px);
  line-height: .96;
  letter-spacing: -0.06em;
}

.hero h1 strong {
  margin-inline: 9px;
  padding: 4px 22px 8px;
  border-radius: 34px;
}

.hero__main > p {
  max-width: 710px;
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.55;
}

.hero__buttons {
  gap: 14px;
  margin-top: 27px;
}

.hero__buttons .button {
  min-width: 195px;
}

.trusted__inner {
  min-height: 90px;
  grid-template-columns: 205px repeat(7, minmax(62px, 1fr)) 68px;
  gap: 13px;
}

.trusted__intro {
  padding-right: 21px;
  font-size: 13px;
  line-height: 1.5;
}

.station strong {
  font-size: 20px;
}

.station small {
  margin-top: 4px;
  font-size: 8.5px;
}

.station--nova strong,
.station--horizon strong,
.station--riviera strong,
.station--vibes strong {
  font-size: 16px;
}

.station--pulse strong {
  font-size: 19px;
}

.station--urban strong {
  font-size: 18px;
}

.station--more {
  min-height: 49px;
  padding: 7px 9px;
  border-radius: 11px;
}

.station--more strong {
  font-size: 16px;
}

.approach {
  padding: 48px 0 43px;
}

.section-heading--split {
  grid-template-columns: 1fr 260px;
  gap: 38px;
}

.eyebrow {
  gap: 10px;
  margin-bottom: 17px;
  font-size: 12px;
  letter-spacing: .045em;
}

.eyebrow span {
  width: 9px;
  height: 9px;
}

.section-heading h2,
.offers__intro h2,
.process__intro h2 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -.048em;
}

.section-heading h2::after {
  right: 15px;
  bottom: -12px;
  width: 205px;
  height: 4px;
}

.section-heading__aside {
  margin-bottom: 4px;
  font-size: 14.5px;
  line-height: 1.6;
}

.feature-grid {
  gap: 18px;
  margin-top: 31px;
}

.feature-card {
  min-height: 188px;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 25px 23px;
  border-radius: 20px;
}

.feature-card__icon {
  width: 59px;
  height: 59px;
}

.feature-card__icon svg {
  width: 33px;
  height: 33px;
}

.feature-card h3 {
  margin-top: 7px;
  font-size: 20px;
}

.mini-rule {
  width: 25px;
  height: 3px;
  margin: 14px 0 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.55;
}

.offers {
  padding: 48px 0 43px;
}

.offers__layout {
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 28px;
}

.offers__intro {
  padding-top: 11px;
}

.offers__intro .eyebrow {
  margin-bottom: 16px;
}

.offers__intro h2,
.process__intro h2 {
  font-size: 33px;
  line-height: 1.1;
}

.offers__intro > p:last-child {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.7;
}

.pricing-grid {
  gap: 16px;
}

.price-card {
  min-height: 386px;
  padding: 22px 22px 18px;
  border-width: 1.5px;
  border-radius: 20px;
}

.price-card__title {
  gap: 13px;
}

.mini-logo {
  width: 47px;
  height: 47px;
  border-radius: 12px;
}

.mini-logo svg {
  width: 35px;
  height: 29px;
}

.price-card__title h3 {
  font-size: 18px;
  line-height: 1.2;
}

.popular-badge {
  top: 20px;
  right: 18px;
  padding: 8px 11px;
  border-radius: 9px;
  font-size: 9px;
}

.price {
  gap: 10px;
  margin-top: 13px;
}

.price strong {
  font-size: 51px;
}

.price span {
  font-size: 16px;
}

.price-card__lead {
  margin: 9px 0 15px;
  font-size: 13px;
  line-height: 1.35;
}

.feature-list {
  gap: 10px 12px;
  margin-bottom: 17px;
}

.feature-list li {
  gap: 8px;
  font-size: 12px;
  line-height: 1.25;
}

.feature-list svg {
  width: 16px;
  height: 16px;
}

.price-card .button {
  min-height: 46px;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 13.5px;
}

.pro-offer {
  min-height: 79px;
  gap: 22px;
  margin-top: 15px;
  padding: 12px 17px 12px 21px;
  border-radius: 18px;
}

.pro-offer__left {
  gap: 16px;
}

.pro-offer .mini-logo {
  width: 45px;
  height: 45px;
}

.pro-offer h3 {
  font-size: 16px;
}

.pro-offer p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
}

.pro-offer .button {
  min-width: 190px;
  padding: 11px 18px;
  font-size: 12.5px;
}

.fair-use {
  margin-top: 8px;
  font-size: 10px;
}

.process {
  padding: 47px 0 38px;
}

.process__top {
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 28px;
}

.process__intro {
  padding-top: 7px;
}

.steps {
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
}

.step-card {
  min-height: 166px;
  padding: 15px 14px;
  border-radius: 18px;
}

.step-card__top {
  gap: 11px;
}

.step-card__top span {
  width: 34px;
  height: 34px;
  font-size: 11px;
}

.step-card__top svg {
  width: 44px;
  height: 44px;
}

.step-card h3 {
  margin: 10px 0 7px;
  font-size: 14px;
}

.step-card p {
  font-size: 10.5px;
  line-height: 1.46;
}

.step-arrow {
  width: 18px;
  height: 22px;
}

.proof-row {
  grid-template-columns: 40% 1fr;
  gap: 16px;
  margin-top: 22px;
}

.testimonial,
.premium-cta {
  min-height: 205px;
  border-radius: 20px;
}

.testimonial {
  padding: 27px 36px;
}

.testimonial blockquote {
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.48;
}

.testimonial blockquote::before {
  left: -5px;
  top: -10px;
  font-size: 48px;
}

.testimonial__stars {
  margin-top: 13px;
  font-size: 15px;
  letter-spacing: 3px;
}

.testimonial figcaption {
  gap: 3px;
  margin-top: 8px;
}

.testimonial figcaption strong {
  font-size: 13px;
}

.testimonial figcaption span {
  font-size: 10px;
}

.testimonial__logo {
  right: 24px;
  bottom: 20px;
  width: 48px;
  height: 39px;
}

.premium-cta {
  padding: 27px 37px;
}

.premium-cta__content {
  grid-template-columns: 53px 1fr;
  gap: 17px;
}

.premium-cta__logo {
  width: 52px;
  height: 42px;
}

.premium-cta h2 {
  font-size: 33px;
  line-height: 1.05;
}

.premium-cta p {
  max-width: 500px;
  margin-top: 11px;
  font-size: 13px;
  line-height: 1.5;
}

.premium-cta__buttons {
  gap: 12px;
  margin-top: 16px;
}

.premium-cta__buttons .button {
  min-width: 175px;
  min-height: 45px;
  padding: 11px 18px;
  border-radius: 13px;
  font-size: 12.5px;
}

.footer {
  padding: 39px 0 14px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.footer__grid {
  grid-template-columns: 1.42fr .62fr .9fr .98fr 1.2fr;
  gap: 28px;
}

.brand--footer .brand__mark {
  width: 51px;
}

.brand--footer .brand__name {
  font-size: 29px;
}

.footer__about > p {
  max-width: 250px;
  margin-top: 13px;
  font-size: 12px;
  line-height: 1.58;
}

.socials {
  gap: 17px;
  margin-top: 17px;
}

.socials a {
  min-width: 20px;
  font-size: 18px;
}

.footer__column {
  gap: 10px;
}

.footer__column h3,
.footer-contact h3 {
  margin: 5px 0 8px;
  font-size: 15px;
}

.footer__column a {
  font-size: 13px;
  line-height: 1.35;
}

.footer-contact {
  padding: 20px;
  border-radius: 20px;
}

.footer-contact h3 {
  margin: 0 0 17px;
  font-size: 18px;
  line-height: 1.35;
}

.footer-contact .button {
  min-height: 46px;
  padding: 12px 15px;
  border-radius: 13px;
  font-size: 12px;
}

.footer__bottom {
  min-height: 45px;
  margin-top: 20px;
  padding-top: 14px;
  font-size: 11px;
}

@media (max-width: 1050px) {
  .container {
    width: min(calc(100% - 64px), 1180px);
  }

  .nav-links {
    gap: 25px;
  }

  .nav-actions .button--compact {
    padding-inline: 18px;
  }

  .trusted__inner {
    grid-template-columns: 185px repeat(7, minmax(57px, 1fr)) 64px;
    gap: 9px;
  }

  .offers__layout,
  .process__top {
    grid-template-columns: 215px minmax(0, 1fr);
    gap: 23px;
  }

  .price-card {
    padding-inline: 18px;
  }

  .feature-list li {
    font-size: 11.3px;
  }

  .step-card {
    padding-inline: 12px;
  }

  .step-card p {
    font-size: 10px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 48px), 820px);
  }

  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .nav-actions .button--compact {
    padding-inline: 14px;
    font-size: 13px;
  }

  .section-heading--split {
    grid-template-columns: 1fr 220px;
  }

  .feature-card {
    grid-template-columns: 58px 1fr;
    padding-inline: 19px;
  }

  .offers__layout,
  .process__top {
    grid-template-columns: 1fr;
  }

  .offers__intro,
  .process__intro {
    max-width: 630px;
    padding-top: 0;
  }

  .offers__intro h2,
  .process__intro h2 {
    font-size: 37px;
  }

  .pricing-grid {
    margin-top: 26px;
  }

  .steps {
    margin-top: 25px;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .testimonial,
  .premium-cta {
    min-height: 190px;
  }

  .footer__grid {
    grid-template-columns: 1.35fr .7fr .9fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(calc(100% - 32px), 680px);
  }

  .announcement {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 12.5px;
  }

  .navbar {
    min-height: 76px;
  }

  .brand__mark {
    width: 48px;
    height: 39px;
  }

  .brand__name {
    font-size: 28px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .mobile-menu {
    top: 106px;
    padding: 22px;
  }

  .mobile-menu a:not(.button) {
    font-size: 17px;
  }

  .hero__main {
    padding: 39px 0 46px;
  }

  .hero h1 {
    font-size: clamp(47px, 12vw, 66px);
    line-height: .99;
  }

  .hero h1 strong {
    padding: 3px 15px 6px;
  }

  .hero__main > p {
    max-width: 590px;
    margin-top: 25px;
    font-size: 16px;
  }

  .hero__buttons {
    margin-top: 26px;
  }

  .hero__buttons .button {
    min-width: 185px;
  }

  .trusted__inner {
    min-height: 83px;
  }

  .approach,
  .offers,
  .process {
    padding-block: 52px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .offers__intro h2,
  .process__intro h2 {
    font-size: clamp(34px, 7.5vw, 42px);
  }

  .section-heading__aside {
    margin-top: 23px;
    font-size: 15px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: auto;
    grid-template-columns: 64px 1fr;
    padding: 24px;
  }

  .feature-card p {
    font-size: 15px;
  }

  .offers__intro > p:last-child {
    font-size: 16px;
  }

  .price-card {
    min-height: auto;
    padding: 25px;
  }

  .price-card__title h3 {
    font-size: 20px;
  }

  .price-card__lead {
    font-size: 14px;
  }

  .feature-list {
    gap: 12px;
  }

  .feature-list li {
    font-size: 14px;
  }

  .price-card .button {
    min-height: 50px;
    font-size: 15px;
  }

  .pro-offer {
    padding: 19px;
  }

  .pro-offer h3 {
    font-size: 18px;
  }

  .pro-offer p {
    font-size: 13.5px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-card {
    min-height: auto;
    padding: 21px;
  }

  .step-card h3 {
    font-size: 17px;
  }

  .step-card p {
    font-size: 14px;
  }

  .step-arrow {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .testimonial {
    padding: 28px;
  }

  .premium-cta {
    padding: 31px 27px;
  }

  .premium-cta h2 {
    font-size: 31px;
  }

  .premium-cta p {
    font-size: 14px;
  }

  .premium-cta__buttons .button {
    font-size: 14px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer__about,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer__about > p {
    max-width: 560px;
    font-size: 13.5px;
  }

  .footer__column h3 {
    font-size: 17px;
  }

  .footer__column a {
    font-size: 14.5px;
  }

  .footer-contact h3 {
    font-size: 20px;
  }

  .footer-contact .button {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .announcement {
    font-size: 11.5px;
  }

  .brand__name {
    font-size: 25px;
  }

  .brand__mark {
    width: 43px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 56px);
  }

  .hero__buttons,
  .premium-cta__buttons {
    gap: 11px;
  }

  .button {
    min-height: 52px;
    font-size: 15px;
  }

  .section-heading h2,
  .offers__intro h2,
  .process__intro h2 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .feature-card {
    grid-template-columns: 58px 1fr;
    padding: 21px;
  }

  .feature-card__icon {
    width: 55px;
    height: 55px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .popular-badge {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .pro-offer {
    gap: 16px;
  }

  .premium-cta__content {
    gap: 14px;
  }

  .premium-cta h2 {
    font-size: 29px;
  }

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

  .footer__about,
  .footer-contact {
    grid-column: auto;
  }

  .footer__bottom {
    font-size: 12px;
  }
}

/* Ajustements finaux pour conserver l'esprit de la maquette malgré l'agrandissement */
@media (min-width: 901px) {
  .hero__main.container {
    width: min(calc(100% - 24px), 1180px);
  }
}

.section-heading--split {
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
}

.section-heading h2 {
  font-size: 38px;
}

.feature-card {
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: 64px auto auto;
  align-items: start;
}

.feature-card__icon {
  grid-column: 1;
  grid-row: 1;
}

.feature-card > div:last-child {
  display: contents;
}

.feature-card h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
}

.feature-card .mini-rule {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 12px 0 10px;
}

.feature-card p {
  grid-column: 1 / -1;
  grid-row: 3;
}

.popular-badge {
  top: 17px;
  right: 14px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 7.5px;
}

.price-card--accompanied .price-card__title {
  padding-right: 52px;
}

.price-card--accompanied .price-card__title h3 {
  font-size: 16.5px;
  letter-spacing: -.045em;
}

.step-card {
  min-height: 184px;
}

.step-card h3 {
  font-size: 15px;
}

.step-card p {
  font-size: 11.5px;
}

.footer__about > p {
  font-size: 13px;
}

.footer__column a {
  font-size: 13.5px;
}

@media (max-width: 1050px) and (min-width: 901px) {
  .section-heading--split {
    grid-template-columns: minmax(0, 1fr) 205px;
    gap: 24px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .step-card p {
    font-size: 10.8px;
  }
}

@media (max-width: 900px) {
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-rows: 64px auto auto;
  }

  .price-card--accompanied .price-card__title {
    padding-right: 0;
  }

  .popular-badge {
    position: static;
    display: block;
    width: max-content;
    margin: 0 0 13px auto;
    padding: 7px 10px;
    font-size: 9px;
  }
}

@media (min-width: 901px) {
  .hero__main.container {
    width: min(calc(100% - 8px), 1180px);
  }

  .hero h1 {
    font-size: clamp(62px, 7.1vw, 74px);
  }

  .hero h1 > span:nth-child(2) {
    white-space: nowrap;
  }
}


/* ===== Pages internes sur le modèle accueil ===== */
.subpage-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(8, 104, 255, .34), transparent 31%),
    radial-gradient(circle at 82% 24%, rgba(255, 46, 135, .30), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(107, 56, 244, .22), transparent 38%),
    #030306;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -180px -120px;
  height: 360px;
  background: repeating-radial-gradient(ellipse at center, rgba(31, 87, 255, .24) 0 1px, transparent 1px 20px);
  opacity: .22;
  pointer-events: none;
}

.subpage-hero .navbar,
.subpage-hero__main {
  position: relative;
  z-index: 1;
}

.subpage-hero__main {
  padding: 82px 0 92px;
  text-align: center;
}

.subpage-hero__main .eyebrow {
  justify-content: center;
  color: rgba(255,255,255,.78);
}

.subpage-hero__main h1 {
  max-width: 960px;
  margin: 18px auto 0;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: .94;
  letter-spacing: -.06em;
}

.subpage-hero__main > p:not(.eyebrow) {
  max-width: 710px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.65;
}

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

.nav-links a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  color: #fff;
}

.internal-band {
  padding: 78px 0;
  background: #fff;
  border-bottom: 1px solid #ececf2;
}

.internal-band--soft {
  background: #f8f8fb;
}

.internal-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.internal-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -.055em;
}

.internal-grid {
  display: grid;
  gap: 18px;
}

.internal-grid--three,
.offer-detail-grid,
.client-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.internal-card,
.offer-detail-card,
.service-list article,
.process-timeline article,
.client-proof-grid article,
.client-quote,
.internal-cta {
  border: 1px solid #e8e8ef;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(10, 14, 30, .08);
}

.internal-card {
  padding: 28px;
}

.internal-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 18px 42px rgba(107,56,244,.28);
}

.internal-icon svg,
.offer-detail-card li svg {
  width: 28px;
  height: 28px;
}

.internal-card h3,
.service-list h3,
.process-timeline h3 {
  margin: 22px 0 10px;
  color: #101018;
  font-size: 23px;
  letter-spacing: -.035em;
}

.internal-card p,
.service-list p,
.process-timeline p,
.offer-detail-card p,
.client-quote figcaption {
  color: #656575;
  line-height: 1.65;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
}

.service-list span,
.process-timeline span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  background: var(--gradient);
}

.service-list h3 {
  margin-top: 0;
}

.offer-detail-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.offer-detail-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.offer-detail-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -38% -30%;
  height: 180px;
  background: radial-gradient(circle, rgba(107,56,244,.18), transparent 62%);
  pointer-events: none;
}

.offer-detail-card--featured {
  border-color: rgba(255,46,135,.52);
  box-shadow: 0 30px 90px rgba(255,46,135,.16), 0 24px 70px rgba(10,14,30,.08);
}

.offer-tag {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gradient);
}

.offer-detail-card h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -.045em;
}

.offer-price {
  margin: 18px 0 16px;
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -.06em;
}

.offer-price span {
  font-size: 16px;
  color: #777789;
  letter-spacing: 0;
}

.offer-detail-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 26px;
  list-style: none;
}

.offer-detail-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #282834;
  font-weight: 800;
}

.offer-detail-card li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #12c98a;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-timeline article {
  padding: 26px;
}

.internal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background: #080812;
  color: #fff;
}

.internal-cta h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.055em;
}

.client-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.client-proof-grid {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.client-proof-grid article {
  padding: 26px;
}

.client-proof-grid strong {
  display: block;
  font-size: 46px;
  letter-spacing: -.06em;
}

.client-proof-grid span {
  display: block;
  margin-top: 8px;
  color: #686878;
  font-weight: 700;
}

.client-quote {
  padding: 36px;
  text-align: center;
}

.client-quote blockquote {
  max-width: 780px;
  margin: 0 auto 16px;
  color: #111118;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 950;
}

@media (max-width: 980px) {
  .internal-grid--three,
  .offer-detail-grid,
  .process-timeline,
  .client-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .client-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .internal-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .subpage-hero__main {
    padding: 58px 0 68px;
  }

  .subpage-hero__main h1 {
    font-size: 44px;
  }

  .subpage-hero__main > p:not(.eyebrow) {
    font-size: 16px;
  }

  .subpage-actions,
  .subpage-actions .button {
    width: 100%;
  }

  .internal-band {
    padding: 52px 0;
  }

  .internal-grid--three,
  .offer-detail-grid,
  .service-list,
  .process-timeline,
  .client-proof-grid,
  .client-logo-wall {
    grid-template-columns: 1fr;
  }

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

  .offer-price {
    font-size: 40px;
  }
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #071025;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.anti-spam-field {
  position: fixed !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

button[aria-busy="true"] {
  cursor: wait;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 102, 255, .16), transparent 34%),
    radial-gradient(circle at 84% 72%, rgba(255, 46, 135, .13), transparent 32%),
    #f5f7fb;
}

.error-page__content {
  width: min(680px, 100%);
  padding: 54px;
  border: 1px solid rgba(15, 28, 58, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 80px rgba(16, 29, 61, .14);
}

.error-page__content .brand {
  display: inline-flex;
  margin-bottom: 54px;
}

.error-page__content h1 {
  max-width: 560px;
  margin: 12px 0 18px;
  color: #0a1022;
  font-size: clamp(42px, 7vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

.error-page__content > p:not(.eyebrow) {
  max-width: 540px;
  color: #5e6679;
  line-height: 1.7;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 640px) {
  .error-page__content {
    padding: 34px 24px;
  }

  .error-page__content .brand {
    margin-bottom: 38px;
  }
}

.admin-signout {
  margin-left: auto;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  color: rgba(255,255,255,.62);
  background: transparent;
  font: inherit;
  font-size: 9px;
  cursor: pointer;
}

.rw-auth-required > :not(.rw-auth-gate) {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.rw-auth-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background: #050710;
}

.rw-auth-card {
  width: min(430px, 100%);
  display: grid;
  gap: 15px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: #0c0f1a;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

.rw-auth-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.rw-auth-brand span {
  width: 34px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0868ff, #6b38f4 52%, #ff2e87);
}

.rw-auth-brand strong {
  font-size: 22px;
}

.rw-auth-kicker {
  margin: 10px 0 -5px;
  color: #b8aaff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rw-auth-card h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: 0;
}

.rw-auth-card > p:not(.rw-auth-kicker):not(.rw-auth-message) {
  margin: -4px 0 3px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.5;
}

.rw-auth-card label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 750;
}

.rw-auth-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  color: #fff;
  background: #121624;
  outline: none;
  font: inherit;
}

.rw-auth-card input:focus {
  border-color: #6b38f4;
  box-shadow: 0 0 0 4px rgba(107,56,244,.13);
}

.rw-auth-card button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #0868ff, #6b38f4 52%, #ff2e87);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.rw-auth-card button:disabled {
  cursor: wait;
  opacity: .65;
}

.rw-auth-card > a {
  color: rgba(255,255,255,.58);
  font-size: 11px;
  text-align: center;
}

.rw-auth-message {
  min-height: 18px;
  margin: 0;
  color: #ff77ad;
  font-size: 11px;
}


/* ===== Preuves, livrables, réalisations et comparatif ===== */
@media (min-width: 901px) {
  .hero h1 {
    max-width: 1040px;
    font-size: clamp(56px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .hero h1 > span:nth-child(2) {
    white-space: normal;
  }

  .hero__main > p {
    max-width: 690px;
    font-size: 15px;
    line-height: 1.6;
  }
}

.trusted--proof {
  margin-top: 10px;
}

.trusted__inner--proof {
  grid-template-columns: minmax(190px, 1.15fr) repeat(3, minmax(150px, .9fr)) minmax(155px, .8fr);
  gap: 0;
  min-height: 92px;
  padding-block: 13px;
}

.trusted__inner--proof > * {
  min-width: 0;
}

.trusted__intro {
  display: grid;
  gap: 5px;
}

.trusted__intro strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}

.trusted__intro span {
  color: rgba(255,255,255,.46);
  font-size: 9px;
}

.trusted-client {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 18px;
  border-left: 1px solid rgba(255,255,255,.1);
}

.trusted-client__mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: #1764ff;
  font-size: 13px;
  font-weight: 900;
}

.trusted-client__mark--purple { background: #6b38f4; }
.trusted-client__mark--pink { background: #d72982; }

.trusted-client strong,
.trusted-client small {
  display: block;
}

.trusted-client strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
}

.trusted-client small {
  margin-top: 3px;
  color: rgba(255,255,255,.46);
  font-size: 8px;
  line-height: 1.25;
}

.trusted-result {
  display: grid;
  gap: 3px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.1);
}

.trusted-result strong {
  color: #fff;
  font-size: 17px;
}

.trusted-result span {
  color: rgba(255,255,255,.48);
  font-size: 8px;
  line-height: 1.3;
}

.feature-card {
  grid-template-rows: 64px auto auto auto;
}

.deliverable-list {
  grid-column: 1 / -1;
  grid-row: 4;
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid #ececf2;
  list-style: none;
}

.deliverable-list li {
  position: relative;
  padding-left: 17px;
  color: #282832;
  font-size: 11px;
  font-weight: 750;
}

.deliverable-list li::before {
  content: "";
  position: absolute;
  top: .48em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0868ff, #6b38f4 55%, #ff2e87);
}

.offers__comparison-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: #4c36c8;
  font-size: 12px;
  font-weight: 800;
}

.offers__comparison-link svg {
  width: 15px;
  height: 15px;
}

.offer-difference {
  min-height: 34px;
  margin: 12px 0 0;
  color: #696976;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.case-studies {
  padding-block: 78px;
  background: #f7f8fb;
}

.case-studies__heading {
  margin-bottom: 34px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-study-card {
  overflow: hidden;
  border: 1px solid #e1e3ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13,17,36,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(13,17,36,.12);
}

.case-study-card__visual {
  position: relative;
  min-height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: #0a0d18;
}

.case-study-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .7;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 32px 32px;
}

.case-study-card--vibe .case-study-card__visual {
  background: linear-gradient(135deg, #071839, #153bbb 58%, #7222b9);
}

.case-study-card--horizon .case-study-card__visual {
  background: linear-gradient(135deg, #0b0e20, #302071 58%, #d22477);
}

.case-study-card--studio .case-study-card__visual {
  background: linear-gradient(135deg, #07131d, #0d4a68 52%, #196c93);
}

.case-study-card__station {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: .06em;
}

.case-study-card__screen,
.case-study-card__calendar,
.case-study-card__wave {
  position: absolute;
  z-index: 1;
}

.case-study-card__screen {
  right: 24px;
  bottom: 20px;
  width: 118px;
  height: 68px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(6,9,24,.64);
}

.case-study-card__screen i {
  width: 6px;
  height: 22px;
  border-radius: 3px;
  background: #ff2e87;
}

.case-study-card__screen i:nth-child(2) { height: 38px; background: #7c42ff; }
.case-study-card__screen i:nth-child(3) { height: 29px; background: #2585ff; }
.case-study-card__screen strong { margin-left: auto; font-size: 8px; }

.case-study-card__wave {
  right: 26px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.case-study-card__wave i {
  width: 6px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  opacity: .75;
}

.case-study-card__wave i:nth-child(2) { height: 46px; }
.case-study-card__wave i:nth-child(3) { height: 31px; }
.case-study-card__wave i:nth-child(4) { height: 58px; }
.case-study-card__wave i:nth-child(5) { height: 36px; }

.case-study-card__calendar {
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.case-study-card__calendar b {
  min-width: 37px;
  padding: 10px 4px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 7px;
  background: rgba(1,9,19,.5);
  font-size: 8px;
  text-align: center;
}

.case-study-card__body {
  padding: 24px;
}

.case-study-card__type {
  color: #6b38f4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-study-card__body h3 {
  margin: 8px 0 0;
  color: #111117;
  font-size: 24px;
}

.case-study-card__body > p {
  min-height: 62px;
  margin: 10px 0 0;
  color: #656573;
  font-size: 13px;
  line-height: 1.55;
}

.case-study-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e7e8ee;
}

.case-study-card dl div {
  display: grid;
  gap: 4px;
}

.case-study-card dt {
  color: #8a8a95;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.case-study-card dd {
  margin: 0;
  color: #171720;
  font-size: 11px;
  font-weight: 800;
}

.case-studies__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid #e0e2ea;
  border-radius: 16px;
  background: #fff;
}

.case-studies__cta p {
  max-width: 690px;
  margin: 0;
  color: #5d5d69;
  font-size: 13px;
  line-height: 1.55;
}

.case-studies__cta strong {
  color: #15151c;
}

.client-proof-grid--credible {
  margin-top: 24px;
}

.service-delivery-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid #e7e8ef;
  list-style: none;
}

.service-delivery-card li {
  position: relative;
  padding-left: 18px;
  color: #2d2d37;
  font-size: 12px;
  font-weight: 750;
}

.service-delivery-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6b38f4;
  font-weight: 950;
}

.service-list article strong {
  display: block;
  margin-top: 10px;
  color: #5636d4;
  font-size: 11px;
}

.offer-comparison-band {
  padding: 72px 0 84px;
  background: #f7f8fb;
}

.offer-comparison {
  overflow-x: auto;
  margin-top: 30px;
  border: 1px solid #dedfe8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13,17,36,.06);
}

.offer-comparison__row {
  min-width: 760px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid #ececf2;
}

.offer-comparison__row:first-child {
  border-top: 0;
}

.offer-comparison__row > * {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-left: 1px solid #ececf2;
  color: #5e5e69;
  font-size: 12px;
}

.offer-comparison__row > *:first-child {
  border-left: 0;
  color: #191920;
}

.offer-comparison__row--head {
  background: #0a0c14;
}

.offer-comparison__row--head > * {
  min-height: 66px;
  color: #fff;
  border-color: rgba(255,255,255,.1);
  font-weight: 850;
}

.offer-comparison__row .is-included {
  color: #5636d4;
  font-weight: 850;
}

.footer__company {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  line-height: 1.4;
}

.footer__company a {
  color: #fff;
  font-weight: 750;
}

.socials--named {
  gap: 8px;
}

.socials--named a {
  min-width: 0;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.04);
  font-size: 9px;
}

@media (max-width: 980px) {
  .trusted__inner--proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 32px;
  }

  .trusted__intro,
  .trusted-result {
    min-height: 58px;
    justify-content: center;
  }

  .trusted-client,
  .trusted-result {
    border-left: 0;
  }

  .case-study-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-study-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hero h1 {
    max-width: 355px;
    font-size: 42px;
    line-height: 1.03;
    letter-spacing: 0;
  }

  .hero h1 strong {
    margin-inline: 2px;
    padding-inline: 11px;
  }

  .hero__main > p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.55;
  }

  .trusted__inner--proof {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 22px;
  }

  .trusted-client,
  .trusted-result {
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .case-studies {
    padding-block: 58px;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card:last-child {
    grid-column: auto;
  }

  .case-study-card__visual {
    min-height: 190px;
  }

  .case-studies__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .case-studies__cta .button {
    width: 100%;
  }

  .site-chat-launcher {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 13px 32px rgba(19,27,60,.24);
  }

  .site-chat-launcher::before,
  .site-chat-launcher__label {
    display: none;
  }

  .site-chat-launcher__icon {
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
  }

  .site-chat-launcher__icon svg {
    width: 20px;
    height: 20px;
  }

  .site-chat-widget {
    right: 10px;
    bottom: 70px;
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 90px);
    border-radius: 20px;
  }

  .site-chat-widget__body {
    min-height: 130px;
    max-height: 210px;
  }
}

/* ===== Encart RadioDeck clair, sans visuel ===== */
.home-product-callout--radiodeck {
  display: block;
  padding: 0;
  color: #11131f;
  border-color: rgba(18, 23, 42, .10);
  background:
    radial-gradient(circle at 0 0, rgba(8, 104, 255, .08), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(255, 45, 134, .07), transparent 32%),
    #f8f9fd;
  box-shadow: 0 24px 64px rgba(18, 23, 42, .10);
}

.home-product-callout--radiodeck::before {
  inset: 0 0 auto;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0870ff 0%, #6b38f4 52%, #ff2d86 100%);
}

.home-product-callout--radiodeck .home-product-callout__content {
  width: 100%;
  padding: 42px 46px 46px;
}

.home-product-callout__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(18, 23, 42, .09);
}

.home-product-callout--radiodeck .home-product-callout__brand {
  color: #11131f;
}

.home-product-callout--radiodeck .home-product-callout__brand strong {
  color: #11131f;
}

.home-product-callout--radiodeck .home-product-callout__brand svg {
  background: transparent;
  box-shadow: none;
}

.home-product-callout--radiodeck .home-product-callout__brand span {
  color: #777b8b;
}

.home-product-callout--radiodeck .home-product-callout__label {
  margin: 0;
  color: #616676;
}

.home-product-callout__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 54px;
  align-items: center;
  padding-top: 34px;
}

.home-product-callout--radiodeck h3 {
  max-width: 610px;
  margin-top: 0;
  color: #11131f;
}

.home-product-callout--radiodeck p:not(.eyebrow) {
  color: #656a79;
}

.home-product-callout--radiodeck .home-product-callout__features {
  display: grid;
  gap: 10px;
  margin: 0;
}

.home-product-callout--radiodeck .home-product-callout__features li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 72px;
  padding: 15px 17px;
  color: #242735;
  border: 1px solid rgba(18, 23, 42, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 30px rgba(20, 26, 54, .055);
}

.home-product-callout--radiodeck .home-product-callout__features li svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #6b38f4;
}

.home-product-callout--radiodeck .home-product-callout__features li span {
  display: grid;
  gap: 4px;
  color: #777b88;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.home-product-callout--radiodeck .home-product-callout__features li strong {
  color: #151724;
  font-size: 13px;
  font-weight: 900;
}

.home-product-callout--radiodeck .home-product-callout__actions > span {
  color: #777b88;
}

@media (max-width: 900px) {
  .home-product-callout--radiodeck .home-product-callout__content {
    padding: 38px;
  }

  .home-product-callout__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .home-product-callout--radiodeck {
    padding: 0;
  }

  .home-product-callout--radiodeck .home-product-callout__content {
    padding: 28px 22px;
  }

  .home-product-callout__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 22px;
  }

  .home-product-callout__body {
    padding-top: 26px;
  }
}


/* ===== Callout projet Radioway ===== */
.site-client-access {
  padding: 76px 0;
  background: #fff;
  border-top: 1px solid #ececf2;
}

.site-client-access__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid #e8e8ef;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0, rgba(8,104,255,.12), transparent 34%),
    radial-gradient(circle at 100% 30%, rgba(255,46,135,.12), transparent 34%),
    #fbfbfe;
  box-shadow: 0 30px 90px rgba(10, 14, 30, .08);
}

.site-client-access h2 {
  max-width: 760px;
  margin: 12px 0 12px;
  color: #101018;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -.055em;
}

.site-client-access p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #656575;
  font-size: 17px;
  line-height: 1.65;
}

.site-client-access__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.client-back-site {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 16px 0 8px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 15px;
  color: rgba(255,255,255,.78);
  font-weight: 850;
  background: rgba(255,255,255,.045);
}

.client-back-site:hover {
  color: #fff;
  border-color: rgba(255,46,135,.32);
  background: rgba(255,255,255,.075);
}

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

  .site-client-access__actions,
  .site-client-access__actions .button {
    width: 100%;
  }
}


/* ===== Pages contact et légales ===== */
.legal-hero .subpage-hero__main {
  padding-bottom: 72px;
}

.legal-band {
  padding: 74px 0;
  background: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
}

.legal-content,
.contact-form,
.contact-card {
  border: 1px solid #e8e8ef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10, 14, 30, .08);
}

.legal-content {
  padding: clamp(28px, 5vw, 52px);
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: #101018;
  font-size: 28px;
  letter-spacing: -.045em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #626272;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content a {
  color: #6b38f4;
  font-weight: 850;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.contact-band {
  background:
    radial-gradient(circle at 12% 0, rgba(8,104,255,.10), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255,46,135,.10), transparent 28%),
    #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
}

.contact-form__head h2 {
  margin: 12px 0 26px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #22222c;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dddde8;
  border-radius: 16px;
  padding: 15px 16px;
  color: #101018;
  background: #fbfbfe;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(107,56,244,.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107,56,244,.10);
}

.form-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  color: #626272 !important;
  font-weight: 650 !important;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
}

.form-message {
  min-height: 24px;
  margin: 4px 0 16px;
  color: #c71c5a;
  font-weight: 850;
}

.form-message.is-success {
  color: #0f9f6e;
}

.contact-side {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 22px;
}

.contact-card span {
  display: block;
  color: #777789;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card a {
  display: block;
  margin-top: 8px;
  color: #101018;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -.025em;
}

@media (max-width: 880px) {
  .contact-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Module réservation appel ===== */
.booking-hero .subpage-hero__main {
  padding-bottom: 76px;
}

.booking-band {
  padding: 74px 0;
  background:
    radial-gradient(circle at 8% 0, rgba(8,104,255,.10), transparent 30%),
    radial-gradient(circle at 92% 14%, rgba(255,46,135,.10), transparent 32%),
    #fff;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.booking-form,
.booking-summary-card {
  border: 1px solid #e8e8ef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10, 14, 30, .08);
}

.booking-form {
  padding: clamp(24px, 4vw, 42px);
}

.booking-form__head h2 {
  margin: 12px 0 12px;
  color: #101018;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

.booking-form__head p:not(.eyebrow) {
  margin: 0 0 26px;
  color: #656575;
  line-height: 1.65;
}

.field-grid--date {
  align-items: end;
}

.booking-form label,
.booking-slots legend {
  color: #22222c;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #dddde8;
  border-radius: 16px;
  padding: 15px 16px;
  color: #101018;
  background: #fbfbfe;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.booking-form textarea {
  resize: vertical;
  min-height: 130px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(107,56,244,.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107,56,244,.10);
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.booking-slots legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.booking-slots label {
  display: block;
  margin: 0;
}

.booking-slots input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-slots span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid #dedee9;
  border-radius: 15px;
  color: #262632;
  font-weight: 950;
  background: #fbfbfe;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.booking-slots input:checked + span,
.booking-slots span:hover {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(107,56,244,.24);
  transform: translateY(-1px);
}

.booking-side {
  display: grid;
  gap: 14px;
}

.booking-summary-card {
  padding: 24px;
}

.booking-summary-card__label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gradient);
}

.booking-summary-card h3 {
  margin: 18px 0 14px;
  color: #101018;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.booking-summary-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.booking-summary-card li {
  display: flex;
  gap: 10px;
  color: #5f5f70;
  line-height: 1.45;
  font-weight: 750;
}

.booking-summary-card li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #12c98a;
  margin-top: 2px;
}

.booking-summary-card--dark {
  color: #fff;
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 0 0, rgba(8,104,255,.32), transparent 42%),
    radial-gradient(circle at 100% 18%, rgba(255,46,135,.30), transparent 42%),
    #080812;
}

.booking-summary-card--dark h3,
.booking-summary-card--dark a {
  color: #fff;
}

.booking-summary-card--dark p {
  color: rgba(255,255,255,.66);
  line-height: 1.6;
}

.booking-summary-card--dark a {
  font-weight: 950;
}

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

@media (max-width: 680px) {
  .booking-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ===== Version Calendly réservation ===== */
.booking-band--calendly {
  background:
    radial-gradient(circle at 8% 0, rgba(8,104,255,.12), transparent 30%),
    radial-gradient(circle at 94% 16%, rgba(255,46,135,.12), transparent 34%),
    #f7f7fb;
}

.calendly-shell {
  position: relative;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) 270px;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid #e3e3ec;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 34px 100px rgba(10, 14, 30, .10);
}

.calendly-profile,
.calendly-calendar,
.calendly-times,
.calendly-confirm {
  padding: 30px;
}

.calendly-profile {
  border-right: 1px solid #ececf3;
  background:
    radial-gradient(circle at 0 0, rgba(8,104,255,.13), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(255,46,135,.11), transparent 34%),
    #fbfbfe;
}

.calendly-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: #777789;
  font-size: 13px;
  font-weight: 850;
}

.calendly-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #101018;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.calendly-brand svg {
  width: 36px;
  height: 28px;
}

.calendly-kicker {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gradient);
}

.calendly-profile h2 {
  margin: 0;
  color: #101018;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.06em;
}

.calendly-profile p:not(.calendly-kicker) {
  color: #666676;
  line-height: 1.7;
}

.calendly-meta {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  margin: 0;
  list-style: none;
}

.calendly-meta li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #404050;
  font-weight: 850;
}

.calendly-meta span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(107,56,244,.10);
}

.calendly-calendar {
  min-width: 0;
}

.calendly-calendar__head,
.calendly-times__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.calendly-calendar__head h3,
.calendly-times__head h3,
.calendly-confirm h2 {
  margin: 10px 0 0;
  color: #101018;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.045em;
}

.calendar-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calendar-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid #e2e2eb;
  border-radius: 999px;
  color: #292936;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.calendar-controls strong {
  min-width: 138px;
  text-align: center;
  color: #292936;
  font-size: 14px;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.calendar-weekdays {
  margin-bottom: 12px;
  color: #8a8a9a;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #20202b;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.calendar-day:hover:not(:disabled),
.calendar-day.is-selected {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 14px 32px rgba(107,56,244,.24);
  transform: translateY(-1px);
}

.calendar-day.is-today:not(.is-selected) {
  border-color: rgba(107,56,244,.42);
  color: #6b38f4;
}

.calendar-day:disabled,
.calendar-day.is-empty {
  color: #c6c6d2;
  cursor: default;
  opacity: .55;
}

.calendly-times {
  border-left: 1px solid #ececf3;
  background: #fbfbfe;
}

.calendly-times__head {
  display: block;
}

.time-slots {
  display: grid;
  gap: 10px;
}

.time-slot {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid #dedee9;
  border-radius: 14px;
  color: #5f35db;
  background: #fff;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.time-slot:hover,
.time-slot.is-selected {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(107,56,244,.24);
  transform: translateY(-1px);
}

.calendly-note {
  margin-top: 18px;
  color: #777789;
  font-size: 13px;
  line-height: 1.55;
}

.calendly-confirm {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(520px, 100%);
  overflow: auto;
  border-left: 1px solid #ececf3;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  box-shadow: -28px 0 80px rgba(10, 14, 30, .16);
  z-index: 4;
}

.calendly-confirm[hidden] {
  display: none;
}

.calendly-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid #e2e2eb;
  border-radius: 999px;
  color: #101018;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.calendly-confirm .booking-form__head {
  padding-right: 42px;
}

.calendly-confirm .booking-form__head p:not(.eyebrow) {
  margin: 12px 0 26px;
  color: #656575;
  font-weight: 850;
}

@media (max-width: 1120px) {
  .calendly-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .calendly-times {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid #ececf3;
  }

  .time-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .calendly-shell {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .calendly-profile,
  .calendly-calendar,
  .calendly-times {
    border: 0;
    border-bottom: 1px solid #ececf3;
  }

  .calendly-calendar__head {
    display: grid;
  }

  .calendar-controls {
    justify-content: space-between;
  }

  .time-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .calendly-profile,
  .calendly-calendar,
  .calendly-times,
  .calendly-confirm {
    padding: 22px;
  }

  .calendar-weekdays,
  .calendar-days {
    gap: 6px;
  }
}


/* ===== Chat visiteur Radioway ===== */
.site-chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 8px 18px 8px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(8,104,255,.95) 0%, rgba(107,56,244,.96) 50%, rgba(255,46,135,.96) 100%);
  box-shadow: 0 22px 54px rgba(8,104,255,.22), 0 16px 42px rgba(255,46,135,.18);
  cursor: pointer;
}

.site-chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(8,104,255,.28), 0 18px 50px rgba(255,46,135,.22);
}

.site-chat-launcher__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

.site-chat-launcher__icon svg {
  width: 21px;
  height: 21px;
}

.site-chat-launcher__label {
  display: grid;
  gap: 1px;
  text-align: left;
}

.site-chat-launcher__label strong {
  font-size: 14px;
  line-height: 1.1;
}

.site-chat-launcher__label small {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
}

.site-chat-widget[hidden] { display: none !important; }

.site-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 66;
  width: min(420px, calc(100vw - 30px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 0%, rgba(255,46,135,.18), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(8,104,255,.16), transparent 36%),
    #080a18;
  box-shadow: 0 30px 90px rgba(0,0,0,.50), 0 0 70px rgba(107,56,244,.14);
}

.site-chat-widget__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: #0d1020;
}

.site-chat-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-chat-agent > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0868ff, #6b38f4 52%, #ff2e87);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(255,46,135,.18);
}

.site-chat-agent strong,
.site-chat-agent small { display: block; }
.site-chat-agent strong { color: #fff; font-size: 16px; }
.site-chat-agent small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
.site-chat-agent small i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32e998;
  box-shadow: 0 0 0 5px rgba(50,233,152,.10);
}

.site-chat-widget__head button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: rgba(255,255,255,.80);
  background: #151827;
  font-size: 22px;
  cursor: pointer;
}

.site-chat-widget__intro {
  margin: 14px 16px 0;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8,104,255,.10), rgba(255,46,135,.08));
}

.site-chat-widget__intro p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

.site-chat-widget__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  min-height: 190px;
  padding: 16px;
  overflow: auto;
}

.site-chat-message {
  max-width: 88%;
  display: grid;
  gap: 5px;
}
.site-chat-message p {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px 18px 18px 7px;
  color: rgba(255,255,255,.91);
  background: #151827;
  line-height: 1.5;
  font-size: 14px;
}
.site-chat-message small { color: rgba(255,255,255,.44); font-size: 11px; }
.site-chat-message.is-user { align-self: flex-end; text-align: right; }
.site-chat-message.is-user p {
  border-color: rgba(255,46,135,.18);
  border-radius: 18px 18px 7px 18px;
  background: linear-gradient(135deg, rgba(8,104,255,.92), rgba(107,56,244,.92) 50%, rgba(255,46,135,.92));
}

.site-chat-suggestions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 16px 14px;
}
.site-chat-suggestions button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  color: rgba(255,255,255,.82);
  background: #111321;
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.site-chat-suggestions button:hover {
  border-color: rgba(255,46,135,.34);
  background: #171a2b;
}

.site-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 15px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.09);
  background: #0d1020;
}
.site-chat-form input {
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  color: #fff;
  background: #111321;
  padding: 0 14px;
  outline: 0;
  font: inherit;
}
.site-chat-form input:focus {
  border-color: rgba(255,46,135,.42);
  box-shadow: 0 0 0 4px rgba(255,46,135,.10);
}
.site-chat-form button {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0868ff 0%, #6b38f4 52%, #ff2e87 100%);
  padding: 0 16px;
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 640px) {
  .site-chat-launcher { right: 14px; bottom: 14px; min-height: 54px; }
  .site-chat-launcher__label small { display: none; }
  .site-chat-widget { right: 14px; bottom: 82px; }
  .site-chat-form { grid-template-columns: 1fr; }
}


/* ===== Dynamique site Radioway ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 140;
  width: 100%;
  height: 4px;
  pointer-events: none;
  background: rgba(255,255,255,.06);
}

.scroll-progress__bar {
  width: 0%;
  height: 100%;
  background: var(--gradient);
  box-shadow: 0 0 22px rgba(255,46,135,.55);
}

.rw-motion-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.rw-radio-waves {
  position: absolute;
  left: -140px;
  right: -140px;
  bottom: -185px;
  height: 360px;
  opacity: .46;
}

.rw-radio-waves span {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(180px + var(--i) * 160px);
  height: calc(180px + var(--i) * 92px);
  border: 1px solid rgba(255,255,255,.13);
  border-top-color: rgba(8,104,255,.34);
  border-right-color: rgba(255,46,135,.24);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%) scale(.86);
  animation: rwWavePulse 3.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -.38s);
}

.rw-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: translateX(-120%);
  animation: rwHeroScan 6.5s ease-in-out infinite;
}

.hero__main h1,
.hero__main > p,
.hero__buttons,
.subpage-hero__main h1,
.subpage-hero__main > p,
.subpage-actions {
  animation: radiowayIntroUp .78s cubic-bezier(.2,.85,.2,1) both;
}

.hero__main > p,
.subpage-hero__main > p { animation-delay: .1s; }
.hero__buttons,
.subpage-actions { animation-delay: .2s; }

.brand__mark,
.mini-logo,
.premium-cta__logo,
.testimonial__logo { transform-origin: center; }
.brand:hover .brand__mark,
.hero .brand__mark { animation: radiowayLogoFloat 2.6s ease-in-out infinite; }

.brand__mark rect { transform-box: fill-box; transform-origin: center; }
.hero .brand__mark rect:nth-child(1), .brand:hover .brand__mark rect:nth-child(1) { animation: rwLogoBar 1.1s ease-in-out infinite; }
.hero .brand__mark rect:nth-child(2), .brand:hover .brand__mark rect:nth-child(2) { animation: rwLogoBar 1s ease-in-out infinite .08s; }
.hero .brand__mark rect:nth-child(3), .brand:hover .brand__mark rect:nth-child(3) { animation: rwLogoBar 1.18s ease-in-out infinite .16s; }
.hero .brand__mark rect:nth-child(4), .brand:hover .brand__mark rect:nth-child(4) { animation: rwLogoBar 1.05s ease-in-out infinite .24s; }
.hero .brand__mark rect:nth-child(5), .brand:hover .brand__mark rect:nth-child(5) { animation: rwLogoBar .96s ease-in-out infinite .32s; }

.js-ready .feature-card,
.js-ready .price-card,
.js-ready .step-card,
.js-ready .testimonial,
.js-ready .premium-cta,
.js-ready .pro-offer,
.js-ready .site-client-access__inner,
.js-ready .internal-card,
.js-ready .offer-detail-card,
.js-ready .service-list article,
.js-ready .admin-panel--pro,
.js-ready .admin-kpi,
.js-ready .footer__column,
.js-ready .footer-contact {
  opacity: 0;
  transform: translateY(34px) scale(.975);
  transition: opacity .72s cubic-bezier(.2,.85,.2,1), transform .72s cubic-bezier(.2,.85,.2,1), box-shadow .25s ease, border-color .25s ease;
}

.js-ready .is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-card,
.price-card,
.step-card,
.internal-card,
.offer-detail-card,
.service-list article,
.admin-kpi,
.admin-panel--pro,
.button,
.site-chat-launcher {
  will-change: transform;
}

.feature-card:hover,
.price-card:hover,
.step-card:hover,
.internal-card:hover,
.offer-detail-card:hover,
.service-list article:hover,
.admin-kpi:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow: 0 24px 56px rgba(20,20,35,.12);
}

.premium-cta,
.button--gradient,
.site-chat-launcher {
  background-size: 220% 220%;
  animation: radiowayGradientFlow 5.5s ease infinite;
}

.button::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform .55s ease;
  z-index: -1;
}

.button:hover::after { transform: translateX(120%) skewX(-18deg); }

.feature-card__icon,
.mini-logo,
.step-card__top span,
.site-chat-agent > span {
  position: relative;
  overflow: hidden;
}

.feature-card__icon::after,
.mini-logo::after,
.step-card__top span::after,
.site-chat-agent > span::after {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: translateX(-120%) rotate(18deg);
  animation: radiowayShine 4.2s ease-in-out infinite;
}

.trusted__inner {
  position: relative;
  overflow: hidden;
}

.station {
  transition: transform .22s ease, opacity .22s ease, filter .22s ease;
}

.station:hover {
  transform: translateY(-4px) scale(1.04);
  opacity: .96;
  filter: drop-shadow(0 0 18px rgba(107,56,244,.24));
}

.station strong,
.price strong,
.station--more strong { font-variant-numeric: tabular-nums; }

.rw-floating-pill {
  position: fixed;
  right: 24px;
  top: 92px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(8,10,24,.74);
  box-shadow: 0 16px 38px rgba(0,0,0,.24);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  font-size: 12px;
  font-weight: 850;
}

.rw-floating-pill.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rw-floating-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #32e998;
  box-shadow: 0 0 0 6px rgba(50,233,152,.12);
}

.site-chat-launcher::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255,46,135,.28);
  border-radius: inherit;
  opacity: 0;
  animation: rwChatPulse 2.8s ease-in-out infinite;
}

@keyframes radiowayIntroUp {
  from { opacity: 0; transform: translateY(24px) scale(.98); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes radiowayLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0 rgba(255,46,135,0)); }
  50% { transform: translateY(-3px) scale(1.035); filter: drop-shadow(0 0 16px rgba(255,46,135,.32)); }
}

@keyframes rwLogoBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.72); }
}

@keyframes radiowayGradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes radiowayShine {
  0%, 55% { transform: translateX(-120%) rotate(18deg); }
  70%, 100% { transform: translateX(120%) rotate(18deg); }
}

@keyframes rwWavePulse {
  0%, 100% { opacity: .22; transform: translateX(-50%) scale(.82); }
  50% { opacity: .72; transform: translateX(-50%) scale(1); }
}

@keyframes rwHeroScan {
  0%, 62% { transform: translateX(-120%); opacity: 0; }
  72% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes rwChatPulse {
  0% { opacity: 0; transform: scale(.96); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.12); }
}

@media (max-width: 780px) {
  .rw-floating-pill { display: none; }
}

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

  .rw-motion-layer,
  .rw-floating-pill { display: none !important; }

  .js-ready .feature-card,
  .js-ready .price-card,
  .js-ready .step-card,
  .js-ready .testimonial,
  .js-ready .premium-cta,
  .js-ready .pro-offer,
  .js-ready .site-client-access__inner,
  .js-ready .internal-card,
  .js-ready .offer-detail-card,
  .js-ready .service-list article,
  .js-ready .admin-panel--pro,
  .js-ready .admin-kpi,
  .js-ready .footer__column,
  .js-ready .footer-contact {
    opacity: 1;
    transform: none;
  }
}


/* ===== Nettoyage section Expertise ===== */
.approach {
  isolation: isolate;
  overflow: hidden;
  background: #fff !important;
}

.approach::before,
.approach::after {
  display: none !important;
}

.hero {
  overflow: hidden !important;
}

.rw-radio-waves {
  bottom: -230px;
  opacity: .32;
}


/* ===== Refonte confirmation appel ===== */
.calendly-confirm--premium {
  width: min(610px, 100%);
  padding: 0;
  color: #101018;
  border-left: 1px solid #ececf3;
  background: #fff;
  backdrop-filter: none;
  box-shadow: -28px 0 80px rgba(10, 14, 30, .14);
}

.calendly-confirm--premium .calendly-close {
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid #e4e4ee;
  color: #20202b;
  background: #fff;
  box-shadow: 0 10px 26px rgba(10,14,30,.07);
}

.calendly-confirm--premium .calendly-close:hover {
  border-color: rgba(255,46,135,.28);
  color: #ff2e87;
}

.confirm-panel__top {
  padding: 34px 34px 22px;
  border-bottom: 1px solid #eeeeF5;
  background:
    radial-gradient(circle at 0 0, rgba(8,104,255,.08), transparent 32%),
    radial-gradient(circle at 100% 0, rgba(255,46,135,.07), transparent 34%),
    #fff;
}

.confirm-panel__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(107,56,244,.18);
  border-radius: 999px;
  color: #6b38f4;
  background: rgba(107,56,244,.07);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.confirm-panel__top h2 {
  max-width: 390px;
  margin: 18px 46px 0 0;
  color: #101018;
  font-size: 40px;
  line-height: .98;
  letter-spacing: -.055em;
}

.confirm-panel__top p {
  max-width: 420px;
  margin: 12px 0 0;
  color: #666676;
  line-height: 1.6;
}

.confirm-summary-card {
  margin: 22px 34px;
  padding: 18px;
  border: 1px solid #e5e5ef;
  border-radius: 22px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(115deg, rgba(8,104,255,.42), rgba(107,56,244,.26), rgba(255,46,135,.38)) border-box;
  box-shadow: 0 18px 42px rgba(10,14,30,.06);
}

.confirm-summary-card span,
.confirm-summary-card small,
.confirm-fields label > span {
  display: block;
}

.confirm-summary-card span {
  color: #777789;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.confirm-summary-card strong {
  display: block;
  margin-top: 7px;
  color: #11111a;
  font-size: 20px;
  line-height: 1.25;
}

.confirm-summary-card small {
  margin-top: 7px;
  color: #777789;
  line-height: 1.45;
}

.confirm-fields {
  display: grid;
  gap: 14px;
  padding: 0 34px 22px;
}

.confirm-field-grid {
  gap: 14px;
}

.confirm-fields label,
.calendly-confirm--premium .form-consent {
  color: #20202b;
  font-size: 13px;
  font-weight: 850;
}

.confirm-fields label > span {
  margin-bottom: 8px;
}

.calendly-confirm--premium input,
.calendly-confirm--premium select,
.calendly-confirm--premium textarea {
  width: 100%;
  border: 1px solid #dedee9;
  border-radius: 16px;
  padding: 14px 15px;
  color: #101018;
  background: #fbfbfe;
  outline: none;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.calendly-confirm--premium input::placeholder,
.calendly-confirm--premium textarea::placeholder {
  color: #9a9aaa;
}

.calendly-confirm--premium select {
  color-scheme: light;
}

.calendly-confirm--premium textarea {
  min-height: 112px;
  resize: vertical;
}

.calendly-confirm--premium input:focus,
.calendly-confirm--premium select:focus,
.calendly-confirm--premium textarea:focus {
  border-color: rgba(107,56,244,.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107,56,244,.10);
}

.confirm-consent {
  margin: 0 34px 16px;
  padding: 15px;
  border: 1px solid #e7e7f0;
  border-radius: 18px;
  background: #fbfbfe;
}

.confirm-consent input {
  width: 18px;
  height: 18px;
  accent-color: #6b38f4;
}

.confirm-consent span {
  color: #5f5f70;
  line-height: 1.45;
}

.calendly-confirm--premium .form-message {
  margin: 0 34px 14px;
  color: #ff2e87;
  font-weight: 800;
}

.calendly-confirm--premium .form-message.is-success {
  color: #0cab74;
}

.confirm-submit {
  width: calc(100% - 68px);
  min-height: 54px;
  margin: 0 34px 34px;
  border-radius: 18px;
  font-size: 14px;
}

@media (max-width: 820px) {
  .calendly-confirm--premium {
    position: fixed;
    inset: 16px;
    width: auto;
    border: 1px solid #e3e3ec;
    border-radius: 26px;
    box-shadow: 0 28px 90px rgba(10,14,30,.22);
  }
}

@media (max-width: 560px) {
  .confirm-panel__top,
  .confirm-fields {
    padding-left: 22px;
    padding-right: 22px;
  }

  .confirm-summary-card,
  .confirm-consent,
  .calendly-confirm--premium .form-message {
    margin-left: 22px;
    margin-right: 22px;
  }

  .confirm-submit {
    width: calc(100% - 44px);
    margin-left: 22px;
    margin-right: 22px;
  }

  .confirm-panel__top h2 {
    font-size: 34px;
  }
}


/* ===== Correctifs confirmation appel ===== */
.calendar-day.is-today:not(:disabled) {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 14px 32px rgba(107, 56, 244, .24), 0 0 0 1px rgba(255, 255, 255, .24) inset;
}

.calendar-day.is-today:not(:disabled):hover,
.calendar-day.is-today.is-selected {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 16px 38px rgba(255, 46, 135, .22), 0 0 0 1px rgba(255, 255, 255, .28) inset;
}

.confirm-panel__top h2 {
  max-width: 330px;
  margin-right: 68px;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.confirm-panel__top p {
  max-width: 410px;
}

.confirm-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.calendly-confirm--premium .confirm-consent input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  appearance: auto;
  border: 1px solid #d8d8e6;
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
  accent-color: #6b38f4;
}

.confirm-consent span {
  display: block;
  font-size: 13px;
  line-height: 1.48;
}

@media (max-width: 720px) {
  .confirm-panel__top h2 {
    max-width: 270px;
    margin-right: 48px;
    font-size: 31px;
  }
}


/* ===== Page RadioDeck ===== */
.radiodeck-hero {
  min-height: 620px;
}

.radiodeck-hero::after {
  content: "";
  position: absolute;
  inset: auto 6% 60px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 46, 135, .18), transparent 68%);
  pointer-events: none;
}

.radiodeck-hero__main h1 {
  max-width: 920px;
}

.radiodeck-showcase-band {
  padding-top: 88px;
  padding-bottom: 88px;
}

.radiodeck-showcase {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1fr);
  gap: 42px;
  align-items: center;
}

.radiodeck-copy h2,
.radiodeck-editor-card h2 {
  margin: 12px 0 0;
  color: #101018;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: .96;
  letter-spacing: -.055em;
}

.radiodeck-copy > p:not(.eyebrow),
.radiodeck-editor-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: #62626d;
  font-size: 16px;
  line-height: 1.7;
}

.radiodeck-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.radiodeck-proof article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 24, .09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(10, 14, 30, .06);
}

.radiodeck-proof strong {
  display: block;
  color: #101018;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.045em;
}

.radiodeck-proof span {
  display: block;
  margin-top: 10px;
  color: #74747d;
  font-size: 13px;
  line-height: 1.35;
}

.radiodeck-ui {
  position: relative;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(#111421, #111421) padding-box,
    linear-gradient(135deg, rgba(8,104,255,.9), rgba(107,56,244,.58), rgba(255,46,135,.85)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 34px 90px rgba(8, 10, 25, .22), 0 0 60px rgba(107, 56, 244, .18);
}

.radiodeck-window {
  overflow: hidden;
  min-height: 430px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 12%, rgba(255,46,135,.24), transparent 36%),
    radial-gradient(circle at 16% 18%, rgba(8,104,255,.24), transparent 38%),
    linear-gradient(145deg, #070917, #111329 58%, #080a17);
}

.radiodeck-window__top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.radiodeck-window__top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}

.radiodeck-window__top span:nth-child(1) { background: #ff4b91; }
.radiodeck-window__top span:nth-child(2) { background: #6b38f4; }
.radiodeck-window__top span:nth-child(3) { background: #0868ff; }
.radiodeck-window__top strong { margin-left: auto; font-size: 13px; color: rgba(255,255,255,.78); }

.radiodeck-dashboard {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
}

.radiodeck-dashboard aside,
.radiodeck-dashboard main {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.radiodeck-dashboard aside {
  padding: 18px;
}

.radiodeck-mini-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.radiodeck-mini-logo svg { width: 34px; height: 26px; }
.radiodeck-dashboard b { display: block; font-size: 14px; }
.radiodeck-dashboard small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-size: 11px; }
.radiodeck-dashboard nav { display: grid; gap: 10px; margin-top: 28px; }
.radiodeck-dashboard nav i { height: 30px; border-radius: 12px; background: rgba(255,255,255,.09); }
.radiodeck-dashboard nav i:first-child { background: linear-gradient(90deg, rgba(8,104,255,.8), rgba(255,46,135,.62)); }

.radiodeck-dashboard main {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.radiodeck-live {
  min-height: 146px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 15%, rgba(255,46,135,.28), transparent 42%),
    linear-gradient(135deg, rgba(8,104,255,.22), rgba(255,255,255,.045));
}

.radiodeck-live span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255,46,135,.45);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,46,135,.18);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.radiodeck-live strong {
  display: block;
  margin-top: 22px;
  font-size: 34px;
  letter-spacing: -.045em;
}

.radiodeck-bars {
  display: flex;
  align-items: end;
  gap: 9px;
  min-height: 74px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(0,0,0,.18);
}

.radiodeck-bars i {
  flex: 1;
  min-height: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #ff2e87, #6b38f4 48%, #0868ff);
}

.radiodeck-bars i:nth-child(2) { height: 52px; }
.radiodeck-bars i:nth-child(3) { height: 38px; }
.radiodeck-bars i:nth-child(4) { height: 64px; }
.radiodeck-bars i:nth-child(5) { height: 44px; }
.radiodeck-bars i:nth-child(6) { height: 58px; }

.radiodeck-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.radiodeck-cards article {
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 850;
}

.radiodeck-feature-grid .internal-card {
  background: rgba(255,255,255,.92);
}

.radiodeck-editor-band {
  padding: 64px 0 92px;
  background: #f7f7fb;
}

.radiodeck-editor-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 38px;
  border: 1px solid rgba(17,17,24,.09);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(8,104,255,.08), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(255,46,135,.08), transparent 34%),
    #fff;
  box-shadow: 0 30px 90px rgba(10, 14, 30, .08);
}

.radiodeck-editor-card .button {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .radiodeck-showcase {
    grid-template-columns: 1fr;
  }

  .radiodeck-ui {
    max-width: 720px;
  }

  .radiodeck-editor-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .radiodeck-proof,
  .radiodeck-cards {
    grid-template-columns: 1fr;
  }

  .radiodeck-dashboard {
    grid-template-columns: 1fr;
  }

  .radiodeck-dashboard aside {
    display: none;
  }

  .radiodeck-showcase-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}


/* ===== Encarts produits accueil ===== */
.home-product-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 30px;
  padding: 26px;
  border: 1px solid rgba(17,17,24,.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(8,104,255,.08), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(255,46,135,.08), transparent 34%),
    #fff;
  box-shadow: 0 24px 70px rgba(10,14,30,.07);
}

.home-product-callout h3 {
  max-width: 610px;
  margin: 10px 0 0;
  color: #101018;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}

.home-product-callout p:not(.eyebrow) {
  max-width: 590px;
  margin: 12px 0 0;
  color: #676773;
  line-height: 1.6;
}

.home-product-callout .button {
  flex: 0 0 auto;
}

@media (max-width: 820px) {
  .home-product-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ===== RadioDeck contenu officiel ===== */
.radiodeck-showcase--official {
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.05fr);
}

.radiodeck-official-preview {
  position: relative;
  margin: 0;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 34px;
  background:
    linear-gradient(#111421, #111421) padding-box,
    linear-gradient(135deg, rgba(8,104,255,.9), rgba(107,56,244,.58), rgba(255,46,135,.85)) border-box;
  box-shadow: 0 34px 90px rgba(8, 10, 25, .22), 0 0 60px rgba(107, 56, 244, .18);
}

.radiodeck-official-preview img,
.radiodeck-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.radiodeck-official-preview span {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 13px;
  border: 1px solid rgba(255,46,135,.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,46,135,.22);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.radiodeck-official-preview figcaption,
.radiodeck-gallery figcaption {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.radiodeck-gallery-band {
  padding-top: 86px;
  padding-bottom: 86px;
  background: #080a16;
}

.radiodeck-gallery-band .internal-heading h2,
.radiodeck-gallery-band .internal-heading .eyebrow {
  color: #fff;
}

.radiodeck-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.radiodeck-gallery figure {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
}

.radiodeck-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.radiodeck-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(17,17,24,.09);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(10,14,30,.07);
}

.radiodeck-plan--featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 0, rgba(255,46,135,.28), transparent 38%),
    radial-gradient(circle at 0 0, rgba(8,104,255,.24), transparent 38%),
    linear-gradient(145deg, #0a0d1f, #18132a 62%, #0d0e1b);
  box-shadow: 0 34px 90px rgba(10,14,30,.18), 0 0 60px rgba(255,46,135,.14);
}

.radiodeck-plan h3 {
  margin: 10px 0 0;
  color: inherit;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
  letter-spacing: -.055em;
}

.radiodeck-plan h3 span {
  color: rgba(255,255,255,.68);
  font-size: 18px;
  letter-spacing: 0;
}

.radiodeck-plan > p:not(.offer-tag) {
  margin: 16px 0 0;
  color: #686875;
  line-height: 1.55;
}

.radiodeck-plan--featured > p:not(.offer-tag),
.radiodeck-plan--featured li {
  color: rgba(255,255,255,.74);
}

.radiodeck-plan ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.radiodeck-plan li {
  color: #4f4f5c;
  font-size: 13px;
  line-height: 1.42;
}

.radiodeck-plan li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 10px;
  font-weight: 950;
}

.radiodeck-plan .button {
  margin-top: auto;
}

.radiodeck-plan--featured .offer-tag {
  color: #ff6cac;
}

@media (max-width: 980px) {
  .radiodeck-showcase--official,
  .radiodeck-plans,
  .radiodeck-gallery {
    grid-template-columns: 1fr;
  }

  .radiodeck-official-preview,
  .radiodeck-gallery figure {
    max-width: 720px;
  }
}


/* ===== RadioDeck intégration premium ===== */
.radiodeck-hero {
  min-height: 760px;
  padding-bottom: 70px;
  overflow: hidden;
}

.radiodeck-hero::before {
  opacity: .72;
}

.radiodeck-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(560px, 1fr);
  gap: 38px;
  align-items: center;
  padding-top: 56px;
}

.radiodeck-hero-copy {
  color: #fff;
}

.radiodeck-hero-copy h1 {
  max-width: 690px;
  margin: 12px 0 0;
  font-size: clamp(54px, 6.3vw, 86px);
  line-height: .88;
  letter-spacing: -.07em;
}

.radiodeck-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.65;
}

.radiodeck-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.radiodeck-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 850;
}

.radiodeck-hero-copy .subpage-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.radiodeck-hero-visual,
.radiodeck-product-shot {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 34px;
  background:
    linear-gradient(#101321, #101321) padding-box,
    linear-gradient(135deg, rgba(8,104,255,.82), rgba(107,56,244,.5), rgba(255,46,135,.82)) border-box;
  box-shadow: 0 38px 110px rgba(0,0,0,.34), 0 0 80px rgba(107,56,244,.18);
}

.radiodeck-hero-visual {
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
}

.radiodeck-hero-visual::after {
  content: "";
  position: absolute;
  inset: 18% -6% -9% 18%;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(8,104,255,.36), rgba(255,46,135,.32));
  filter: blur(34px);
  opacity: .62;
}

.radiodeck-hero-visual img,
.radiodeck-product-shot img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.radiodeck-hero-visual__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px 12px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 850;
}

.radiodeck-hero-visual__bar i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

.radiodeck-hero-visual__bar i:nth-child(1) { background: #ff4b91; }
.radiodeck-hero-visual__bar i:nth-child(2) { background: #6b38f4; }
.radiodeck-hero-visual__bar i:nth-child(3) { background: #0868ff; }
.radiodeck-hero-visual__bar strong { margin-left: auto; }

.radiodeck-status-pill {
  position: absolute;
  z-index: 3;
  top: 66px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, rgba(255,46,135,.7), rgba(107,56,244,.62));
  box-shadow: 0 16px 34px rgba(255,46,135,.24);
  backdrop-filter: blur(14px);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.radiodeck-hero-visual figcaption {
  margin: 12px 0 2px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.radiodeck-product-band {
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 15% 0, rgba(8,104,255,.08), transparent 34%),
    radial-gradient(circle at 95% 8%, rgba(255,46,135,.08), transparent 30%),
    #fff;
}

.radiodeck-product-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  gap: 44px;
  align-items: center;
}

.radiodeck-product-shot {
  background:
    linear-gradient(#f7f8fc, #f7f8fc) padding-box,
    linear-gradient(135deg, rgba(8,104,255,.42), rgba(107,56,244,.26), rgba(255,46,135,.42)) border-box;
  box-shadow: 0 34px 90px rgba(10,14,30,.12);
}

.radiodeck-product-copy h2 {
  max-width: 560px;
}

.radiodeck-product-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.radiodeck-product-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid rgba(17,17,24,.08);
  border-radius: 16px;
  color: #252532;
  background: #fff;
  box-shadow: 0 12px 32px rgba(10,14,30,.05);
  font-size: 13px;
  font-weight: 850;
}

.radiodeck-product-list i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-style: normal;
  font-size: 12px;
}

.radiodeck-feature-grid {
  align-items: stretch;
}

.radiodeck-feature-grid .internal-card {
  min-height: 240px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.radiodeck-feature-grid .internal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,56,244,.22);
  box-shadow: 0 26px 70px rgba(10,14,30,.11);
}

.radiodeck-gallery-band {
  background:
    radial-gradient(circle at 8% 0, rgba(8,104,255,.18), transparent 32%),
    radial-gradient(circle at 92% 5%, rgba(255,46,135,.16), transparent 34%),
    #070916;
}

.radiodeck-gallery figure:first-child {
  grid-column: span 2;
}

.radiodeck-gallery figure {
  overflow: hidden;
}

.radiodeck-gallery img {
  height: 250px;
  object-fit: cover;
  object-position: left top;
}

.radiodeck-gallery figure:first-child img {
  height: 330px;
}

.radiodeck-plans {
  align-items: stretch;
}

.radiodeck-plan {
  overflow: hidden;
}

.radiodeck-plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gradient);
  opacity: .9;
}

.radiodeck-plan--featured {
  transform: translateY(-10px);
}

.radiodeck-editor-card {
  position: relative;
  overflow: hidden;
}

.radiodeck-editor-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,46,135,.13), transparent 68%);
  pointer-events: none;
}

@media (max-width: 1080px) {
  .radiodeck-hero-layout,
  .radiodeck-product-split {
    grid-template-columns: 1fr;
  }

  .radiodeck-hero-visual,
  .radiodeck-product-shot {
    max-width: 820px;
  }

  .radiodeck-hero-visual {
    transform: none;
  }
}

@media (max-width: 720px) {
  .radiodeck-hero {
    min-height: auto;
  }

  .radiodeck-hero-layout {
    padding-top: 34px;
  }

  .radiodeck-hero-copy h1 {
    font-size: 48px;
  }

  .radiodeck-hero-copy .subpage-actions,
  .radiodeck-hero-copy .subpage-actions .button {
    width: 100%;
  }

  .radiodeck-gallery figure:first-child {
    grid-column: auto;
  }

  .radiodeck-gallery img,
  .radiodeck-gallery figure:first-child img {
    height: auto;
  }

  .radiodeck-plan--featured {
    transform: none;
  }
}


/* ===== RadioDeck thème sombre final ===== */
.radiodeck-page {
  color: #f6f7ff;
  background:
    radial-gradient(circle at 10% 0, rgba(8,104,255,.18), transparent 30%),
    radial-gradient(circle at 92% 5%, rgba(255,46,135,.14), transparent 28%),
    linear-gradient(180deg, #050712 0%, #080a16 48%, #050712 100%);
}

.radiodeck-page .announcement {
  color: rgba(255,255,255,.8);
  background: #050712;
  border-bottom-color: rgba(255,255,255,.08);
}

.radiodeck-page .radiodeck-hero {
  background:
    radial-gradient(circle at 12% 8%, rgba(8,104,255,.22), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(255,46,135,.18), transparent 31%),
    linear-gradient(180deg, #050712 0%, #080a18 100%);
}

.radiodeck-page .radiodeck-hero::before {
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .36;
}

.radiodeck-page .radiodeck-hero-copy h1,
.radiodeck-page .radiodeck-copy h2,
.radiodeck-page .internal-heading h2,
.radiodeck-page .radiodeck-editor-card h2 {
  color: #fff;
}

.radiodeck-page .radiodeck-hero-copy > p:not(.eyebrow),
.radiodeck-page .radiodeck-copy > p:not(.eyebrow),
.radiodeck-page .radiodeck-editor-card p:not(.eyebrow),
.radiodeck-page .internal-card p,
.radiodeck-page .radiodeck-plan > p:not(.offer-tag),
.radiodeck-page .radiodeck-plan li {
  color: rgba(229,233,247,.68);
}

.radiodeck-page .button--light {
  color: #070916;
  background: #fff;
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 18px 42px rgba(255,255,255,.08), 0 18px 46px rgba(8,104,255,.13);
}

.radiodeck-page .button--outline-light,
.radiodeck-page .button--outline-dark {
  color: #fff;
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.radiodeck-page .radiodeck-hero-visual,
.radiodeck-page .radiodeck-product-shot,
.radiodeck-page .radiodeck-gallery figure {
  background:
    linear-gradient(#0b0e1b, #0b0e1b) padding-box,
    linear-gradient(135deg, rgba(8,104,255,.72), rgba(107,56,244,.42), rgba(255,46,135,.72)) border-box;
  box-shadow: 0 34px 100px rgba(0,0,0,.38), 0 0 70px rgba(107,56,244,.16);
}

.radiodeck-page .radiodeck-hero-visual img,
.radiodeck-page .radiodeck-product-shot img,
.radiodeck-page .radiodeck-gallery img {
  filter: saturate(1.04) contrast(1.03);
}

.radiodeck-page .radiodeck-product-band,
.radiodeck-page .internal-band--soft,
.radiodeck-page .radiodeck-editor-band {
  background:
    radial-gradient(circle at 14% 0, rgba(8,104,255,.12), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(255,46,135,.10), transparent 31%),
    #070916;
}

.radiodeck-page .radiodeck-product-band {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.radiodeck-page .radiodeck-product-list span,
.radiodeck-page .radiodeck-feature-grid .internal-card,
.radiodeck-page .radiodeck-plan,
.radiodeck-page .radiodeck-editor-card,
.radiodeck-page .radiodeck-proof article {
  border-color: rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  box-shadow: 0 24px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}

.radiodeck-page .radiodeck-product-list span {
  color: rgba(255,255,255,.86);
}

.radiodeck-page .radiodeck-proof strong,
.radiodeck-page .radiodeck-plan h3,
.radiodeck-page .internal-card h3 {
  color: #fff;
}

.radiodeck-page .radiodeck-proof span {
  color: rgba(229,233,247,.64);
}

.radiodeck-page .internal-icon {
  color: #fff;
  background:
    linear-gradient(#121629, #121629) padding-box,
    linear-gradient(135deg, rgba(8,104,255,.65), rgba(255,46,135,.55)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 42px rgba(8,104,255,.12);
}

.radiodeck-page .radiodeck-feature-grid .internal-card:hover {
  border-color: rgba(255,46,135,.22);
  box-shadow: 0 32px 90px rgba(0,0,0,.32), 0 0 48px rgba(107,56,244,.14);
}

.radiodeck-page .radiodeck-gallery-band {
  background:
    radial-gradient(circle at 50% -10%, rgba(8,104,255,.18), transparent 38%),
    radial-gradient(circle at 94% 10%, rgba(255,46,135,.16), transparent 30%),
    #050712;
}

.radiodeck-page .radiodeck-plan--featured {
  border-color: rgba(255,46,135,.2);
  background:
    radial-gradient(circle at 90% 0, rgba(255,46,135,.26), transparent 38%),
    radial-gradient(circle at 0 0, rgba(8,104,255,.22), transparent 40%),
    linear-gradient(145deg, rgba(18,22,42,.98), rgba(13,12,29,.98));
  box-shadow: 0 38px 100px rgba(0,0,0,.38), 0 0 80px rgba(255,46,135,.14);
}

.radiodeck-page .radiodeck-plan .offer-tag,
.radiodeck-page .eyebrow {
  color: #ff5fa8;
}

.radiodeck-page .radiodeck-plan li::before,
.radiodeck-page .radiodeck-product-list i {
  box-shadow: 0 10px 26px rgba(255,46,135,.18);
}

.radiodeck-page .radiodeck-editor-card {
  background:
    radial-gradient(circle at 0 0, rgba(8,104,255,.14), transparent 36%),
    radial-gradient(circle at 100% 0, rgba(255,46,135,.13), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}

.radiodeck-page .footer {
  background: #050712;
  border-top: 1px solid rgba(255,255,255,.08);
}

.radiodeck-page .footer__bottom {
  border-top-color: rgba(255,255,255,.08);
}

@media (max-width: 720px) {
  .radiodeck-page .radiodeck-hero-copy h1 {
    font-size: 44px;
    letter-spacing: -.055em;
  }
}


/* ===== Section Pour qui ===== */
.audiences {
  padding: 20px 0 18px;
  background:
    radial-gradient(circle at 16% 25%, rgba(8,104,255,.045), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(255,44,131,.045), transparent 30%),
    #fff;
  border-bottom: 1px solid #e2e2e7;
}

.audiences__heading {
  margin-bottom: 18px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

.audience-card {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid #ededf2;
  border-radius: 17px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 11px 30px rgba(20,20,30,.045);
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background: radial-gradient(circle at 82% 14%, var(--accent), transparent 38%);
  pointer-events: none;
}

.audience-card--blue { --accent: var(--blue); }
.audience-card--purple { --accent: var(--purple); }
.audience-card--violet { --accent: #8c3eef; }
.audience-card--pink { --accent: var(--pink); }

.audience-card__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 5px 8px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, #fff);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.audience-card__icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  color: #fff;
  background: var(--gradient);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(91,58,241,.20);
}

.audience-card__icon svg {
  width: 23px;
  height: 23px;
}

.audience-card h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 7px;
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.audience-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4d4d56;
  font-size: 9px;
  line-height: 1.55;
}

.audiences__cta {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 10px 13px 10px 17px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 40%, rgba(255,44,131,.30), transparent 38%),
    linear-gradient(105deg, #050510 0%, #0c0b1d 55%, #2a0825 100%);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(13,3,33,.12);
}

.audiences__cta div {
  display: grid;
  gap: 3px;
}

.audiences__cta strong {
  font-size: 13px;
  letter-spacing: -.015em;
}

.audiences__cta span {
  color: #c9c5d2;
  font-size: 8.5px;
}

.audiences__cta .button {
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 11px;
  font-size: 9.5px;
}


/* Ajustements responsive et version grande pour la section Pour qui */
.audiences {
  padding: 58px 0 52px;
}

.audiences__heading {
  margin-bottom: 34px;
}

.audience-grid {
  gap: 18px;
}

.audience-card {
  min-height: 252px;
  padding: 24px;
  border-radius: 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 28%, #ededf2);
  box-shadow: 0 18px 46px rgba(20,20,30,.075);
}

.audience-card__tag {
  padding: 7px 10px;
  font-size: 9px;
}

.audience-card__icon {
  width: 56px;
  height: 56px;
  margin-top: 24px;
  border-radius: 17px;
}

.audience-card__icon svg {
  width: 30px;
  height: 30px;
}

.audience-card h3 {
  margin-top: 22px;
  font-size: 22px;
}

.audience-card p {
  font-size: 13.2px;
  line-height: 1.58;
}

.audiences__cta {
  min-height: 78px;
  margin-top: 18px;
  padding: 16px 18px 16px 24px;
  border-radius: 21px;
}

.audiences__cta strong {
  font-size: 17px;
}

.audiences__cta span {
  font-size: 12.5px;
}

.audiences__cta .button {
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 13px;
}

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

@media (max-width: 780px) {
  .audiences {
    padding-block: 38px;
  }

  .audience-card {
    min-height: auto;
  }

  .audiences__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .audiences__cta .button {
    width: 100%;
  }
}

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

  .audience-card {
    padding: 22px;
  }
}


/* ===== Encart premium RadioDeck sur l'accueil ===== */
.home-product-callout--radiodeck {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: 48px;
  overflow: hidden;
  margin-top: 42px;
  padding: 48px 0 48px 48px;
  color: #fff;
  border: 1px solid rgba(14, 18, 34, .16);
  border-radius: 24px;
  background: #080a12;
  box-shadow: 0 26px 70px rgba(6, 8, 18, .20);
}

.home-product-callout--radiodeck::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #0870ff 0%, #6b38f4 52%, #ff2d86 100%);
  pointer-events: none;
}

.home-product-callout__content,
.home-product-callout__preview {
  position: relative;
  z-index: 1;
}

.home-product-callout__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-product-callout__brand > svg {
  width: 42px;
  height: 34px;
  flex: 0 0 auto;
}

.home-product-callout__brand div {
  display: grid;
  gap: 2px;
}

.home-product-callout__brand strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 850;
}

.home-product-callout__brand span {
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home-product-callout__label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 28px 0 0;
  color: #aca5ff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home-product-callout__label span {
  width: 24px;
  height: 1px;
  background: #ff2d86;
}

.home-product-callout--radiodeck h3 {
  max-width: 540px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(35px, 3.45vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.home-product-callout--radiodeck p:not(.eyebrow) {
  max-width: 510px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.7;
}

.home-product-callout__features {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.home-product-callout__features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
}

.home-product-callout__features svg {
  width: 16px;
  height: 16px;
  color: #6b38f4;
  flex: 0 0 auto;
}

.home-product-callout__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.home-product-callout--radiodeck .button {
  width: fit-content;
  margin: 0;
  box-shadow: 0 14px 30px rgba(86,52,255,.22);
}

.home-product-callout__actions > span {
  max-width: 145px;
  color: rgba(255,255,255,.44);
  font-size: 11px;
  line-height: 1.45;
}

.home-product-callout__preview {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: #0b0f1a;
  box-shadow: 0 22px 60px rgba(0,0,0,.34);
}

.home-product-callout__preview::after {
  display: none;
}

.home-product-callout__preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  filter: saturate(.96) contrast(1.02);
}

.home-product-callout__preview figcaption {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  color: rgba(255,255,255,.58);
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0d101b;
  font-size: 11px;
}

.home-product-callout__preview figcaption span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.home-product-callout__preview figcaption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31d47d;
  box-shadow: 0 0 0 4px rgba(49,212,125,.10);
}

.home-product-callout__preview figcaption strong {
  font-weight: 650;
}

@media (max-width: 1040px) {
  .home-product-callout--radiodeck {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 0 0;
  }

  .home-product-callout__content {
    padding: 0 42px;
  }

  .home-product-callout__preview {
    margin: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (max-width: 680px) {
  .home-product-callout--radiodeck {
    gap: 28px;
    padding-top: 30px;
    border-radius: 20px;
  }

  .home-product-callout__content {
    padding: 0 24px;
  }

  .home-product-callout--radiodeck h3 {
    font-size: 34px;
  }

  .home-product-callout__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-product-callout__actions > span {
    max-width: none;
  }

  .home-product-callout--radiodeck .button {
    width: 100%;
  }

  .home-product-callout__preview img {
    aspect-ratio: 16 / 11;
  }

  .home-product-callout__preview figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-block: 14px;
  }
}

/* Dernier niveau de priorité pour le conseiller mobile. */
@media (max-width: 680px) {
  .hero h1 {
    max-width: 343px;
    font-size: 36px;
  }

  .trusted {
    overflow: hidden;
  }

  .trusted .trusted__inner--proof {
    width: min(calc(100% - 28px), 690px);
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 22px;
  }

  .trusted .trusted__inner--proof > * {
    width: auto;
    min-width: 0;
  }

  .site-chat-launcher {
    right: 12px;
    bottom: 12px;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 13px 32px rgba(19,27,60,.24);
  }

  .site-chat-launcher::before,
  .site-chat-launcher__label {
    display: none !important;
  }

  .site-chat-launcher__icon {
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
  }

  .site-chat-widget {
    right: 10px;
    bottom: 70px;
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 90px);
  }
}

/* Priorité finale : encart RadioDeck clair, sans capture d'écran. */
.home-product-callout.home-product-callout--radiodeck {
  display: block;
  padding: 0;
  color: #11131f;
  border-color: rgba(18, 23, 42, .10);
  background:
    radial-gradient(circle at 0 0, rgba(8, 104, 255, .08), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(255, 45, 134, .07), transparent 32%),
    #f8f9fd;
  box-shadow: 0 24px 64px rgba(18, 23, 42, .10);
}

.home-product-callout.home-product-callout--radiodeck::before {
  inset: 0 0 auto;
  width: 100%;
  height: 3px;
}

.home-product-callout--radiodeck .home-product-callout__content {
  width: 100%;
  padding: 42px 46px 46px;
}

.home-product-callout--radiodeck .home-product-callout__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(18, 23, 42, .09);
}

.home-product-callout--radiodeck .home-product-callout__brand {
  color: #11131f;
}

.home-product-callout--radiodeck .home-product-callout__brand strong {
  color: #11131f;
}

.home-product-callout--radiodeck .home-product-callout__brand svg {
  background: transparent;
  box-shadow: none;
}

.home-product-callout--radiodeck .home-product-callout__brand span,
.home-product-callout--radiodeck .home-product-callout__label,
.home-product-callout--radiodeck .home-product-callout__actions > span {
  color: #707585;
}

.home-product-callout--radiodeck .home-product-callout__label {
  margin: 0;
}

.home-product-callout--radiodeck .home-product-callout__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 54px;
  align-items: center;
  padding-top: 34px;
}

.home-product-callout--radiodeck h3 {
  max-width: 610px;
  margin-top: 0;
  color: #11131f;
}

.home-product-callout--radiodeck p:not(.eyebrow) {
  color: #656a79;
}

.home-product-callout--radiodeck .home-product-callout__features {
  display: grid;
  gap: 10px;
  margin: 0;
}

.home-product-callout--radiodeck .home-product-callout__features li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 72px;
  padding: 15px 17px;
  color: #242735;
  border: 1px solid rgba(18, 23, 42, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 12px 30px rgba(20, 26, 54, .055);
}

.home-product-callout--radiodeck .home-product-callout__features li svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #6b38f4;
}

.home-product-callout--radiodeck .home-product-callout__features li span {
  display: grid;
  gap: 4px;
  color: #777b88;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.home-product-callout--radiodeck .home-product-callout__features li strong {
  color: #151724;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .home-product-callout--radiodeck .home-product-callout__content {
    padding: 38px;
  }

  .home-product-callout--radiodeck .home-product-callout__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .home-product-callout.home-product-callout--radiodeck {
    padding: 0;
  }

  .home-product-callout--radiodeck .home-product-callout__content {
    padding: 28px 22px;
  }

  .home-product-callout--radiodeck .home-product-callout__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 22px;
  }

  .home-product-callout--radiodeck .home-product-callout__body {
    padding-top: 26px;
  }
}

/* ===== Produits Radioway à la carte ===== */
.offers__intro-links {
  display: grid;
  justify-items: start;
  gap: 2px;
}

.standalone-products {
  padding: 92px 0;
  color: #11131d;
  background:
    linear-gradient(180deg, rgba(240, 244, 255, .82), rgba(250, 250, 253, .96)),
    #f7f8fc;
}

.standalone-products__heading {
  max-width: none;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: 48px;
  align-items: end;
}

.standalone-products__heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: #666b79;
  font-size: 15px;
  line-height: 1.7;
}

.standalone-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.standalone-product-card {
  --product-accent: #1764ff;
  --product-soft: #edf3ff;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 590px;
  padding: 28px;
  border: 1px solid #e1e4ed;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 68px rgba(18, 25, 54, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.standalone-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--product-accent);
}

.standalone-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--product-accent);
  box-shadow: 0 32px 82px rgba(18, 25, 54, .13);
}

.standalone-product-card--deck {
  --product-accent: #7540f4;
  --product-soft: #f2edff;
}

.standalone-product-card--slide {
  --product-accent: #e72b7c;
  --product-soft: #fff0f6;
}

.standalone-product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.standalone-product-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--product-accent);
  background: var(--product-soft);
}

.standalone-product-card__icon svg {
  width: 29px;
  height: 29px;
}

.standalone-product-card__type {
  color: #767b89;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.standalone-product-card__brand {
  margin-top: 26px;
  color: #12141d;
  font-size: 33px;
  font-weight: 950;
  line-height: 1;
}

.standalone-product-card__brand span {
  color: var(--product-accent);
}

.standalone-product-card h3 {
  margin: 16px 0 0;
  max-width: 320px;
  color: #171923;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: 0;
}

.standalone-product-card > p {
  min-height: 75px;
  margin: 12px 0 0;
  color: #686d7b;
  font-size: 13px;
  line-height: 1.62;
}

.standalone-product-card__price {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e8eaf0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}

.standalone-product-card__price small {
  flex: 0 0 100%;
  color: #767b88;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.standalone-product-card__price strong {
  color: #11131c;
  font-size: 35px;
  letter-spacing: 0;
}

.standalone-product-card__price span {
  color: #767b88;
  font-size: 13px;
  font-weight: 650;
}

.standalone-product-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 27px;
  padding: 0;
  list-style: none;
}

.standalone-product-card li {
  position: relative;
  padding-left: 24px;
  color: #3c404d;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.4;
}

.standalone-product-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--product-accent);
  font-size: 9px;
  font-weight: 900;
}

.standalone-product-card > .button,
.standalone-product-card__actions {
  margin-top: auto;
}

.standalone-product-card__actions {
  display: grid;
  gap: 12px;
}

.standalone-product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #4e3ac3;
  font-size: 12px;
  font-weight: 820;
}

.standalone-product-card__link svg {
  width: 14px;
  height: 14px;
}

.standalone-products__note {
  margin: 20px 0 0;
  color: #7b808d;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 980px) {
  .standalone-products__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .standalone-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standalone-product-card:last-child {
    grid-column: 1 / -1;
    min-height: 540px;
  }
}

@media (max-width: 680px) {
  .standalone-products {
    padding: 62px 0;
  }

  .standalone-products__grid {
    grid-template-columns: 1fr;
  }

  .standalone-product-card,
  .standalone-product-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 24px;
  }

  .standalone-product-card > p {
    min-height: 0;
  }
}

