:root {
  color-scheme: dark;
  font-family: "Manrope", system-ui, sans-serif;
  background: #0b0b0f;
  color: #f6f6f9;
  --accent: #ff9f0a;
  --accent-dark: #c77700;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a1a26 0%, #0b0b0f 55%);
}

.page {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 8px 8px 10px;
}

.topbar {
  display: none;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 16px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-actions {
  display: inline-flex;
  align-items: stretch;
  gap: 12px;
}

.topbar-logo-icon {
  padding-top: 16px;
}

.show-topbar .topbar {
  display: flex;
  position: static;
  padding: 16px 11px;
}

.results-mode .topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgb(20 20 30 / 75%);
  backdrop-filter: blur(6px);
}

.results-mode .progress-row {
  display: none;
}

.progress-only .topbar {
  justify-content: flex-start;
  padding: 12px 35px 16px;
}

.progress-only .topbar-brand,
.progress-only .topbar-actions {
  display: none;
}

.progress-only .progress-row {
 /* margin-top: 0; */
}

.topbar-logo {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  place-items: center;
  width: 46px;
  height: 56px;
  font-size: 28px;
  line-height: 1;
}

.topbar-title {
  display: flex;
  flex-direction: column;
}

.topbar-title-main {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar-title-timer {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.progress-row {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.back-button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.back-button svg {
  width: 22px;
  height: 22px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.logo svg {
  display: block;
  width: 40px;
  height: 40px;
}

.status {
  padding: 12px 28px;
  border-radius: 18px;
  background: var(--accent);
  color: #0b0b0f;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.progress-track {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 3px;
  justify-self: stretch;
}

.progress-track span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track span.active {
  background: var(--accent);
}

.wizard {
  background: rgba(11, 11, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 18px 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.step {
  display: none;
  flex-direction: column;
  gap: 42px;
  text-align: center;
}

.step.active {
  display: flex;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 118, 248, 0.18), rgba(133, 160, 255, 0.12));
  padding: 16px;
  border-radius: 20px;
}

h1 {
  margin: 0 0 6px;
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

.subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-top: -4px;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.options {
  display: grid;
  gap: 10px;
}

.options.grid {
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
}

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

.options.grid.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
          margin: 0 0; 
}

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

.option {
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font-size: 1.12rem;
  padding: 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

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

.option.selected {
  border-color: var(--accent);
  background: rgba(255, 159, 10, 0.18);
}

.option.has-media {
  padding: 6px;
}

.claim-discount-text {
text-transform: capitalize;
    font-size: 1.1rem;
}

.option-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}

.option-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.option-media img,
.option-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.option-label {
  font-weight: 600;
}

.option-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 8px;
}

.multi-option .option-meta {
  padding-top: 6px;
}

.option-check {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
}

.option.selected .option-check {
  border-color: var(--accent);
  background: var(--accent);
  color: #0b0b0f;
}

.option.selected .option-check::after {
  content: "✔";
  font-size: 0.75rem;
  line-height: 1;
}

.option-full {
  grid-column: 1 / -1;
  justify-content: center;
}

.multi-option {
  align-items: stretch;
  text-align: center;
}

.multi-option .option-label {
  flex: 1;
  text-align: center;
}

.center-media .option-media {
  align-items: center;
}

.list-option {
  flex-direction: row;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.list-option .icon {
  font-size: 1.2rem;
}

.list-option span {
  text-align: center;
}

.list-option.multi-option {
  justify-content: space-between;
  padding-right: 16px;
}

.list-option.multi-option .icon {
  width: 24px;
}

.list-option.multi-option span:not(.option-check):not(.icon) {
  flex: 1;
  text-align: center;
}

.list-option.multi-option .option-check {
  flex: 0 0 auto;
}

.primary,
.secondary {
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 12px 28px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s ease;
}

.primary {
  background: var(--accent);
  color: #0b0b0f;
}

.primary.full,
.secondary.full {
  align-self: stretch;
  text-align: center;
  height: 67px;
  margin-top: 26px;
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.primary[disabled] {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
}

.primary:not([disabled]):hover,
.secondary:hover {
  background: var(--accent);
  color: #0b0b0f;
  border-color: var(--accent-dark);
}

body.results-mode button:not([disabled]) {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.results-mode button:not([disabled]):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 198, 103, 0.25);
}

.back-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.intro-image {
    width: clamp(180px, 45vw, 320px);
    max-height: min(45vh, 420px);
    height: auto;
    object-fit: contain;

}

.sliders {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.slider {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.slider:hover {
  box-shadow: 0 0 0 2px rgba(255, 159, 10, 0.2);
}

input[type="range"] {
  transition: none;
}

input[type="range"]::-webkit-slider-thumb {
  transition: transform 0.2s ease;
  border: none;
  outline: none;
}

input[type="range"]::-moz-range-thumb {
  transition: transform 0.2s ease;
  border: none;
  outline: none;
}

.slider:hover input[type="range"]::-webkit-slider-thumb {
  transform: scale(1.65);
  box-shadow: none;
  border: none;
  outline: none;
}

.slider:hover input[type="range"]::-moz-range-thumb {
  transform: scale(1.65);
  box-shadow: none;
  border: none;
  outline: none;
}

.slider-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.slider-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-value {
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.progress-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
}

.analysis-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  z-index: 20;
}

.analysis-modal.show {
  display: flex;
}

.analysis-modal-card {
  width: min(360px, 90vw);
  max-height: calc(100vh - 48px);
  background: #141417;
  border-radius: 18px;
  border: 2px solid rgba(255, 159, 10, 0.35);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.analysis-modal-image {
  width: 100%;
  height: auto;
  max-height: clamp(220px, 45vh, 360px);
  display: block;
  object-fit: contain;
  border: none;
}

.analysis-modal-actions {
  display: grid;
  gap: 12px;
}

.progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #ffd08a);
  transition: width 0.3s ease;
}

.summary-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 30px;
  border: 2px solid var(--accent);
}

.summary-avatar-frame {
  width: 72px;
  height: 72px;
  position: relative;
  flex-shrink: 0;
}

.summary-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  filter: blur(4px);
  transition: opacity 0.4s ease;
}

.summary-avatar.is-hidden {
  opacity: 0;
}

.summary-loader {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.summary-loader.is-visible {
  opacity: 1;
}

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

.summary-subtitle {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-title {
  font-size: 1.5rem;
  margin: 8px 0 0;
}

.summary-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.summary-tag {
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
}

.summary-metrics {
  display: grid;
  gap: 18px;
}

.summary-metric {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.summary-metric .summary-icon {
  font-size: 1.6rem;
}

.summary-metric-label {
  font-size: 1.05rem;
  font-weight: 600;
}


.summary-meter {
  --percent: 50;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--percent) * 1%), rgba(255, 255, 255, 0.1) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  margin-left: auto;
}

.summary-meter span {
  background: #0b0b0f;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-extras {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.summary-extra {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  font-weight: 600;
  cursor: default;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.75);
}

.legal-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.legal-footer a:hover {
  color: #ffd28a;
}

.legal-page {
  background: radial-gradient(circle at top, #15151f 0%, #0b0b0f 58%);
}

.legal-page .page {
  max-width: 900px;
  padding: 40px 20px 64px;
}

.legal-page .legal-card {
  background: rgba(11, 11, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.legal-page h1 {
  margin-top: 0;
  font-size: 2.2rem;
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 1.4rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

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

.legal-page .legal-meta {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.legal-page .legal-back {
  display: inline-flex;
  margin-top: 24px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.legal-page .legal-back span {
  margin-right: 6px;
}

.plan:hover,
.discount:hover,
.as-featured:hover,
.stats:hover,
.faq:hover,
.guarantee:hover {
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
  align-items: center;
}

.pricing > * {
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.pricing-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.pricing-hero-text {
  text-align: center;
}

.pricing-hero-text h2 {
  color: var(--accent);
  margin: 0;
}

.pricing-hero-text p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-hero-media {
  border-radius: 18px;
}

.pricing-hero-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: contain;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-in {
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 16px;
}

.featured-in h3 {
  margin: 5px 0 20px 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.04em;
}

.featured-in-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.featured-in-logos svg {
  display: block;
  opacity: 0.7;
  scale: 1.3;
}

.badge {
  background: rgba(255, 198, 103, 0.18);
  color: #ffc667;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-icon {
  font-size: 1.3rem;
}

.timer {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.benefits ul {
  list-style: none;
  padding: 0 0 0 80px;
  margin: 0;
  display: grid;
  gap: 12px;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 600;
}

.pricing-section-title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits li::before {
  content: "🌶️";
  font-size: 1rem;
}

.discount {
  padding: 0;
  border-radius: 16px;
  background: transparent;
  text-align: center;
}

.discount h3 span {
  color: var(--accent);
}

.discount p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.plans {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 0 10px;
}

.plan {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-choice {
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.plan-choice::after {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: rotate(-45deg) translate(1px, -1px);
    scale: .8;
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.plan-header h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.plan-left {
  display: grid;
  gap: 4px;
}

.progress-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.plan.highlight {
  border-color: rgba(255, 198, 103, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 198, 103, 0.45),
    0 0 18px rgba(255, 198, 103, 0.35),
    0 0 36px rgba(255, 198, 103, 0.45);
  background: rgba(255, 198, 103, 0.08);
  border: 5px solid var(--accent);
}

.plan.is-selected {
  border-color: rgba(117, 217, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(117, 217, 255, 0.55),
    0 0 18px rgba(117, 217, 255, 0.35),
    0 0 36px rgba(117, 217, 255, 0.35);
  background: linear-gradient(145deg, rgba(26, 152, 255, 0.22), rgba(10, 30, 50, 0.2));
  transform: translateY(-2px);
}

.plan.is-selected .plan-choice {
  border-color: rgba(117, 217, 255, 0.9);
  background: rgba(26, 152, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(117, 217, 255, 0.2);
}

.plan.is-selected .plan-choice::after {
  border-left-color: #ffffff;
  border-bottom-color: #ffffff;
}

.plan.is-selected .ribbon {
background: rgba(255, 198, 103, 0.9);
}


.ribbon {
  position: absolute;
  top: -10px;
  background: var(--accent);
  color: #0b0b0f;
  padding: 3px 15px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
}

.off {
  color: #ffc667;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 198, 103, 0.18);
  font-size: 0.65rem;
  width: fit-content;
}

.price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: flex-start;
}

.price .old {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
}

.price .new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff3d8;
}

.per-day {
  display: grid;
  text-align: right;
  gap: 2px;
  color: rgba(255, 255, 255, 0.7);
  min-width: 88px;
}

.per-day strong {
  font-size: 1.7rem;
  color: #fff;
}

.notice-row {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.notice-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.notice-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notice {
  color: rgba(255, 255, 255, 0.7);
}

.fine-print {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.as-featured,
.reviews-section,
.stats,
.faq,
.guarantee {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 16px;
}

.featured-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.featured-logos img {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

.logo-placeholder {
  display: none;
}

.featured-subtitle {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.review-card {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
  flex: 0 0 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
}

.review-slider {
  display: block;
  overflow: hidden;
  width: 100%;
}

.review-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.5s ease;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-content {
  display: grid;
  gap: 4px;
}

.review-rating {
  color: var(--accent);
  letter-spacing: 2px;
}

.review-name {
  font-weight: 700;
}

.review-text {
  color: rgba(255, 255, 255, 0.7);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.review-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.review-dots span.active {
  background: var(--accent);
}

.featured-section {
  display: grid;
  gap: 16px;
}

.featured-section h3 {
  text-align: center;
}

.featured-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  align-items: start;
}

.featured-card {
  position: relative;
  padding: 14px;
  border-radius: 18px;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  text-align: left;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-top: var(--featured-offset, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.featured-card:nth-child(3n + 2) {
  --featured-offset: 24px;
}

.featured-card:nth-child(3n) {
  --featured-offset: 48px;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .featured-card:nth-child(3n + 2),
  .featured-card:nth-child(3n) {
    --featured-offset: 0;
  }

  .featured-card:nth-child(2n) {
    --featured-offset: 24px;
  }
}

@media (max-width: 640px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .featured-card:nth-child(2n) {
    --featured-offset: 0;
  }
}

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.featured-card > :not(img) {
  position: relative;
  z-index: 2;
  padding: 0;
}

.featured-name {
  font-size: 1rem;
  font-weight: 700;
}

.featured-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.featured-verified-icon {
  width: 19px;
  height: 19px;
  color: var(--accent);
}

.featured-stars {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  order: -1;
}

.quotes {
  display: grid;
  gap: 8px;
}

blockquote {
  margin: 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.stats-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: left;
}

.stats-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  text-align: center;
  color: var(--accent);
}

.stats-heading-content {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.stats-stars {
  display: inline-flex;
  color: var(--accent);
}

.stats-stars svg {
  display: block;
  width: 143px;
  height: auto;
}

.stats-laurel {
  display: inline-flex;
  color: var(--accent);
}

.stats-laurel svg {
  display: block;
  width: 33px;
  height: auto;
}

.stats-laurel-left {
  justify-self: end;
  transform: scaleX(-1);
  
}

.stats-laurel-right {
  justify-self: start;
}

.stats-title {
  text-align: center;
  font-size: 1.6rem;
  margin: 30px;
  color: #fff;
      max-width: 150px;
    line-height: 1;
}

@media (max-width: 140px) {
  .stats-heading {
    grid-template-columns: 1fr;
  }

  .stats-laurel {
    display: none;
  }

  .stats-stars svg {
    width: 120px;
  }
}

.stats-title span {
  color: var(--accent);
}

.stats-item {
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.stats-icon {
  font-size: 1.2rem;
  color: var(--accent);
}

.stats-grid strong {
  display: block;
  font-size: 1.3rem;
}

.faq details {
  margin-bottom: 8px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 10px 12px;
  text-align: left;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 10px;
}

.faq-item p {
  margin: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.guarantee-header {
  display: grid;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.guarantee-header h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.25rem;
}

.guarantee-badge {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  gap: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.guarantee-badge-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guarantee-badge svg {
  display: none;
}

.secure-note {
  margin-top: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.wr_top {
  display: flex;
 
  width: auto;
}


.version-tag {
  position: fixed;
  right: 16px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  z-index: 10;
  display: none;
}

@media (max-width: 720px) {
  .wizard {
    padding: 16px 12px;
    padding-bottom: 120px;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .step .primary.full[data-action="continue"] {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 20;
    margin-top: 0;
  }
}
