.site-body {
  background: linear-gradient(180deg, #0b1220 0%, #101827 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 16, 29, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.site-brand strong {
  display: block;
  font-size: 18px;
}

.site-brand small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.site-brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6d5efc, #2f81f7);
  font-weight: 800;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-main {
  padding: 28px 0 52px;
}

.hero-card,
.section-block,
.site-footer {
  margin-bottom: 20px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(25, 35, 58, 0.95), rgba(17, 24, 39, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.hero-copy h1,
.section-head h1,
.section-head h2 {
  margin: 0;
  color: #fff;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 14px;
}

.hero-copy p,
.section-head p,
.hero-note,
.field-help,
.site-inline-note,
.site-sub-meta {
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy p {
  font-size: 16px;
  max-width: 760px;
}

.site-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109, 94, 252, 0.16);
  color: #b9b4ff;
  font-size: 13px;
  margin-bottom: 14px;
}

.hero-actions,
.inline-form,
.field-grid,
.checkout-grid,
.steps-grid,
.plans-grid,
.site-sub-grid,
.stats-grid {
  display: grid;
  gap: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}


.hero-actions {
  grid-auto-flow: column;
  justify-content: start;
  margin: 18px 0 12px;
}

.hero-aside,
.site-sub-grid {
  display: grid;
  gap: 14px;
}

.site-stat-card,
.plan-card,
.step-card,
.site-sub-card,
.site-side-card,
.site-form-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 20, 34, 0.8);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.site-stat-card {
  padding: 18px;
}

.site-stat-label,
.site-side-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-stat-value,
.site-side-value,
.plan-price {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 6px 0;
}

.section-block,
.compact-block {
  padding: 24px;
  border-radius: 28px;
  background: rgba(16, 24, 39, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-head {
  margin-bottom: 16px;
}

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

.plan-card {
  padding: 20px;
}

.plan-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.plan-title,
.site-sub-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.plan-subtitle {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  margin-top: 4px;
}

.plan-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.plan-list li + li {
  margin-top: 8px;
}

.plan-btn {
  margin-top: 18px;
  width: 100%;
}

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

.step-card {
  padding: 18px;
}

.step-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(47, 129, 247, 0.18);
  color: #94c8ff;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.checkout-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: start;
}

.site-form-card,
.site-side-card {
  padding: 22px;
}

.site-form {
  display: grid;
  gap: 16px;
}

.inline-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

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

.field label {
  color: #fff;
  font-weight: 600;
}

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

.site-payment-method {
  display: grid;
  gap: 8px;
}

.site-payment-title {
  color: #fff;
  font-weight: 600;
}

.payment-pill {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
}

.payment-pill.active {
  background: rgba(47, 129, 247, 0.18);
  color: #a8d1ff;
}

.site-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.site-check-row a {
  color: #9ccbff;
}

.site-submit {
  min-height: 48px;
}

.site-side-block + .site-side-block {
  margin-top: 18px;
}

.site-side-price {
  color: #9ccbff;
  font-size: 18px;
  margin-top: 6px;
}

.site-alert {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 16px;
}

.site-alert-success {
  background: rgba(34, 197, 94, 0.12);
  color: #b4f1c6;
}

.site-alert-error {
  background: rgba(239, 68, 68, 0.12);
  color: #ffb4b4;
}

.compact-list {
  margin-top: 10px;
}

.site-footer {
  padding: 28px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 21, 0.9);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.site-footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.site-footer-links {
  display: grid;
  gap: 10px;
}

.site-footer a,
.site-copy {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.site-copy {
  margin-top: 18px;
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero-card,
  .checkout-grid,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header-row {
    flex-wrap: wrap;
    padding: 12px 0;
  }
}

@media (max-width: 720px) {
  .field-grid,
  .inline-form,
  .hero-actions {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .section-block,
  .hero-card,
  .site-form-card,
  .site-side-card {
    padding: 18px;
    border-radius: 22px;
  }
}

.site-sub-title,
.site-side-value,
.site-stat-value {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-sub-card {
  min-width: 0;
  padding: 18px 20px;
}

.site-sub-title {
  line-height: 1.2;
  white-space: normal;
}

.site-form-card .site-sub-title {
  font-size: 18px;
}


.site-body a:hover,
.site-body a:focus,
.site-body .btn:hover,
.site-body .btn:focus {
  text-decoration: none !important;
}

.plan-price {
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
