:root {
  --bg: #0b0f0d;
  --bg-soft: #101815;
  --bg-light: #eef6f1;
  --surface: #141f1a;
  --surface-light: #ffffff;
  --text: #e8f3ed;
  --text-dark: #0c130f;
  --muted: #9cb0a6;
  --muted-dark: #5a6b63;
  --accent: #3fe18b;
  --accent-2: #f4d54f;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(9, 14, 11, 0.2);
  --shadow: 0 28px 60px rgba(3, 9, 6, 0.35);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(63, 225, 139, 0.12), transparent 45%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  scroll-behavior: smooth;
}

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

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

.page {
  overflow: hidden;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  position: relative;
  display: grid;
  place-items: center;
  background: #0b0f0d;
  border: 1px solid rgba(63, 225, 139, 0.45);
  box-shadow: 0 10px 24px rgba(4, 9, 6, 0.45);
  color: transparent;
  font-size: 0;
}

.logo__mark::before,
.logo__mark::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(63, 225, 139, 0.7);
  background: radial-gradient(circle at 75% 55%, #0b0f0d 2px, #e8f3ed 3px);
  top: 16px;
}

.logo__mark::before {
  left: 12px;
}

.logo__mark::after {
  right: 12px;
}

.logo__text {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo--footer .logo__text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

.nav a:hover {
  color: #fff;
}

.header__actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: inherit;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: #0b0f0d;
  box-shadow: 0 18px 40px rgba(63, 225, 139, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero {
  padding: 120px 0 80px;
  position: relative;
  background: radial-gradient(circle at 15% 20%, rgba(63, 225, 139, 0.2), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(244, 213, 79, 0.2), transparent 40%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero__text h1 {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin: 16px 0 18px;
}

.lead {
  color: rgba(232, 243, 237, 0.78);
  font-size: 18px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 20px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: fit-content;
}

.trust-badge--hero {
  margin: 0 0 18px;
}

.trust-stars {
  display: flex;
  gap: 4px;
}

.trust-stars .star {
  width: 14px;
  height: 14px;
  background: var(--accent-2);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 72%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 2px 6px rgba(244, 213, 79, 0.35);
}

.trust-stars .star--half {
  background: linear-gradient(90deg, var(--accent-2) 50%, rgba(255, 255, 255, 0.2) 50%);
}

.trust-text {
  display: grid;
  gap: 2px;
  font-size: 12px;
  color: rgba(232, 243, 237, 0.7);
}

.trust-text strong {
  font-size: 14px;
  color: #fff;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stats strong {
  font-size: 22px;
  display: block;
}

.hero__stats span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__media {
  display: grid;
  gap: 18px;
}

.hero__shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(10, 14, 12, 0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
  padding: 90px 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.section__head h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  margin: 0;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}

.muted {
  color: var(--muted);
  max-width: 480px;
}

.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section--light .muted {
  color: var(--muted-dark);
}

.section--light .btn--ghost {
  color: var(--text-dark);
  border-color: rgba(12, 19, 15, 0.3);
}

.section--dark {
  background: var(--bg-soft);
}

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

.feature-card {
  background: var(--surface-light);
  color: var(--text-dark);
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 40px rgba(7, 12, 9, 0.12);
}

.feature-card ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--muted-dark);
}

.section--dark .feature-card {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(2, 8, 6, 0.4);
}

.section--dark .feature-card ul {
  color: rgba(232, 243, 237, 0.7);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__content h2 {
  font-family: "Unbounded", sans-serif;
}

.split__media img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-list span,
.tag-list span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(63, 225, 139, 0.14);
  color: var(--accent);
  font-size: 12px;
  border: 1px solid rgba(63, 225, 139, 0.25);
}

.section--light .pill-list span,
.section--light .tag-list span {
  background: rgba(63, 225, 139, 0.16);
  color: #117346;
  border-color: rgba(63, 225, 139, 0.35);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.seo-card {
  background: var(--surface-light);
  color: var(--text-dark);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
}

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

.price-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.price-card--featured {
  background: linear-gradient(180deg, #15221c 0%, #0f1914 100%);
  border-color: rgba(63, 225, 139, 0.45);
  box-shadow: 0 30px 70px rgba(5, 12, 9, 0.45);
}

.price-card ul {
  padding-left: 18px;
  color: rgba(232, 243, 237, 0.7);
  margin: 0;
}

.price-card__tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(244, 213, 79, 0.18);
  color: var(--accent-2);
  width: fit-content;
}

.price {
  font-size: 26px;
  font-weight: 700;
}

.price span {
  font-size: 13px;
  color: rgba(232, 243, 237, 0.6);
}

.section--light .price-card {
  background: var(--surface-light);
  color: var(--text-dark);
  border: 1px solid var(--line-dark);
}

.section--light .price-card ul {
  color: var(--muted-dark);
}

.section--light .price span {
  color: var(--muted-dark);
}

.faq {
  display: grid;
  gap: 16px;
}

.faq__item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.contact__form {
  background: var(--surface-light);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 50px rgba(7, 12, 9, 0.12);
  display: grid;
  gap: 16px;
}

.contact__form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.contact__form input,
.contact__form textarea {
  font-family: inherit;
  border-radius: 12px;
  border: 1px solid rgba(12, 19, 15, 0.2);
  padding: 10px 14px;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: var(--muted-dark);
}

.footer {
  background: #080b0a;
  padding: 40px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.footer__links {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__meta {
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
}

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

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

@media (max-width: 1024px) {
  .nav,
  .header__actions {
    display: none;
  }

  .hero__grid,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .hero {
    padding: 100px 0 70px;
  }

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer__meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn,
  .nav a {
    transition: none;
  }
}

.cta-panel {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(63, 225, 139, 0.12), rgba(244, 213, 79, 0.08));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-panel__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.cta-panel__inner h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  margin: 0;
}

.cta-panel__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cta-panel__note {
  font-size: 12px;
  color: rgba(232, 243, 237, 0.7);
}

.btn--xl {
  padding: 16px 30px;
  font-size: 15px;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .cta-panel {
    padding: 60px 0;
  }
}

.checkout-hero {
  padding: 130px 0 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 18% 15%, rgba(244, 213, 79, 0.22), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(63, 225, 139, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(7, 10, 9, 0.92), rgba(7, 10, 9, 0.75));
}

.checkout-hero::before,
.checkout-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.6;
  z-index: 0;
}

.checkout-hero::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(63, 225, 139, 0.35), transparent 70%);
}

.checkout-hero::after {
  bottom: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(244, 213, 79, 0.3), transparent 70%);
}

.checkout-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.checkout-hero__content {
  display: grid;
  gap: 26px;
}

.checkout-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(232, 243, 237, 0.55);
  margin-top: 12px;
}

.checkout-hero__content h1 {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  margin: 16px 0 18px;
}

.checkout-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

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

.checkout-flow__item {
  background: rgba(8, 12, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: grid;
  gap: 8px;
  box-shadow: 0 20px 45px rgba(2, 8, 6, 0.35);
}

.checkout-flow__kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(232, 243, 237, 0.55);
}

.checkout-flow__item h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
}

.checkout-flow__item p {
  margin: 0;
  color: rgba(232, 243, 237, 0.7);
  font-size: 14px;
}

.checkout-flow__note {
  font-size: 13px;
  color: rgba(232, 243, 237, 0.85);
}

.checkout-flow__note strong {
  color: #fff;
}

.checkout-flow__note--alert {
  color: #ff4d4d;
}

.checkout-flow__note--alert strong {
  color: #ff4d4d;
}

.checkout-hero__alert {
  font-weight: 700;
  color: #ff4d4d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.checkout-panel {
  background: rgba(8, 12, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 22px 50px rgba(2, 8, 6, 0.35);
  display: grid;
  gap: 16px;
}

.checkout-panel--hero {
  background: rgba(8, 12, 10, 0.6);
  border-color: rgba(63, 225, 139, 0.2);
}

.checkout-panel__title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
}

.checkout-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
}

.checkout-trust__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 12px 14px;
}

.checkout-trust__item strong {
  display: block;
  font-size: 14px;
}

.checkout-trust__item span {
  font-size: 12px;
  color: rgba(232, 243, 237, 0.65);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(63, 225, 139, 0.35), rgba(244, 213, 79, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}

.trust-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(63, 225, 139, 0.18);
}

.checkout-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
}

.checkout-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 14px;
}

.checkout-step__number {
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  color: var(--accent-2);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(63, 225, 139, 0.12);
  border: 1px solid rgba(63, 225, 139, 0.3);
}

.checkout-step span {
  font-size: 12px;
  color: rgba(232, 243, 237, 0.65);
}

.checkout-download {
  background: linear-gradient(150deg, rgba(18, 26, 22, 0.92), rgba(7, 10, 9, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 18px;
  box-shadow: 0 30px 60px rgba(2, 8, 6, 0.45);
}

.checkout-download__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(232, 243, 237, 0.7);
}

.checkout-download__tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(63, 225, 139, 0.18);
  border: 1px solid rgba(63, 225, 139, 0.35);
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.checkout-download__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.checkout-download h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
}

.checkout-download p {
  margin: 0;
  color: rgba(232, 243, 237, 0.7);
}

.checkout-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: rgba(232, 243, 237, 0.75);
}

.checkout-list li {
  position: relative;
  padding-left: 22px;
}

.checkout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.checkout-list--light {
  color: rgba(232, 243, 237, 0.7);
}

.checkout-download__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.checkout-download__note {
  font-size: 12px;
  color: rgba(232, 243, 237, 0.6);
}

.checkout-card {
  background: linear-gradient(180deg, #151f1b 0%, #0f1914 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(63, 225, 139, 0.3);
  box-shadow: 0 28px 60px rgba(2, 8, 6, 0.45);
  display: grid;
  gap: 18px;
}

.checkout-card__tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(244, 213, 79, 0.18);
  color: var(--accent-2);
  width: fit-content;
}

.checkout-card__header h2 {
  margin: 12px 0 6px;
  font-family: "Unbounded", sans-serif;
}

.checkout-card__header p {
  margin: 0;
  color: rgba(232, 243, 237, 0.7);
}

.checkout-price {
  font-size: 30px;
  font-weight: 700;
  margin-top: 12px;
}

.checkout-price span {
  font-size: 13px;
  color: rgba(232, 243, 237, 0.6);
}

.checkout-card__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
}

.checkout-card__highlights span {
  color: rgba(232, 243, 237, 0.6);
}

.checkout-card__highlights strong {
  display: block;
  color: #fff;
  margin-top: 4px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(232, 243, 237, 0.7);
}

.checkout-form input {
  font-family: inherit;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 12px;
  font-size: 14px;
  background: rgba(11, 15, 13, 0.7);
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form input:focus {
  outline: none;
  border-color: rgba(63, 225, 139, 0.6);
  box-shadow: 0 0 0 3px rgba(63, 225, 139, 0.15);
}

.checkout-form input::placeholder {
  color: rgba(232, 243, 237, 0.45);
}

.checkout-fieldset {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.checkout-summary span {
  color: rgba(232, 243, 237, 0.6);
}

.checkout-summary strong {
  color: #fff;
}

.checkout__alert {
  display: none;
  background: rgba(244, 213, 79, 0.18);
  border: 1px solid rgba(244, 213, 79, 0.35);
  color: #f9e7a5;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.checkout__alert.is-active {
  display: block;
}

.checkout-note {
  margin: 0;
  font-size: 12px;
  color: rgba(232, 243, 237, 0.6);
}

.checkout-card__support {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(232, 243, 237, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.checkout-card__support a {
  color: #fff;
}

@media (max-width: 1024px) {
  .checkout-hero__inner {
    max-width: 860px;
  }

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

@media (max-width: 720px) {
  .checkout-hero {
    padding: 100px 0 80px;
  }

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

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

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