:root {
  --accent: #ff7a18;
  --accent-dark: #e95d00;
  --ink: #151515;
  --muted: #686868;
  --line: #eeeeee;
  --soft: #fff7f0;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(22, 22, 22, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#features,
#plans,
#download {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

body::-webkit-scrollbar {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(238, 238, 238, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(22, 22, 22, 0.08);
}

.brand,
.nav,
.hero-actions,
.trust-row,
.scan-top,
.metrics,
.download-band,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
}

.brand-mark,
.brand-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.brand-mark {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #ffaf45);
  box-shadow: 0 12px 30px rgba(255, 122, 24, 0.32);
  animation: logoFloat 4s ease-in-out infinite;
}

.brand-logo {
  display: block;
  object-fit: contain;
  box-shadow: 0 12px 30px rgba(255, 122, 24, 0.32);
}

.nav {
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
}

.nav a {
  transition: color 0.2s ease;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 58px;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 64px 0 84px;
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updated-date {
  margin: -2px 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.45);
  box-shadow: 0 16px 34px rgba(22, 22, 22, 0.10);
}

.button.primary {
  border-color: var(--accent);
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #ff9d2e);
  box-shadow: 0 18px 38px rgba(255, 122, 24, 0.32);
}

.button.ghost {
  background: #fafafa;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #3c3c3c;
  background: #fbfbfb;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.18), transparent 36%),
    linear-gradient(145deg, #ffffff, #fff4ea);
  box-shadow: var(--shadow);
  animation: fadeUp 0.9s 0.12s ease both, visualFloat 6s ease-in-out infinite;
}

.scan-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 122, 24, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.scan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 122, 24, 0.12), transparent);
  transform: translateX(-110%);
  animation: cardSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.scan-top {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12);
}

.status-text,
.percent {
  font-weight: 800;
}

.percent {
  color: var(--accent-dark);
  font-size: 30px;
}

.shield {
  position: relative;
  display: grid;
  place-items: center;
  width: min(260px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #ff7a18, #ffd3a3, #ffffff, #ff7a18);
  animation: ringPulse 3.4s ease-in-out infinite;
}

.shield::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--white);
}

.shield-core {
  position: relative;
  width: 118px;
  height: 142px;
  background: linear-gradient(150deg, var(--accent), #ffb052);
  clip-path: polygon(50% 0, 91% 16%, 84% 72%, 50% 100%, 16% 72%, 9% 16%);
  box-shadow: 0 18px 36px rgba(255, 122, 24, 0.34);
  animation: shieldPulse 2.8s ease-in-out infinite;
}

.scan-line {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1f1f1;
}

.scan-line span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #ffcb77);
  animation: pulseWidth 2.8s ease-in-out infinite;
}

.metrics {
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.metrics div {
  flex: 1;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 21px;
}

.metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 26px;
}

.feature-grid,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.plan {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.feature {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(22, 22, 22, 0.08);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.feature p,
.plan-note {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.plan-note {
  margin-bottom: 0;
  line-height: 1.42;
}

.plans-section {
  border-top: 1px solid var(--line);
}

.plan {
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.36);
  box-shadow: 0 24px 70px rgba(22, 22, 22, 0.10);
}

.featured-plan {
  border-color: rgba(255, 122, 24, 0.45);
  background: linear-gradient(180deg, #fff7f0, #ffffff);
  box-shadow: var(--shadow);
}

.lifetime-plan {
  border-color: rgba(18, 18, 18, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.10), rgba(255, 255, 255, 0.96) 46%),
    linear-gradient(135deg, #ffffff, #f6f6f6);
}

.lifetime-plan::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff7a18, #151515);
  opacity: 0.18;
}

.lifetime-plan .price {
  color: var(--accent-dark);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  margin-bottom: 0;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--accent-dark);
  background: #ffe5cf;
  font-size: 12px;
  font-weight: 800;
}

.featured-plan h3 {
  padding-right: 92px;
}

.price {
  margin-bottom: 8px;
  font-size: 38px;
  font-weight: 800;
}

.plan-button {
  width: 100%;
  margin-top: 16px;
}

.offer-note {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 122, 24, 0.22);
  border-radius: 8px;
  background: #fffaf5;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.offer-note p {
  margin-bottom: 8px;
}

.offer-note p:last-child {
  margin-bottom: 0;
}

.offer-note a {
  color: var(--accent-dark);
  font-weight: 800;
}

.download-band {
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 84px;
  padding: 34px;
  border-radius: 8px;
  background: var(--soft);
}

.download-band h2 {
  max-width: 720px;
  font-size: clamp(26px, 3.2vw, 38px);
}

.footer {
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer a,
.legal-page a {
  font-weight: 800;
  color: var(--accent-dark);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 74px;
}

.legal-page h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 62px);
}

.legal-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.legal-section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 32px);
}

.legal-section p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.payment-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.payment-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow: 0 16px 42px rgba(22, 22, 22, 0.07);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-dark);
  font-size: 22px;
  line-height: 1;
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.status-page {
  display: grid;
  place-items: center;
  width: min(900px, calc(100% - 32px));
  min-height: calc(100vh - 210px);
  margin: 0 auto;
  padding: 72px 0;
}

.status-card {
  width: 100%;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.12), transparent 34%),
    #ffffff;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease both;
}

.status-card h1 {
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.status-card .legal-lead {
  margin-bottom: 22px;
}

.checkout-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 82px;
}

.checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  gap: 34px;
  align-items: start;
}

.checkout-copy {
  padding-top: 26px;
  animation: fadeUp 0.8s ease both;
}

.checkout-copy h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
}

.checkout-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.10), transparent 34%),
    #ffffff;
  box-shadow: var(--shadow);
  animation: fadeUp 0.85s 0.08s ease both;
}

.field,
.agree-row {
  display: grid;
  gap: 8px;
}

.field {
  margin-bottom: 16px;
}

.field span,
.payment-methods legend {
  color: #333333;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 148px;
  padding: 14px;
  resize: vertical;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 122, 24, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.12);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.payment-methods legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.payment-methods label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.method-box {
  display: none;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 122, 24, 0.20);
  border-radius: 8px;
  background: #fffaf5;
}

.method-box.is-active {
  display: flex;
}

.method-box h2 {
  margin-bottom: 4px;
  font-size: 20px;
}

.method-box p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.method-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  height: 46px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff9d2e);
  font-size: 12px;
  font-weight: 800;
}

.qr-preview {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border: 8px solid #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #151515 50%, transparent 0) 0 0 / 16px 16px,
    linear-gradient(#151515 50%, transparent 0) 0 0 / 16px 16px,
    #ffefe1;
  box-shadow: inset 0 0 0 1px rgba(21, 21, 21, 0.10);
}

.agree-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  margin: 2px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.agree-row input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.agree-row a,
.checkout-help a {
  color: var(--accent-dark);
  font-weight: 800;
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #f8f8f8;
}

.checkout-total span {
  color: var(--muted);
  font-weight: 800;
}

.checkout-total strong {
  color: var(--accent-dark);
  font-size: 28px;
}

.checkout-submit {
  width: 100%;
}

.checkout-help {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.status-icon,
.status-code {
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  font-weight: 800;
}

.status-icon {
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff9d2e);
  box-shadow: 0 18px 38px rgba(255, 122, 24, 0.26);
  font-size: 30px;
  animation: shieldPulse 2.8s ease-in-out infinite;
}

.status-code {
  min-width: 92px;
  min-height: 58px;
  padding: 0 16px;
  color: var(--accent-dark);
  background: #fff0e1;
  font-size: 28px;
}

.fail-card .status-icon {
  background: linear-gradient(135deg, #2f2f2f, #7a7a7a);
  box-shadow: 0 18px 38px rgba(47, 47, 47, 0.18);
}

.download-page {
  gap: 28px;
}

.download-card {
  text-align: left;
}

.download-card h1 span {
  color: var(--accent-dark);
}

.download-instruction {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.download-instruction h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 42px);
}

.instruction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.instruction-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf5;
}

.instruction-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.instruction-grid h3 {
  font-size: 19px;
}

.instruction-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseWidth {
  0%, 100% {
    width: 62%;
  }
  50% {
    width: 94%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes visualFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardSheen {
  0%, 48%, 100% {
    transform: translateX(-110%);
  }
  62% {
    transform: translateX(110%);
  }
}

@keyframes ringPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 24, 0);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 122, 24, 0.08);
  }
}

@keyframes shieldPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: min(280px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding-top: 34px;
  }

  .feature-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .download-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-panel {
    grid-template-columns: 1fr;
  }

  .checkout-copy {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .download-band,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-bottom: 58px;
  }

  h1 {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .hero-text {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.48;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .hero-visual,
  .scan-card,
  .feature,
  .plan,
  .download-band {
    padding: 22px;
  }

  .metrics {
    flex-direction: column;
  }

  .metrics div {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .legal-page {
    width: min(100% - 24px, 900px);
    padding: 46px 0 58px;
  }

  .legal-page h1 {
    font-size: 34px;
  }

  .legal-lead {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.48;
  }

  .status-page {
    width: min(100% - 24px, 900px);
    min-height: auto;
    padding: 42px 0 58px;
  }

  .status-card {
    padding: 24px;
  }

  .status-card h1 {
    font-size: 36px;
  }

  .checkout-page {
    width: min(100% - 24px, 1120px);
    padding: 42px 0 58px;
  }

  .checkout-form {
    padding: 22px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .method-box {
    align-items: flex-start;
  }

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

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
