:root {
  --bg: #ffffff;
  --bg-soft: #f7f8f9;
  --card: #ffffff;
  --line: #d9dee4;
  --text: #1b2430;
  --text-dim: #5d6a79;
  --accent: #b88b2f;
  --accent-strong: #8e6616;
  --danger: #a82d2d;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.5;
}

.site-header,
.section,
.site-footer {
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(184, 139, 47, 0.25);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 2.1rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(130deg, var(--accent), var(--accent-strong));
}

.brand-text {
  font-family: "Unbounded", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.section {
  margin-top: 4rem;
}

.hero-header {
  background: url("../img/fon.jpg") center / cover no-repeat;
  margin-top: 0;
  padding: 3rem 2.5rem;
  width: 100%;
  color: #ffffff;
}

.hero-header .kicker {
  margin-top: 0;
}

.hero-header h1 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-header .kicker,
.hero-header h1,
.hero-header .hero-text,
.hero-header .hero-benefits,
.hero-header .hero-actions {
  margin-left: 5cm;
}

.hero-header .kicker {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-description {
  margin-top: 1cm;
  margin-left: 5cm;
  margin-right: 2.5rem;
  max-width: 120ch;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text);
}

.hero-payment-note {
  margin-top: 2rem;
  margin-left: 5cm;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  margin-right: 2.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.hero-payment-amount {
  color: #b08761;
}

.hero-note {
  margin-top: 1rem;
  margin-left: 5cm;
  margin-right: 2.5rem;
  font-size: 1.25rem;
  color: var(--text);
}

.consult-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 1.5rem 5cm 0 4cm;
}

.consult-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  flex: 1;
}

.consult-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.consult-checklist-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.consult-checklist li span {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.5;
  word-break: break-word;
}

.consult-form-card {
  flex-shrink: 0;
  width: 600px;
  background: #ffffff;
  border-radius: 20px;
  padding: 3.5rem 3.2rem 3.2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.consult-form-title {
  margin: 0 0 0.5rem;
  font-size: 1.7rem;
  color: #1a1a1a;
  text-align: center;
}

.consult-form-subtitle {
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
  color: #666;
  text-align: center;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.consult-form input {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: inherit;
  background: #f7f7f7;
  color: #1a1a1a;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.consult-form input:focus {
  outline: none;
  border-color: #b08761;
}

.consult-form-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.15rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 0.5rem;
  background: #b08761;
  color: #ffffff;
}

.consult-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: inherit;
  background: #f7f7f7;
  color: #1a1a1a;
  box-sizing: border-box;
  resize: vertical;
  transition: border-color 0.2s;
}

.consult-form textarea:focus {
  outline: none;
  border-color: #b08761;
}

.question-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.question-popup.active {
  display: flex;
}

.question-popup-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  width: 460px;
  max-width: 90vw;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  animation: popupIn 0.25s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.question-popup-content h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: #1a1a1a;
  text-align: center;
}

.question-popup-content textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  font-size: 1.05rem;
  font-family: inherit;
  background: #f7f7f7;
  color: #1a1a1a;
  box-sizing: border-box;
  resize: vertical;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.question-popup-content textarea:focus {
  outline: none;
  border-color: #b08761;
}

.question-popup-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.question-popup-close:hover {
  color: #333;
}

.hero-benefits-section {
  margin-top: 3.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.hero-benefits-section .cards.two {
  margin-left: 4cm;
  margin-right: 2.5rem;
  align-items: stretch;
}

.hero-benefits-section .card.card-with-icon {
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.hero-benefits-section .card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero {
  margin-top: 4.5rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(27, 36, 48, 0.12);
  backdrop-filter: blur(2px);
}

.kicker {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Unbounded", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.hero-header .kicker {
  color: #ffffff;
}

.hero-header .hero-text {
  color: #ffffff;
}
.hero-header .hero-text:last-of-type {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.55;
}
.hero-header .hero-text:first-of-type {
  vertical-align: middle;
  color: #ffffff;
  font-size: 25px;
  font-family: "STOLZL", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
}

.hero-text {
  margin: 1.2rem 0 0;
  max-width: 58ch;
  color: var(--text-dim);
  font-size: 1.06rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: #ffffff;
}

.hero-actions .btn,
.site-header .btn-ghost[href="#contact"] {
  border-radius: 12px;
}

.hero-actions .btn-primary {
  background: #b08761;
  border-color: #b08761;
  color: #ffffff;
}

.hero-actions .btn-ghost {
  background: transparent;
  border-color: #b08761;
  color: #b08761;
}

.hero-metrics {
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hero-header .hero-metrics li {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  color: #ffffff;
}

.hero-metrics li {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 1rem;
}

.metric-value {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 1.45rem;
  color: var(--accent);
}

.hero-header .metric-value {
  color: #ffffff;
}

.metric-label {
  display: block;
  color: var(--text-dim);
  margin-top: 0.35rem;
}

.hero-header .metric-label {
  color: rgba(255, 255, 255, 0.9);
}

.section-head {
  display: grid;
  gap: 0.5rem;
}

.cards {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
}

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

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

.card,
.panel,
.faq details,
.form,
.timeline li {
  border: none;
  background: transparent;
}

.card,
.panel,
.timeline li,
.faq details {
  padding: 1rem 1.1rem;
}

.card p,
.panel p,
.timeline p,
.faq p {
  color: var(--text);
}

.card-with-icon {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card-content p {
  margin: 0;
  font-size: 0.95rem;
}

.intro-section {
  margin-top: 3.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.intro-container {
  max-width: 100%;
}

.intro-title {
  font-size: 1.8rem;
  margin-left: 5cm;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  color: var(--text);
}

.intro-highlight {
  color: #b08761;
}

.intro-descr {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
  margin-left: 5cm;
  margin-right: 2.5rem;
}

.bonus-highlight-section {
  margin-top: 4rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background: #0f3b2d;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.tactical-pack-section {
  background: #0f3b2d;
  padding: 1.5rem 2.5rem 2.5rem;
  margin-top: 3rem;
}

.tactical-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: var(--max);
  margin: 2cm auto 0;
}

.tactical-pack-section .hero-payment-note,
.tactical-pack-section .hero-note {
  color: #ffffff;
}

.tactical-pack-section .hero-payment-note,
.tactical-pack-section .hero-note {
  margin-left: 4cm;
}

.tactical-pack-section .hero-note {
  margin-bottom: 1.1rem;
}

.requirements-list {
  max-width: var(--max);
  margin: 0 2.5rem 1.25rem 4cm;
  padding: 0;
  list-style: none;
}

.requirements-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.6;
  font-size: 1.15rem;
  font-weight: 700;
}

.requirements-list li::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url("https://static.tildacdn.com/tild3963-3733-4864-b161-323033393966/_1.svg") center / contain no-repeat;
}

.requirements-question-action {
  margin: 1.3rem 2.5rem 3rem 4cm;
}

.requirements-question-action .btn {
  border-radius: 12px;
  padding: 1.2rem 4rem;
  font-size: 1.2rem;
}

.requirements-question-action .btn-primary {
  background: #b08761;
  border-color: #b08761;
  color: #ffffff;
}

.requirements-question-action .btn-primary:hover {
  background: #8e6c4d;
  border-color: #8e6c4d;
}

.documents-grid {
  max-width: var(--max);
  margin: 1.4rem 2.5rem 0 5cm;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.document-card {
  background: transparent;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 250px;
}

.document-card img {
  width: 100%;
  max-width: 160px;
  height: 140px;
  object-fit: contain;
}

.document-card h3 {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.documents-contact-action {
  margin: 1rem 2.5rem 3rem 5cm;
}

.documents-contact-action .btn {
  border-radius: 12px;
  padding: 1.2rem 4rem;
  font-size: 1.2rem;
}

.documents-contact-action .btn-primary {
  background: #b08761;
  border-color: #b08761;
  color: #ffffff;
}

.documents-contact-action .btn-primary:hover {
  background: #8e6c4d;
  border-color: #8e6c4d;
}

.tactical-pack-section .t1106 {
  margin: 1.4rem 0 0;
}

.tactical-pack-section .t1106 .t-container {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tactical-pack-section .t1106__col {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.tactical-pack-section .t1106__numberwrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.2rem;
}

.tactical-pack-section .t1106__number {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tactical-pack-section .t1106__textwrapper {
  flex: 1;
}

.tactical-pack-section .t1106__title {
  margin-bottom: 0.35rem;
}

.tactical-pack-section .t1106__title,
.tactical-pack-section .t1106__text,
.tactical-pack-section .t1106__digit {
  color: #ffffff;
}

.tactical-pack-section .t1106__digit {
  font-weight: 800;
  font-size: 1.1rem;
}

.tactical-pack-section .t1106__line,
.tactical-pack-section .t1106__line_mobile {
  background: rgba(255, 255, 255, 0.35);
}

.requirements-section {
  padding-top: 2rem;
}

.requirements-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: start;
}

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

.requirements-image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.requirements-image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

.tactical-pack-col h3 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
}

.tactical-pack-col ul {
  margin: 0;
  padding-left: 1.2rem;
}

.tactical-pack-col li {
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.training-cards-section {
  margin-top: 1.6rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.training-cards-section .t490__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-left: 4cm;
  margin-right: 2.5rem;
}

.training-cards-section .t-card__col {
  background: transparent;
  padding: 1rem 1.1rem;
  display: flex;
  gap: 1rem;
}

.training-cards-section .t490__bgimg {
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.training-cards-section .t-card__title {
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.training-cards-section .t-card__descr {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.bonus-highlight-section .tn-atom {
  margin: 0 0 2rem;
  color: #ffffff;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
}

.bonus-lead {
  margin: -0.8rem 0 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.5;
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bonus-card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}

.bonus-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.5rem 0;
  line-height: 1.2;
}

.bonus-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.benefits-support-section {
  margin-top: 4rem;
}

.benefits-support-inner {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.benefits-support-inner .tn-atom {
  margin: 0;
  margin-left: 5cm;
  color: var(--text);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
}

.benefits-support-text {
  margin-top: 0.9rem;
  margin-left: 5cm;
  margin-right: 2.5rem;
  color: var(--text-dim);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
}

.benefits-tabs-section {
  margin-top: 1.4rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.benefits-tabs-section .t-container {
  margin-left: 4cm;
  margin-right: 2.5rem;
}

.benefits-panels .t490__container {
  margin-left: 4cm;
  margin-right: 2.5rem;
}

.benefits-tabs-section .t397__wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  border-bottom: 1px solid var(--line);
}

.benefits-tabs-section .t397__tab {
  flex: 1;
  border-bottom: 3px solid transparent !important;
}

.benefits-tabs-section .t397__title {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.benefits-tabs-section .t397__tab_active .t397__title {
  color: #b08761;
}

.benefits-tabs-section .t397__tab_active {
  border-bottom-color: #b08761 !important;
}

.benefits-tabs-section .t397__wrapper_mobile {
  display: none;
}

.benefits-tabs-section .t397__select {
  border: 1px solid #b08761;
  color: #b08761;
  font-weight: 700;
}

.benefits-tabs-section .t397__select option:checked {
  background: rgba(176, 135, 97, 0.15);
  color: #b08761;
}

.benefits-tabs-section .t397__separator_mobile,
.benefits-tabs-section .t397__firefoxfix {
  display: none;
}

.benefits-panels {
  margin-top: 1.1rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.quiz-heading-section {
  padding: 3rem 2.5rem 2rem;
}

.quiz-heading-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.quiz-heading-section .tn-atom {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--text);
  text-align: left;
  margin-left: 5cm;
}

.quiz-heading-lead {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim);
  text-align: left;
  margin-top: 0.9rem;
  margin-left: 5cm;
  margin-right: 2.5rem;
}

/* ── Quiz Section ─────────────────────────── */
.quiz-section {
  padding: 2rem 2.5rem 3rem;
}

.quiz-container {
  max-width: var(--max);
  margin: 0 auto;
}

.quiz-step {
  display: none;
}

.quiz-step.quiz-step_active {
  display: block;
}

.t-input-group__header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.t-input-group__title-container {
  flex: 1;
  min-width: 200px;
}

.t-input-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.t-input-subtitle {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.t-quiz__consultant {
  flex-shrink: 0;
  max-width: 280px;
}

.t-quiz__consultant__msg-bubble {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.2rem;
}

.t-quiz__consultant__msg {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.t-radio__wrapper_button {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.t-radio__wrapper_button .t-radio__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid var(--line);
  border-radius: 4px;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  font-size: 0.9rem;
  color: var(--text);
  flex: 1 1 calc(50% - 0.375rem);
}

.t-radio__wrapper_button .t-radio__item:hover {
  border-color: var(--accent);
}

.t-radio__wrapper_button .t-radio__item:has(input:checked) {
  border-color: var(--accent);
  background: rgba(175, 134, 96, 0.08);
}

.t-radio__wrapper_button .t-radio input[type="radio"] {
  display: none;
}

.t-radio__indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #cacaca;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.t-radio__wrapper_button .t-radio__item:has(input:checked) .t-radio__indicator {
  border-color: var(--accent);
}

.t-radio__wrapper_button
  .t-radio__item:has(input:checked)
  .t-radio__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.t-input-error {
  color: #e05555;
  font-size: 0.85rem;
  min-height: 1.2em;
  margin-bottom: 0.5rem;
}

.quiz-step-nav {
  margin-top: 1rem;
}

.benefits-tab-panel {
  display: none;
}

.benefits-tab-panel.is-active {
  display: block;
}

.benefits-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefits-card {
  background: transparent;
  padding: 1rem 1.1rem;
}

.benefits-card-icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
}

.benefits-card-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  line-height: 1.25;
}

.benefits-card-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--text);
}

.split {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr;
}

.panel-accent {
  border-color: rgba(184, 139, 47, 0.4);
  background: #fff8ec;
}

.panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.panel ul li {
  position: relative;
  padding-left: 1.3rem;
  padding-top: 0;
  line-height: 1.6;
}

.panel ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.08rem;
  color: #b08761;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
}

.timeline {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline span {
  font-family: "Unbounded", sans-serif;
  color: var(--accent-strong);
  font-size: 1.05rem;
}

.faq {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.8rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-bottom: 0;
}

.cta {
  margin-bottom: 4rem;
}

.form {
  margin-top: 1.3rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text-dim);
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  padding: 0.68rem 0.75rem;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.92rem;
  padding: 1.2rem 0 2rem;
}

.payment-reasons {
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: #fff8ec;
  padding: 1rem 1.1rem;
}

.payment-reasons h3 {
  margin-bottom: 0.7rem;
}

.payment-reasons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.payment-reasons ul li {
  position: relative;
  padding-left: 1.3rem;
  padding-top: 0;
  line-height: 1.6;
}

.payment-reasons ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.08rem;
  color: #b08761;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-benefits {
  margin-top: 1.5rem;
}

.hero-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.hero-benefits li {
  position: relative;
  padding-left: 1.8rem;
  padding-top: 0;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.08rem;
}

.hero-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #b08761;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
}

.bonus-rewards {
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: #fff8ec;
  padding: 1rem 1.1rem;
}

.bonus-rewards h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.bonus-rewards p {
  margin: 0 0 1rem 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.bonus-rewards ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.bonus-rewards li {
  position: relative;
  padding-left: 1.3rem;
  padding-top: 0;
  line-height: 1.6;
}

.bonus-rewards li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.08rem;
  color: #b08761;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
  }

  .cards.three,
  .cards.two,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-header .kicker,
  .hero-header h1,
  .hero-header .hero-text,
  .hero-header .hero-benefits,
  .hero-header .hero-actions {
    margin-left: 0;
  }

  .hero-description {
    margin-top: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-payment-note {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-benefits-section {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-benefits-section .cards.two {
    margin-left: 0;
    margin-right: 0;
  }

  .intro-section {
    padding-left: 0;
    padding-right: 0;
  }

  .bonus-highlight-section {
    padding-left: 0;
    padding-right: 0;
  }

  .training-cards-section .t490__container {
    margin-left: 0;
    margin-right: 0;
  }

  .benefits-support-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .benefits-tabs-section {
    padding-left: 0;
    padding-right: 0;
  }

  .benefits-tabs-section .t-container {
    margin-left: 0;
    margin-right: 0;
  }

  .benefits-panels {
    padding-left: 0;
    padding-right: 0;
  }

  .benefits-panels .t490__container {
    margin-left: 0;
    margin-right: 0;
  }

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

  .bonus-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-note {
    margin-left: 0;
    margin-right: 0;
  }

  .consult-checklist {
    margin-left: 0;
  }

  .consult-row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .consult-form-card {
    width: 100%;
  }

  .intro-title {
    margin-left: 0;
  }

  .intro-descr {
    margin-left: 0;
    margin-right: 0;
  }

  .benefits-support-inner .tn-atom {
    margin-left: 0;
  }

  .benefits-support-text {
    margin-left: 0;
    margin-right: 0;
  }

  .quiz-heading-section .tn-atom {
    margin-left: 0;
  }

  .quiz-heading-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .tactical-pack-section .hero-payment-note,
  .tactical-pack-section .hero-note {
    margin-left: 0;
  }

  .requirements-list {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .requirements-question-action {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .documents-grid {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .documents-contact-action {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }
}

@media (max-width: 640px) {
  .section,
  .site-footer {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .site-header {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .hero-header {
    padding: 2rem 1.2rem 3rem;
  }

  .hero-payment-note {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .hero-note {
    font-size: 1rem;
  }

  .consult-checklist li span {
    font-size: 1rem;
  }

  .consult-row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .consult-form-card {
    width: 100%;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.88rem;
  }

  .card-icon {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    margin-top: 3rem;
  }

  .kicker {
    font-size: 0.92rem;
  }

  .hero-header .hero-text:first-of-type {
    font-size: 20px;
    line-height: 1.15;
  }

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

  .intro-title {
    font-size: 1.4rem;
  }

  .intro-descr {
    font-size: 0.95rem;
  }

  .bonus-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bonus-card {
    padding: 1rem;
  }

  .bonus-card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .bonus-amount {
    font-size: 1rem;
  }

  .benefits-support-inner .tn-atom {
    line-height: 1.3 !important;
    font-size: 1.2rem;
  }

  .benefits-support-text {
    font-size: 0.95rem;
    line-height: 1.45 !important;
  }

  .benefits-tabs-section .t397__wrapper {
    display: none;
  }

  .benefits-tabs-section .t397__wrapper_mobile {
    display: block;
    margin-top: 0.4rem;
  }

  .benefits-tabs-section .t397__select {
    width: 100%;
    border: 1px solid var(--line);
    padding: 0.7rem 0.8rem;
    font: inherit;
    color: var(--text);
  }

  .benefits-cards-grid {
    grid-template-columns: 1fr;
  }

  .benefits-card-title {
    font-size: 1rem;
  }

  .benefits-card-desc {
    font-size: 0.92rem;
  }

  .bonus-highlight-section .tn-atom {
    margin-bottom: 1.4rem;
    line-height: 1.3 !important;
  }

  .bonus-lead {
    margin-top: -0.4rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
  }

  .quiz-section {
    padding: 1.5rem 1rem 2rem;
  }

  .tactical-pack-section {
    padding: 1.2rem 1rem 2rem;
  }

  .tactical-pack-grid {
    grid-template-columns: 1fr;
    margin: 1rem 0 0;
  }

  .requirements-list {
    margin-left: 0;
    margin-right: 0;
  }

  .requirements-question-action {
    margin: 1rem 0 0;
  }

  .documents-grid {
    margin: 1rem 0 0;
    grid-template-columns: 1fr;
  }

  .documents-contact-action {
    margin: 1rem 0 0;
  }

  .document-card {
    min-height: 220px;
  }

  .tactical-pack-section .t1106__digit {
    font-size: 1rem;
  }

  .tactical-pack-section .t1106 .t-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .requirements-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .requirements-image-wrap {
    justify-content: center;
  }

  .requirements-image {
    max-width: 320px;
  }

  .training-cards-section {
    padding-left: 0;
    padding-right: 0;
  }

  .training-cards-section .t490__container {
    grid-template-columns: 1fr;
  }

  .t-input-group__header {
    flex-direction: column;
  }

  .t-quiz__consultant {
    max-width: 100%;
    width: 100%;
  }

  .t-radio__wrapper_button .t-radio__item {
    flex: 1 1 100%;
  }
}
