:root {
  --hero-bg: #150a34;
  --hero-bg-2: #52238b;
  --ink: #23175d;
  --ink-soft: #4c5267;
  --accent: #2f006e;
  --accent-2: #5f31ec;
  --accent-3: #c92fff;
  --blue-btn: #2c78f4;
  --gold: #c1a229;
  --green: #48b67f;
  --line: #d9dbe5;
  --card-border: #8d93a6;
  --card-bg: #fbf5f6;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --footer: #442167;
  --shadow-soft: 0 18px 40px rgba(23, 19, 56, 0.08);
  --shadow-card: 0 12px 34px rgba(27, 30, 61, 0.08);
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--ink-soft);
  background: var(--surface);
  overflow-x: hidden;
}

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

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

button,
.button {
  font: inherit;
  cursor: pointer;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 60px 0;
  scroll-margin-top: 92px;
}

.section-soft {
  background: var(--surface-soft);
}

.section-title,
.pricing-title,
.reviews-title {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-title h2,
.pricing-title h2,
.reviews-title h2,
.split-copy h2,
.promo-copy h2,
.page-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-title h2,
.pricing-title h2,
.reviews-title h2,
.split-copy h2,
.promo-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.section-title p,
.pricing-title p,
.reviews-title p,
.split-copy p,
.promo-copy p,
.page-hero-copy p,
.hero-copy p,
.eyebrow-copy p,
.mini-copy {
  color: #666d82;
  line-height: 1.75;
}

.section-title p,
.pricing-title p,
.reviews-title p {
  margin: 0 auto;
  max-width: 980px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: #8d79ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  user-select: none;
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-dark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.button-dark:hover,
.button-dark:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.button-glow {
  color: #ffffff;
  background: linear-gradient(135deg, #9049ff, #ff59b4);
  box-shadow: 0 16px 34px rgba(175, 73, 255, 0.28);
}

.button-glow:hover,
.button-glow:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(175, 73, 255, 0.36);
}

.button-white {
  color: #1f1748;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.button-white:hover,
.button-white:focus-visible {
  transform: translateY(-2px);
}

.button-purple {
  color: #ffffff;
  background: linear-gradient(135deg, #6d2cf3, #8f2df7);
  box-shadow: 0 14px 28px rgba(109, 44, 243, 0.2);
}

.button-purple:hover,
.button-purple:focus-visible {
  transform: translateY(-2px);
}

.button-blue {
  color: #ffffff;
  background: var(--blue-btn);
  box-shadow: 0 12px 26px rgba(44, 120, 244, 0.2);
}

.button-blue:hover,
.button-blue:focus-visible {
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  background: rgba(55, 27, 89, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 26px rgba(28, 16, 47, 0.18);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.brand-mark {
  width: 200px;
  height: 50px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.brand-mark > svg,
.brand-logo-image {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
}

.site-header .brand-mark {
  width: 220px;
  height: 56px;
}

.brand > span:not(.brand-mark):last-child {
  display: none;
}

.footer-brand-mark {
  width: 220px;
  height: 56px;
  border: none;
}

.ui-icon {
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(54, 18, 71, 0.84) 0%, rgba(81, 33, 126, 0.82) 46%, rgba(78, 39, 126, 0.84) 100%),
    url("../assets/hero-bg.png") center/cover no-repeat;
}

.hero {
  min-height: min(100vh, 980px);
  display: flex;
  align-items: center;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-content,
.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
  padding-bottom: 54px;
}

.hero-content {
  padding-top: 118px;
}

.page-hero {
  padding-top: 100px;
}

.page-hero-grid {
  padding-top: 30px;
}

.hero-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 620px;
  color: #ffffff;
}

.hero-copy h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero-copy p,
.page-hero-copy p {
  margin: 0;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.page-hero-copy {
  max-width: 660px;
  color: #ffffff;
}

.page-hero-copy h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.page-hero-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

.hero-actions,
.cta-row,
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
}

.hero-visual,
.page-hero-visual,
.promo-art {
  position: relative;
  justify-self: end;
}

.hero-visual {
  width: min(620px, 100%);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.3));
}

.page-hero-visual {
  width: min(520px, 100%);
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.28));
}

.hero-visual img,
.page-hero-visual img,
.promo-art img {
  width: 100%;
}

.light-page {
  position: relative;
  background: #ffffff;
}

.device-row,
.feature-grid,
.overview-grid,
.step-grid,
.score-grid {
  display: grid;
  gap: 18px;
}

.device-row {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 30px;
}

.device-tile {
  padding: 30px 14px 24px;
  min-height: 142px;
  border: 1px solid #eef1f8;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
  box-shadow: 0 12px 28px rgba(38, 42, 77, 0.06);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.device-tile:hover,
.device-tile:focus-within {
  transform: translateY(-3px);
  border-color: #dfe4f2;
  box-shadow: 0 16px 30px rgba(38, 42, 77, 0.1);
}

.device-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(79, 63, 177, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f1efff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 20px rgba(66, 49, 151, 0.08);
  color: #4b38b2;
}

.device-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-icon.circle-pink {
  border-radius: 18px;
}

.device-icon.circle-green {
  border-radius: 18px;
}

.device-icon.square-orange {
  border-radius: 18px;
}

.device-icon.apple-mark svg,
.device-icon.tv-mark svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
}

.device-icon[data-icon="deviceTv"],
.device-icon[data-icon="webPlayer"],
.device-icon[data-icon="androidTv"],
.device-icon[data-icon="appleTv"] {
  color: #4733ac;
  background: linear-gradient(180deg, #ffffff 0%, #f1efff 100%);
}

.device-icon[data-icon="console"] {
  color: #2c9a63;
  background: linear-gradient(180deg, #fcfff8 0%, #eaf9ee 100%);
  border-color: rgba(44, 154, 99, 0.16);
}

.device-icon[data-icon="fireTv"] {
  color: #f06b28;
  background: linear-gradient(180deg, #fffaf4 0%, #fff0e5 100%);
  border-color: rgba(240, 107, 40, 0.16);
}

.device-icon[data-icon="phone"] {
  color: #1f2338;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5fb 100%);
  border-color: rgba(31, 35, 56, 0.12);
}

.device-tile span {
  display: block;
  color: #767d90;
  font-size: 0.9rem;
  line-height: 1.45;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.overview-grid,
.step-grid,
.score-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.feature-card,
.step-card,
.score-card {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.step-card,
.score-card {
  border: 1px solid rgba(95, 49, 236, 0.08);
}

.feature-card h3,
.step-card h3,
.score-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.feature-card p,
.step-card p,
.score-card p {
  margin: 0;
  color: #626a7f;
  line-height: 1.72;
  font-size: 0.92rem;
}

.icon-badge {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(79, 63, 177, 0.12);
  color: #4d39b5;
  background: linear-gradient(180deg, #ffffff 0%, #f1efff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 20px rgba(66, 49, 151, 0.08);
}

.icon-badge.green {
  color: #21935e;
  background: linear-gradient(180deg, #fcfff8 0%, #eaf9ee 100%);
  border-color: rgba(33, 147, 94, 0.16);
}

.icon-badge.blue {
  color: #2e78e6;
  background: linear-gradient(180deg, #f7fbff 0%, #ebf4ff 100%);
  border-color: rgba(46, 120, 230, 0.14);
}

.icon-badge.dark {
  color: #4d39b5;
  background: linear-gradient(180deg, #ffffff 0%, #f1efff 100%);
}

.icon-badge.pink {
  color: #d14b88;
  background: linear-gradient(180deg, #fff8fc 0%, #ffeef7 100%);
  border-color: rgba(209, 75, 136, 0.15);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  padding: 42px 24px 24px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 3px solid var(--card-border);
  color: var(--ink-soft);
}

.pricing-card.featured {
  position: relative;
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(47, 0, 110, 0.12);
}

.pricing-card.featured::before {
  content: "Plan recommande";
  position: absolute;
  inset: 18px 18px auto auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #7f33f7, #be32ff);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0 0 6px;
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card .sub {
  margin: 0 0 20px;
  text-align: center;
  color: #676d82;
  font-size: 0.9rem;
}

.price-pill {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 20px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  margin-bottom: 18px;
}

.price-pill strong {
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-pill span {
  font-size: 0.88rem;
  font-weight: 600;
}

.plan-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.65;
  color: #666c80;
  font-size: 0.92rem;
}

.check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2fbf7d, #43d38e);
  box-shadow: 0 8px 18px rgba(47, 191, 125, 0.22);
}

.check svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card .button {
  width: 100%;
  min-height: 46px;
  border-radius: 9px;
  background: #2a239d;
  color: #ffffff;
  border: 2px solid #141414;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.12);
}

.pricing-card .button:hover,
.pricing-card .button:focus-visible {
  transform: translateY(-2px);
}

.split-panel,
.promo-block {
  display: grid;
  gap: 26px;
  align-items: center;
}

.split-panel {
  grid-template-columns: 0.92fr 1.08fr;
}

.promo-block {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 26px;
}

.split-copy p,
.promo-copy p {
  margin: 0 0 14px;
  font-size: 0.94rem;
}

.split-copy .button {
  margin-top: 10px;
}

.family-panel img,
.promo-art img {
  width: 100%;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

.promo-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-band {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
  padding: 16px;
  background: linear-gradient(90deg, #d10fff 0%, #b317f4 36%, #c81cff 100%);
}

.trust-pill {
  min-height: 50px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.trust-pill.active {
  color: #181818;
  background: #ffffff;
}

.trust-pill span {
  line-height: 1.35;
}

.trust-pill svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 0;
}

.faq-item {
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 0;
}

.faq-item.open {
  box-shadow: 0 12px 26px rgba(27, 30, 61, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
  color: #222222;
  background: #ffffff;
  text-align: left;
  font-weight: 500;
  font-size: 0.93rem;
}

.faq-question span:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
}

.faq-icon,
.faq-toggle {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #4d39b5;
  background: #f2efff;
}

.faq-icon.dark {
  color: #1f2a44;
  background: #eef2fa;
}

.faq-icon svg,
.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.faq-item.open .faq-toggle svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  background: #ffffff;
}

.faq-answer p {
  margin: 0;
  padding: 18px 16px;
  color: #666d82;
  line-height: 1.72;
}

.app-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.app-card {
  padding: 22px 22px 30px;
  border: 1px solid #ececf3;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(38, 42, 77, 0.05);
}

.app-badge {
  width: 168px;
  height: 168px;
  margin: 0 auto 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.app-badge.round {
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  border: 1px solid rgba(34, 71, 137, 0.1);
  color: #224789;
  font-size: 1.2rem;
  line-height: 1.15;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 28px rgba(34, 71, 137, 0.08);
}

.app-badge.dark {
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8f4 0%, #fff0e7 100%);
  border: 1px solid rgba(255, 109, 78, 0.15);
  color: #ff6d4e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 28px rgba(255, 109, 78, 0.08);
}

.app-badge.purple {
  border-radius: 22px;
  background: linear-gradient(180deg, #f8f1ff 0%, #efe4ff 100%);
  border: 1px solid rgba(127, 24, 248, 0.14);
  color: #7525f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 28px rgba(127, 24, 248, 0.08);
}

.app-badge-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.app-badge.dark .app-badge-icon {
  background: rgba(255, 255, 255, 0.76);
}

.app-badge.purple .app-badge-icon {
  background: rgba(255, 255, 255, 0.72);
}

.app-badge-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-badge-text {
  display: block;
  line-height: 1.05;
}

.app-card p {
  margin: 0 0 14px;
  color: #6c7287;
  line-height: 1.7;
  font-size: 0.92rem;
}

.app-card .button {
  min-width: 200px;
}

.reviews-title {
  margin-top: 38px;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.review-marquee {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.review-track {
  --review-gap: 18px;
  display: flex;
  align-items: stretch;
  gap: var(--review-gap);
  width: max-content;
}

.review-track.is-ready {
  animation: review-marquee-right 42s linear infinite;
  will-change: transform;
}

.review-marquee:hover .review-track.is-ready,
.review-marquee:focus-within .review-track.is-ready {
  animation-play-state: paused;
}

.review-card {
  color: #2c2f41;
}

.review-marquee .review-card {
  display: flex;
  flex: 0 0 min(356px, calc(100vw - 92px));
  flex-direction: column;
  padding: 20px 22px 22px;
  border: 1px solid #ececf3;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcff 100%);
  box-shadow: 0 12px 24px rgba(38, 42, 77, 0.05);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: #656a7f;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.review-avatar.orange {
  background: #e57a18;
}

.review-avatar.pink {
  background: #ee5f95;
}

.review-avatar.green {
  background: #4e9b40;
}

.review-avatar.blue {
  background: #3581f3;
}

.review-avatar.purple {
  background: #8a54f7;
}

.review-avatar.teal {
  background: #1eab9d;
}

.stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 12px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #f4b53f;
}

.review-card h3 {
  margin: 0 0 10px;
  color: #202335;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
}

.review-card p {
  margin: 0 0 12px;
  color: #555d74;
  line-height: 1.7;
  font-size: 0.92rem;
}

.review-foot {
  color: #5d6478;
  font-size: 0.86rem;
  font-weight: 500;
}

.review-marquee .review-foot {
  margin-top: auto;
}

.blog-showcase {
  margin-top: 48px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs span:last-child {
  color: #ffffff;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.blog-card-media {
  display: block;
}

.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px;
}

.blog-keyword {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #5230cb;
  background: #f1ecff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 12px 0 8px;
  color: #71788d;
  font-size: 0.82rem;
}

.blog-card h3,
.article-section h2,
.article-panel h2,
.related-card strong {
  color: var(--ink);
  letter-spacing: -0.03em;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.blog-card p,
.article-panel p,
.article-section p,
.article-figure figcaption,
.related-card p {
  color: #626a7f;
  line-height: 1.85;
}

.blog-card p {
  margin: 0 0 14px;
  font-size: 0.92rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--ink);
  font-weight: 700;
}

.blog-link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.blog-hero-visual img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 44px rgba(18, 8, 38, 0.24);
}

.article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
}

.article-panel,
.article-section,
.article-figure {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.article-panel {
  padding: 18px;
}

.article-panel h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.article-panel p {
  margin: 0;
  font-size: 0.9rem;
}

.article-stat {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.article-list,
.article-checklist {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.article-list li {
  position: relative;
  padding-left: 18px;
  color: #5f667b;
  line-height: 1.62;
  font-size: 0.9rem;
}

.article-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7f33f7, #be32ff);
}

.article-content {
  display: grid;
  gap: 18px;
}

.article-section {
  padding: 24px;
}

.article-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.article-section h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.article-section p {
  margin: 0 0 14px;
  font-size: 0.93rem;
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-checklist {
  margin-top: 18px;
}

.article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #5f667b;
  line-height: 1.68;
  font-size: 0.92rem;
}

.article-checklist .check {
  margin-top: 2px;
}

.article-callout {
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3edff 0%, #fff5fb 100%);
  border: 1px solid rgba(95, 49, 236, 0.12);
}

.article-callout h3 {
  margin-top: 0;
}

.article-figure {
  overflow: hidden;
  margin: 0;
}

.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-figure figcaption {
  margin: 0;
  padding: 12px 16px 16px;
  font-size: 0.86rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.related-card {
  display: block;
  padding: 18px;
  border-radius: 16px;
  background: #f7f8fb;
  border: 1px solid #ebeef7;
}

.related-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.related-card p {
  margin: 0;
  font-size: 0.9rem;
}

.metric {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr 1fr;
  gap: 26px;
  align-items: start;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
  font-size: 0.92rem;
}

.footer-heading {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.footer-meta-links {
  margin-top: 16px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #1c163f;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  color: #4d39b5;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.chat-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.chat-float-image {
  display: block;
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 14px 28px rgba(5, 204, 10, 0.26));
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 11;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(117, 74, 221, 0.24);
  color: #3f2387;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(52, 20, 95, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 16px 34px rgba(52, 20, 95, 0.22);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes review-marquee-right {
  from {
    transform: translate3d(calc(-50% - (var(--review-gap) / 2)), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 960px) {
  .brand-mark {
    width: 160px;
    height: 40px;
  }
}

@media (max-width: 1180px) {
  .device-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .pricing-grid,
  .app-grid,
  .review-grid,
  .blog-grid,
  .footer-grid,
  .split-panel,
  .promo-block,
  .page-hero-grid,
  .hero-content,
  .score-grid,
  .article-layout,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual,
  .page-hero-visual {
    justify-self: center;
    max-width: 540px;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 960px) {
  .site-header .container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-mark {
    width: 148px;
    height: 38px;
  }

  .site-header .brand-mark {
    width: 164px;
    height: 42px;
  }

  .back-to-top {
    right: 18px;
    bottom: 84px;
  }

  .footer-brand-mark {
    width: 164px;
    height: 42px;
  }

  .nav {
    display: none;
    width: 100%;
    order: 4;
    padding: 16px;
    border-radius: 16px;
    background: rgba(21, 10, 52, 0.94);
    box-shadow: 0 18px 36px rgba(12, 5, 26, 0.26);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  body.menu-open .nav {
    display: flex;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  body.menu-open .header-actions {
    width: 100%;
    order: 5;
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 112px;
  }

  .page-hero {
    padding-top: 92px;
  }

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

  .review-track.is-ready {
    animation-duration: 34s;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100vw - 24px));
  }

  .brand-mark {
    width: 132px;
    height: 34px;
  }

  .site-header .brand-mark {
    width: 146px;
    height: 36px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 82px;
  }

  .footer-brand-mark {
    width: 146px;
    height: 36px;
  }

  .hero-copy h1,
  .section-title h2,
  .pricing-title h2,
  .split-copy h2,
  .promo-copy h2,
  .reviews-title h2,
  .page-hero-copy h1 {
    line-height: 1.16;
  }

  .device-row,
  .feature-grid,
  .overview-grid,
  .step-grid,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .promo-actions,
  .cta-row {
    display: grid;
  }

  .hero-actions .button,
  .promo-actions .button,
  .split-copy .button,
  .app-card .button,
  .cta-row .button {
    width: 100%;
  }

  .device-tile,
  .pricing-card,
  .app-card,
  .feature-card,
  .step-card,
  .score-card,
  .article-panel,
  .article-section,
  .blog-card-body,
  .article-callout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .app-badge {
    width: 144px;
    height: 144px;
    font-size: 1.3rem;
  }

  .review-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-marquee .review-card {
    flex-basis: min(300px, calc(100vw - 54px));
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .review-track.is-ready {
    animation-duration: 28s;
  }

  .breadcrumbs {
    gap: 8px;
    font-size: 0.84rem;
  }

  .tag-row {
    gap: 8px;
  }
}
