.service-page {
  --service-surface: rgba(14, 31, 20, .78);
  --service-surface-strong: rgba(16, 36, 23, .94);
  --service-line: rgba(204, 232, 207, .14);
  --service-line-strong: rgba(204, 232, 207, .25);
  --service-text: #d9e0d6;
  --service-muted: #97a599;
}

.service-page main {
  position: relative;
}

.service-page main::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 720px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 8%, rgba(92, 172, 108, .16), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(215, 182, 107, .1), transparent 25rem);
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(139, 210, 150, .2);
  border-radius: 999px;
  background: rgba(89, 170, 104, .08);
  color: var(--mineral-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-kicker::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(139, 210, 150, .08);
  content: "";
}

.service-hero {
  position: relative;
  overflow: clip;
  padding: 82px 0 66px;
  border-bottom: 1px solid rgba(204, 232, 207, .08);
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: 70px;
  align-items: end;
}

.service-hero h1 {
  max-width: 860px;
  margin: 20px 0 23px;
  font-size: clamp(3.7rem, 7vw, 6.7rem);
}

.service-hero__lead {
  max-width: 720px;
  margin: 0;
  color: #b7c3b7;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.68;
}

.service-hero__aside {
  padding: 23px;
  border: 1px solid rgba(215, 182, 107, .2);
  border-radius: 21px;
  background:
    radial-gradient(circle at 100% 0, rgba(215, 182, 107, .13), transparent 13rem),
    rgba(17, 34, 23, .72);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.service-hero__aside-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-hero__aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
}

.service-hero__aside p {
  margin: 0;
  color: #9dab9e;
  font-size: 12px;
}

.service-hero__aside a {
  display: inline-flex;
  margin-top: 15px;
  color: var(--mineral-bright);
  font-size: 12px;
  font-weight: 800;
}

.service-hero__aside a:hover {
  color: var(--ivory);
}

.contact-main {
  padding-bottom: 96px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 25px 0 0;
}

.contact-action {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  border: 1px solid var(--service-line);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(20, 43, 27, .9), rgba(10, 23, 15, .86));
  transition: border-color .18s ease, transform .18s ease;
}

.contact-action:hover {
  border-color: rgba(152, 215, 161, .3);
  transform: translateY(-2px);
}

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

.contact-action__icon,
.support-item__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(146, 211, 155, .18);
  background: rgba(93, 174, 108, .09);
  color: var(--mineral-bright);
}

.contact-action__icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.contact-action__icon svg,
.support-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-action small {
  display: block;
  color: #809084;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-action b {
  display: block;
  margin-top: 3px;
  color: var(--ivory);
  font-size: 14px;
}

.contact-action > span {
  color: var(--mineral-bright);
  font-size: 11px;
  font-weight: 800;
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, .72fr);
  gap: 52px;
  align-items: start;
  padding-top: 58px;
}

.contact-copy {
  min-width: 0;
}

.contact-section-label {
  margin-bottom: 17px;
  color: #839387;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.support-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--service-line);
  border-radius: 22px;
  background: var(--service-line);
}

.support-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 21px 22px;
  background: rgba(11, 25, 16, .96);
}

.support-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.support-item h2 {
  margin: 1px 0 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

.support-item p {
  margin: 0;
  color: var(--service-muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-direct {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  margin-top: 15px;
  border: 1px solid rgba(215, 182, 107, .18);
  border-radius: 19px;
  background: rgba(59, 52, 29, .16);
}

.contact-direct small {
  display: block;
  margin-bottom: 5px;
  color: #8b9488;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 800;
}

.contact-direct a:hover {
  color: var(--mineral-bright);
}

.contact-direct__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aab5aa;
  font-size: 10px;
  white-space: nowrap;
}

.contact-direct__status::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mineral-bright);
  box-shadow: 0 0 0 5px rgba(139, 210, 150, .07);
  content: "";
}

.contact-form-card {
  position: sticky;
  top: 96px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--service-line-strong);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0, rgba(94, 171, 108, .12), transparent 19rem),
    linear-gradient(160deg, rgba(19, 40, 26, .98), rgba(9, 22, 14, .98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .29);
}

.contact-form-card::before {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mineral-bright), var(--gold), transparent);
  content: "";
}

.contact-form-card__head {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--service-line);
}

.contact-form-card__head span {
  display: block;
  margin-bottom: 8px;
  color: var(--mineral-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form-card__head h2 {
  margin-bottom: 10px;
  font-size: 2.05rem;
}

.contact-form-card__head p {
  margin: 0;
  color: var(--service-muted);
  font-size: 12px;
}

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

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

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #bdc9bd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
}

.form-field label span {
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid rgba(204, 232, 207, .16);
  border-radius: 13px;
  outline: 0;
  background: rgba(255, 255, 255, .035);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.45;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
  background-color: #14251a;
  color: var(--ivory);
}

.form-field select option {
  background-color: #14251a;
  color: #f4efdf;
}

.form-field select option:checked {
  background-color: #9bddaa;
  color: #07140b;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6f8073;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(204, 232, 207, .26);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(139, 210, 150, .52);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 0 0 3px rgba(89, 170, 104, .1);
}

.contact-submit {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8f3c4, #8ad49a);
  color: #07140b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(72, 154, 89, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(72, 154, 89, .26);
}

.contact-submit svg {
  width: 17px;
  height: 17px;
}

.contact-form__note {
  margin: -2px 5px 0;
  color: #7f8e82;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.contact-form__note a {
  color: #b7d9bb;
  text-decoration: underline;
  text-decoration-color: rgba(183, 217, 187, .35);
  text-underline-offset: 3px;
}

.contact-form__note a:hover {
  color: var(--ivory);
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.service-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid;
  border-radius: 14px;
}

.service-alert.success {
  border-color: rgba(139, 210, 150, .24);
  background: rgba(89, 170, 104, .08);
}

.service-alert.danger {
  border-color: rgba(239, 126, 103, .3);
  background: rgba(239, 126, 103, .08);
}

.service-alert__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  font-size: 11px;
  font-weight: 900;
}

.service-alert.success .service-alert__icon {
  color: var(--mineral-bright);
}

.service-alert.danger .service-alert__icon {
  color: #ff9f8c;
}

.service-alert b {
  display: block;
  margin-bottom: 2px;
  color: var(--ivory);
  font-size: 12px;
}

.service-alert p {
  margin: 0;
  color: #9caa9e;
  font-size: 11px;
}

.legal-main {
  padding-bottom: 110px;
}

.legal-hero {
  padding-bottom: 54px;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.legal-hero__meta li {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(157, 211, 163, .17);
  border-radius: 999px;
  background: rgba(79, 150, 93, .06);
  color: #bdc9bd;
  font-size: 10px;
  font-weight: 800;
}

.legal-hero__meta li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mineral-bright);
  content: "";
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 64px;
  align-items: start;
  justify-content: center;
  padding-top: 60px;
}

.legal-index {
  position: sticky;
  top: 100px;
  padding: 21px;
  border: 1px solid var(--service-line);
  border-radius: 19px;
  background: rgba(13, 29, 19, .72);
}

.legal-index > span {
  display: block;
  margin-bottom: 13px;
  color: #819085;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-index ol {
  display: grid;
  gap: 3px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: legal-index;
}

.legal-index li {
  counter-increment: legal-index;
}

.legal-index a {
  min-height: 38px;
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 10px;
  color: #9dac9e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.legal-index a::before {
  color: #68766b;
  font-variant-numeric: tabular-nums;
  content: counter(legal-index, decimal-leading-zero);
}

.legal-index a:hover {
  background: rgba(255, 255, 255, .04);
  color: var(--ivory);
}

.legal-content {
  min-width: 0;
}

.legal-summary {
  position: relative;
  overflow: hidden;
  padding: 26px 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(215, 182, 107, .22);
  border-radius: 21px;
  background:
    radial-gradient(circle at 100% 0, rgba(215, 182, 107, .12), transparent 18rem),
    rgba(45, 43, 27, .27);
}

.legal-summary::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--gold), var(--mineral-bright));
  content: "";
}

.legal-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
}

.legal-summary p {
  margin: 0;
  color: #aab4aa;
  font-size: 12px;
  line-height: 1.7;
}

.legal-section {
  position: relative;
  padding: 33px 29px 31px;
  margin-top: 12px;
  scroll-margin-top: 104px;
  border: 1px solid var(--service-line);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(16, 34, 22, .82), rgba(10, 23, 15, .75));
}

.legal-section__number {
  display: inline-flex;
  min-width: 31px;
  height: 25px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(139, 210, 150, .18);
  border-radius: 999px;
  background: rgba(89, 170, 104, .07);
  color: var(--mineral-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.legal-section h2 {
  margin-bottom: 15px;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.legal-section h3 {
  margin: 23px 0 8px;
  font-size: 14px;
  font-weight: 800;
}

.legal-section p,
.legal-section li {
  color: #aab5ab;
  font-size: 13px;
  line-height: 1.78;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-section a {
  color: var(--mineral-bright);
  text-decoration: underline;
  text-decoration-color: rgba(184, 235, 181, .32);
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--ivory);
}

.legal-closing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 28px;
  margin-top: 20px;
  border: 1px solid var(--service-line-strong);
  border-radius: 21px;
  background: rgba(17, 36, 23, .76);
}

.legal-closing span {
  display: block;
  margin-bottom: 5px;
  color: #819085;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.legal-closing strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.legal-closing__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.legal-closing__links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--service-line-strong);
  border-radius: 999px;
  color: #c5d0c6;
  font-size: 11px;
  font-weight: 800;
}

.legal-closing__links a:hover {
  border-color: rgba(139, 210, 150, .4);
  color: var(--ivory);
}

.service-page .public-footer {
  border-top: 1px solid rgba(208, 234, 209, .1);
  background: rgba(4, 12, 7, .48);
}

@media (max-width: 980px) {
  .service-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .service-hero__aside {
    max-width: 620px;
  }

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

  .contact-form-card {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-index {
    position: static;
  }

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

@media (max-width: 760px) {
  .service-hero {
    padding: 54px 0 44px;
  }

  .service-hero h1 {
    margin-top: 17px;
    font-size: clamp(3.15rem, 15vw, 4.65rem);
  }

  .service-hero__lead {
    font-size: 15px;
  }

  .contact-main {
    padding-bottom: 72px;
  }

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

  .contact-action {
    min-height: 137px;
  }

  .contact-workspace {
    gap: 35px;
    padding-top: 42px;
  }

  .contact-direct {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form-card {
    padding: 24px 20px;
    border-radius: 21px;
  }

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

  .legal-main {
    padding-bottom: 78px;
  }

  .legal-hero {
    padding-bottom: 40px;
  }

  .legal-layout {
    padding-top: 38px;
  }

  .legal-index {
    padding: 17px;
  }

  .legal-index ol {
    grid-template-columns: 1fr;
  }

  .legal-summary,
  .legal-section {
    padding: 24px 21px;
  }

  .legal-closing {
    grid-template-columns: 1fr;
  }

  .legal-closing__links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .support-item {
    grid-template-columns: 1fr;
  }

  .support-item__icon {
    width: 38px;
    height: 38px;
  }

  .legal-closing__links {
    display: grid;
  }

  .legal-closing__links a {
    justify-content: center;
  }
}
