:root {
  color-scheme: dark;
  --bg: #070b14;
  --bg2: #0b1220;
  --muted: #0f1a2f;
  --text: #e9eefc;
  --subtext: rgba(233, 238, 252, 0.74);
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --primary: #66e3ff;
  --primary2: #8a5cff;
  --danger: #ff4d6d;
  --ok: #25d07b;
  --radius: 18px;
  --radius2: 12px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(138, 92, 255, 0.35), transparent 60%),
    radial-gradient(1100px 700px at 90% 0%, rgba(102, 227, 255, 0.22), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.55;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border);
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(102, 227, 255, 0.6);
  outline-offset: 2px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 20, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand__mark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: url("/logo.svg") center / contain no-repeat;
  box-shadow: 0 0 0 6px rgba(102, 227, 255, 0.12);
}

.brand--footer .brand__mark {
  box-shadow: 0 0 0 6px rgba(138, 92, 255, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav__toggle:focus-visible {
  outline: 2px solid rgba(102, 227, 255, 0.6);
  outline-offset: 2px;
}

.nav__toggleIcon {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(233, 238, 252, 0.9);
  position: relative;
  border-radius: 999px;
}

.nav__toggleIcon::before,
.nav__toggleIcon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(233, 238, 252, 0.9);
  border-radius: 999px;
}

.nav__toggleIcon::before {
  top: -6px;
}

.nav__toggleIcon::after {
  top: 6px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.nav__link {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(233, 238, 252, 0.86);
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(233, 238, 252, 1);
}

.nav__cta {
  border: 1px solid rgba(102, 227, 255, 0.3);
  background: rgba(102, 227, 255, 0.08);
}

.nav__linkBtn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__lang {
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.nav__flag {
  font-size: 16px;
  line-height: 1;
}

.hero {
  padding: 56px 0 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(233, 238, 252, 0.84);
  font-size: 14px;
}

.hero__title {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.gradientText {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: var(--subtext);
  font-size: 16px;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 2px solid rgba(102, 227, 255, 0.6);
  outline-offset: 2px;
}

.btn--primary {
  border-color: rgba(102, 227, 255, 0.35);
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.18), rgba(138, 92, 255, 0.18));
}

.btn--primary:hover {
  border-color: rgba(102, 227, 255, 0.6);
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.26), rgba(138, 92, 255, 0.22));
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghost {
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn--block {
  width: 100%;
}

.hero__card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.miniForm {
  padding: 18px 18px 16px;
}

.miniForm__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.miniForm__hint {
  margin: 6px 0 12px;
  color: var(--subtext);
  font-size: 14px;
}

.miniForm__fineprint {
  margin: 10px 0 0;
  color: rgba(233, 238, 252, 0.62);
  font-size: 12.5px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.stat {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 12px 10px;
}

.stat__value {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat__label {
  margin-top: 4px;
  color: rgba(233, 238, 252, 0.7);
  font-size: 13px;
}

.section {
  padding: 56px 0;
}

.section--muted {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  color: var(--subtext);
}

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

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

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

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.card--accent {
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.1), rgba(138, 92, 255, 0.1));
  border-color: rgba(102, 227, 255, 0.18);
}

.card__title {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card__text {
  margin: 0 0 12px;
  color: var(--subtext);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(233, 238, 252, 0.78);
}

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

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(102, 227, 255, 0.09);
  border: 1px solid rgba(102, 227, 255, 0.22);
}

.step__title {
  margin: 0;
  font-size: 16px;
}

.step__text {
  margin: 6px 0 0;
  color: rgba(233, 238, 252, 0.74);
}

.price {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 8px;
}

.price--featured {
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.12), rgba(138, 92, 255, 0.12));
  border-color: rgba(102, 227, 255, 0.24);
  transform: translateY(-2px);
}

.price__title {
  margin: 0;
  font-size: 18px;
}

.price__tag {
  margin: 0;
  color: rgba(233, 238, 252, 0.72);
  font-size: 13px;
}

.price__value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 4px;
}

.price__fine {
  margin: -6px 0 8px;
  color: rgba(233, 238, 252, 0.6);
  font-size: 13px;
}

.domain {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.domain__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.domain__inputGroup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.domain__tld {
  width: 140px;
}

.domain__result {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
  min-height: 48px;
  color: rgba(233, 238, 252, 0.86);
}

.domain__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(233, 238, 252, 0.78);
  min-height: 34px;
}

.chip[data-state="ok"] {
  border-color: rgba(37, 208, 123, 0.35);
  background: rgba(37, 208, 123, 0.1);
}

.chip[data-state="warn"] {
  border-color: rgba(255, 179, 71, 0.35);
  background: rgba(255, 179, 71, 0.1);
}

.chip[data-state="bad"] {
  border-color: rgba(255, 77, 109, 0.35);
  background: rgba(255, 77, 109, 0.1);
}

.linkBtn {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(102, 227, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.linkBtn:focus-visible {
  outline: 2px solid rgba(102, 227, 255, 0.6);
  outline-offset: 2px;
  border-radius: 10px;
}

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

.faq__item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
}

.faq__q {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__a {
  margin-top: 10px;
  color: rgba(233, 238, 252, 0.74);
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
}

.contact__card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.contact__card--form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
}

.contact__title {
  margin: 0 0 10px;
  font-size: 12px;
}

.contact__text {
  margin: 0 0 14px;
  color: rgba(233, 238, 252, 0.74);
}

.contact__list {
  display: grid;
  gap: 10px;
  margin: 10px 0 14px;
}

.contact__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.contact__label {
  color: rgba(233, 238, 252, 0.62);
  font-size: 13px;
}

.contact__value {
  color: rgba(233, 238, 252, 0.9);
  word-break: break-word;
}

.form {
  display: grid;
  gap: 12px;
}

.formSection {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
  padding: 10px;
  display: grid;
  gap: 8px;
}

.formSection__head {
  display: grid;
  gap: 6px;
}

.formSection__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.formSection__desc {
  color: rgba(233, 238, 252, 0.68);
  font-size: 12.5px;
}

.field {
  display: grid;
  gap: 5px;
  align-content: start;
}

.label {
  font-size: 12.5px;
  color: rgba(233, 238, 252, 0.78);
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  line-height: 1.2;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.select option,
.select optgroup {
  background: #ffffff;
  color: #0b1220;
}

.input,
.select {
  height: 38px;
  padding: 0 10px;
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(102, 227, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(102, 227, 255, 0.12);
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(233, 238, 252, 0.46);
}

.input:hover,
.select:hover,
.textarea:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.field__error {
  margin: 0;
  color: rgba(255, 77, 109, 0.9);
  font-size: 12.5px;
  min-height: 18px;
}

.form__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.form__actions .btn--primary {
  min-width: 160px;
}

.form__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.form__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.radioRow {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 3px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(233, 238, 252, 0.74);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.radio:hover span {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(233, 238, 252, 0.9);
}

.radio input:focus-visible + span {
  outline: 2px solid rgba(102, 227, 255, 0.6);
  outline-offset: 2px;
}

.radio input:checked + span {
  border-color: rgba(102, 227, 255, 0.35);
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.12), rgba(138, 92, 255, 0.12));
  color: rgba(233, 238, 252, 0.96);
}

.domainInline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.domainInline .btn {
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
}

.domainInline__group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

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

.featureBar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.featureBar__title {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.featureChips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.featureChip {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(233, 238, 252, 0.8);
  font-size: 12.5px;
}

.domainPick {
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  color: rgba(233, 238, 252, 0.92);
}

.domainPick[aria-pressed="true"] {
  border-color: rgba(37, 208, 123, 0.35);
  background: rgba(37, 208, 123, 0.1);
}

.domainPick:focus-visible {
  outline: 2px solid rgba(102, 227, 255, 0.6);
  outline-offset: 2px;
}

.domainPickRow__hint {
  color: rgba(233, 238, 252, 0.68);
  font-size: 12.5px;
}

.featureList {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.featureItem {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  color: rgba(233, 238, 252, 0.82);
}

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

.featureItem:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.domainInline__tld {
  width: 140px;
}

.domainInline__result {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.domainInline__text {
  color: rgba(233, 238, 252, 0.78);
  padding-top: 6px;
}

.summary {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  display: grid;
  gap: 12px;
}

.summary__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.summary__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.summary__sub {
  color: rgba(233, 238, 252, 0.68);
  font-size: 13px;
  margin-top: 6px;
}

.summary__total {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}

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

.summaryItem {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(233, 238, 252, 0.78);
}

.summaryItem strong {
  color: rgba(233, 238, 252, 0.92);
  font-weight: 600;
}

.summaryItem__meta {
  color: rgba(233, 238, 252, 0.68);
  font-size: 13px;
  margin-top: 4px;
}

.summaryItem__value {
  font-weight: 800;
  color: rgba(233, 238, 252, 0.92);
}

.check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

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

.check:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.payment {
  border-radius: var(--radius);
  border: 1px solid rgba(102, 227, 255, 0.18);
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.08), rgba(138, 92, 255, 0.08));
  padding: 12px;
  display: grid;
  gap: 12px;
}

.dialog {
  width: min(680px, calc(100% - 24px));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(7, 11, 20, 0.92);
  color: var(--text);
  padding: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.dialog__inner {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.dialog__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.dialog__title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.dialog__close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.dialog__close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dialog__body {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
  color: rgba(233, 238, 252, 0.78);
  max-height: min(60vh, 520px);
  overflow: auto;
}

.dialog__body h4 {
  margin: 14px 0 8px;
  color: rgba(233, 238, 252, 0.92);
}

.dialog__body p {
  margin: 0 0 10px;
}

.dialog__body ul {
  margin: 0;
  padding-left: 18px;
}

.dialog__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.contactDialogGrid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  align-items: start;
}

.contactDialogAside {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.contactDialogAside__title {
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: rgba(233, 238, 252, 0.92);
}

.contactDialogAside__text {
  margin: 0 0 12px;
  color: rgba(233, 238, 252, 0.74);
  font-size: 13px;
}

.contactDialogToast {
  margin: 8px 0 0;
  min-height: 18px;
  color: rgba(233, 238, 252, 0.72);
  font-size: 13px;
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .header__inner {
    padding: 12px 0;
  }

  .hero {
    padding: 42px 0 18px;
  }

  .section {
    padding: 44px 0;
  }

  .contact {
    gap: 12px;
  }

  .input,
  .select,
  .textarea {
    font-size: 16px;
  }

  .form__actions .btn {
    width: 100%;
  }

  .featureBar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .dialog {
    width: calc(100% - 16px);
  }

  .dialog__actions .btn {
    width: 100%;
  }

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

.payment__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.payment__title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.payment__badge {
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(233, 238, 252, 0.72);
  font-size: 13px;
}

.payment__details {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
  padding: 12px 12px;
  color: rgba(233, 238, 252, 0.78);
  min-height: 52px;
}

.payInfo {
  display: grid;
  gap: 10px;
}

.payInfo__row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.payInfo__row[data-copy] {
  cursor: pointer;
}

.payInfo__row[data-copy]:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.payInfo__label {
  color: rgba(233, 238, 252, 0.62);
  font-size: 12.5px;
}

.payInfo__value {
  color: rgba(233, 238, 252, 0.9);
  word-break: break-word;
}

.payInfo__mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
}

.iconBtn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(233, 238, 252, 0.92);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.iconBtn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(233, 238, 252, 0.92);
}

.iconBtn:focus-visible {
  outline: 2px solid rgba(102, 227, 255, 0.6);
  outline-offset: 2px;
}

.iconBtn__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.iconBtn[data-state="copied"] {
  border-color: rgba(37, 208, 123, 0.35);
  background: rgba(37, 208, 123, 0.12);
  color: rgba(233, 238, 252, 0.98);
}

.iconBtn[data-state="error"] {
  border-color: rgba(255, 77, 109, 0.35);
  background: rgba(255, 77, 109, 0.12);
  color: rgba(233, 238, 252, 0.98);
}

.payment__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.toast {
  margin: 0;
  min-height: 18px;
  color: rgba(233, 238, 252, 0.72);
  font-size: 13px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 16px;
  align-items: start;
}

.footer__text {
  margin: 10px 0 0;
  color: rgba(233, 238, 252, 0.68);
  max-width: 70ch;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__link {
  color: rgba(233, 238, 252, 0.76);
}

.footer__link:hover {
  color: rgba(233, 238, 252, 1);
}

.footer__meta {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: rgba(233, 238, 252, 0.68);
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .domain__row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

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

  .domain__tld {
    width: 100%;
  }

  .domainInline {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

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

  .domainInline__tld {
    width: 100%;
  }

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

  .footer__meta {
    justify-items: start;
  }

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

  .nav__menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 60px;
    width: min(92vw, 360px);
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 11, 20, 0.88);
    box-shadow: var(--shadow);
  }

  .nav__menu[data-open="true"] {
    display: flex;
  }

  .nav__link {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.waWidget {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  color: var(--text);
}

.waWidget__btn {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(37, 211, 102, 1), rgba(7, 94, 84, 1));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.waWidget__btn:hover {
  filter: brightness(1.06);
}

.waWidget__btn:focus-visible {
  outline: 2px solid rgba(102, 227, 255, 0.6);
  outline-offset: 2px;
}

.waWidget__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ff4b4b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.waWidget[data-has-unread="true"] .waWidget__badge {
  display: inline-flex;
}

.waWidget__panel {
  position: absolute;
  right: 0;
  bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  width: 340px;
  max-width: calc(100vw - 24px);
  max-height: min(72vh, 560px);
  max-height: min(72dvh, 560px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 20, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.waWidget[data-open="true"] .waWidget__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.waWidget__head {
  padding: 12px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(18, 140, 126, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.waWidget__avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.98);
  font-weight: 900;
  letter-spacing: 0.4px;
}

.waWidget__title {
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.waWidget__status {
  font-size: 12px;
  opacity: 0.92;
  margin-top: 2px;
}

.waWidget__headLeft {
  flex: 1;
  min-width: 0;
}

.waWidget__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.waWidget__icon:hover {
  background: rgba(255, 255, 255, 0.12);
}

.waWidget__close {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.waWidget__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.waWidget__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.waChat {
  flex: 1;
  min-height: 160px;
  overflow: auto;
  display: grid;
  gap: 10px;
  padding-right: 2px;
}

.waWidget__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 0 0 auto;
}

.waWidget__chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 7px 10px;
  font-size: 12.5px;
  cursor: pointer;
  color: rgba(233, 238, 252, 0.86);
}

.waWidget__chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.waWidget__foot {
  padding: 10px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

.waWidget__input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  color: rgba(233, 238, 252, 0.92);
  outline: none;
}

.waWidget__input:focus {
  border-color: rgba(102, 227, 255, 0.28);
}

.waWidget__send {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(37, 211, 102, 0.22);
  color: rgba(233, 238, 252, 0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.waWidget__send:hover {
  background: rgba(37, 211, 102, 0.3);
}

.waMsg {
  display: grid;
  gap: 6px;
  max-width: 92%;
}

.waMsg--bot {
  justify-self: start;
}

.waMsg--user {
  justify-self: end;
}

.waMsg__bubble {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(233, 238, 252, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.waMsg--user .waMsg__bubble {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.24);
}

.waMsg__time {
  font-size: 11.5px;
  color: rgba(233, 238, 252, 0.55);
}

.waActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.waActionBtn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(233, 238, 252, 0.92);
  padding: 7px 10px;
  font-size: 12.5px;
  cursor: pointer;
}

.waActionBtn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 820px), (max-height: 680px), (pointer: coarse) {
  .waWidget {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .waWidget__panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(12px + env(safe-area-inset-top, 0px));
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-height: none;
  }
}
