:root {
  --font-base: 'Inter', 'Manrope', 'Segoe UI', sans-serif;
  --bg: #0b101a;
  --bg-soft: #0f1726;
  --surface: #131f33;
  --surface-alt: #192840;
  --overlay: rgba(15, 23, 38, 0.72);
  --text: #f4f7ff;
  --muted: #9aa7bd;
  --muted-strong: #d3ddf0;
  --primary: #4f7cff;
  --primary-contrast: #0b101a;
  --accent: #f5b454;
  --border: rgba(154, 167, 189, 0.16);
  --border-strong: rgba(154, 167, 189, 0.32);
  --shadow-soft: 0 32px 72px rgba(10, 16, 26, 0.45), 0 2px 0 rgba(255, 255, 255, 0.03) inset;
  --shadow-card: 0 24px 48px rgba(12, 18, 31, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  --radius-lg: 12px;
  --radius-full: 999px;
  --space-4: 4px;
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --container-padding: 16px;
  --site-header-height: 72px;
  --sticky-top-gap: 24px;
  --sticky-offset: calc(var(--site-header-height) + var(--sticky-top-gap));
}

@media (min-width: 720px) {
  :root {
    --container-padding: 24px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 32px;
    --sticky-top-gap: 32px;
  }
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: radial-gradient(circle at 20% -10%, rgba(79, 124, 255, 0.24), transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(245, 180, 84, 0.18), transparent 50%),
    linear-gradient(160deg, var(--bg-soft), var(--bg));
  min-height: 100vh;
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--muted-strong);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0 0 var(--space-24);
  padding: 0;
}

ul {
  list-style: none;
}

ol.steps {
  counter-reset: step-counter;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

main {
  padding-bottom: var(--space-80);
}

.page {
  display: grid;
  gap: var(--space-32);
  padding-block: var(--space-64);
}

.section {
  padding-block: var(--space-64);
}

.section + .section {
  padding-top: 0;
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-16);
  font-weight: 600;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 1.5vw + 2.4rem, 3rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 0.8vw + 1.6rem, 2rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.375rem, 0.6vw + 1.25rem, 1.5rem);
  line-height: 1.25;
}

p,
.page__lead,
.list li,
.documents__item p {
  color: var(--muted);
  margin: 0 0 var(--space-24);
}

.page__lead {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--muted-strong);
}

.badge,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  min-height: 36px;
  padding: 0 var(--space-16);
  border-radius: var(--radius-full);
  background: rgba(79, 124, 255, 0.16);
  border: 1px solid rgba(79, 124, 255, 0.32);
  color: var(--muted-strong);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--space-24);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  color: var(--text);
}

.button--primary {
  background: linear-gradient(135deg, var(--primary), #7896ff);
  color: var(--primary-contrast);
  box-shadow: 0 20px 40px rgba(79, 124, 255, 0.35);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 56px rgba(79, 124, 255, 0.45);
}

.button--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted-strong);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(154, 167, 189, 0.4);
  color: var(--muted-strong);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--muted);
  color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(245, 180, 84, 0.5);
  color: var(--accent);
}

.button:disabled,
.button[aria-busy='true'] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.button--link {
  background: transparent;
  color: var(--accent);
  border: none;
  padding: 0;
  min-height: auto;
}

.button--link:hover,
.button--link:focus-visible {
  color: #ffd27d;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(11, 16, 26, 0.84);
  border-bottom: 1px solid var(--border);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  min-height: 72px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-16);
}

.header__logo img {
  width: 172px;
  height: auto;
}

.header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.header__toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.header__toggle span::before,
.header__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.header__toggle span::before {
  top: -6px;
}

.header__toggle span::after {
  top: 6px;
}

.header__toggle[aria-expanded='true'] span {
  background: transparent;
}

.header__toggle[aria-expanded='true'] span::before {
  top: 0;
  transform: rotate(45deg);
}

.header__toggle[aria-expanded='true'] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__nav {
  position: absolute;
  inset: calc(100% + 1px) var(--container-padding) auto;
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(19, 31, 51, 0.95);
  box-shadow: var(--shadow-soft);
  transform-origin: top right;
  transform: scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.header__nav-list {
  display: grid;
  gap: var(--space-16);
}

.header__nav a {
  color: var(--muted-strong);
  font-weight: 500;
}

.header__nav a.is-active {
  color: var(--text);
}

@media (min-width: 960px) {
  .header__toggle {
    display: none;
  }

  .header__nav {
    position: static;
    inset: auto;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .header__nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-24);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-80);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: rgba(79, 124, 255, 0.28);
  top: -120px;
  left: -160px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: rgba(245, 180, 84, 0.22);
  bottom: -160px;
  right: -80px;
}

.hero__layout {
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-24);
  row-gap: var(--space-32);
}

.grid > * {
  grid-column: span 12;
}

@media (min-width: 640px) {
  .md-col-span-6 {
    grid-column: span 6;
  }

  .md-col-span-8 {
    grid-column: span 8;
  }

  .md-col-span-4 {
    grid-column: span 4;
  }

  .md-col-span-7 {
    grid-column: span 7;
  }

  .md-col-span-5 {
    grid-column: span 5;
  }
}

@media (min-width: 960px) {
  .lg-col-span-6 {
    grid-column: span 6;
  }

  .lg-col-span-5 {
    grid-column: span 5;
  }

  .lg-col-span-4 {
    grid-column: span 4;
  }

  .lg-col-span-3 {
    grid-column: span 3;
  }
}

.hero__headline {
  display: grid;
  gap: var(--space-24);
}

.hero__headline p {
  margin-bottom: 0;
  max-width: 480px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding: 0;
  margin: 0;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  position: relative;
  display: grid;
  gap: var(--space-24);
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(19, 31, 51, 0.92), rgba(25, 40, 64, 0.65));
  border: 1px solid rgba(79, 124, 255, 0.24);
  box-shadow: var(--shadow-card);
}

.hero__illustration img {
  width: 100%;
  height: auto;
}

.hero__metrics {
  display: grid;
  gap: var(--space-16);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__metrics li {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.hero__metrics strong {
  font-size: 1.5rem;
  color: var(--text);
}

.pill--accent {
  background: rgba(245, 180, 84, 0.18);
  border-color: rgba(245, 180, 84, 0.4);
  color: #ffdca0;
}

.pill--price {
  background: rgba(79, 124, 255, 0.12);
  border-color: rgba(79, 124, 255, 0.36);
  color: #c9d6ff;
}

.contours__grid {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 720px) {
  .contours__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contours__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-16);
  align-items: start;
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.contours__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(79, 124, 255, 0.18);
  border: 1px solid rgba(79, 124, 255, 0.32);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
}

.offerings__grid {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 720px) {
  .offerings__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  display: grid;
  gap: var(--space-16);
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(79, 124, 255, 0.12);
  color: var(--muted-strong);
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(79, 124, 255, 0.12);
  border: 1px solid rgba(79, 124, 255, 0.32);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

.card__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  display: grid;
  gap: var(--space-8);
}

.card__list li {
  line-height: 1.4;
}

.card--interactive:hover,
.card--interactive:focus-within {
  transform: translateY(-4px);
  border-color: rgba(245, 180, 84, 0.4);
  box-shadow: 0 32px 64px rgba(12, 18, 31, 0.45);
}

.offerings .card .button {
  justify-self: flex-start;
}

.product-groups {
  display: grid;
  gap: var(--space-48);
}

.product-group {
  display: grid;
  gap: var(--space-24);
}

.product-group__header {
  display: grid;
  gap: var(--space-8);
}

.product-group__header h2 {
  margin: 0;
}

.product-group__header p {
  margin: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-card {
  display: grid;
  gap: var(--space-16);
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  min-height: 100%;
}

.product-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(79, 124, 255, 0.12);
  color: var(--muted-strong);
}

.product-card__icon svg {
  width: 32px;
  height: 32px;
}

.product-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-16);
}

.product-card__footer .button {
  flex-shrink: 0;
}

.how-it-works .steps {
  display: grid;
  gap: var(--space-24);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-card {
  display: grid;
  gap: var(--space-16);
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  min-height: 100%;
}

.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(79, 124, 255, 0.14);
  color: var(--muted-strong);
}

.step-card__icon svg {
  width: 28px;
  height: 28px;
}

.card,
.documents__item,
.form,
.contact-card,
.page-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: var(--space-32);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: calc(var(--space-16) - var(--space-4));
}

.check-list li {
  position: relative;
  padding-left: var(--space-32);
  color: var(--muted);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(79, 124, 255, 0.18);
  border: 1px solid rgba(79, 124, 255, 0.35);
  box-shadow: 0 0 0 2px rgba(79, 124, 255, 0.12);
}

.check-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.offerings .pill {
  justify-self: flex-start;
}

.page--product,
.page--docs,
.page--request {
  display: grid;
  gap: var(--space-32);
  padding-block: var(--space-64);
}

.request-hero {
  display: grid;
  gap: var(--space-16);
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(19, 31, 51, 0.85);
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .request-hero {
    position: static;
    max-height: none;
    overflow: visible;
    scrollbar-gutter: auto;
    overscroll-behavior: auto;
    z-index: auto;
  }
}

.request-layout {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 960px) {
  .request-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: var(--space-32);
  }
}

.request-summary,
.request-form {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 124, 255, 0.3);
  background: rgba(15, 23, 38, 0.85);
  padding: var(--space-24);
  box-shadow: var(--shadow-card);
}

.request-summary {
  display: flex;
  gap: var(--space-16);
  align-items: flex-start;
}

.request-summary__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 124, 255, 0.4);
  background: rgba(79, 124, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.request-summary__icon svg {
  width: 40px;
  height: 40px;
}

.request-summary__label {
  margin: 0 0 var(--space-8);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.request-form {
  padding: var(--space-32);
}

.product-hero {
  display: grid;
  gap: var(--space-24);
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .product-hero {
    position: static;
    max-height: none;
    overflow: visible;
    scrollbar-gutter: auto;
    overscroll-behavior: auto;
    z-index: auto;
  }
}

.product-hero__header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-24);
  align-items: center;
}

.product-hero__icon {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 124, 255, 0.3);
  background: rgba(79, 124, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-hero__icon svg {
  width: 48px;
  height: 48px;
}

.product-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: center;
}

.product-hero__note {
  margin: 0;
  color: var(--muted);
}

.product-hero__disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.product-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.product-hero__facts li {
  padding: 0 var(--space-16);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  background: rgba(79, 124, 255, 0.12);
  border: 1px solid rgba(79, 124, 255, 0.24);
}

.product-hero__cta {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-16) - var(--space-4));
  align-items: flex-start;
}

.cta-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 124, 255, 0.3);
  background: rgba(19, 31, 51, 0.75);
  padding: var(--space-24);
  display: grid;
  gap: var(--space-16);
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.product-section {
  display: grid;
  gap: var(--space-24);
}

.product-section__grid {
  display: grid;
  gap: var(--space-32);
}

@media (min-width: 960px) {
  .product-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.product-highlight {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 180, 84, 0.32);
  background: rgba(245, 180, 84, 0.08);
  padding: var(--space-24);
  display: grid;
  gap: var(--space-16);
  color: var(--text);
}

.product-highlight ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: calc(var(--space-16) - var(--space-4));
  color: var(--muted-strong);
}

.requirements {
  display: grid;
  gap: var(--space-16);
}

.requirements__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-16);
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 124, 255, 0.2);
  background: rgba(19, 31, 51, 0.6);
}

.requirements__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(79, 124, 255, 0.15);
  border: 1px solid rgba(79, 124, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.requirements__icon svg {
  width: 18px;
  height: 18px;
}

.requirements__item strong {
  display: block;
  color: var(--muted-strong);
  margin-bottom: 4px;
}

.requirements__item p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: var(--space-16);
}

@media (min-width: 720px) {
  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.timeline__step {
  display: grid;
  gap: calc(var(--space-16) - var(--space-4));
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.timeline__time {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.timeline__step p {
  margin: 0;
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: var(--space-16);
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: var(--space-16) var(--space-24);
  box-shadow: var(--shadow-card);
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--muted-strong);
  display: flex;
  align-items: center;
  gap: var(--space-16);
  list-style: none;
}

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

.accordion summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion p {
  margin: var(--space-16) 0 0;
  color: var(--muted);
}

.card h3,
.card h2 {
  margin-bottom: 0;
}

.card p {
  margin-bottom: 0;
}

.lead {
  position: relative;
}

.form {
  display: grid;
  gap: var(--space-24);
}

.form__grid {
  display: grid;
  gap: var(--space-24);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form__group {
  display: grid;
  gap: var(--space-8);
}

.form__group--wide {
  grid-column: 1 / -1;
}

.form__group label {
  font-weight: 500;
  color: var(--muted-strong);
}

input,
textarea,
select {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  min-height: 48px;
  padding: 0 var(--space-16);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  padding-block: var(--space-16);
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 180, 84, 0.2);
}

.form__group--invalid input,
.form__group--invalid textarea,
.form__group--invalid select {
  border-color: #ff7a7a;
}

.form__required {
  color: var(--accent);
  margin-left: var(--space-4);
}

.form__error {
  font-size: 0.85rem;
  color: #ff9f9f;
  min-height: 1em;
}

.form__hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.form__footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

@media (min-width: 640px) {
  .form__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form__consent {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  color: var(--muted);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  cursor: pointer;
}

.checkbox input {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.form__status {
  min-height: 1.5em;
  color: var(--muted-strong);
  font-weight: 500;
}

.form__status--pending {
  color: var(--accent);
}

.form__status--error {
  color: #ff9f9f;
}

.form__status--success {
  color: #7fffd4;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: var(--space-16);
}

.partners {
  border-top: 1px solid var(--border);
  background: rgba(11, 16, 26, 0.65);
}

.partners h2 {
  text-align: center;
}

.partners__grid {
  display: grid;
  gap: var(--space-16);
  margin-top: var(--space-32);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .partners__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.partners__item {
  height: 80px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-32);
  cursor: default;
}

.partners__item img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.documents {
  display: grid;
  gap: var(--space-24);
  padding: 0;
  margin: var(--space-32) 0 0;
  list-style: none;
}

.documents__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
}

.documents__meta {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.documents__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(79, 124, 255, 0.15);
  color: var(--muted-strong);
}

.documents__icon svg {
  width: 28px;
  height: 28px;
  color: currentColor;
}

.documents__actions {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.documents__meta h2 {
  margin-bottom: 4px;
}

.documents__meta p {
  margin: 0;
  color: var(--muted);
}

.documents__item--required {
  border-color: rgba(245, 180, 84, 0.32);
}

.documents__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 calc(var(--space-16) - var(--space-4));
  min-height: 28px;
  border-radius: var(--radius-full);
  background: rgba(245, 180, 84, 0.2);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-card {
  display: grid;
  gap: var(--space-16);
}

.contact-card p:last-child,
.contact-card ul:last-child {
  margin-bottom: 0;
}

.requisites {
  margin-top: var(--space-40);
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(154, 167, 189, 0.24);
  background: rgba(19, 31, 51, 0.85);
  display: grid;
  gap: var(--space-24);
}

.requisites__summary {
  margin: 0;
  color: var(--muted);
}

.requisites__bank {
  display: grid;
  gap: var(--space-16);
}

.requisites__bank > div {
  padding: var(--space-16);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.requisites__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.requisites__bank p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .requisites__bank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.list {
  display: grid;
  gap: var(--space-8);
  padding-left: var(--space-16);
}

.list li {
  position: relative;
  padding-left: var(--space-16);
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 180, 84, 0.24);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: var(--space-24);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  align-items: flex-start;
  margin-top: var(--space-24);
}

@media (min-width: 640px) {
  .cta {
    flex-direction: row;
    align-items: center;
  }

  .cta__note {
    margin: 0;
  }
}

.status-page main {
  padding-top: var(--space-80);
  min-height: calc(100vh - 160px);
}

.status {
  display: grid;
  justify-items: center;
}

.status-card {
  width: min(600px, 100%);
  display: grid;
  gap: var(--space-16);
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 124, 255, 0.25);
  background: rgba(19, 31, 51, 0.85);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.status-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: rgba(79, 124, 255, 0.15);
  color: var(--accent);
}

.status-card__icon svg {
  width: 36px;
  height: 36px;
}

.status__meta {
  margin: 0;
  font-weight: 600;
  color: var(--muted-strong);
}

.status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: center;
}

.status__product {
  display: grid;
  gap: var(--space-16);
  text-align: left;
}

.status__product-label {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.status__product-card {
  display: flex;
  gap: var(--space-16);
  align-items: flex-start;
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 124, 255, 0.3);
  background: rgba(8, 12, 20, 0.65);
}

.status__product-card strong {
  display: block;
  margin-bottom: var(--space-8);
}

.status__product-card p {
  margin: 0;
  color: var(--muted);
}

.status__product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 124, 255, 0.4);
  background: rgba(79, 124, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.status__product-icon svg {
  width: 32px;
  height: 32px;
}

.status-page--error .status-card {
  border-color: rgba(245, 180, 84, 0.4);
  background: rgba(40, 20, 5, 0.85);
}

body.error main {
  padding-top: var(--space-80);
}

body.error .page {
  display: grid;
  gap: var(--space-24);
  justify-items: center;
  text-align: center;
}

footer {
  border-top: 1px solid var(--border);
  background: rgba(11, 16, 26, 0.92);
  padding-block: var(--space-32);
}

.footer {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 720px) {
  .footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.footer__brand {
  display: grid;
  gap: var(--space-8);
}

.footer__name {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--muted-strong);
}

.footer__brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__legal {
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--muted-strong);
}

.footer__aside {
  display: grid;
  gap: var(--space-16);
}

@media (min-width: 720px) {
  .footer__aside {
    justify-self: end;
    text-align: right;
  }
}

.footer__contacts,
.footer__links {
  display: grid;
  gap: var(--space-8);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 719px) {
  .footer__aside {
    justify-self: stretch;
    text-align: left;
  }
}

[data-lead-code] {
  font-feature-settings: 'tnum';
  letter-spacing: 0.08em;
}

body.nav-open {
  overflow: hidden;
}

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