:root {
  --bg: #000;
  --card: #000;
  --card-strong: #000;
  --accent: #e85737;
  --accent-soft: #f1b04c;
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html,
body {
  font-family: "Open Sans", sans-serif;
  background: #000;
  color: var(--text);
  line-height: 1.45;
  font-size: 12px;
}

.page {
  width: 100%;
  margin: 0;
  padding: clamp(16px, 2vw, 28px) 0 clamp(56px, 6vw, 90px);
  background: #000;
}

h1,
h2,
h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(14px, 2.2vw, 22px);
  text-align: center;
  margin: clamp(8px, 1.4vw, 14px) 0 clamp(10px, 1.6vw, 16px);
}

h2 {
  font-size: clamp(12px, 1.8vw, 18px);
  text-align: center;
  margin: clamp(12px, 1.6vw, 16px) 0 clamp(8px, 1.2vw, 12px);
}

h3 {
  font-size: clamp(11px, 1.4vw, 15px);
  margin-bottom: 4px;
}

p {
  color: var(--muted);
  font-size: clamp(10px, 1.2vw, 13px);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.55;
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

p.center {
  text-align: center;
}

.hero span,
.accent span,
.callout span {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  width: clamp(150px, 18vw, 210px);
  margin: 0 auto clamp(6px, 1.2vw, 12px);
  display: block;
  height: auto;
}

.video {
  margin: clamp(10px, 1.8vw, 18px) 0 clamp(8px, 1.3vw, 14px);
  background: transparent;
  border-radius: var(--radius);
  display: block;
  width: 100%;
  border: none;
  overflow: hidden;
  padding: 0;
}

.video img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.checklist {
  list-style: none;
  margin: 10px 0 12px;
  display: grid;
  gap: 6px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(10px, 1.2vw, 13px);
}

.checklist li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 3px;
  flex-shrink: 0;
}

.cta {
  display: block;
  background: linear-gradient(180deg, #f26a4a 0%, #e85737 100%);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  padding: clamp(10px, 1.4vw, 14px) clamp(12px, 1.8vw, 18px);
  border-radius: var(--radius-sm);
  margin: clamp(14px, 2vw, 20px) auto clamp(8px, 1.4vw, 12px);
  width: min(520px, 100%);
  font-size: clamp(12px, 1.3vw, 14px);
  box-shadow: 0 6px 18px rgba(232, 87, 55, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 26px rgba(232, 87, 55, 0.35);
}

.cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.subtle {
  font-size: clamp(9px, 1.1vw, 11px);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section {
  padding: clamp(16px, 2.4vw, 36px) 0;
  background: transparent;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 10px 0 14px;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(10px, 1.2vw, 13px);
  color: var(--muted);
}

.icon-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.doc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  margin: 8px 0 6px;
}

.doc-card {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  padding: 6px;
  border: 1px solid #dcdcdc;
}

.doc-card img {
  width: 100%;
  height: auto;
  display: block;
}

.doc-text p {
  text-align: left;
  font-size: clamp(9px, 1.1vw, 12px);
}

.callout {
  font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 8px 0 6px;
}

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

.card {
  background: #000;
  border-radius: var(--radius);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.card ul {
  margin-left: 14px;
  font-size: clamp(9px, 1.1vw, 12px);
  color: var(--muted);
}

.dark {
  background: #000;
  border-radius: 0;
  padding: clamp(18px, 2.4vw, 30px) 0;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin: clamp(20px, 3vw, 40px) 0;
}

.step.reverse {
  direction: rtl;
}

.step.reverse > * {
  direction: ltr;
}

.media {
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  display: block;
  border: none;
  overflow: hidden;
  width: 100%;
}

.media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.notice {
  background: var(--accent-soft);
  color: #111;
  font-size: clamp(9px, 1.1vw, 12px);
  text-transform: uppercase;
  text-align: center;
  padding: clamp(14px, 2vw, 20px) clamp(14px, 2.2vw, 26px);
  margin: clamp(16px, 2.2vw, 26px) 0;
  letter-spacing: 0.3px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: clamp(9px, 1.1vw, 12px);
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.before-after span:last-child {
  text-align: right;
  color: var(--accent);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(9px, 1.1vw, 12px);
  margin-top: 8px;
  background: #fff;
  color: #111;
  border-radius: var(--radius-sm);
  overflow: hidden;
  table-layout: fixed;
}

.compare th,
.compare td {
  border: 1px solid #ddd;
  padding: clamp(6px, 1.2vw, 10px);
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.compare th {
  background: var(--accent);
  color: #fff;
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 10px 0 12px;
}

.arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: 1px solid #2a2a2a;
  display: grid;
  place-items: center;
  font-size: clamp(12px, 1.2vw, 14px);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}

.arrow:hover {
  transform: translateY(-1px);
  background: #151515;
}

.arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  align-items: center;
  scrollbar-width: none;
}

.track::-webkit-scrollbar {
  display: none;
}

.thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  background: #2a2a2a;
  scroll-snap-align: center;
}

.creator {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  align-items: center;
}

.creator-text p {
  text-align: left;
}

.creator-card {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  background: transparent;
  overflow: hidden;
}

.creator-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.kicker {
  text-align: center;
  font-size: clamp(9px, 1.1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}

.price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  margin: 10px 0 4px;
}

.price span {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
}

.price strong {
  font-size: clamp(32px, 4.4vw, 44px);
  color: var(--accent);
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.guarantee {
  background: #000;
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  font-size: clamp(9px, 1.1vw, 12px);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
  place-items: center;
}

.guarantee img {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 0;
}

.guarantee span {
  color: var(--text);
  font-weight: 600;
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin: 12px 0 18px;
}

.faq h3 {
  text-transform: none;
}

/* Mobile Styles */
@media (max-width: 600px) {
  .doc-row {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 22px;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
  }

  h2 {
    font-size: 18px;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
  }

  h3 {
    font-size: 16px;
    text-transform: none;
    text-align: left;
  }

  p {
    font-size: 15px;
    text-align: left;
    line-height: 1.6;
    max-width: none;
  }

  .checklist li,
  .icon-list li,
  .doc-text p,
  .creator-text p,
  .card ul {
    text-align: left;
    font-size: 15px;
  }

  .card ul {
    margin-left: 18px;
  }

  .section {
    padding: 20px 0;
  }

  .subtle,
  .kicker {
    font-size: 11px;
  }

  .cta {
    width: 100%;
    font-size: 16px;
    padding: 16px 18px;
  }

  .video {
    padding: 0;
  }

  .compare {
    font-size: 13px;
  }

  .price strong {
    font-size: 44px;
  }

  .notice {
    font-size: 11px;
    line-height: 1.5;
  }

  .track {
    grid-auto-columns: 80%;
  }

  /* MOBILE: Stack step sections vertically with larger images */
  .step {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }

  .step.reverse {
    direction: ltr;
  }

  .media {
    padding: 0;
    background: transparent;
    border: none;
  }

  .media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
  }

  .thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .guarantees {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .guarantee img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
  }

  .guarantee span {
    font-size: 11px;
  }
}

/* Tablet styles */
@media (min-width: 601px) and (max-width: 899px) {
  .step {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step.reverse {
    direction: ltr;
  }

  .media img {
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 13px;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  body {
    font-size: 15px;
  }
}