:root {
  --site-scale: 1.15;
  --page-max: 1054px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --border-radius-lg: 0;
  --bg-primary: #132618;
  --bg-nav: #1e3d28;
  --bg-footer: #0e1f12;
  --gold: #c8a850;
  --gold-hover: #d4b865;
  --text-primary: #fff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-faint: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.06);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: #0a1610;
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site {
  background: var(--bg-primary);
  overflow-x: hidden;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  min-height: 100vh;
  zoom: var(--site-scale);
}

.nav {
  background: var(--bg-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 52.7px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9.5px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-box {
  width: 30.1px;
  height: 30.1px;
  background: var(--gold);
  border-radius: 5.7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box i {
  color: var(--bg-primary);
  font-size: 16px;
}

.nav-links {
  display: flex;
  gap: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.3px;
  text-decoration: none;
  padding: 0 13.2px;
  height: 52.7px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link-phone,
.nav-link-cta {
  display: none;
}

.nav-link-cta {
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  font-family: inherit;
  cursor: pointer;
  margin: 0.5rem 2rem 0.75rem;
  border-radius: 7.5px;
  justify-content: center;
  border-left: none !important;
  font-weight: 500;
}

.nav-link-phone {
  color: var(--gold);
  font-weight: 500;
}

.nav-link:hover,
.nav-link.act {
  color: #fff;
  border-color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 13.2px;
}

.nav-phone {
  color: var(--gold);
  font-size: 12.3px;
  font-weight: 500;
  text-decoration: none;
}

.nav-cta {
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  padding: 6.5px 15.1px;
  border-radius: 5.7px;
  font-size: 12.3px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: scale(0.97);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4.8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 3.7px;
}

.burger span {
  display: block;
  width: 20.8px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  padding: 3.3rem 2rem 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5.7px;
  background: rgba(200, 168, 80, 0.15);
  border: 1px solid rgba(200, 168, 80, 0.3);
  color: var(--gold);
  font-size: 11.3px;
  padding: 3.7px 11.3px;
  border-radius: 18.8px;
  margin-bottom: 1.1rem;
}

.hero-title {
  color: #fff;
  font-size: 26.3px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 13.2px;
  line-height: 1.7;
  margin-bottom: 1.7rem;
}

.hero-btns {
  display: flex;
  gap: 9.5px;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  padding: 10.3px 20.8px;
  border-radius: 7.5px;
  font-size: 13.2px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1.9px);
  box-shadow: 0 7.5px 18.8px rgba(200, 168, 80, 0.3);
}

.btn-gold:active {
  transform: scale(0.97);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10.3px 20.8px;
  border-radius: 7.5px;
  font-size: 13.2px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1.9px);
}

.btn-ghost:active {
  transform: scale(0.97);
}

.hero-trust {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5.7px;
  color: var(--text-faint);
  font-size: 11.3px;
}

.trust-dot {
  width: 5.7px;
  height: 5.7px;
  background: #4a9e5c;
  border-radius: 50%;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 9.5px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.5px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 9.5px;
  padding: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 168, 80, 0.3);
}

.stat-num {
  font-size: 22.5px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 3.7px;
}

.stat-label {
  font-size: 11.3px;
  color: var(--text-faint);
  line-height: 1.4;
}

.hero-phone-card {
  background: rgba(200, 168, 80, 0.1);
  border: 1px solid rgba(200, 168, 80, 0.25);
  border-radius: 9.5px;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  gap: 11.3px;
}

.phone-icon {
  width: 33.9px;
  height: 33.9px;
  background: rgba(200, 168, 80, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16.9px;
  flex-shrink: 0;
}

.phone-main {
  color: #fff;
  font-size: 15.1px;
  font-weight: 500;
}

.phone-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11.3px;
}

.hero-phone-card .btn-gold {
  margin-left: auto;
  padding: 7.5px 13.2px;
  font-size: 12.3px;
  flex-shrink: 0;
}

.section {
  padding: 2.4rem 2rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 67.7px;
}

.sec-label {
  font-size: 10.3px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.sec-title {
  font-size: 18.8px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.4rem;
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9.5px;
}

.cat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9.5px;
  padding: 0.9rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}

.cat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 168, 80, 0.3);
  transform: translateY(-2.8px);
}

.cat-card-more {
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.cat-card-more:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cats-grid.expanded .cat-card-more {
  display: none;
}

.cats-grid.expanded .cat-card-extra {
  display: block;
}

.cat-card-extra {
  display: none;
}

.cat-icon {
  width: 37.6px;
  height: 37.6px;
  background: rgba(200, 168, 80, 0.12);
  border-radius: 9.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 9.5px;
  color: var(--gold);
  font-size: 18.8px;
}

.cat-name {
  font-size: 11.3px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 0.9rem;
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 26.3px;
  width: 1px;
  height: 22.5px;
  background: rgba(255, 255, 255, 0.1);
}

.step-num {
  width: 41.3px;
  height: 41.3px;
  background: rgba(200, 168, 80, 0.12);
  border: 2px solid rgba(200, 168, 80, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 9.5px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

.step-title {
  font-size: 12.3px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3.7px;
}

.step-desc {
  font-size: 11.3px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.svo-banner {
  background: rgba(200, 168, 80, 0.08);
  border: 1px solid rgba(200, 168, 80, 0.2);
  border-radius: 11.3px;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.svo-icon {
  width: 52.7px;
  height: 52.7px;
  min-width: 52.7px;
  background: rgba(200, 168, 80, 0.15);
  border-radius: 11.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 26.3px;
}

.svo-title {
  color: #fff;
  font-size: 15.1px;
  font-weight: 500;
  margin-bottom: 3.7px;
}

.svo-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.3px;
  line-height: 1.5;
}

.svo-btn {
  margin-left: auto;
  flex-shrink: 0;
  padding: 8.5px 16.9px;
  font-size: 12.3px;
}

.laws-row {
  display: flex;
  gap: 9.5px;
  flex-wrap: wrap;
  margin-top: 0;
}

.law-pill {
  display: flex;
  align-items: center;
  gap: 7.5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7.5px;
  padding: 9.5px 13.2px;
}

.law-pill-icon {
  color: var(--gold);
  font-size: 15.1px;
}

.law-pill-title {
  color: #fff;
  font-size: 12.3px;
  font-weight: 500;
}

.law-pill-sub {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10.3px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 13.2px;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  max-width: 601.6px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
}

.faq-item-extra {
  display: none !important;
}

#faqList.is-expanded .faq-item-extra {
  display: block !important;
}

.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.faq-toggle-less {
  display: none !important;
}

#faqActions.is-expanded .faq-toggle-more {
  display: none !important;
}

#faqActions.is-expanded .faq-toggle-less {
  display: inline-flex !important;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9.5px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(200, 168, 80, 0.35);
}

.faq-q {
  font-size: 13.2px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.faq-a {
  font-size: 12.3px;
  color: var(--text-muted);
  margin-top: 7.5px;
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-a a:hover {
  color: var(--gold-hover);
}

.faq-icon {
  color: var(--gold);
  font-size: 16.9px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.faq-btn {
  padding: 0.45rem 0.9rem;
  font-size: 12px;
}

.faq-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold);
  font-size: 12.3px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-link-btn:hover {
  color: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

#news-container {
  display: contents;
}

.news-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11.3px;
  padding: 1.1rem;
  transition: background 0.2s, border-color 0.2s;
}

a.news-card,
a.news-card:link,
a.news-card:visited {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 168, 80, 0.25);
}

.news-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 13.2px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11.3px;
}

.news-date {
  display: block;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  font-size: 12.3px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.video-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11.3px;
  padding: 2.4rem 1.4rem;
  text-align: center;
}

.video-placeholder-icon {
  width: 52.7px;
  height: 52.7px;
  background: rgba(200, 168, 80, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  color: var(--gold);
  font-size: 26.3px;
}

.footer {
  background: var(--bg-footer);
  padding: 0;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
}

.footer-brand .footer-logo {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 11.3px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-col-title {
  font-size: 10.3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.footer-contact {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.3px;
  text-decoration: none;
  margin-bottom: 0.35rem;
}

.footer-contact:hover {
  color: var(--gold);
}

.footer-text {
  font-size: 11.3px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.footer-note {
  font-size: 11.3px;
  color: var(--text-faint);
  margin-top: 0.5rem;
}

.footer-col .footer-link {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding: 1rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 11.3px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11.3px;
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

.footer-socials {
  display: flex;
  gap: 9.5px;
}

.social-btn {
  width: 30.1px;
  height: 30.1px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.social-btn:hover {
  background: rgba(200, 168, 80, 0.15);
  color: var(--gold);
}

.btn-ghost-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-icon {
  font-size: 12.9px;
  vertical-align: -2.2px;
  margin-right: 5.4px;
}

.section-desc.center {
  margin: 0 auto;
}

.section-center {
  text-align: center;
}

.inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-link:hover {
  color: var(--gold-hover);
}

.phone-link {
  color: inherit;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--gold);
}

.hero-note {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.phone-main-alt {
  margin-top: 2px;
}

.consult-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.67rem;
  padding: 1.67rem 1.83rem;
  background: rgba(200, 168, 80, 0.08);
  border: 1px solid rgba(200, 168, 80, 0.2);
  border-radius: 9.4px;
}

.consult-banner-title {
  font-size: clamp(0.875rem, 2vw, 1.29rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 467px;
}

.consult-banner-visual {
  flex-shrink: 0;
}

.consult-banner-icon {
  width: 108px;
  height: 108px;
  background: rgba(200, 168, 80, 0.15);
  border: 2.5px solid rgba(200, 168, 80, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 48px;
}

.info-box {
  margin-top: 1.1rem;
  padding: 1.1rem;
  background: rgba(200, 168, 80, 0.08);
  border: 1px solid rgba(200, 168, 80, 0.2);
  border-radius: 9.5px;
}

.info-box-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}

.info-box-desc {
  font-size: 12.3px;
  color: var(--text-muted);
  line-height: 1.5;
}

.promo-list {
  text-align: left;
  max-width: 520px;
  margin: 0 auto 1.4rem;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.2px;
  line-height: 1.8;
}

.test-arrow {
  color: var(--gold);
  font-size: 22px;
  margin: 0.5rem 0 1rem;
}

.elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.elig-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9.5px;
  padding: 1.1rem;
}

.elig-head {
  font-size: 13.2px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.elig-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.elig-list {
  padding-left: 1.1rem;
  margin-bottom: 0.75rem;
  font-size: 11.8px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.elig-note {
  font-size: 11.3px;
  color: var(--text-faint);
  margin-bottom: 0.9rem;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9.5px;
  margin-bottom: 1.4rem;
}

.adv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9.5px;
  padding: 0.9rem;
  text-align: center;
}

.adv-icon {
  width: 37.6px;
  height: 37.6px;
  background: rgba(200, 168, 80, 0.12);
  border-radius: 9.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 9.5px;
  color: var(--gold);
  font-size: 18px;
}

.adv-title {
  font-size: 12.3px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.adv-desc {
  font-size: 11.3px;
  color: var(--text-muted);
  line-height: 1.45;
}

.steps-head {
  text-align: center;
  margin-bottom: 1.4rem;
}

.steps-head .section-desc {
  margin: 0 auto;
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 0.5rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(200, 168, 80, 0.4);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-num {
  grid-column: 2;
  grid-row: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--bg-primary);
  border: 2px solid rgba(200, 168, 80, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
  justify-self: center;
}

.timeline-text {
  font-size: 12.3px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.timeline-item:nth-child(odd) .timeline-text {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  padding-right: 0.25rem;
}

.timeline-item:nth-child(even) .timeline-text {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
  padding-left: 0.25rem;
}

.consult-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

#steps {
  border-bottom: none;
}

#laws {
  border-bottom: none;
  text-align: center;
}

#laws .laws-row {
  justify-content: center;
}

#laws .section-desc {
  margin-left: auto;
  margin-right: auto;
}

#consult {
  text-align: center;
}

#consult .section-desc {
  margin-left: auto;
  margin-right: auto;
}

#consult .consult-form {
  text-align: left;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 12.3px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.optional {
  color: var(--text-faint);
  font-weight: 400;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7.5px;
  padding: 9.5px 11.3px;
  color: #fff;
  font-family: inherit;
  font-size: 13.2px;
}

.consult-form input:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: rgba(200, 168, 80, 0.5);
}

.consult-form textarea {
  resize: vertical;
  min-height: 96px;
}

.form-consent {
  font-size: 10.8px;
  color: var(--text-faint);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.law-pill-link {
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.law-pill-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 168, 80, 0.3);
}

.faq-contact {
  margin-top: 1.4rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9.5px;
  text-align: center;
}

.faq-contact-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}

.faq-contact-desc {
  font-size: 12.3px;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.faq-phones {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.faq-phones a {
  color: var(--gold);
  font-size: 13.2px;
  font-weight: 500;
  text-decoration: none;
}

.faq-socials {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  align-items: start;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-wrap {
  border-radius: 9.5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.map-frame {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-link {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 11.3px;
  color: var(--gold);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-link:hover {
  background: rgba(255, 255, 255, 0.04);
}

.phone-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(5rem, calc(env(safe-area-inset-bottom) + 4rem));
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: var(--bg-primary);
  text-decoration: none;
  font-size: 11.8px;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.phone-float:hover {
  background: var(--gold-hover);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9.5px;
  padding: 1rem;
}

.contact-label {
  font-size: 10.3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-value {
  display: block;
  font-size: 13.2px;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
}

.contact-value:hover {
  color: var(--gold);
}

.contact-value-sm {
  font-size: 11.8px;
  color: var(--text-muted);
}

.video-placeholder-sm {
  margin-top: 0.9rem;
  padding: 1.4rem 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--page-max);
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding: 0.9rem 1.25rem;
  padding-bottom: max(0.9rem, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  flex: 1;
  font-size: 11.3px;
  color: var(--text-muted);
  line-height: 1.45;
}

.cookie-btn {
  flex-shrink: 0;
  padding: 7px 14px;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    padding: 0.4rem 0 0.75rem;
    max-height: calc(100dvh - 52.7px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    display: flex;
    z-index: 101;
    box-shadow: 0 7.5px 22.5px rgba(0, 0, 0, 0.25);
  }

  .nav-link {
    height: auto;
    min-height: 44px;
    padding: 11.3px 2rem;
    border-bottom: none;
    border-left: 2px solid transparent;
  }

  .nav-link:hover,
  .nav-link.act {
    border-left-color: var(--gold);
    border-bottom-color: transparent;
  }

  .nav-link-phone,
  .nav-link-cta {
    display: flex;
  }

  .burger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2.4rem 1.5rem;
    gap: 1.75rem;
  }

  .cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .svo-banner {
    flex-wrap: wrap;
  }

  .consult-banner {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .svo-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .laws-row {
    flex-direction: column;
  }

  .law-pill {
    width: 100%;
  }

  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .elig-grid {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    left: 20px;
    top: 20px;
    bottom: 20px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 0.75rem;
  }

  .timeline-num {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-item:nth-child(odd) .timeline-text,
  .timeline-item:nth-child(even) .timeline-text {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .hero {
    padding: 2rem 1.25rem;
  }

  .section {
    padding: 2rem 1.25rem;
  }

  .hero-title {
    font-size: 22px;
  }

  .sec-title {
    font-size: 17px;
  }

  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn-gold,
  .hero-btns .btn-ghost-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-phone-card {
    flex-wrap: wrap;
  }

  .hero-phone-card .btn-gold {
    margin-left: 0;
    width: 100%;
    text-align: center;
    min-height: 44px;
  }

  .svo-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .consult-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.04rem;
  }

  .consult-banner-title {
    max-width: none;
  }

  .consult-banner-icon {
    width: 83px;
    height: 83px;
    font-size: 37px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 1.4rem 1.25rem;
    padding-bottom: max(1.4rem, env(safe-area-inset-bottom));
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.25rem;
  }

  .footer-links {
    justify-content: center;
  }

  .section .btn-gold {
    width: 100%;
    min-height: 44px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 12px;
    gap: 7px;
  }

  .logo-box {
    width: 28px;
    height: 28px;
  }

  .hero-title {
    font-size: 19px;
  }

  .hero-sub,
  .section-desc {
    font-size: 12.5px;
  }

  .hero {
    padding: 1.75rem 1rem;
  }

  .section {
    padding: 1.75rem 1rem;
    scroll-margin-top: 58px;
  }

  .nav-right .nav-cta {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cat-card {
    padding: 0.75rem 0.5rem;
  }

  .cat-name {
    font-size: 10.5px;
  }

  .stat-num {
    font-size: 20px;
  }

  .svo-title {
    font-size: 14px;
  }

  .svo-desc {
    font-size: 11.5px;
  }

  .law-pill {
    flex-wrap: wrap;
    padding: 0.75rem;
  }

  .law-pill-title {
    font-size: 11.5px;
  }

  .faq-q {
    font-size: 12.5px;
  }

  .video-placeholder {
    padding: 1.75rem 1rem;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 17px;
  }

  .cats-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 10px;
    padding: 3px 9px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .nav-links {
    max-height: calc(100dvh - 48px);
  }
}

@media (hover: none) {
  .cat-card:hover,
  .stat-card:hover,
  .btn-gold:hover,
  .btn-ghost:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Сброс обёртки Tilda — вставьте в Настройки сайта → Дополнительно → CSS */
#allrecords {
  padding-top: 0 !important;
}
.t-records {
  opacity: 1 !important;
}
.t-records__descr {
  display: none !important;
}
.t-body {
  margin: 0;
}
.t-container,
.t-container_100,
.t-container_flex {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.t123 .t-container,
.t123 .t-width,
.t123 .t-width_100 {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}
.t123__wrapper {
  padding: 0 !important;
}
.uc-goszhsk .site {
  width: 100%;
}

/* Tilda красит ссылки в оранжевый — возвращаем наши цвета */
#allrecords .site a.btn-gold,
#allrecords .site a.btn-gold:link,
#allrecords .site a.btn-gold:visited,
#allrecords .site a.btn-gold:hover,
#allrecords .site a.btn-gold:active,
#allrecords .site a.btn-gold.btn-ghost-link,
#allrecords .site button.btn-gold,
#allrecords .site button.btn-gold:hover,
#allrecords .site button.btn-gold:active,
#allrecords .site a.faq-btn,
#allrecords .site a.faq-btn:hover {
  color: #132618 !important;
  background-color: #c8a850 !important;
  text-decoration: none !important;
  border-color: transparent !important;
}

.site a.btn-gold,
.site a.btn-gold:link,
.site a.btn-gold:visited,
.site a.btn-gold:hover,
.site a.btn-gold:active,
.site button.btn-gold,
.site button.btn-gold:hover,
.site button.btn-gold:active {
  color: #132618 !important;
  background-color: #c8a850 !important;
  text-decoration: none !important;
}

.site .test-consent a,
.site .test-consent a:link,
.site .test-consent a:visited,
.site .test-consent a:hover {
  color: #c8a850 !important;
}

.site a.btn-ghost-link,
.site a.btn-ghost-link:link,
.site a.btn-ghost-link:visited,
.site a.btn-ghost-link:hover {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
}

.site .footer-link,
.site .footer-link:link,
.site .footer-link:visited {
  color: rgba(255, 255, 255, 0.55) !important;
}

.site .footer-link:hover {
  color: #c8a850 !important;
}

.site .footer-contact,
.site .footer-contact:link,
.site .footer-contact:visited {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
}

.site .footer-contact:hover {
  color: #c8a850 !important;
}

.site a.social-btn,
.site a.social-btn:link,
.site a.social-btn:visited {
  color: rgba(255, 255, 255, 0.5) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.site a.social-btn:hover {
  color: #c8a850 !important;
  background-color: rgba(200, 168, 80, 0.12) !important;
}

.site button.faq-link-btn,
.site button.faq-link-btn:hover {
  color: #c8a850 !important;
  background: transparent !important;
}

.site .map-link,
.site .test-home-link,
.site .faq-link-btn,
.site .inline-link {
  color: #c8a850 !important;
}

.site .phone-float,
.site .phone-float:link,
.site .phone-float:visited {
  color: #132618 !important;
}

#gw-chat-root,
#gw-chat-toggle,
#gw-chat-panel,
#gw-consult-overlay {
  z-index: 999999 !important;
  pointer-events: auto !important;
}

#gw-chat-panel.open {
  display: flex !important;
}

#gw-chat-toggle {
  display: flex !important;
  cursor: pointer !important;
}

#gw-chat-close,
#gw-chat-clear,
#gw-chat-send {
  pointer-events: auto !important;
  cursor: pointer !important;
}

#allrecords,
.t-records,
.t-body {
  pointer-events: auto !important;
}

.t123,
.t123__wrapper {
  pointer-events: auto !important;
}

/* === Шапка и навигация: Tilda красит ссылки в оранжевый === */
#allrecords .site .nav a.logo,
#allrecords .site .nav a.logo:link,
#allrecords .site .nav a.logo:visited,
#allrecords .site .nav a.logo:hover,
#allrecords .site .nav a.logo:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

#allrecords .site .logo-box {
  background-color: #c8a850 !important;
}

#allrecords .site .logo-box i {
  color: #132618 !important;
}

#allrecords .site .nav a.nav-link,
#allrecords .site .nav a.nav-link:link,
#allrecords .site .nav a.nav-link:visited {
  color: rgba(255, 255, 255, 0.65) !important;
  background: transparent !important;
  text-decoration: none !important;
}

#allrecords .site .nav a.nav-link:hover,
#allrecords .site .nav a.nav-link.act,
#allrecords .site .nav a.nav-link.act:link,
#allrecords .site .nav a.nav-link.act:visited,
#allrecords .site .nav a.nav-link.act:hover {
  color: #ffffff !important;
  border-bottom-color: #c8a850 !important;
}

#allrecords .site .nav a.nav-link-phone,
#allrecords .site .nav a.nav-link-phone:link,
#allrecords .site .nav a.nav-link-phone:visited {
  color: #c8a850 !important;
}

#allrecords .site a.nav-phone,
#allrecords .site a.nav-phone:link,
#allrecords .site a.nav-phone:visited,
#allrecords .site a.nav-phone:hover {
  color: #c8a850 !important;
  text-decoration: none !important;
}

#allrecords .site button.nav-cta,
#allrecords .site button.nav-cta:hover,
#allrecords .site button.nav-cta:active,
#allrecords .site button.nav-link-cta,
#allrecords .site button.nav-link-cta:hover,
#allrecords .site button.nav-link-cta:active {
  color: #132618 !important;
  background-color: #c8a850 !important;
  border: none !important;
}

/* === Герой и акценты: золотой вместо оранжевого Tilda === */
#allrecords .site .hero-badge,
#allrecords .site .hero-badge i {
  color: #c8a850 !important;
  border-color: rgba(200, 168, 80, 0.3) !important;
  background-color: rgba(200, 168, 80, 0.15) !important;
}

#allrecords .site .hero-title {
  color: #ffffff !important;
}

#allrecords .site .hero-title em {
  color: #c8a850 !important;
  font-style: normal !important;
}

#allrecords .site .sec-label,
#allrecords .site .footer-col-title,
#allrecords .site .stat-value,
#allrecords .site .cat-label,
#allrecords .site .step-num,
#allrecords .site .news-date,
#allrecords .site .contact-label,
#allrecords .site .faq-link-btn,
#allrecords .site .timeline-year {
  color: #c8a850 !important;
}

#allrecords .site .hero-sub,
#allrecords .site .section-desc,
#allrecords .site .footer-text,
#allrecords .site .footer-tagline,
#allrecords .site .footer-note {
  color: inherit;
}

#allrecords .site .hero-sub strong {
  color: #ffffff !important;
}

/* Ссылки в тексте — золотые, не оранжевые */
#allrecords .site a.inline-link,
#allrecords .site a.inline-link:link,
#allrecords .site a.inline-link:visited,
#allrecords .site a.inline-link:hover {
  color: #c8a850 !important;
}

/* Кнопки-призраки */
#allrecords .site a.btn-ghost,
#allrecords .site a.btn-ghost:link,
#allrecords .site button.btn-ghost {
  color: rgba(255, 255, 255, 0.75) !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}


body,
.t-body,
#allrecords,
#allrecords .t-records {
  background: #0a1610 !important;
  color: #fff !important;
}

.t123,
.t123__wrapper,
.t123 .t-container,
.t123 .t-width,
.t123 .t-width_100 {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

#allrecords {
  padding-top: 0 !important;
}

.t-records {
  opacity: 1 !important;
}

.t-container,
.t-container_100,
.t-container_flex {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.site {
  max-width: 1054px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  zoom: 1.15 !important;
}


/* Eligibility test — тёмно-зелёная тема ГОСЖСК */
.test-page.site {
  background: #132618;
  min-height: 100vh;
}

.test-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.test-main {
  flex: 1;
  padding: 2rem 1.25rem 3rem;
}

.test-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.test-intro-title {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.test-intro-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 32rem;
  margin: 0 auto;
}

.test-page .test-wizard {
  max-width: 640px;
  margin: 0 auto;
  background: #1e3d28;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11.3px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.test-page .test-wizard-header {
  background: #132618;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem 1rem 0;
}

.test-page .test-wizard-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.test-page .test-wizard-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
}

.test-page .test-wizard-heading i {
  color: #c8a850;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.test-page .test-wizard-step {
  font-size: 13px;
  color: #c8a850;
  font-weight: 500;
  flex-shrink: 0;
}

.test-page .test-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.test-page .test-progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, #c8a850, #d4b865);
  transition: width 0.25s ease;
}

.test-page .test-wizard-body {
  padding: 1.25rem 1rem 1rem;
  background: #1e3d28;
}

.test-page .test-question {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: #fff;
}

.test-page .test-consent {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.test-page .test-consent a {
  color: #c8a850;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.test-page .test-consent a:hover {
  color: #d4b865;
}

.test-page .test-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 0.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 168, 80, 0.35) transparent;
}

.test-page .test-options::-webkit-scrollbar {
  width: 5px;
}

.test-page .test-options::-webkit-scrollbar-thumb {
  background: rgba(200, 168, 80, 0.35);
  border-radius: 4px;
}

.test-page .test-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.4;
  color: #fff;
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9.5px;
  transition: background 0.2s, border-color 0.2s;
}

.test-page .test-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 168, 80, 0.3);
}

.test-page .test-option:has(input:checked) {
  background: rgba(200, 168, 80, 0.12);
  border-color: rgba(200, 168, 80, 0.5);
}

.test-page .test-option input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #c8a850;
  width: 15px;
  height: 15px;
}

.test-page .test-other-input {
  width: 100%;
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9.5px;
  padding: 0.6rem 0.75rem;
  font-size: 13px;
  font-family: inherit;
  display: none;
  background: #132618;
  color: #fff;
  outline: none;
}

.test-page .test-other-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.test-page .test-other-input:focus {
  border-color: rgba(200, 168, 80, 0.55);
  box-shadow: 0 0 0 2px rgba(200, 168, 80, 0.15);
}

.test-page .test-other-input.show {
  display: block;
}

.test-page .test-wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #1e3d28;
}

.test-page .test-back {
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  padding: 0.35rem 0;
  transition: color 0.15s;
}

.test-page .test-back:hover {
  color: #c8a850;
}

.test-page .test-back.hidden {
  visibility: hidden;
}

.test-page .test-next {
  border: none;
  border-radius: 7.5px;
  padding: 10.3px 20.8px;
  background: #c8a850;
  color: #132618;
  font-size: 13.2px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
}

.test-page .test-next:hover:not(:disabled) {
  background: #d4b865;
  transform: translateY(-1.9px);
  box-shadow: 0 7.5px 18.8px rgba(200, 168, 80, 0.3);
}

.test-page .test-next:active:not(:disabled) {
  transform: scale(0.97);
  box-shadow: none;
}

.test-page .test-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.test-page .test-result-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 1rem;
  color: #fff;
}

.test-page .test-result-fail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.test-page .test-phone-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9.5px;
  background: #132618;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.25rem;
}

.test-page .test-phone-field:focus-within {
  border-color: rgba(200, 168, 80, 0.55);
  box-shadow: 0 0 0 2px rgba(200, 168, 80, 0.15);
}

.test-page .test-phone-prefix {
  font-size: 14px;
  color: #c8a850;
  white-space: nowrap;
}

.test-page .test-phone-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
  background: transparent;
  color: #fff;
}

.test-page .test-phone-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.test-page .test-error {
  display: none;
  font-size: 12px;
  color: #ffb4ab;
  background: rgba(180, 35, 24, 0.2);
  border: 1px solid rgba(254, 205, 202, 0.25);
  border-radius: 9.5px;
  padding: 0.5rem 0.65rem;
  margin-top: 0.75rem;
}

.test-page .test-error.show {
  display: block;
}

.test-page .test-step-panel {
  display: none;
}

.test-page .test-step-panel.active {
  display: block;
}

.test-page .test-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  color: #c8a850;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}

.test-page .test-home-link:hover {
  color: #d4b865;
}

@media (max-width: 480px) {
  .test-page .test-intro-title {
    font-size: 19px;
  }

  .test-page .test-question {
    font-size: 16px;
  }

  .test-page .test-options {
    max-height: 280px;
  }
}
