

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0e0e10;
  --surface: #17171a;
  --surface-2: #1f1f24;
  --surface-3: #26262c;
  --border: #2a2a30;
  --border-soft: #1f1f24;
  --text: #ededef;
  --text-muted: #cfcfd6;
  --text-dim: #8d8d96;
  --accent: #ffffff;
  --accent-hover: #d8d8db;
  --accent-fg: #0e0e10;
  --brand: #e63854;
  --brand-light: #ff5474;
  --brand-dark: #b21f3e;
  --brand-rgb: 230, 56, 84;
  --max-width: 1280px;
  --content-pad: 24px;
  --header-h: 80px;
  --radius: 10px;
  --radius-lg: 14px;
  --transition: 0.2s ease;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--content-pad);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(14, 14, 16, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 46px;
  width: auto;
  max-width: none;
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  border-radius: 8px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-burger:hover {
  background: var(--surface-2);
}
.nav-burger svg {
  width: 22px;
  height: 22px;
}
.nav-burger .burger-close {
  display: none;
}
.nav-toggle:checked ~ .nav-burger .burger-open {
  display: none;
}
.nav-toggle:checked ~ .nav-burger .burger-close {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-list a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding: 6px 0;
}
.nav-list a:hover {
  color: var(--text);
}

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

.lang-switch {
  position: relative;
  display: inline-block;
  margin-top: 18px;
}
.lang-switch summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
  user-select: none;
  font-size: 14px;
  color: var(--text);
}
.lang-switch summary::-webkit-details-marker,
.lang-switch summary::marker {
  display: none;
  content: "";
}
.lang-switch summary:hover {
  background: var(--surface-3);
  border-color: rgba(255, 255, 255, 0.1);
}
.lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.lang-label {
  font-weight: 500;
  white-space: nowrap;
}
.lang-caret {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.lang-switch[open] .lang-caret {
  transform: rotate(180deg);
}
.lang-switch ul {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.55);
  z-index: 200;
}
.lang-switch li {
  list-style: none;
}
.lang-switch a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.lang-switch a:hover {
  background: var(--surface-2);
  color: var(--text);
}
.lang-switch a[aria-current="true"] {
  background: var(--surface-3);
  color: var(--text);
}

.btn {
  --btn-fg: var(--text);
  --btn-highlight: rgba(255, 255, 255, 0.08);
  --btn-edge: rgba(0, 0, 0, 0.45);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.015em;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
  user-select: none;

  color: var(--btn-fg);
  background-repeat: repeat, no-repeat;
  background-size: 160px 160px, 100% 100%;
  background-position: 0 0, 0 0;
  background-blend-mode: overlay, normal;

  box-shadow:
    inset 0 1px 0 var(--btn-highlight),
    inset 0 -2px 0 var(--btn-edge),
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 3px 0 rgba(0, 0, 0, 0.35),
    0 6px 14px rgba(0, 0, 0, 0.45);

  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 var(--btn-highlight),
    inset 0 -2px 0 var(--btn-edge),
    0 2px 0 rgba(0, 0, 0, 0.5),
    0 4px 0 rgba(0, 0, 0, 0.35),
    0 9px 20px rgba(0, 0, 0, 0.5);
}

.btn:active {
  transform: translateY(2px);
  filter: brightness(0.97);
  box-shadow:
    inset 0 1px 0 var(--btn-highlight),
    inset 0 -1px 0 var(--btn-edge),
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-primary {
  --btn-fg: #ffffff;
  --btn-highlight: rgba(255, 255, 255, 0.35);
  --btn-edge: rgba(60, 0, 12, 0.45);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--brand-light) 0%, var(--brand-dark) 100%);
  background-blend-mode: overlay, normal;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  --btn-fg: var(--text);
  --btn-highlight: rgba(255, 255, 255, 0.1);
  --btn-edge: rgba(0, 0, 0, 0.5);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #2c2c33 0%, #18181d 100%);
  background-blend-mode: overlay, normal;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 15px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-dim);
  margin: 32px 0 6px;
  line-height: 1.4;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--text);
}
.breadcrumb + .page-title {
  margin-top: 8px;
}

.content a:not(.btn) {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.content a:not(.btn):hover {
  color: var(--brand-light);
  text-decoration-color: var(--brand-light);
}

.page-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 56px auto 32px;
  max-width: 900px;
}

.banner {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1280 / 436;
  margin-bottom: 48px;
  background: var(--surface);
}
.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 78% 85% at center,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.55) 55%,
      rgba(0, 0, 0, 0.7) 100%
    );
}
.banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 18px;
}
.banner-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  max-width: 820px;
  letter-spacing: -0.015em;
}
.banner-text {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  max-width: 660px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.slots {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.slots-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0;
}
.slots-fire {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}
.slots-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slots-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, color var(--transition);
}
.slots-arrow:hover {
  background: var(--surface-3);
  transform: translateY(-1px);
}
.slots-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}
.slots-arrow svg {
  width: 18px;
  height: 18px;
}
.slots-voir {
  padding: 9px 16px;
  font-size: 13px;
}

.slots-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-3) transparent;
}
.slots-track::-webkit-scrollbar {
  height: 6px;
}
.slots-track::-webkit-scrollbar-track {
  background: transparent;
}
.slots-track::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 3px;
}

.slot-card {
  flex: 0 0 calc((100% - 16px * 5) / 6);
  min-width: 158px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slot-link {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface);
}
.slot-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slot-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 70%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.88) 100%
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slot-link:hover .slot-overlay,
.slot-link:focus-visible .slot-overlay {
  opacity: 1;
}
.slot-link:hover img,
.slot-link:focus-visible img {
  transform: scale(1.05);
}

.slot-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--brand-light) 0%, var(--brand-dark) 100%);
  background-blend-mode: overlay, normal;
  background-size: 120px 120px, 100% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(60, 0, 12, 0.45),
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 3px 0 rgba(0, 0, 0, 0.35),
    0 6px 14px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.slot-play svg {
  width: 20px;
  height: 20px;
  color: #fff;
  display: block;
  margin: 0;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.3));
}
.slot-name {
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 2px 5px rgba(0, 0, 0, 0.7),
    0 6px 14px rgba(0, 0, 0, 0.4);
}
.slot-studio {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.cta-banner {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1280 / 260;
  background: var(--surface);
}
.cta-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 75% 85% at center,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.55) 100%
    );
}
.cta-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 18px;
}
.cta-banner-title {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 860px;
  letter-spacing: -0.01em;
}

.fact-block {
  margin-bottom: 48px;
}
.fact-block .table-wrap {
  margin-top: 0;
}
.fact-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.fact-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 15px;
}
.fact-table th,
.fact-table td {
  padding: 14px 22px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.fact-table th {
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  width: 38%;
}
.fact-table td {
  color: var(--text);
  font-weight: 500;
}
.fact-table tr:not(:last-child) th,
.fact-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border);
}
@media (max-width: 560px) {
  .fact-table {
    font-size: 13.5px;
  }
  .fact-table th,
  .fact-table td {
    padding: 11px 14px;
  }
  .fact-table th {
    width: 46%;
  }
}

.toc {
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  user-select: none;
  gap: 16px;
}
.toc summary::-webkit-details-marker,
.toc summary::marker {
  display: none;
  content: "";
}
.toc .chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.toc[open] .chevron {
  transform: rotate(180deg);
}
.toc-list {
  list-style: none;
  padding: 4px 22px 22px;
  display: grid;
  gap: 2px;
  counter-reset: toc;
}
.toc-list li {
  counter-increment: toc;
}
.toc-list a {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 15px;
  transition: color var(--transition);
}
.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  min-width: 28px;
}
.toc-list a:hover {
  color: var(--text);
}

.content {
  display: grid;
  gap: 48px;
  margin-bottom: 72px;
}
.content section {
  display: grid;
  gap: 16px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.content h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}
.content p + p {
  margin-top: 4px;
}

.reviews {
  margin-bottom: 64px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.reviews-heading {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.reviews-summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.reviews-summary-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews-summary-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.google-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}
.reviews-summary-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rating-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.rating-count {
  font-size: 14px;
  color: var(--text-muted);
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.stars svg {
  width: 18px;
  height: 18px;
  color: #3a3a40;
  fill: currentColor;
  flex-shrink: 0;
}
.stars svg.is-on {
  color: #d8c98a;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-avatar > span {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.review-source {
  position: absolute;
  width: 18px;
  height: 18px;
  bottom: -3px;
  right: -3px;
  border-radius: 50%;
  background: var(--surface);
  padding: 2px;
  box-shadow: 0 0 0 2px var(--surface);
}
.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.review-date {
  color: var(--text-muted);
  font-size: 13px;
}
.review-card .stars svg {
  width: 16px;
  height: 16px;
}
.review-text {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

.reviews-footer {
  display: flex;
  justify-content: center;
}

.content ul,
.content ol {
  display: grid;
  gap: 12px;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.content ul li::marker {
  color: var(--brand);
}
.content ol li::marker {
  color: var(--brand);
  font-weight: 700;
}
.content ul li strong,
.content ol li strong {
  color: var(--text);
  font-weight: 700;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 15px;
  margin: 12px 0 8px;
}
.content table th,
.content table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.5;
}
.content table thead th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.content table tbody th {
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.content table tbody td {
  color: var(--text-muted);
  font-weight: 500;
}
.content table tbody tr:not(:last-child) th,
.content table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--border);
}

.screenshot {
  display: block;
  margin: 28px auto;
  text-align: center;
}
.screenshot img {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 0 rgba(0, 0, 0, 0.45),
    0 6px 18px rgba(0, 0, 0, 0.5),
    0 22px 44px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot img:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 2px 0 rgba(0, 0, 0, 0.45),
    0 10px 24px rgba(0, 0, 0, 0.55),
    0 30px 56px rgba(0, 0, 0, 0.4);
}
.screenshot figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

@media (max-width: 768px) {
  .screenshot {
    margin: 22px 0;
  }
  .screenshot img {
    max-width: 100%;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .screenshot img {
    border-radius: 10px;
  }
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 16px 0 8px;
}
.pros-cons-col {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
}
.pros-cons-col::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
}
.pros-cons-col.pros::before {
  background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
}
.pros-cons-col.cons::before {
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand-dark) 100%);
}
.pros-cons-col h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.pros-cons-col h3::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
}
.pros-cons-col.pros h3::before {
  background-color: #10b981;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px 14px;
}
.pros-cons-col.cons h3::before {
  background-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='12' x2='18' y2='12'/%3E%3C/svg%3E");
  background-size: 14px 14px;
}
.pros-cons-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.pros-cons-col ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.pros-cons-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
}
.pros-cons-col.pros ul li::before {
  background-color: rgba(16, 185, 129, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.pros-cons-col.cons ul li::before {
  background-color: rgba(230, 56, 84, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5474' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='12' x2='18' y2='12'/%3E%3C/svg%3E");
}

@media (max-width: 720px) {
  .pros-cons {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pros-cons-col {
    padding: 20px 22px;
  }
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
}
.table-wrap table {
  margin: 0;
}
@media (max-width: 640px) {
  .content table {
    font-size: 13.5px;
    min-width: 480px;
  }
  .content table th,
  .content table td {
    padding: 12px 14px;
  }
  .content table thead th {
    font-size: 12px;
  }
}

.faq {
  margin-bottom: 80px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.faq-heading {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.faq-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.faq-list {
  display: grid;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  user-select: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: "";
}
.faq-item summary:hover {
  color: var(--accent);
}
.faq-item .chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.faq-item[open] .chevron {
  transform: rotate(180deg);
  color: var(--text);
}
.faq-answer {
  padding: 0 4px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 880px;
}
.faq-answer p + p {
  margin-top: 10px;
}

.page-title,
.banner-title,
.cta-banner-title,
.content h2,
.faq-heading,
.reviews-heading,
.faq-item > summary > span,
.toc > summary > span {
  font-weight: 800;
  letter-spacing: -0.02em;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.32 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  background-blend-mode: overlay, normal;
  background-size: 180px 180px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.1))
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.6))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.faq-item > summary > span,
.toc > summary > span {
  display: inline-block;
}

.brand-name {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--brand-light) 0%, var(--brand-dark) 100%);
  background-blend-mode: overlay, normal;
  background-size: 180px 180px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer {
  background: var(--surface);
  margin-top: 40px;
  padding-block: 52px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-brand .footer-logo {
  height: 46px;
  width: auto;
  max-width: none;
  margin-bottom: 0;
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-icon {
  height: 36px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.trust-icon:hover {
  opacity: 1;
}
.footer-rights-text {
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 540px;
}

.footer-nav ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer-nav a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--text);
}

.compliance-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.compliance-logos img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.7;
  filter: grayscale(1) brightness(1.6);
  transition: opacity var(--transition), filter var(--transition);
}
.compliance-logos img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  z-index: 90;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #2c2c33 0%, #15151a 100%);
  background-blend-mode: overlay, normal;
  background-size: 120px 120px, 100% 100%;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 3px 0 rgba(0, 0, 0, 0.4),
    0 8px 22px rgba(0, 0, 0, 0.55);

  transition: transform 0.15s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.scroll-top:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 0 rgba(0, 0, 0, 0.55),
    0 3px 0 rgba(0, 0, 0, 0.5),
    0 5px 0 rgba(0, 0, 0, 0.4),
    0 12px 28px rgba(0, 0, 0, 0.6);
}
.scroll-top:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.45);
}
.scroll-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .slot-card {
    flex: 0 0 calc((100% - 16px * 3) / 4);
  }
}
@media (max-width: 768px) {
  .slot-card {
    flex: 0 0 calc((100% - 16px * 2) / 3);
  }
}
@media (max-width: 560px) {
  .slot-card {
    flex: 0 0 calc((100% - 12px) / 2.2);
    min-width: 140px;
  }
  .slots-track {
    gap: 12px;
  }
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    align-items: start;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }
  .logo img {
    height: 44px;
  }
  .header-inner {
    gap: 12px;
  }
  .nav-burger {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-left: 4px;
  }
  .nav-burger svg {
    width: 22px;
    height: 22px;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(14, 14, 16, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding-inline: var(--content-pad);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    padding-block: 0;
    border-top: 1px solid transparent;
  }
  .nav-toggle:checked ~ .nav-menu {
    max-height: calc(100vh - var(--header-h));
    padding-block: 16px 24px;
    border-top-color: var(--border);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav-list a {
    padding: 14px 0;
    font-size: 16px;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn {
    padding: 11px 18px;
    font-size: 14.5px;
    border-radius: 9px;
    box-shadow:
      inset 0 1px 0 var(--btn-highlight),
      inset 0 -1px 0 var(--btn-edge),
      0 1px 0 rgba(0, 0, 0, 0.45),
      0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .nav-cta .btn:hover {
    box-shadow:
      inset 0 1px 0 var(--btn-highlight),
      inset 0 -1px 0 var(--btn-edge),
      0 2px 0 rgba(0, 0, 0, 0.45),
      0 4px 10px rgba(0, 0, 0, 0.45);
  }

  .page-title {
    margin: 24px 0;
  }
  .banner {
    aspect-ratio: 4 / 3;
    margin-bottom: 32px;
  }
  .cta-banner {
    aspect-ratio: 4 / 3;
  }
  .cta-banner-content {
    gap: 14px;
    padding: 20px;
  }
  .toc {
    margin-bottom: 32px;
  }
  .toc summary {
    padding: 14px 18px;
  }
  .toc-list {
    padding: 4px 18px 18px;
  }
  .content {
    gap: 36px;
    margin-bottom: 56px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
  }
  .reviews-summary .btn {
    width: 100%;
  }
  .site-footer {
    padding-block: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }
  .footer-brand .footer-logo {
    height: 42px;
  }
  .brand-row {
    gap: 20px;
    margin-bottom: 16px;
  }
  .trust-badges {
    gap: 14px;
  }
  .trust-icon {
    height: 32px;
  }
  .compliance-logos img {
    height: 56px;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  :root {
    --content-pad: 14px;
    --header-h: 68px;
  }
  .header-inner {
    gap: 6px;
  }
  .logo img {
    height: 40px;
  }
  .nav-cta {
    gap: 6px;
  }
  .nav-cta .btn {
    padding: 9px 13px;
    font-size: 13.5px;
  }
  .nav-burger {
    width: 38px;
    height: 38px;
    margin-left: 0;
  }
  .nav-burger svg {
    width: 20px;
    height: 20px;
  }
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
  .banner,
  .cta-banner {
    aspect-ratio: 5 / 4;
    border-radius: 12px;
  }
  .faq-item summary {
    font-size: 16px;
    padding-block: 18px;
  }
}

@media (max-width: 360px) {
  :root {
    --content-pad: 12px;
  }
  .logo img {
    height: 36px;
  }
  .nav-cta .btn {
    padding: 8px 11px;
    font-size: 12.5px;
  }
  .nav-burger {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
