:root {
  --bg: #f8fbff;
  --text: #07142f;
  --text-2: #50607f;
  --text-3: #7a89a8;
  --blue: #2468f2;
  --cyan: #28c9d2;
  --shadow-xs: 0 5px 18px rgba(21, 58, 122, .05);
  --shadow-sm: 0 12px 34px rgba(20, 56, 120, .08);
  --max: 1424px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(850px 520px at 72% 19%, rgba(68, 135, 255, .13), transparent 65%),
    radial-gradient(620px 460px at 35% 34%, rgba(46, 201, 210, .055), transparent 72%),
    linear-gradient(180deg, #fff 0%, #f7fbff 49%, #fff 100%);
}

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

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--text);
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 14px;
}

:focus-visible {
  outline: 3px solid rgba(47, 164, 255, .44);
  outline-offset: 4px;
  border-radius: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(59, 93, 151, .12);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
  width: min(var(--max), calc(100% - 96px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 398px;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 196px;
  display: inline-flex;
  align-items: center;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.brand:hover {
  opacity: .96;
  transform: translateY(-1px);
}

.brand img {
  width: 196px;
  height: auto;
  display: block;
}

.nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.012em;
}

.nav a,
.header-login {
  position: relative;
  color: #0c1731;
  transition: color .18s var(--ease);
}

.nav a {
  white-space: nowrap;
}

.nav a::after,
.header-login::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s var(--ease);
}

.header-login::after {
  bottom: 2px;
}

.nav a:hover,
.header-login:hover {
  color: var(--blue);
}

.nav a:hover::after,
.header-login:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 16px;
  font-weight: 650;
}

.top-actions-auth {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  order: 1;
}

.header-login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 650;
}

.header-start {
  order: 2;
}

.btn {
  min-height: 58px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.015em;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.btn .arrow {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .24s var(--ease);
}

.btn:not(:disabled):hover {
  transform: translateY(-2px);
}

.btn:not(:disabled):hover .arrow {
  transform: translate(4px, -1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1f5ff2 0%, #237ff6 48%, #1f9df2 100%);
  box-shadow: 0 14px 32px rgba(35, 109, 242, .24), inset 0 1px 0 rgba(255, 255, 255, .32);
}

@media (min-width: 1261px) {
  .header-start {
    width: 138px;
    min-width: 138px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 16px;
    gap: 12px;
  }
}

.mobile-menu {
  position: relative;
  z-index: 80;
  display: none;
  order: 3;
}

.menu-button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  border: 1px solid rgba(64, 97, 156, .16);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .95);
  cursor: pointer;
  user-select: none;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease), color .22s var(--ease);
}

.menu-button::-webkit-details-marker {
  display: none;
}

.burger-lines {
  width: 18px;
  height: 14px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
}

.burger-lines span {
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.mobile-menu[open] .burger-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .burger-lines span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .burger-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(286px, calc(100vw - 28px));
  padding: 9px;
  border: 1px solid rgba(63, 98, 156, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(20, 56, 120, .16), inset 0 1px 0 rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.mobile-nav a {
  min-height: 46px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  border-radius: 13px;
  color: var(--text);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -.015em;
}

.support-page {
  position: relative;
  flex: 1 0 auto;
  padding: 48px 0 clamp(42px, 5vw, 64px);
}

.support-shell {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 2.9vw, 36px);
  align-items: stretch;
  position: relative;
}

.support-aside,
.support-form-section {
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .94);
}

.support-aside {
  min-height: 100%;
  padding: clamp(24px, 2.7vw, 34px);
  display: flex;
  flex-direction: column;
}

.support-aside-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 104, 242, .14);
  border-radius: 17px;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(237, 245, 255, .98), rgba(228, 239, 255, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 10px 28px rgba(30, 88, 184, .07);
}

.support-eyebrow,
.support-form-kicker {
  margin: 0 0 16px;
  color: var(--text-3);
  font-size: 12px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.support-title {
  max-width: 390px;
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.05vw, 48px);
  line-height: .98;
  font-weight: 840;
  letter-spacing: -.058em;
}

.support-email {
  margin-top: 26px;
  padding: 14px 18px 14px 14px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(63, 98, 156, .14);
  border-radius: 21px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .94);
}

.support-email-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 104, 242, .14);
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(237, 245, 255, .98), rgba(228, 239, 255, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 10px 28px rgba(30, 88, 184, .07);
}

.support-email small {
  margin-bottom: 3px;
  display: block;
  color: var(--text-3);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support-email strong {
  min-width: 0;
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 840;
  letter-spacing: -.016em;
  word-break: break-word;
}

.support-topics {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.support-topic-card {
  min-height: 86px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(63, 98, 156, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}

.support-topic-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 104, 242, .14);
  border-radius: 15px;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(237, 245, 255, .98), rgba(228, 239, 255, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 22px rgba(30, 88, 184, .055);
}

.support-topic-icon.violet {
  color: #7351f4;
  border-color: rgba(121, 95, 255, .13);
  background: linear-gradient(180deg, rgba(244, 237, 255, .98), rgba(234, 224, 255, .92));
}

.support-topic-icon.green {
  color: #139b50;
  border-color: rgba(24, 170, 89, .13);
  background: linear-gradient(180deg, rgba(232, 251, 240, .98), rgba(221, 246, 232, .92));
}

.support-topic-card h2 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 840;
  letter-spacing: -.03em;
}

.support-topic-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 620;
}

.support-form-section {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  overflow: hidden;
}

.support-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(360px 210px at 94% 0%, rgba(36, 104, 242, .07), transparent 72%);
}

.support-form-section > * {
  position: relative;
  z-index: 1;
}

.support-form-kicker {
  margin-bottom: 24px;
}

.support-form-section h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(34px, 2.85vw, 48px);
  line-height: 1.02;
  font-weight: 840;
  letter-spacing: -.055em;
}

.support-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.support-field {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.012em;
}

.support-select-field > span:first-child {
  margin-bottom: 9px;
}

.support-field input,
.support-field select,
.support-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(63, 98, 156, .17);
  border-radius: 16px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
  font-weight: 620;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.support-field input::placeholder,
.support-field textarea::placeholder {
  color: #8b99b3;
}

.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
  border-color: rgba(36, 104, 242, .38);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 4px rgba(47, 164, 255, .13), inset 0 1px 0 rgba(255, 255, 255, .98);
}

.support-field textarea {
  min-height: 164px;
  padding: 16px;
  resize: vertical;
  line-height: 1.45;
}

.select-control {
  position: relative;
  display: block;
}

.select-control select {
  padding-right: 48px;
  appearance: none;
  -webkit-appearance: none;
  color: #8b99b3;
  cursor: pointer;
}

.select-control svg {
  position: absolute;
  top: 50%;
  right: 15px;
  pointer-events: none;
  color: #6c7b99;
  transform: translateY(-50%);
}

.support-consents {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.support-consents label {
  min-height: 48px;
  padding: 14px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  border: 1px solid rgba(63, 98, 156, .13);
  border-radius: 15px;
  color: var(--text-2);
  background: rgba(248, 251, 255, .78);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 650;
}

.support-consents input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.support-consents a {
  color: var(--blue);
  font-weight: 820;
}

.support-submit-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-submit-row .btn {
  min-width: 236px;
}

.support-submit-row .btn:disabled {
  opacity: .58;
  filter: saturate(.75);
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 10px 28px rgba(36, 95, 232, .16), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.support-submit-row p {
  margin: 0;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 650;
}

.site-footer {
  margin-top: auto;
  background: rgba(255, 255, 255, .52);
}

.compact-footer {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-note {
  min-width: 250px;
  display: flex;
  align-items: baseline;
  gap: 13px;
  color: var(--text-2);
}

.copyright,
.footer-note p {
  margin: 0;
  color: #6f7f9b;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 650;
}

.socials {
  margin: 0;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 98, 156, .12);
  border-radius: 12px;
  color: #31415f;
  background: rgba(255, 255, 255, .62);
}

.compact-footer--mobile {
  display: none;
}

@media (max-width: 1360px) {
  .support-shell {
    width: min(100% - 48px, var(--max));
  }
}

@media (max-width: 1260px) {
  .header-inner {
    width: min(100% - 40px, var(--max));
    height: 72px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand,
  .brand img {
    width: 164px;
  }

  .nav,
  .header-start {
    display: none;
  }

  .header-actions {
    justify-self: end;
    gap: 12px;
    font-size: 15px;
  }

  .top-actions-auth {
    gap: 8px;
  }

  .header-login {
    min-height: 44px;
    font-size: 15px;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 1080px) {
  .support-page {
    padding-top: 34px;
  }

  .support-shell {
    max-width: 840px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-aside {
    min-height: 0;
  }

  .support-title {
    max-width: 680px;
    font-size: clamp(40px, 6.1vw, 56px);
  }

  .support-topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .support-topic-card {
    min-height: 168px;
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .support-page {
    padding-top: 30px;
  }

  .support-shell {
    width: min(100% - 28px, 760px);
    padding: 18px;
    border-radius: 28px;
  }

  .support-aside,
  .support-form-section {
    border-radius: 24px;
  }

  .support-title {
    font-size: clamp(38px, 8.6vw, 54px);
  }

  .support-form-section h2 {
    font-size: clamp(30px, 6.2vw, 42px);
  }

  .compact-footer--desktop {
    display: none;
  }

  .compact-footer--mobile {
    width: min(100% - 28px, 720px);
    padding: 22px 0 26px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .compact-footer--mobile .footer-note {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .compact-footer--mobile .footer-note p {
    white-space: normal;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .support-page {
    padding-top: 28px;
  }
}

@media (max-width: 700px) {
  .site-header {
    transition: padding-bottom .24s var(--ease);
  }

  .site-header:has(.mobile-menu[open]) {
    padding-bottom: 322px;
  }

  .mobile-menu {
    position: static;
  }

  .mobile-nav {
    position: absolute;
    top: 82px;
    right: 14px;
    left: 14px;
    z-index: 70;
    width: auto;
    padding: 0;
    display: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu[open] .mobile-nav {
    display: grid;
    gap: 10px;
  }

  .mobile-nav a {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(63, 98, 156, .16);
    border-radius: 18px;
    color: var(--text-2);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .96);
    font-size: 17px;
    font-weight: 760;
  }

  .support-shell {
    width: min(100% - 28px, 560px);
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .support-aside,
  .support-form-section {
    border-radius: 26px;
    box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .94);
  }

  .support-aside {
    padding: 24px 20px;
  }

  .support-aside-icon {
    margin-bottom: 22px;
  }

  .support-title {
    max-width: 100%;
    font-size: clamp(35px, 10vw, 46px);
  }

  .support-email {
    width: 100%;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .support-email-icon {
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }

  .support-email strong {
    font-size: 16px;
  }

  .support-topics {
    grid-template-columns: 1fr;
  }

  .support-topic-card {
    min-height: 92px;
    padding: 16px;
    grid-template-columns: 54px 1fr;
  }

  .support-topic-icon {
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }

  .support-form-section {
    padding: 24px 18px;
  }

  .support-form-section h2 {
    margin-bottom: 20px;
  }

  .support-field textarea {
    min-height: 150px;
  }

  .support-submit-row {
    display: grid;
    gap: 12px;
  }

  .support-submit-row .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 22px;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: calc(100% - 20px);
    height: 64px;
    gap: 8px;
  }

  .brand,
  .brand img {
    width: 132px;
  }

  .header-actions,
  .top-actions-auth {
    gap: 6px;
  }

  .header-login {
    min-height: 36px;
    font-size: 13.5px;
    line-height: 1;
  }

  .mobile-menu {
    margin-right: -4px;
  }

  .menu-button {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 12px;
  }

  .burger-lines {
    width: 17px;
    height: 13px;
  }

  .mobile-nav {
    top: 72px;
  }

  .site-header:has(.mobile-menu[open]) {
    padding-bottom: 304px;
  }

  .footer-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .footer-note p {
    white-space: normal;
    line-height: 1;
  }

  .footer-links {
    gap: 9px 16px;
  }
}

@media (max-width: 380px) {
  .header-inner {
    width: calc(100% - 18px);
    height: 62px;
    gap: 6px;
  }

  .brand,
  .brand img {
    width: 118px;
  }

  .header-actions,
  .top-actions-auth {
    gap: 5px;
  }

  .header-login {
    min-height: 34px;
    font-size: 13px;
  }

  .menu-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    border-radius: 11px;
  }

  .mobile-menu {
    margin-right: -5px;
  }

  .mobile-nav {
    top: 68px;
    right: 10px;
    left: 10px;
  }

  .site-header:has(.mobile-menu[open]) {
    padding-bottom: 294px;
  }
}

@media (max-width: 360px) {
  .support-shell {
    width: min(100% - 20px, 560px);
  }

  .support-aside,
  .support-form-section {
    padding-right: 15px;
    padding-left: 15px;
  }

  .support-title {
    font-size: 34px;
  }

  .support-topic-card {
    grid-template-columns: 1fr;
  }

  .support-form-section h2 {
    font-size: 29px;
  }
}

@media (max-width: 340px) {
  .brand,
  .brand img {
    width: 106px;
  }

  .header-login {
    min-height: 32px;
    font-size: 12.5px;
  }

  .menu-button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
  }

  .burger-lines {
    width: 16px;
    height: 12px;
  }

  .mobile-nav {
    top: 64px;
  }
}

/* WordPress + Fluent Forms integration (form ID 3). */
body.vocavera-support-template {
  min-height: 100svh;
  margin: 0;
}

body.vocavera-support-template .wp-site-blocks,
body.vocavera-support-template main,
body.vocavera-support-template header,
body.vocavera-support-template footer {
  margin-block-start: 0;
}

.admin-bar .site-header {
  top: 32px;
}

.vocavera-support-template .support-fluent-form,
.vocavera-support-template .fluentform_wrapper_3,
.vocavera-support-template .fluentform_wrapper_3 form {
  margin: 0;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-group {
  margin-bottom: 18px;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-t-container {
  gap: 16px;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-input--label,
.vocavera-support-template .fluentform_wrapper_3 .ff-el-input--label label,
.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-label {
  margin: 0 0 9px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: -.008em;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-control,
.vocavera-support-template .fluentform_wrapper_3 input[type="text"],
.vocavera-support-template .fluentform_wrapper_3 input[type="email"],
.vocavera-support-template .fluentform_wrapper_3 input[type="tel"],
.vocavera-support-template .fluentform_wrapper_3 select,
.vocavera-support-template .fluentform_wrapper_3 textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(63, 98, 156, .17);
  border-radius: 16px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
  font: inherit;
  font-weight: 620;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.vocavera-support-template .fluentform_wrapper_3 select {
  padding-right: 46px;
  cursor: pointer;
}

.vocavera-support-template .fluentform_wrapper_3 textarea,
.vocavera-support-template .fluentform_wrapper_3 textarea.ff-el-form-control {
  min-height: 164px;
  padding: 16px;
  resize: vertical;
  line-height: 1.45;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-control::placeholder,
.vocavera-support-template .fluentform_wrapper_3 input::placeholder,
.vocavera-support-template .fluentform_wrapper_3 textarea::placeholder {
  color: #8b99b3;
  opacity: 1;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-control:focus,
.vocavera-support-template .fluentform_wrapper_3 input[type="text"]:focus,
.vocavera-support-template .fluentform_wrapper_3 input[type="email"]:focus,
.vocavera-support-template .fluentform_wrapper_3 input[type="tel"]:focus,
.vocavera-support-template .fluentform_wrapper_3 select:focus,
.vocavera-support-template .fluentform_wrapper_3 textarea:focus {
  border-color: rgba(36, 104, 242, .38);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 4px rgba(47, 164, 255, .13), inset 0 1px 0 rgba(255, 255, 255, .98);
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-input--content {
  text-align: left !important;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-check {
  min-height: 48px;
  margin: 0 0 12px;
  padding: 14px;
  display: flex !important;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid rgba(63, 98, 156, .13);
  border-radius: 15px;
  color: var(--text-2);
  background: rgba(248, 251, 255, .78);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 650;
  text-align: left !important;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-check-label,
.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-check label {
  width: auto !important;
  max-width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left !important;
  white-space: normal;
  cursor: pointer;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-check-input,
.vocavera-support-template .fluentform_wrapper_3 input[type="checkbox"] {
  position: static !important;
  display: block !important;
  width: 17px !important;
  min-width: 17px;
  height: 17px !important;
  min-height: 17px;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  flex: 0 0 17px;
  accent-color: var(--blue);
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-check-label > span,
.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-check label > span {
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 1 auto;
  display: block;
  text-align: left !important;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-form-check a {
  color: var(--blue);
  font-weight: 820;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-btn-submit,
.vocavera-support-template .fluentform_wrapper_3 button[type="submit"],
.vocavera-support-template .fluentform_wrapper_3 input[type="submit"] {
  min-width: 236px;
  min-height: 58px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #1f5ff2 0%, #237ff6 48%, #1f9df2 100%);
  box-shadow: 0 14px 32px rgba(35, 109, 242, .24), inset 0 1px 0 rgba(255, 255, 255, .32);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.015em;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), opacity .2s var(--ease);
}

.vocavera-support-template .fluentform_wrapper_3 .ff-btn-submit:hover,
.vocavera-support-template .fluentform_wrapper_3 button[type="submit"]:hover,
.vocavera-support-template .fluentform_wrapper_3 input[type="submit"]:hover {
  transform: translateY(-2px);
}

.vocavera-support-template .fluentform_wrapper_3 .ff-btn-submit:disabled,
.vocavera-support-template .fluentform_wrapper_3 button[type="submit"]:disabled,
.vocavera-support-template .fluentform_wrapper_3 input[type="submit"]:disabled {
  opacity: .58;
  cursor: not-allowed;
  transform: none;
}

.vocavera-support-template .fluentform_wrapper_3 .text-danger,
.vocavera-support-template .fluentform_wrapper_3 .error,
.vocavera-support-template .fluentform_wrapper_3 .ff-el-is-error .text-danger {
  margin-top: 7px;
  color: #b42318;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.vocavera-support-template .fluentform_wrapper_3 .ff-el-is-error .ff-el-form-control {
  border-color: rgba(180, 35, 24, .48);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, .08);
}

.vocavera-support-template .fluentform_wrapper_3 .ff-message-success {
  padding: 18px 20px;
  border: 1px solid rgba(32, 157, 101, .2);
  border-radius: 16px;
  color: #12613f;
  background: rgba(235, 251, 243, .9);
  font-weight: 700;
}

.vocavera-support-template .support-form-fallback {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(180, 35, 24, .18);
  border-radius: 16px;
  color: #7a271a;
  background: rgba(254, 243, 242, .9);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 650;
}

.support-success-page {
  position: relative;
  flex: 1 0 auto;
  padding: clamp(58px, 9vw, 118px) 0 clamp(72px, 10vw, 132px);
}

.support-success-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.support-success-title {
  margin: 0 0 28px;
  color: var(--text);
  font-size: clamp(44px, 6vw, 72px);
  line-height: .98;
  font-weight: 820;
  letter-spacing: -.055em;
}

.support-success-card {
  max-width: 780px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(63, 98, 156, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, .96);
}

.support-success-card p {
  margin: 0;
  color: var(--text-2);
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.38;
  font-weight: 520;
  letter-spacing: -.025em;
}

.support-success-actions {
  margin-top: 28px;
}

.support-success-actions .btn {
  min-height: 52px;
  padding: 0 22px;
  font-size: 16px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 700px) {
  .vocavera-support-template .fluentform_wrapper_3 .ff-t-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vocavera-support-template .fluentform_wrapper_3 .ff-btn-submit,
  .vocavera-support-template .fluentform_wrapper_3 button[type="submit"],
  .vocavera-support-template .fluentform_wrapper_3 input[type="submit"] {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 22px;
    font-size: 16px;
  }

  .support-success-shell {
    width: min(100% - 28px, 560px);
  }

  .support-success-title {
    margin-bottom: 22px;
    font-size: clamp(38px, 11vw, 52px);
  }

  .support-success-card {
    padding: 24px 20px;
    border-radius: 22px;
  }
}
