:root {
  --bg: #050B0D;
  --bg-alt: #0A1317;
  --bg-section: #071113;
  --bg-card: #0E1C20;
  --bg-elevated: #0B171A;
  --accent: #00AAB4;
  --accent-bright: #00D6C8;
  --accent-hover: #12F0DD;
  --text: #F5F7F7;
  --text-muted: #A8B4B7;
  --text-soft: #6F7F83;
  --border: #1B2B30;
  --border-light: rgba(237, 245, 244, 0.08);
  --font-family-base: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  --site-frame-width: min(1296px, calc(100% - 4px));
  --container-base: 1152px;
  --header-height: 66px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 70% 48% at 50% -18%, rgba(0, 214, 200, 0.11), transparent 72%),
    linear-gradient(180deg, #081316 0%, #071113 42%, #050B0D 100%);
  color: var(--text);
  font-family: var(--font-family-base);
  line-height: 1.6;
  letter-spacing: 0;
}

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

.seo-container {
  width: min(var(--container-base), calc(100% - 36px));
  margin: 0 auto;
}

.seo-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(0, 201, 188, 0.12);
  background: rgba(14, 22, 27, 0.94);
  backdrop-filter: blur(18px);
}

.seo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--site-frame-width);
  height: var(--header-height);
  margin: 0 auto;
}

.seo-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 268px;
  color: inherit;
}

.seo-logo-mark {
  width: 50px;
  height: 36px;
  flex-shrink: 0;
}

.seo-logo-wordmark {
  width: 184px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.seo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.seo-nav a {
  position: relative;
  padding: 8px 12px 12px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 150ms ease;
}

.seo-nav a:hover,
.seo-nav a.is-active {
  color: var(--accent-bright);
}

.seo-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: calc(-1 * ((var(--header-height) - 42px) / 2));
  height: 2px;
  border-radius: 50%;
  background: var(--accent-bright);
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 150ms ease, transform 150ms ease;
  pointer-events: none;
}

.seo-nav a:hover::after,
.seo-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.seo-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 304px;
}

.seo-header-actions[data-site-auth-state="checking"] .site-public-auth-action {
  visibility: hidden;
  pointer-events: none;
}

.seo-header-actions[data-site-auth-state="authenticated"] .site-public-auth-action,
.site-public-auth-action[hidden],
.site-account-menu[hidden] {
  display: none !important;
}

.site-account-menu {
  position: relative;
  z-index: 20;
}

.site-account-trigger {
  appearance: none;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--accent-bright);
  border-radius: 10px;
  background: var(--accent-bright);
  color: #031214;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 201, 188, 0.13);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.site-account-trigger:hover,
.site-account-menu[data-open="true"] .site-account-trigger {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  box-shadow: 0 16px 38px rgba(0, 201, 188, 0.18);
  transform: translateY(-1px);
}

.site-account-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 244px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(157, 226, 219, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 80% 62% at 50% 0%, rgba(0, 214, 200, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(10, 24, 28, 0.96), rgba(3, 9, 11, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.052),
    0 24px 64px -42px rgba(0, 0, 0, 0.86),
    0 20px 58px -50px rgba(0, 214, 200, 0.30);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

.site-account-email {
  padding: 8px 8px 9px;
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.site-account-divider {
  height: 1px;
  margin: 2px 0;
  background: rgba(157, 226, 219, 0.12);
}

.site-account-menu-link {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(202, 217, 218, 0.76);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.site-account-menu-link:hover,
.site-account-menu-link:focus-visible {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.site-account-menu-link.is-danger:hover,
.site-account-menu-link.is-danger:focus-visible {
  color: #ffb9b9;
}

.qv-language-menu {
  --qv-language-panel-width: 78px;
  position: relative;
  z-index: 20;
}

.qv-language-trigger {
  appearance: none;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease;
}

.qv-language-trigger img {
  width: 18px;
  height: 18px;
  filter: invert(88%) sepia(9%) saturate(286%) hue-rotate(139deg) brightness(91%);
  opacity: 0.82;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.qv-language-trigger:hover,
.qv-header-language[data-open="true"] .qv-language-trigger {
  transform: translateY(-1px);
}

.qv-language-trigger:hover img,
.qv-header-language[data-open="true"] .qv-language-trigger img {
  filter: invert(74%) sepia(24%) saturate(526%) hue-rotate(128deg) brightness(93%);
  opacity: 0.92;
}

.qv-language-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: var(--qv-language-panel-width);
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(157, 226, 219, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 80% 62% at 50% 0%, rgba(0, 214, 200, 0.080), transparent 72%),
    linear-gradient(180deg, rgba(10, 24, 28, 0.96), rgba(3, 9, 11, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.052),
    0 24px 64px -42px rgba(0, 0, 0, 0.86),
    0 20px 58px -50px rgba(0, 214, 200, 0.30);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.qv-language-menu[data-open="true"] .qv-language-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.qv-language-panel button {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(202, 217, 218, 0.76);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 150ms ease;
}

.qv-language-panel button:hover,
.qv-language-panel button:focus-visible,
.qv-language-panel button.is-active {
  color: var(--accent-bright);
}

.qv-header-portal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: start start;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}

.qv-header-portal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qv-header-portal-card {
  position: absolute;
  top: var(--qv-header-portal-top, 72px);
  left: var(--qv-header-portal-left, 50%);
  width: var(--qv-header-portal-width, 78px);
  padding: 6px;
  border: 1px solid rgba(157, 226, 219, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 80% 62% at 50% 0%, rgba(0, 214, 200, 0.080), transparent 72%),
    linear-gradient(180deg, rgba(10, 24, 28, 0.98), rgba(3, 9, 11, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.052),
    0 24px 64px -42px rgba(0, 0, 0, 0.86);
  transform: translateX(-50%);
}

.qv-header-portal-options {
  display: grid;
  gap: 4px;
}

.qv-header-portal-option {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(202, 217, 218, 0.76);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.qv-header-portal-option:hover,
.qv-header-portal-option:focus-visible,
.qv-header-portal-option.is-active {
  color: var(--accent-bright);
}

.qv-header-portal.is-account .qv-header-portal-card {
  width: var(--qv-header-portal-width, 244px);
  padding: 10px;
}

.qv-header-portal-head {
  padding: 8px 8px 9px;
}

.qv-header-portal-copy {
  display: grid;
  gap: 3px;
}

.qv-header-portal-copy strong {
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 700;
}

.qv-header-portal-copy span {
  color: var(--text-soft);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.qv-header-portal.is-account .qv-header-portal-option {
  justify-content: flex-start;
  min-height: 32px;
  border-radius: 8px;
  font-size: 0.8125rem;
  letter-spacing: 0;
}

.qv-header-portal.is-account .qv-header-portal-option:hover,
.qv-header-portal.is-account .qv-header-portal-option:focus-visible {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.qv-header-portal.is-account .qv-header-portal-option.is-danger:hover,
.qv-header-portal.is-account .qv-header-portal-option.is-danger:focus-visible {
  color: #ffb9b9;
}

.seo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.seo-btn-primary {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
  color: #031214;
  box-shadow: 0 12px 30px rgba(0, 201, 188, 0.13);
}

.seo-btn-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  color: #031214;
  box-shadow: 0 16px 38px rgba(0, 201, 188, 0.18);
  transform: translateY(-1px);
}

.seo-btn-secondary {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.seo-btn-secondary:hover {
  border-color: rgba(0, 214, 200, 0.34);
  background: rgba(0, 214, 200, 0.075);
  color: var(--accent-bright);
  transform: translateY(-1px);
}

main {
  padding: clamp(52px, 8vw, 94px) 18px clamp(70px, 10vw, 120px);
}

.seo-article {
  width: min(980px, 100%);
  margin: 0 auto;
}

.seo-eyebrow {
  margin: 0 0 16px;
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 700;
}

h2 {
  margin-top: 54px;
  padding-top: 6px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}

h3 {
  margin-top: 30px;
  color: #DDE9E9;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 700;
}

p,
li {
  color: var(--text-muted);
  font-size: 18px;
}

p {
  margin: 20px 0 0;
}

ul {
  margin: 20px 0 0;
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

.seo-updated {
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 650;
}

.seo-article a:not(.seo-btn),
.seo-faq-card a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.seo-dot {
  display: inline-block;
  margin: 0 10px;
  color: var(--text-soft);
}

.seo-related {
  color: #DDE9E9;
  font-weight: 650;
}

.seo-table {
  display: grid;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}

.seo-table-row {
  display: grid;
  border-top: 1px solid var(--border);
}

.seo-table-row:first-child {
  border-top: 0;
}

.seo-table-3 .seo-table-row {
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
}

.seo-table-4 .seo-table-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-table-row > div {
  padding: 15px 16px;
  border-left: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.45;
}

.seo-table-row > div:first-child {
  border-left: 0;
}

.seo-table-head {
  background: rgba(0, 214, 200, 0.08);
}

.seo-table-head > div {
  color: var(--text);
  font-weight: 800;
}

.seo-page-faq {
  background:
    radial-gradient(ellipse 72% 46% at 50% -14%, rgba(0, 214, 200, 0.14), transparent 68%),
    radial-gradient(ellipse 54% 40% at 82% 18%, rgba(0, 170, 180, 0.08), transparent 68%),
    linear-gradient(180deg, #0A1518 0%, #081214 48%, #050B0D 100%);
}

.seo-faq-main {
  padding: 0;
}

.seo-faq-hero {
  position: relative;
  padding: clamp(74px, 9vw, 128px) 0 clamp(46px, 6vw, 78px);
  overflow: hidden;
}

.seo-faq-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1152px, calc(100% - 36px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 214, 200, 0.28), transparent);
  transform: translateX(-50%);
}

.seo-faq-hero-inner {
  max-width: 880px;
}

.seo-faq-hero h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.seo-faq-lead {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(220, 235, 235, 0.76);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.seo-faq-hero .seo-updated {
  margin-top: 14px;
}

.seo-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.seo-faq-actions .seo-btn {
  min-height: 44px;
  padding: 0 18px;
}

.seo-faq-section {
  padding: clamp(34px, 5vw, 66px) 0 clamp(64px, 8vw, 112px);
}

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

.seo-faq-card {
  min-height: 100%;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid rgba(157, 226, 219, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(ellipse 82% 70% at 18% 0%, rgba(0, 214, 200, 0.055), transparent 74%),
    linear-gradient(180deg, rgba(14, 28, 32, 0.90), rgba(8, 18, 21, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 64px -52px rgba(0, 0, 0, 0.82);
}

.seo-faq-card h2 {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.22;
}

.seo-faq-card p {
  margin-top: 14px;
  color: rgba(205, 220, 221, 0.78);
  font-size: 1rem;
  line-height: 1.62;
}

.seo-faq-final {
  padding: 0 0 clamp(72px, 9vw, 118px);
}

.seo-faq-final .seo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(0, 214, 200, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(ellipse 68% 82% at 18% 0%, rgba(0, 214, 200, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(13, 28, 31, 0.94), rgba(7, 16, 18, 0.96));
}

.seo-faq-final p {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 650;
}

.seo-footer {
  position: relative;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text-soft);
  font-size: 14px;
}

.seo-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 214, 200, 0.3), transparent);
  filter: blur(0.5px);
}

.seo-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  text-align: left;
}

.seo-footer-brandline {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  min-width: 0;
  color: rgba(237, 245, 244, 0.68);
  font-size: 0.875rem;
  font-weight: 520;
  line-height: 1.35;
}

.seo-footer-copyright {
  white-space: nowrap;
}

.seo-footer-copy-main::after {
  content: ". ";
}

.seo-footer-copy-rights {
  color: rgba(237, 245, 244, 0.46);
  font-weight: 500;
}

.seo-footer-copy-rights::after {
  content: ".";
}

.seo-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.seo-footer-social-link {
  --social-icon-w: 20px;
  --social-icon-h: 20px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.seo-footer-social-link[aria-label="X"] {
  --social-icon-w: 18px;
  --social-icon-h: 18px;
}

.seo-footer-social-link[aria-label="Telegram"] {
  --social-icon-w: 19px;
  --social-icon-h: 19px;
}

.seo-footer-social-link[aria-label="YouTube"] {
  --social-icon-w: 22px;
  --social-icon-h: 22px;
}

.seo-footer-social-link img {
  width: var(--social-icon-w);
  height: var(--social-icon-h);
  filter: invert(72%) sepia(10%) saturate(262%) hue-rotate(144deg) brightness(90%);
  opacity: 0.78;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.seo-footer-social-link:hover {
  transform: translateY(-3px);
}

.seo-footer-social-link:hover img {
  filter: invert(97%) sepia(6%) saturate(127%) hue-rotate(137deg) brightness(101%) contrast(96%);
  opacity: 0.95;
  transform: scale(1.08);
}

.seo-footer-right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}

.seo-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  list-style: none;
}

.seo-footer-links a {
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 150ms ease;
}

.seo-footer-links a:hover {
  color: var(--text);
}

.num {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1120px) {
  .seo-nav {
    display: none;
  }

  .seo-header-actions {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .seo-header {
    position: static;
  }

  .seo-header-inner {
    height: auto;
    min-height: var(--header-height);
    padding: 14px 0;
    gap: 14px;
  }

  .seo-logo {
    min-width: 0;
  }

  .seo-logo-mark {
    width: 42px;
    height: 30px;
  }

  .seo-logo-wordmark {
    width: 154px;
  }

  .seo-header-actions .seo-btn-secondary {
    display: none;
  }

  .seo-header-actions .seo-btn-primary {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8125rem;
  }

  .seo-faq-grid {
    grid-template-columns: 1fr;
  }

  .seo-faq-final .seo-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-table {
    overflow-x: auto;
  }

  .seo-table-row {
    min-width: 720px;
  }

  .seo-footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .seo-footer-brandline,
  .seo-footer-copyright,
  .seo-footer-right {
    justify-content: center;
    text-align: center;
  }

  .seo-footer-brandline {
    flex-direction: column;
    gap: 10px;
  }

  .seo-footer-copyright {
    white-space: normal;
  }

  .seo-footer-socials {
    justify-content: center;
  }

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

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

  .seo-logo-wordmark {
    display: none;
  }

  .seo-faq-actions .seo-btn {
    width: 100%;
  }
}
