﻿:root {
  --bg: #0d0a0b;
  --surface: #161112;
  --surface-strong: #050405;
  --surface-soft: #22191b;
  --text: #f7f2f3;
  --text-soft: #bcaeb1;
  --line: rgba(255, 255, 255, 0.09);
  --primary: #d62839;
  --primary-strong: #aa1127;
  --accent: #f7b3bb;
  --success: #ff7a86;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --container: 1200px;
  --page-gutter: 3rem;
  --page-gutter-mobile: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 40, 57, 0.22), transparent 22%),
    radial-gradient(circle at bottom right, rgba(214, 40, 57, 0.12), transparent 30%),
    var(--bg);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 var(--space-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(13, 10, 11, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
  min-height: 88px;
}

.brand,
.brand--footer {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ef4a5d);
  box-shadow: 0 12px 26px rgba(214, 40, 57, 0.28);
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.brand-copy small {
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  font-weight: 600;
  color: var(--text-soft);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex-wrap: nowrap;
}

.icon-pill,
.slider-btn,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.icon-pill {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
}

.icon-pill svg,
.slider-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ef4a5d);
  box-shadow: 0 14px 30px rgba(214, 40, 57, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.btn-dark {
  color: #fff;
  background: var(--surface-strong);
}

.hero {
  padding: clamp(2.5rem, 5vw, 5rem) 0 var(--space-7);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr) minmax(220px, 0.58fr);
  gap: clamp(1.5rem, 2.6vw, 2.5rem);
  align-items: start;
}

.hero-copy,
.hero-stage,
.hero-side {
  min-width: 0;
}

.hero-copy h1,
.section-head h2,
.about-copy h2,
.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
  max-width: 8.5ch;
}

.hero-text,
.section-intro,
.about-copy p,
.product-copy p,
.site-footer p,
.side-card p,
.review-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-copy--stacked {
  display: grid;
  align-content: start;
  gap: 0;
  padding-top: 0.8rem;
}

.hero-text {
  max-width: 32rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: var(--space-5) 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.mini-card,
.side-card,
.product-card,
.review-card,
.info-panel,
.cta-band__inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.mini-card,
.side-card,
.review-card,
.info-panel {
  border-radius: var(--radius-md);
}

.mini-card {
  padding: var(--space-4);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mini-card:hover,
.mini-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
  max-width: 25rem;
  margin: 0 auto;
}

.hero-glow {
  position: absolute;
  inset: auto auto -18% -10%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 40, 57, 0.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-badge {
  display: inline-grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #090708, #2b1519);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero-badge span {
  font-size: 1.6rem;
  font-weight: 800;
}

.hero-badge--floating {
  position: absolute;
  top: 0.5rem;
  left: 0.1rem;
  z-index: 2;
  min-width: 4.8rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(214, 40, 57, 0.94), rgba(104, 10, 22, 0.96));
}

.hero-badge--floating span {
  font-size: 1.25rem;
  line-height: 1;
}

.hero-badge--floating small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge--side {
  justify-self: start;
  padding: 1rem 1.1rem;
}

.hero-product {
  position: relative;
  display: grid;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  gap: 0;
}

.hero-slider-window {
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  border-radius: 2rem;
  background: transparent;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}

.hero-product-curve {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  width: min(54%, 190px);
  height: 1.15rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 40, 57, 0.75) 0%, rgba(214, 40, 57, 0.08) 68%, transparent 82%);
  transform: translateX(-50%);
  filter: blur(4px);
  pointer-events: none;
}

.hero-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(214, 40, 57, 0.96), rgba(239, 74, 93, 0.96));
  box-shadow: 0 16px 34px rgba(214, 40, 57, 0.26);
}

.slider-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0;
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.slider-dots {
  display: flex;
  gap: 0.55rem;
}

.slider-dots button {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dots button.is-active {
  background: var(--primary);
  transform: scale(1.12);
}

.hero-side {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  max-width: 18rem;
  justify-self: end;
}

.side-card {
  padding: 1.35rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.025);
}

.hero-features {
  display: grid;
  gap: var(--space-3);
}

.side-card strong {
  font-size: 0.98rem;
  line-height: 1.5;
}

.highlights,
.banner-slider,
.about,
.reviews,
.cta-band {
  padding: var(--space-7) 0;
}

.section-head {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.section-head--centered {
  justify-items: center;
  text-align: center;
}

.section-head--centered .section-intro {
  max-width: 44rem;
}

.section-head h2,
.about-copy h2,
.cta-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.product-card {
  display: grid;
  overflow: hidden;
  border-radius: 2rem;
}

.video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(18, 13, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.video-frame {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(214, 40, 57, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.video-frame.is-empty::after {
  font-size: 0.95rem;
  color: rgba(247, 242, 243, 0.72);
  background:
    linear-gradient(180deg, rgba(10, 7, 8, 0.34), rgba(10, 7, 8, 0.34));
}

.video-frame__media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: transparent;
}

.video-card__copy {
  display: grid;
  gap: 0.45rem;
  text-align: center;
  justify-items: center;
}

.video-card__copy h3 {
  margin: 0;
}

.video-card__copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.video-card__btn {
  margin-top: 0.8rem;
  min-height: 2.9rem;
  padding: 0.8rem 1.5rem;
  color: #fff;
  font-weight: 800;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.video-card__btn:hover,
.video-card__btn:focus-visible {
  background: #111;
  transform: translateY(-2px);
}

.product-card--featured {
  transform: translateY(-1rem);
}

.banner-slider {
  padding: 0;
  overflow: hidden;
}

.banner-slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  z-index: 1;
}

.banner-slider__track {
  display: flex;
  transition: transform 0.4s ease;
}

.promo-banner {
  position: relative;
  min-height: 520px;
}

.promo-banner__media {
  width: 100%;
  min-height: 520px;
}

.promo-banner__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 1rem;
  width: min(100% - 2rem, 680px);
  margin-left: clamp(1rem, 6vw, 5rem);
  color: var(--text);
}

.promo-banner__overlay h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.promo-banner__overlay p:not(.eyebrow) {
  max-width: 52ch;
  color: var(--text-soft);
  line-height: 1.7;
}

.banner-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 4, 5, 0.54);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.banner-arrow:hover,
.banner-arrow:focus-visible {
  background: rgba(214, 40, 57, 0.82);
  transform: translateY(-50%) scale(1.04);
}

.banner-arrow svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.banner-arrow--prev {
  left: 1rem;
}

.banner-arrow--next {
  right: 1rem;
}

.product-copy {
  padding: var(--space-4);
}

.product-chip {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff9ca6;
  background: rgba(214, 40, 57, 0.12);
}

.product-copy h3,
.info-panel h3,
.site-footer h3,
.review-card strong {
  margin: 0 0 0.65rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 2.8vw, 3rem);
  align-items: stretch;
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(214, 40, 57, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(18, 13, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  height: 100%;
}

.about-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
  height: 100%;
}

.info-panel {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  min-height: 100%;
  padding: 1.45rem 1.35rem;
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(214, 40, 57, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(18, 13, 15, 0.92);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  height: 100%;
}

.info-panel:hover,
.info-panel:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.info-panel--featured {
  transform: translateY(-16px);
  background:
    radial-gradient(circle at top right, rgba(214, 40, 57, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(18, 13, 15, 0.94);
}

.info-panel--featured:hover,
.info-panel--featured:focus-within {
  transform: translateY(-20px);
}

.about-copy p {
  max-width: 34rem;
  margin: 0;
}

.about-copy h2 {
  max-width: 8ch;
}

.about-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #f2dfe1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.2rem;
}

.about-stat {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat strong {
  font-size: 1rem;
  line-height: 1;
}

.about-stat span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.45rem;
}

.about-copy .btn {
  justify-self: start;
}

.about-extra-copy {
  display: grid;
  gap: 1rem;
  margin-top: 0.35rem;
}

.about-extra-copy p {
  max-width: none;
  color: var(--text-soft);
  line-height: 1.65;
}

.about-link {
  color: #f4c7cd;
  font-weight: 700;
}

.about-link:hover,
.about-link:focus-visible {
  color: #fff;
}

.info-panel__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.info-panel__tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd7dc;
  background: rgba(214, 40, 57, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.info-panel h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: 1.3;
}

.info-panel li + li {
  margin-top: 0.75rem;
}

.info-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.info-panel--wide {
  grid-column: 1 / -1;
  height: auto;
}

.info-panel--faq {
  gap: 1rem;
}

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

.faq-item {
  align-self: start;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  line-height: 1.45;
  padding-right: 1.5rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1380px) {
  .about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
  }

  .about-copy {
    gap: 1rem;
    padding: 1.3rem;
  }

  .about-copy h2 {
    font-size: clamp(1.95rem, 3.8vw, 3.4rem);
    max-width: 7.3ch;
  }

  .about-copy p {
    max-width: 31rem;
  }

  .about-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-stats {
    gap: 0.7rem;
  }

  .about-stat {
    padding: 0.85rem 0.9rem;
  }

  .about-stat strong {
    font-size: 0.95rem;
  }

  .about-stat span {
    font-size: 0.82rem;
  }

  .about-panels {
    gap: 0.85rem;
  }

  .info-panel {
    gap: 0.8rem;
    padding: 1.2rem 1.05rem;
    border-radius: 1.5rem;
  }

  .info-panel--featured {
    transform: translateY(-8px);
  }

  .info-panel--featured:hover,
  .info-panel--featured:focus-within {
    transform: translateY(-12px);
  }

  .info-panel__tag {
    min-height: 1.8rem;
    padding: 0.28rem 0.65rem;
    font-size: 0.65rem;
  }

  .info-panel h3 {
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    line-height: 1.22;
  }

  .info-panel ul {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .info-panel li + li {
    margin-top: 0.6rem;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .faq-item {
    padding: 0.85rem 0.9rem;
  }
}

.testimonials-carousel {
  position: relative;
}

.testimonials-track-wrap {
  overflow: hidden;
  border-radius: 2rem;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 0;
  padding: 1.15rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(18, 13, 15, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.testimonial-photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 1rem;
  border-radius: 1.3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(214, 40, 57, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.testimonial-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.28));
}

.testimonial-rating {
  color: #ff8a95;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

.testimonial-name {
  font-weight: 800;
  color: var(--text);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(214, 40, 57, 0.2);
  border-color: rgba(214, 40, 57, 0.38);
}

.carousel-dots {
  display: flex;
  gap: 0.55rem;
}

.carousel-dots button {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dots button.is-active {
  background: var(--primary);
  transform: scale(1.12);
}

.cta-band__inner {
  display: grid;
  gap: 2rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right bottom, rgba(214, 40, 57, 0.22), transparent 28%),
    radial-gradient(circle at left top, rgba(239, 74, 93, 0.1), transparent 24%),
    linear-gradient(135deg, #171012, #0f0a0b);
  border: 1px solid rgba(214, 40, 57, 0.16);
}

.cta-band__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band__head .eyebrow {
  color: #ff7d8a;
}

.cta-band__head .section-intro {
  max-width: 46rem;
  margin-top: 1rem;
  color: #c7afb3;
}

.cta-band__button {
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ef4a5d);
  box-shadow: 0 16px 34px rgba(214, 40, 57, 0.28);
}

.cta-band__tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cta-tier {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 11rem;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 40, 57, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.cta-tier:hover,
.cta-tier:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(239, 74, 93, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.cta-tier__count {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ff9aa5;
}

.cta-tier__discount {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: #ef4a5d;
}

.cta-tier__label {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: #c7afb3;
}

.cta-tier--featured {
  overflow: hidden;
  background:
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(180deg, #ef4a5d, #b1182c);
  border-color: rgba(255, 179, 187, 0.34);
  box-shadow: 0 24px 40px rgba(167, 22, 43, 0.28);
}

.cta-tier--featured .cta-tier__count,
.cta-tier--featured .cta-tier__discount,
.cta-tier--featured .cta-tier__label {
  color: #fff;
}

.cta-tier--featured .cta-tier__label {
  margin-top: 0.6rem;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: rgba(22, 10, 12, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.cta-tier__ribbon {
  position: absolute;
  top: 1.4rem;
  right: -3.5rem;
  padding: 0.45rem 4.1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  background: rgba(22, 10, 12, 0.92);
  transform: rotate(38deg);
}

.site-footer {
  margin-top: var(--space-6);
  padding: 0 0 var(--space-4);
  color: #f8f0e7;
  background:
    radial-gradient(circle at top right, rgba(214, 40, 57, 0.08), transparent 20%),
    #050405;
}

.site-footer a,
.site-footer p {
  color: rgba(248, 240, 231, 0.74);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 1.5rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: 1.8rem 1.8rem 0 0;
  background: rgba(10, 7, 8, 0.92);
  box-shadow: var(--shadow);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer-column h3 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.footer-column:nth-child(2),
.footer-column:nth-child(3) {
  padding-top: 0.65rem;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-list span,
.footer-link-list a {
  color: rgba(248, 240, 231, 0.74);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(214, 40, 57, 0.12);
  border: 1px solid rgba(214, 40, 57, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(214, 40, 57, 0.2);
  border-color: rgba(214, 40, 57, 0.34);
}

.footer-social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-expand {
  padding: 0.7rem 1.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 7, 8, 0.92);
}

.footer-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.footer-toggle-arrow {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.footer-toggle[aria-expanded="true"] .footer-toggle-arrow {
  transform: rotate(180deg);
}

.footer-span-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding-top: 8px;
  list-style: none;
}

.footer-span-list li {
  margin: 0;
  padding: 0;
}

.footer-span-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(214, 40, 57, 0.08);
  border: 1px solid rgba(214, 40, 57, 0.14);
  font-size: 0.92rem;
}

.footer-bottom {
  padding: 1rem 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 1.8rem 1.8rem;
  background: rgba(10, 7, 8, 0.92);
  text-align: center;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 18px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.image-placeholder--hero {
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 2rem;
  background: transparent;
  border: 0;
  padding: 0 0 2.75rem;
  box-shadow: none;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-placeholder--hero img {
  width: min(100%, 310px);
  height: auto;
  max-width: 100%;
  max-height: none;
  border-radius: 1.75rem;
  object-fit: contain;
  object-position: center bottom;
  box-shadow:
    0 22px 36px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.35));
}

.promo-banner__media img {
  object-fit: cover;
}

.image-placeholder.is-empty::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

.image-placeholder.is-empty img {
  opacity: 0;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.18rem auto;
  background: var(--text);
}

@media (max-width: 1440px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.76fr) minmax(210px, 0.54fr);
    gap: 1.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 4.6vw, 4.6rem);
    max-width: 8ch;
  }

  .hero-cta {
    margin: 2rem 0;
  }

  .mini-card {
    padding: 1.15rem;
  }

  .hero-stage {
    max-width: 23rem;
  }

  .hero-side {
    max-width: 17rem;
  }
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr) minmax(200px, 0.5fr);
    gap: 1.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 4.1vw, 4rem);
  }

  .hero-text {
    max-width: 29rem;
  }

  .hero-stage {
    max-width: 21.5rem;
  }

  .image-placeholder--hero {
    padding: 0 0 2.5rem;
  }

  .side-card {
    padding: 1.1rem;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-copy--stacked {
    padding-top: 0;
  }

  .hero-text {
    max-width: none;
  }

  .hero-stage,
  .hero-side {
    max-width: none;
    justify-self: stretch;
  }

  .hero-side,
  .about-panels,
  .product-grid,
  .video-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .about-copy {
    padding-right: 0;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .cta-band__head {
    display: grid;
  }

  .footer-column:nth-child(2),
  .footer-column:nth-child(3) {
    padding-top: 0;
  }

  .product-card--featured {
    transform: none;
  }
}

@media (max-width: 820px) {
  .header-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.75rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: center;
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(18, 13, 15, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .desktop-cta {
    display: none;
  }

  .footer-main {
    padding: 1.3rem 1rem 1rem;
  }

  .footer-expand,
  .footer-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding-top: var(--space-6);
  }

  .hero-points,
  .hero-side,
  .about-panels,
  .product-grid,
  .video-showcase__grid,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .about-copy,
  .about-panels,
  .info-panel {
    height: auto;
  }

  .about-panels {
    grid-auto-rows: auto;
    align-items: start;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .info-panel {
    min-height: 0;
  }

  .info-panel--wide {
    grid-column: auto;
  }

  .cta-band__tiers {
    grid-template-columns: 1fr;
  }

  .info-panel {
    padding: 1.25rem;
  }

  .info-panel--featured,
  .info-panel--featured:hover,
  .info-panel--featured:focus-within {
    transform: none;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-track-wrap {
    padding-inline: 0.85rem;
    border-radius: 1.6rem;
  }

  .testimonial-card {
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1.45rem;
  }

  .testimonial-photo {
    aspect-ratio: 1 / 1;
    padding: 0.85rem;
  }

  .testimonial-quote {
    line-height: 1.55;
  }

  .carousel-controls {
    margin-top: 1.1rem;
  }

  .promo-banner,
  .promo-banner__media {
    min-height: 420px;
  }

  .banner-arrow {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 768px) {
  html,
  body {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - (var(--page-gutter-mobile) * 2)), var(--container));
  }

  .header-row {
    gap: 0.55rem;
    min-height: 80px;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-copy strong {
    font-size: 0.86rem;
    line-height: 1.08;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy h1,
  .section-head h2,
  .about-copy h2,
  .cta-band h2 {
    line-height: 1.04;
  }

  .hero-stage {
    order: 2;
  }

  .hero-side {
    order: 3;
  }

  .image-placeholder {
    min-height: 280px;
  }

  .image-placeholder--hero {
    padding: 0 0 2rem;
  }

  .image-placeholder--hero img {
    width: min(100%, 240px);
    border-radius: 1.2rem;
  }

  .promo-banner,
  .promo-banner__media {
    min-height: 360px;
  }

  .promo-banner__overlay {
    width: calc(100% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    align-content: end;
    padding-bottom: 1.5rem;
  }

  .banner-arrow {
    width: 2.7rem;
    height: 2.7rem;
  }

  .banner-arrow--prev {
    left: 0.6rem;
  }

  .banner-arrow--next {
    right: 0.6rem;
  }

  .hero-badge--floating {
    top: 0;
    left: 0;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .testimonials-track-wrap {
    padding-inline: 0.65rem;
  }

  .testimonial-card {
    padding: 0.95rem;
    border-radius: 1.3rem;
  }

  .testimonial-photo {
    aspect-ratio: 1.02 / 1;
    padding: 0.7rem;
  }

  .testimonial-rating {
    font-size: 0.88rem;
  }

  .testimonial-quote {
    font-size: 0.98rem;
  }

  .carousel-controls {
    gap: 0.7rem;
  }

  .carousel-btn {
    width: 2.65rem;
    height: 2.65rem;
  }

  .carousel-dots {
    gap: 0.45rem;
  }

  .carousel-dots button {
    width: 0.62rem;
    height: 0.62rem;
  }
}

