:root {
  --accent: #ffd400;
  --accent-hover: #fed400;
  --accent-soft: rgba(255, 212, 0, 0.18);
  --bg: #ffffff;
  --surface-dark: #373737;
  --surface-darker: #1a1a1a;
  --text: #000000;
  --text-on-dark: #ffffff;
  --text-muted: #373737;
  --border: #e0e0e0;
  --border-strong: #c8c8c8;
  --surface-light: #f5f5f5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14);
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1320px;
  --section-pad-d: clamp(80px, 8vw, 120px);
  --section-pad-m: clamp(20px, 5vw, 32px);
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

h1,
h2,
.logo {
  font-family: "Jura", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  margin: 0 0 24px;
}

h3 {
  font-family: "Onest", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.3;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(100% - 2 * var(--section-pad-m), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad-d);
}

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

.section--dark {
  background: var(--surface-dark);
  color: var(--text-on-dark);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.text-muted {
  color: var(--text-muted);
}

.small {
  font-size: 14px;
  line-height: 1.55;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
  width: min(100% - 2 * var(--section-pad-m), var(--container));
  margin-inline: auto;
}

.logo {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.nav__link:hover {
  opacity: 1;
}

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

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

.nav__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(55, 55, 55, 0.08);
  font-size: 20px;
  color: var(--surface-dark);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav__social:hover {
  transform: translateY(-2px);
}

.nav__social--telegram:hover {
  background: rgba(34, 158, 217, 0.12);
  color: #229ed9;
}

.nav__social--whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.nav__burger {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav__burger span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transform-origin: center;
}

.nav__burger span:nth-child(1) {
  top: 14px;
}

.nav__burger span:nth-child(2) {
  top: 21px;
}

.nav__burger span:nth-child(3) {
  top: 28px;
}

.nav__burger.is-open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 32px;
  font-family: "Onest", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(255, 212, 0, 0.35);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 212, 0, 0.45);
}

.btn--secondary {
  background: var(--surface-dark);
  color: var(--text-on-dark);
}

.btn--secondary:hover {
  background: var(--surface-darker);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.btn--lg {
  min-height: 60px;
  padding: 0 40px;
  font-size: 14px;
}

.btn--sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 12px;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  padding-block: 0;
  overflow: hidden;
  color: var(--text-on-dark);
  background: #0a0a0a;
}

.hero__sticky {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0a;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(100px, 14vh, 160px);
  width: min(100% - 2 * var(--section-pad-m), var(--container));
  margin-inline: auto;
  animation: hero-enter 1s ease 0.2s both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color var(--transition);
}

.hero__scroll:hover {
  color: var(--accent);
}

.hero__scroll-icon {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 212, 0, 0.15);
  border: 1px solid rgba(255, 212, 0, 0.45);
  border-radius: 100px;
  color: var(--accent);
}

.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero h1 {
  max-width: 14ch;
  color: var(--text-on-dark);
}

.hero__lead {
  max-width: 52ch;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.hero__benefits {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__benefits li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__stat {
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.hero__stat-value {
  font-family: "Jura", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-video {
    display: none;
  }
}

/* Trust */
.trust__header {
  text-align: center;
  margin-bottom: 48px;
}

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

.trust__card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
  background: var(--bg);
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.trust__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
}

.trust__num {
  grid-row: 1 / -1;
  grid-column: 1;
  font-family: "Jura", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 0;
  align-self: center;
  text-align: center;
}

.trust__card > p {
  grid-column: 2;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.trust__card-extra {
  grid-column: 2;
  margin-top: 0 !important;
  font-weight: 400 !important;
  color: var(--text-muted);
}

.catalog__title {
  text-align: center;
  margin-bottom: 48px;
}

.trust__footer {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
}

/* Catalog */
.section--catalog {
  position: relative;
  padding-bottom: calc(var(--section-pad-d) + 16px);
  background: var(--surface-light);
  overflow: hidden;
}

.section--catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 212, 0, 0.07), transparent 60%),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0, 0, 0, 0.025) 79px, rgba(0, 0, 0, 0.025) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(0, 0, 0, 0.025) 79px, rgba(0, 0, 0, 0.025) 80px);
  pointer-events: none;
}

.section--catalog .container {
  position: relative;
}

.catalog__fullbleed {
  position: relative;
  width: 100%;
  padding: 0 var(--section-pad-m);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-card__img {
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  line-height: 0;
}

.product-card__img[data-lightbox] {
  cursor: zoom-in;
}

.product-card__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__img img {
  transform: scale(1.03);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 18px 22px;
}

.product-card h3 {
  font-family: "Jura", sans-serif;
  font-size: 20px;
  margin: 0 0 12px;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.product-card__tag--accent {
  color: var(--text);
  background: var(--accent-soft);
  border-color: rgba(255, 212, 0, 0.45);
}

.product-card__tag i {
  flex-shrink: 0;
  font-size: 13px;
  opacity: 0.8;
}

.product-card__cta {
  width: 100%;
  margin-top: auto;
}

.product-card__note {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
}

.product-card__media {
  display: flex;
  flex-direction: column;
}

.product-card__thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border);
}

.product-card__thumb {
  flex: 1;
  min-width: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.65;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.product-card__thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.product-card__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.product-card__thumb img {
  width: 100%;
  height: 58px;
  object-fit: cover;
  display: block;
}

/* Locations */
.section--locations {
  padding-top: calc(var(--section-pad-d) + 8px);
  background: var(--bg);
}

.locations__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.locations__header h2 {
  margin-bottom: 16px;
}

.locations__fullbleed {
  width: 100%;
  padding: 0 var(--section-pad-m);
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  max-width: var(--container);
  margin: 0 auto;
}

.location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  content-visibility: auto;
  contain-intrinsic-size: auto 320px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.location-card--wide {
  grid-column: span 2;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.location-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  line-height: 0;
  background: var(--surface-light);
}

.location-card__img[data-loc-slideshow] img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.location-card__img[data-loc-slideshow] img.is-active {
  opacity: 1;
  z-index: 1;
}

.location-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface-light);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-card:hover .location-card__img img {
  transform: scale(1.05);
}

.location-card__body {
  padding: 18px 20px 22px;
}

.location-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.location-card__tag i {
  color: var(--accent);
}

.location-card h3 {
  font-family: "Jura", sans-serif;
  font-size: 18px;
  margin: 0 0 8px;
}

.location-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* PMU fullscreen showcase */
.pmu-showcase {
  position: relative;
  background: #080808;
  color: #fff;
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
}

.pmu-showcase__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.pmu-showcase__intro h2 {
  color: #fff;
  margin-bottom: 14px;
}

.pmu-showcase__intro .text-muted {
  color: rgba(255, 255, 255, 0.65);
}

.pmu-slider {
  position: relative;
}

.pmu-slider__viewport {
  position: relative;
  height: min(88vh, 900px);
  overflow: hidden;
  outline: none;
  border-radius: clamp(0px, 2vw, 20px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.pmu-slider__track {
  position: relative;
  height: 100%;
}

.pmu-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.pmu-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.pmu-slide.is-exiting {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.95s cubic-bezier(0.4, 0, 0.2, 1);
}

.pmu-slide__media {
  position: absolute;
  inset: -4%;
  overflow: hidden;
}

.pmu-slide__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
  opacity: 0;
  filter: brightness(0.72) blur(8px);
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.pmu-slide.is-dir-next .pmu-slide__bg {
  transform: scale(1.14) translateX(3%);
}

.pmu-slide.is-dir-prev .pmu-slide__bg {
  transform: scale(1.14) translateX(-3%);
}

.pmu-slide.is-active .pmu-slide__bg {
  transform: scale(1);
  opacity: 1;
  filter: brightness(1) blur(0);
}

.pmu-slide.is-exiting .pmu-slide__bg {
  transform: scale(1.06);
  opacity: 0;
  filter: brightness(0.5) blur(4px);
  transition-duration: 0.85s;
}

.pmu-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, transparent 58%);
  opacity: 0.92;
  transition: opacity 0.8s ease;
}

.pmu-slide.is-active .pmu-slide__overlay {
  animation: pmuOverlayIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pmuOverlayIn {
  from { opacity: 0.5; }
  to { opacity: 0.92; }
}

.pmu-slide__content {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 10vh, 120px) clamp(20px, 4vw, 40px) clamp(130px, 16vh, 180px);
  max-width: 680px;
}

.pmu-slide__tag,
.pmu-slide__index,
.pmu-slide__line,
.pmu-slide__content h3,
.pmu-slide__content p {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
}

.pmu-slide__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--accent);
  border-radius: 100px;
  transform: translateY(20px);
}

.pmu-slide__tag i {
  font-size: 12px;
}

.pmu-slide__content--animate .pmu-slide__tag {
  animation: pmuTextIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.pmu-slide__content--animate .pmu-slide__index {
  animation: pmuTextIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.pmu-slide__content--animate .pmu-slide__line {
  animation: pmuLineGrow 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.pmu-slide__content--animate h3 {
  animation: pmuTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.pmu-slide__content--animate p {
  animation: pmuTextIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.44s forwards;
}

@keyframes pmuTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pmuLineGrow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.pmu-slide__index {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.pmu-slide__line {
  display: block;
  width: 56px;
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 212, 0, 0.2));
  border-radius: 2px;
  transform-origin: left center;
}

.pmu-slide__content h3 {
  font-family: "Jura", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.15;
}

.pmu-slide__content p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  max-width: 52ch;
}

.pmu-slider__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.pmu-slider__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #fff8c4);
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(255, 212, 0, 0.4);
}

.pmu-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pmu-slider__controls--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  padding: 48px clamp(16px, 3vw, 32px) clamp(16px, 2.5vh, 28px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
  pointer-events: none;
}

.pmu-slider__controls--overlay > * {
  pointer-events: auto;
}

.pmu-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.pmu-slider__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(255, 212, 0, 0.35);
}

.pmu-slider__btn:active {
  transform: scale(0.96);
}

.pmu-slider__dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pmu-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    transform 0.3s ease;
}

.pmu-slider__dot.is-active {
  width: 28px;
  background: var(--accent);
  transform: none;
  box-shadow: 0 0 12px rgba(255, 212, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .pmu-slide__bg,
  .pmu-slide.is-exiting,
  .pmu-slide__overlay,
  .pmu-slide__content--animate .pmu-slide__tag,
  .pmu-slide__content--animate .pmu-slide__index,
  .pmu-slide__content--animate .pmu-slide__line,
  .pmu-slide__content--animate h3,
  .pmu-slide__content--animate p,
  .pmu-slider__progress-fill,
  .pmu-slider__dot {
    animation: none !important;
    transition: none !important;
  }

  .pmu-slide.is-active .pmu-slide__bg {
    transform: scale(1);
    opacity: 1;
    filter: none;
  }

  .pmu-slide__tag,
  .pmu-slide__index,
  .pmu-slide__line,
  .pmu-slide__content h3,
  .pmu-slide__content p {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Specs / TTX */
.specs__header {
  margin-bottom: 40px;
}

.specs__header h3 {
  margin-top: 8px;
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 600;
}

.specs__table {
  margin-top: 0;
}

.specs__accordion {
  display: none;
}

@media (max-width: 767px) {
  .specs__table {
    display: none;
  }

  .specs__accordion {
    display: block;
  }
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--border);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: "Onest", sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  color: inherit;
  transition: color var(--transition);
}

.accordion__trigger:hover {
  color: var(--text-muted);
}

.accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
}

.accordion__panel {
  display: none;
  padding-bottom: 20px;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

/* TTX table */
.ttx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ttx-table th,
.ttx-table td {
  padding: 16px 20px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.ttx-table th {
  width: 42%;
  font-weight: 600;
  background: var(--surface-light);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  row-gap: 0;
  align-items: start;
  background: var(--surface-light);
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.step h3 {
  grid-column: 2;
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.step > p {
  grid-column: 2;
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.step::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
}

.step:last-child::after {
  display: none;
}

.step__num {
  grid-row: 1 / -1;
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: "Jura", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  background: var(--accent);
  border-radius: 50%;
  margin: 0;
  align-self: center;
}

/* CTA / Form */
.cta-section {
  padding-block: var(--section-pad-d);
  background: var(--surface-light);
}

.cta-panel {
  position: relative;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: linear-gradient(145deg, #1c1c1c 0%, #2a2a2a 42%, #1a1a1a 100%);
  color: #fff;
}

.cta-panel__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-panel__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 212, 0, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  mask-image: radial-gradient(ellipse 90% 80% at 70% 40%, #000 20%, transparent 75%);
}

.cta-panel__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 100%, rgba(255, 212, 0, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(255, 212, 0, 0.08), transparent 55%),
    linear-gradient(225deg, transparent 40%, rgba(255, 212, 0, 0.06) 50%, transparent 60%);
}

.cta-panel__watermark {
  position: absolute;
  font-size: clamp(80px, 14vw, 160px);
  color: rgba(255, 212, 0, 0.05);
  line-height: 1;
}

.cta-panel__watermark:first-of-type {
  top: -12px;
  left: 6%;
  transform: rotate(10deg);
}

.cta-panel__watermark--2 {
  bottom: 8%;
  right: 38%;
  font-size: clamp(56px, 10vw, 110px);
  color: rgba(255, 255, 255, 0.03);
  transform: rotate(-8deg);
}

.cta-panel__bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(255, 212, 0, 0.45);
  border-style: solid;
}

.cta-panel__bracket--tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.cta-panel__bracket--tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
}

.cta-panel__bracket--bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
}

.cta-panel__bracket--br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

.cta-panel__inner {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 4.5vw, 48px) clamp(24px, 3.5vw, 44px);
}

.cta-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.cta-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--accent);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(255, 212, 0, 0.35);
}

.cta-panel__badge i {
  font-size: 13px;
}

.cta-section__info h2 {
  font-family: "Jura", sans-serif;
  font-size: clamp(24px, 2.8vw, 32px);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-highlights {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-highlights li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.cta-highlights li:hover {
  background: rgba(255, 212, 0, 0.08);
  border-color: rgba(255, 212, 0, 0.28);
  transform: translateX(4px);
}

.cta-highlight__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 212, 0, 0.12);
  color: var(--accent);
  font-size: 16px;
}

.cta-highlight__text {
  min-width: 0;
}

.cta-highlight__arrow {
  flex-shrink: 0;
  font-size: 12px;
  color: rgba(255, 212, 0, 0.45);
  transition: color 0.3s ease, transform 0.3s ease;
}

.cta-highlights li:hover .cta-highlight__arrow {
  color: var(--accent);
  transform: translateX(3px);
}

.cta-section__hint {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  max-width: 42ch;
  margin: 0;
}

.cta-section__lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
}

.cta-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cta-benefits__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 18px;
}

.cta-benefits strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.cta-benefits span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.cta-section__card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-radius: 14px;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 36px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 212, 0, 0.2);
}

.cta-section__card .form__group {
  margin-bottom: 14px;
}

.cta-section__card .form__label {
  margin-bottom: 6px;
  font-size: 12px;
}

.cta-section__card .form__input,
.cta-section__card .form__select {
  padding: 11px 14px;
  font-size: 15px;
}

.cta-section__card .form__radio {
  padding: 8px 12px;
  font-size: 13px;
}

.cta-section__card .form .btn--lg {
  min-height: 50px;
  margin-top: 4px;
}

.cta-section__card .form__note {
  margin-top: 10px;
  font-size: 12px;
}

.cta-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cta-form__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Jura", sans-serif;
  font-size: 20px;
  margin: 0;
  line-height: 1.2;
}

.cta-form__title i {
  color: var(--accent);
  font-size: 20px;
}

.cta-section__card h3 {
  font-family: "Jura", sans-serif;
  font-size: 24px;
  margin-bottom: 8px;
}

.cta-section__card-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form__label .req {
  color: #c0392b;
}

.form__input,
.form__select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form__input--error,
.form__select--error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.form__radios--error .form__radio {
  border-color: #c0392b;
}

.form__error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #c0392b;
}

.form__input::placeholder {
  color: #aaa;
}

.form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form__radios .form__label {
  width: 100%;
}

.form__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.form__radio:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.form__radio input {
  accent-color: var(--accent);
}

.form .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.form__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.form__consent {
  margin-bottom: 8px;
}

.form__consent-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
}

.form__consent-label input {
  margin-top: 2px;
  accent-color: var(--accent);
}

.form__consent-label a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__consent-label a:hover {
  color: #b38f00;
}

.legal-page {
  padding-top: calc(88px + var(--section-pad-d));
}

.legal-page__inner {
  max-width: 820px;
}

.legal-page__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  font-size: 16px;
  line-height: 1.65;
}

.legal-page ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-page a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Advantages */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  background: #fffef8;
}

/* Trials */
.trials__intro {
  max-width: 72ch;
  margin-bottom: 48px;
}

.trials__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trial-card {
  position: relative;
}

.trial-card__num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jura", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--accent);
  color: var(--text);
  border-radius: 50%;
}

.trial-card__img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface-dark);
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.trial-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.trial-card__img:hover::after {
  background: rgba(0, 0, 0, 0.18);
}

.trial-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trial-card__img:hover img {
  transform: scale(1.05);
}

.trials__media {
  position: relative;
  margin-top: 56px;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: linear-gradient(145deg, #1c1c1c 0%, #2a2a2a 42%, #1a1a1a 100%);
  color: #fff;
}

.trials__media-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.trials__media-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 212, 0, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 20%, transparent 75%);
}

.trials__media-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 100%, rgba(255, 212, 0, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(255, 212, 0, 0.08), transparent 55%),
    linear-gradient(135deg, transparent 40%, rgba(255, 212, 0, 0.06) 50%, transparent 60%);
}

.trials__media-watermark {
  position: absolute;
  font-size: clamp(80px, 14vw, 160px);
  color: rgba(255, 212, 0, 0.05);
  line-height: 1;
}

.trials__media-watermark:first-of-type {
  top: -12px;
  right: 8%;
  transform: rotate(-12deg);
}

.trials__media-watermark--2 {
  bottom: 10%;
  left: 42%;
  font-size: clamp(56px, 10vw, 110px);
  color: rgba(255, 255, 255, 0.03);
  transform: rotate(8deg);
}

.trials__media-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(255, 212, 0, 0.45);
  border-style: solid;
}

.trials__media-bracket--tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.trials__media-bracket--tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
}

.trials__media-bracket--bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
}

.trials__media-bracket--br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

.trials__media-inner {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 4.5vw, 48px) clamp(24px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.trials__aside-title {
  font-family: "Jura", sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 0 0 10px;
  line-height: 1.2;
  color: #fff;
}

.trials__aside-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 28px;
}

.trials__aside-sub i {
  color: var(--accent);
  opacity: 0.9;
}

.trials__facts {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trials__facts li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.trials__facts li:hover {
  background: rgba(255, 212, 0, 0.08);
  border-color: rgba(255, 212, 0, 0.28);
  transform: translateX(4px);
}

.trials__fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 212, 0, 0.12);
  color: var(--accent);
  font-size: 16px;
}

.trials__fact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trials__facts strong {
  font-family: "Jura", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.trials__fact-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.trials__fact-arrow {
  flex-shrink: 0;
  font-size: 12px;
  color: rgba(255, 212, 0, 0.45);
  transition: color 0.3s ease, transform 0.3s ease;
}

.trials__facts li:hover .trials__fact-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

.trials__docs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trials__media-video {
  position: relative;
}

.trials__video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.trials__video-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Jura", sans-serif;
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
  color: #fff;
}

.trials__video-heading i {
  color: var(--accent);
  font-size: 20px;
}

.trials__video-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 212, 0, 0.2);
  background: #000;
  max-height: 420px;
}

.trials__video-crop {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  border-color: var(--accent);
  border-style: solid;
  pointer-events: none;
}

.trials__video-crop--tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.trials__video-crop--br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

.trials__video-frame video {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* FAQ table */
.faq-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-table th,
.faq-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

.faq-table th {
  background: var(--surface-light);
}

/* Footer */
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer__logo {
  color: var(--text-on-dark);
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.footer__nav .footer__list a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.footer__nav .footer__list a:hover {
  color: var(--accent);
}

.footer__list a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.footer__list a:hover {
  color: var(--accent);
}

.footer__company {
  font-weight: 600;
}

.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer__socials a:hover {
  background: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

.footer__copy {
  font-size: 13px;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.footer__copy a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__copy a:hover {
  color: var(--accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox.is-loading .lightbox__img {
  opacity: 0;
}

.lightbox.is-loading::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: lightboxSpin 0.8s linear infinite;
}

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

.lightbox__img {
  max-width: min(1200px, 100%);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 40ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 80ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 120ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 160ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 200ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 240ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 280ms; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 320ms; opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Responsive */
@media (max-width: 1100px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    gap: 40px;
  }

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

  .location-card--wide {
    grid-column: span 2;
  }

  .step::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad-d: clamp(64px, 8vw, 96px);
  }

  body {
    font-size: 16px;
  }

  .header__inner {
    padding-block: 14px;
    gap: 16px;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog__title {
    margin-bottom: 36px;
  }

  .trials__intro {
    margin-bottom: 36px;
  }

  .pmu-slide__content {
    padding: clamp(72px, 10vh, 120px) clamp(20px, 4vw, 32px) clamp(88px, 11vh, 120px);
  }

  .pmu-slider__controls {
    padding: 20px clamp(12px, 3vw, 24px) 28px;
  }

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

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

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

  .cta-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .trials__media-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  :root {
    --section-pad-d: clamp(48px, 11vw, 72px);
    --section-pad-m: clamp(16px, 4.5vw, 24px);
  }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    min-height: 52px;
    padding-inline: 20px;
  }

  .btn--lg {
    min-height: 56px;
    padding-inline: 24px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .header {
    --header-h: 57px;
  }

  .header {
    z-index: 103;
  }

  .header__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: var(--header-h);
    padding-block: 12px;
    padding-inline: var(--section-pad-m);
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 12px;
  }

  .logo {
    font-size: 18px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav__burger {
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
    z-index: 102;
  }

  .nav {
    display: none;
    margin-left: 0;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 101;
    padding: 20px var(--section-pad-m) 28px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav.is-open .nav__link {
    display: block;
    padding: 12px 0;
    font-size: 14px;
  }

  .nav.is-open .nav__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .nav.is-open .nav__actions .btn {
    display: inline-flex;
    width: 100%;
  }

  .nav.is-open .nav__socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .nav.is-open .nav__social {
    width: 44px;
    height: 44px;
  }

  .hero__overlay {
    background: rgba(0, 0, 0, 0.25);
  }

  .hero__inner {
    padding-block: clamp(96px, 14vh, 128px) 96px;
  }

  .hero__lead {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero__benefits {
    margin-bottom: 28px;
    gap: 10px;
  }

  .hero__benefits li {
    font-size: 15px;
  }

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

  .hero__actions {
    flex-direction: column;
    margin-bottom: 64px;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__scroll {
    bottom: 16px;
  }

  .trust__grid,
  .catalog__grid,
  .locations__grid,
  .steps,
  .advantages__grid,
  .trials__strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust__card {
    padding: 16px 18px;
    column-gap: 14px;
  }

  .trust__num {
    font-size: 28px;
  }

  .catalog__fullbleed,
  .locations__fullbleed {
    padding-inline: var(--section-pad-m);
  }

  .catalog__title {
    margin-bottom: 28px;
    padding-inline: var(--section-pad-m);
  }

  .product-card__body {
    padding: 16px 14px 18px;
  }

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

  .product-card__thumb img {
    height: 52px;
  }

  .location-card--wide {
    grid-column: span 1;
  }

  .location-card--wide .location-card__img {
    aspect-ratio: 4 / 3;
  }

  .location-card__body {
    padding: 16px 16px 18px;
  }

  .pmu-showcase {
    padding-top: clamp(40px, 8vw, 56px);
  }

  .pmu-showcase__intro {
    margin-bottom: 28px;
    padding-inline: var(--section-pad-m);
  }

  .pmu-slider__viewport {
    height: min(68vh, 560px);
    border-radius: 0;
  }

  .pmu-slide__content {
    padding: clamp(48px, 7vh, 72px) var(--section-pad-m) 120px;
  }

  .pmu-slider__controls--overlay {
    padding: 40px var(--section-pad-m) 14px;
  }

  .pmu-slide__content h3 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .pmu-slide__content p {
    font-size: 15px;
  }

  .pmu-slider__btn {
    width: 44px;
    height: 44px;
  }

  .pmu-slider__controls {
    gap: 12px;
    padding: 16px var(--section-pad-m) 24px;
  }

  .trials__intro {
    margin-bottom: 28px;
  }

  .trials__media {
    margin-top: 40px;
  }

  .trials__media-inner {
    padding: 28px 18px;
  }

  .trials__facts li,
  .cta-highlights li {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 14px;
  }

  .trials__fact-arrow,
  .cta-highlight__arrow {
    display: none;
  }

  .trials__facts strong {
    font-size: 16px;
  }

  .cta-panel__inner {
    padding: 28px 18px;
  }

  .cta-section__card {
    padding: 24px 20px;
  }

  .cta-panel__watermark,
  .cta-panel__watermark--2,
  .trials__media-watermark,
  .trials__media-watermark--2 {
    display: none;
  }

  .cta-section__info h2,
  .trials__aside-title {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .cta-form__title {
    font-size: 18px;
  }

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

  .form__radio {
    width: 100%;
    justify-content: flex-start;
  }

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

  .step {
    padding: 18px 16px;
    column-gap: 14px;
  }

  .step__num {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .accordion__trigger {
    font-size: 16px;
    padding: 16px 0;
  }

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

  .footer__grid {
    margin-bottom: 32px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  h2 {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .hero__inner {
    padding-bottom: 80px;
  }

  .product-card__tags {
    gap: 6px;
  }

  .product-card__tag {
    font-size: 11px;
    padding: 5px 8px;
  }

  .pmu-slider__dots {
    padding: 6px 10px;
    gap: 6px;
  }

  .pmu-slider__dot {
    width: 7px;
    height: 7px;
  }

  .pmu-slider__dot.is-active {
    width: 22px;
  }
}

/* Lead form anti-spam and submit state */
.form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.form button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 10050;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__panel {
  pointer-events: auto;
  width: min(720px, 100%);
  padding: 20px 20px 16px;
  border-radius: 16px;
  background: #111;
  color: var(--text-on-dark);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner__title {
  margin: 0 0 8px;
  font-family: "Jura", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-on-dark);
}

.cookie-banner__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-banner__text a {
  color: var(--accent);
  text-underline-offset: 2px;
}

.cookie-banner__options {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.cookie-banner__option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}

.cookie-banner__option input {
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.cookie-banner__option--locked {
  opacity: 0.85;
  cursor: default;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner__actions .btn {
  min-height: 40px;
}

.cookie-banner__reject {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text-on-dark);
}

.cookie-banner__reject:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 640px) {
  .cookie-banner {
    inset: auto 0 0 0;
  }

  .cookie-banner__panel {
    width: 100%;
    border-radius: 16px 16px 0 0;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner__actions .btn {
    flex: 1 1 calc(50% - 4px);
  }

  .cookie-banner__reject {
    flex-basis: 100%;
  }
}
