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

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Cabin', sans-serif;
  background-color: #12101a;
  color: #FCFDFC;
}

.top_bar {
  background: linear-gradient(90deg, #1a1628 0%, #1e1530 60%, #162214 100%);
  border-bottom: 1px solid rgba(107, 182, 88, 0.18);
  padding: 8px 0;
}

.top_bar_pod {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top_contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top_link {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: #AED2A6;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.top_link:hover,
.top_link:focus {
  color: #6BB658;
  background-color: transparent;
  outline: none;
}

.top_link:focus {
  background-color: rgba(107, 182, 88, 0.1);
  border-radius: 6px;
}

.top_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top_icon svg {
  width: 14px;
  height: 14px;
  fill: #6BB658;
}

.top_badge {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: #FCFDFC;
  background: rgba(107, 182, 88, 0.15);
  border: 1px solid rgba(107, 182, 88, 0.3);
  border-radius: 20px;
  padding: 4px 16px;
  letter-spacing: 0.06em;
}

.site_hdr {
  background: linear-gradient(180deg, #1e1530 0%, #16122a 100%);
  border-bottom: 2px solid rgba(107, 182, 88, 0.25);
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  position: relative;
}

.hdr_deck {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.nav_left {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav_right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.logo_pod {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo_ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 21, 48, 0.95);
  border: 2px solid rgba(107, 182, 88, 0.4);
  box-shadow: 0 0 0 4px rgba(174, 210, 166, 0.08), 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo_ring:hover {
  box-shadow: 0 0 0 6px rgba(107, 182, 88, 0.15), 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.logo_ring img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.nav_link {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #AED2A6;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  position: relative;
}

.nav_link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 1px solid #6BB658;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.nav_link:hover::after,
.nav_link:focus::after {
  opacity: 1;
}

.nav_link:hover,
.nav_link:focus {
  color: #FCFDFC;
  background-color: rgba(107, 182, 88, 0.12);
  outline: none;
}

.nav_link:focus {
  background-color: rgba(107, 182, 88, 0.18);
}

.nav_link.active {
  color: #6BB658;
  border-color: rgba(107, 182, 88, 0.3);
}

@media (max-width: 992px) {
  .hdr_deck {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 24px;
    gap: 16px;
  }

  .nav_left,
  .nav_right {
    flex: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .logo_pod {
    width: 100%;
    justify-content: center;
  }

  .top_contact {
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .top_bar_pod {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .top_contact {
    flex-direction: column;
    gap: 8px;
  }

  .nav_link {
    font-size: 14px;
    padding: 8px 12px;
  }
}

.site_ftr {
  background: linear-gradient(180deg, #16122a 0%, #0e0c1a 100%);
  border-top: 2px solid rgba(107, 182, 88, 0.2);
  padding: 48px 0 24px;
}

.ftr_deck {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.ftr_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.ftr_brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.ftr_logo_ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 18, 42, 0.95);
  border: 1px solid rgba(107, 182, 88, 0.35);
  box-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.08);
}

.ftr_logo_ring img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand_name {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 21px;
  font-weight: 700;
  color: #FCFDFC;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.brand_tagline {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: #AED2A6;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.ftr_col_label {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #6BB658;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ftr_addr {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.addr_row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.addr_icon {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.addr_icon svg {
  width: 14px;
  height: 14px;
  fill: #6BB658;
}

.addr_text {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: #AED2A6;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

a.addr_text:hover,
a.addr_text:focus {
  color: #FCFDFC;
  outline: none;
}

a.addr_text:focus {
  background-color: rgba(107, 182, 88, 0.1);
  border-radius: 2px;
}

.ftr_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ftr_link {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: #AED2A6;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(174, 210, 166, 0.15);
  line-height: 1.35;
  transition: background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}

.ftr_link:hover,
.ftr_link:focus {
  background-color: rgba(107, 182, 88, 0.12);
  border-color: rgba(107, 182, 88, 0.4);
  color: #FCFDFC;
  outline: none;
}

.ftr_link:focus {
  background-color: rgba(107, 182, 88, 0.18);
}

.ftr_bottom {
  border-top: 1px solid rgba(107, 182, 88, 0.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copy_text {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: rgba(174, 210, 166, 0.6);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.copy_text span {
  color: #6BB658;
}

.ftr_pill_row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ftr_pill {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: rgba(174, 210, 166, 0.5);
  background: rgba(107, 182, 88, 0.06);
  border: 1px solid rgba(107, 182, 88, 0.12);
  border-radius: 20px;
  padding: 4px 16px;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .ftr_grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

@media (max-width: 576px) {
  .ftr_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ftr_brand {
    grid-column: auto;
  }

  .ftr_bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.consent_bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: none;
  justify-content: center;
  padding: 8px 16px;
  background: transparent;
  pointer-events: none;
}

.consent_card {
  background: linear-gradient(135deg, #1e1530 0%, #16122a 100%);
  border: 1px solid rgba(107, 182, 88, 0.35);
  border-radius: 12px;
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
  padding: 24px;
  max-width: 480px;
  width: 100%;
  pointer-events: all;
  transform: translateX(120%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.consent_card.open {
  transform: translateX(0);
}

.consent_desc {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: #AED2A6;
  line-height: 1.55;
  margin-bottom: 8px;
}

.consent_list {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: #AED2A6;
  line-height: 1.55;
  padding-left: 16px;
  margin-bottom: 16px;
}

.consent_list li {
  margin-bottom: 4px;
}

.consent_hed {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  color: #FCFDFC;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 8px;
}

.consent_btns {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.consent_btn {
  flex: 1;
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid rgba(107, 182, 88, 0.5);
  background: rgba(107, 182, 88, 0.15);
  color: #FCFDFC;
  letter-spacing: 0.04em;
  min-height: 44px;
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.consent_btn:hover,
.consent_btn:focus {
  background-color: rgba(107, 182, 88, 0.3);
  border-color: #6BB658;
  outline: none;
}

.consent_btn:focus {
  background-color: rgba(107, 182, 88, 0.35);
}

.consent_btn.prim {
  background: rgba(107, 182, 88, 0.35);
  border-color: #6BB658;
}

.consent_btn.prim:hover,
.consent_btn.prim:focus {
  background-color: rgba(107, 182, 88, 0.55);
}

.consent_toggle_row {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(107, 182, 88, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(107, 182, 88, 0.12);
}

.consent_toggle_row.vis {
  display: flex;
}

.toggle_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.toggle_label {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: #AED2A6;
  line-height: 1.35;
}

.toggle_switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle_switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle_track {
  position: absolute;
  inset: 0;
  background: rgba(174, 210, 166, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(107, 182, 88, 0.25);
  cursor: pointer;
  transition: background-color 0.45s ease-in-out;
}

.toggle_switch input:checked+.toggle_track {
  background: rgba(107, 182, 88, 0.5);
  border-color: #6BB658;
}

.toggle_thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #FCFDFC;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.toggle_switch input:checked~.toggle_thumb {
  transform: translateX(18px);
}

.consent_more_btn {
  background: none;
  border: none;
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: #6BB658;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.03em;
  text-decoration: underline;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.consent_more_btn:hover,
.consent_more_btn:focus {
  color: #AED2A6;
  outline: none;
  background-color: rgba(107, 182, 88, 0.08);
  border-radius: 2px;
}

.consent_policy {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: rgba(174, 210, 166, 0.5);
  line-height: 1.55;
  margin-top: 8px;
}

.consent_policy a {
  color: rgba(107, 182, 88, 0.7);
  text-decoration: underline;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.consent_policy a:hover,
.consent_policy a:focus {
  color: #6BB658;
  outline: none;
}

.terms-area {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #FCFDFC;
  background: #12101a;
  min-height: 100vh;
}

.terms-area h1 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #FCFDFC;
  margin-bottom: 24px;
  margin-top: 0;
}

.terms-area h2 {
  font-size: 38px;
  line-height: 1.35;
  color: #AED2A6;
  margin-top: 48px;
  margin-bottom: 16px;
}

.terms-area h3 {
  font-size: 28px;
  line-height: 1.35;
  color: #6BB658;
  margin-top: 48px;
  margin-bottom: 16px;
}

.terms-area h4 {
  font-size: 21px;
  line-height: 1.55;
  color: #AED2A6;
  margin-top: 24px;
  margin-bottom: 8px;
}

.terms-area h5 {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  margin-top: 24px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.terms-area h6 {
  font-size: 14px;
  line-height: 1.55;
  color: #6BB658;
  margin-top: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-area p {
  font-size: 17px;
  line-height: 1.8;
  color: #c8d4c6;
  margin-top: 0;
  margin-bottom: 16px;
}

.terms-area ul,
.terms-area ol {
  font-size: 17px;
  line-height: 1.8;
  color: #c8d4c6;
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 24px;
}

.terms-area ul {
  list-style: none;
  padding-left: 16px;
}

.terms-area ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.terms-area ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #6BB658;
}

.terms-area ol {
  list-style: decimal;
}

.terms-area ol li {
  padding-left: 8px;
  margin-bottom: 8px;
}

.terms-area ol li::marker {
  color: #6BB658;
  font-size: 14px;
}

.terms-area strong,
.terms-area b {
  color: #FCFDFC;
  font-weight: 700;
}

.terms-area a {
  color: #6BB658;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.terms-area a:hover {
  color: #AED2A6;
  text-decoration-color: #AED2A6;
}

.terms-area table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 17px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
}

.terms-area thead {
  background: #1e1a2e;
}

.terms-area thead th {
  font-size: 14px;
  line-height: 1.55;
  color: #6BB658;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #6BB658;
}

.terms-area tbody tr {
  border-bottom: 1px solid rgba(174, 210, 166, 0.12);
  transition: background 0.45s ease-in-out;
}

.terms-area tbody tr:last-child {
  border-bottom: none;
}

.terms-area tbody tr:hover {
  background: rgba(107, 182, 88, 0.06);
}

.terms-area td {
  padding: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: #c8d4c6;
  vertical-align: top;
}

.terms-area div {
  font-size: 17px;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .terms-area {
    padding: 48px 16px;
  }

  .terms-area h1 {
    font-size: 38px;
  }

  .terms-area h2 {
    font-size: 28px;
  }

  .terms-area h3 {
    font-size: 21px;
  }
}

@media (max-width: 576px) {
  .terms-area {
    padding: 24px 16px;
  }

  .terms-area h1 {
    font-size: 28px;
    line-height: 1.35;
  }

  .terms-area h2 {
    font-size: 21px;
  }

  .terms-area h3 {
    font-size: 17px;
  }

  .terms-area table {
    display: block;
    overflow-x: auto;
  }

  .terms-area p,
  .terms-area ul,
  .terms-area ol,
  .terms-area td {
    font-size: 14px;
  }
}

.lpd {
  background: #0d0f14;
  color: #FCFDFC;
  overflow-x: clip;
}

.lpd .top-band {
  background: linear-gradient(160deg, #1a2218 0%, #0d0f14 60%);
  padding: 48px 0 0;
  position: relative;
}

.lpd .top-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 40%, rgba(107, 182, 88, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.lpd .band-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.lpd .img-left,
.lpd .img-right {
  flex: 0 0 180px;
  width: 180px;
}

.lpd .img-left img,
.lpd .img-right img {
  width: 100%;
  border-radius: 12px;
  display: block;
  filter: saturate(0.6) hue-rotate(0deg) brightness(0.85);
  transition: filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.lpd .img-left img:hover,
.lpd .img-right img:hover {
  filter: saturate(1.1) brightness(1);
}

.lpd .img-right img {
  filter: saturate(0.5) brightness(0.8) sepia(0.3);
}

.lpd .img-right img:hover {
  filter: saturate(1) brightness(1) sepia(0);
}

.lpd .band-text {
  flex: 1 1 0;
  text-align: center;
  position: relative;
  padding: 24px 16px 48px;
}

.lpd .dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(107, 182, 88, 0.18) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  border-radius: 12px;
}

.lpd .cat-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6BB658;
  background: rgba(107, 182, 88, 0.10);
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 16px;
  position: relative;
}

.lpd .band-text h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0 0 16px;
  position: relative;
}

.lpd .band-text .sub-head {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 300;
  color: #AED2A6;
  margin: 0 0 24px;
  position: relative;
}

.lpd .meta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.lpd .meta-pill {
  font-size: 14px;
  color: #AED2A6;
  background: rgba(174, 210, 166, 0.08);
  border-radius: 6px;
  padding: 4px 16px;
  letter-spacing: 0.04em;
}

.lpd .divider-band {
  background: #6BB658;
  height: 4px;
  width: 100%;
}

.lpd .purchase-strip {
  background: #111618;
  border-bottom: 1px solid rgba(107, 182, 88, 0.15);
}

.lpd .purchase-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lpd .price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lpd .price-val {
  font-size: 38px;
  font-weight: 700;
  color: #6BB658;
  line-height: 1.1;
}

.lpd .price-note-txt {
  font-size: 14px;
  color: #AED2A6;
  line-height: 1.35;
}

.lpd .purchase-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  flex: 1 1 0;
}

.lpd .p-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lpd .p-meta-label {
  font-size: 14px;
  color: #AED2A6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lpd .p-meta-val {
  font-size: 17px;
  color: #FCFDFC;
  font-weight: 600;
}

.lpd .seats-warn {
  font-size: 14px;
  color: #6BB658;
  font-weight: 600;
}

.lpd .btn-enroll {
  font-size: 17px;
  font-weight: 700;
  color: #0d0f14;
  background: #6BB658;
  border: 2px solid #6BB658;
  border-radius: 6px;
  padding: 16px 48px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  margin-left: auto;
}

.lpd .btn-enroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 100%;
  bottom: 0;
  border: 2px solid #AED2A6;
  border-radius: 6px;
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1), right 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.lpd .btn-enroll:hover::before {
  left: 0;
  right: 0;
}

.lpd .btn-enroll:hover {
  background: #0d0f14;
  color: #6BB658;
  border-color: #6BB658;
}

.lpd .btn-enroll:focus {
  outline: 2px solid #AED2A6;
  outline-offset: 2px;
}

.lpd .body-area {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.lpd .desc-col {
  flex: 1 1 0;
  min-width: 0;
}

.lpd .desc-col .full-intro {
  font-size: 21px;
  line-height: 1.55;
  color: #FCFDFC;
  margin-bottom: 24px;
}

.lpd .desc-col .body-cols {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.lpd .desc-col .body-cols>div {
  flex: 1 1 0;
  min-width: 0;
}

.lpd .desc-col .body-cols p,
.lpd .desc-col .body-cols li,
.lpd .desc-col .body-cols blockquote {
  font-size: 17px;
  line-height: 1.8;
  color: #c8d8c4;
}

.lpd .desc-col .body-cols h2,
.lpd .desc-col .body-cols h3 {
  font-size: 21px;
  line-height: 1.35;
  color: #FCFDFC;
  margin-bottom: 8px;
}

.lpd .desc-col .body-cols blockquote {
  border-radius: 6px;
  background: rgba(107, 182, 88, 0.07);
  padding: 16px;
  margin: 16px 0;
  font-style: italic;
}

.lpd .desc-col .body-cols ol {
  padding-left: 24px;
}

.lpd .desc-col .body-cols details {
  border-radius: 6px;
  background: rgba(174, 210, 166, 0.06);
  margin-bottom: 8px;
}

.lpd .desc-col .body-cols summary {
  font-size: 17px;
  color: #AED2A6;
  padding: 8px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.lpd .desc-col .body-cols summary::-webkit-details-marker {
  display: none;
}

.lpd .desc-col .body-cols details[open] summary {
  color: #6BB658;
}

.lpd .desc-col .body-cols details>*:not(summary) {
  padding: 0 16px 8px;
}

.lpd .sidebar {
  flex: 0 0 260px;
  width: 260px;
  background: #141a12;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
  position: sticky;
  top: 24px;
}

.lpd .sidebar h4 {
  font-size: 17px;
  font-weight: 700;
  color: #6BB658;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lpd .sidebar .prog-item {
  font-size: 14px;
  line-height: 1.55;
  color: #c8d8c4;
  padding: 8px 0;
  border-bottom: 1px solid rgba(107, 182, 88, 0.10);
}

.lpd .sidebar .prog-item:last-child {
  border-bottom: none;
}

.lpd .sidebar .prog-item strong {
  display: block;
  color: #FCFDFC;
  font-size: 14px;
  margin-bottom: 4px;
}

.lpd .prog-section {
  background: #0a0d10;
  padding: 48px 0;
}

.lpd .prog-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.lpd .prog-inner .sec-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6BB658;
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

.lpd .prog-inner h2 {
  font-size: 38px;
  font-weight: 700;
  color: #FCFDFC;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.1;
}

.lpd .prog-content p,
.lpd .prog-content li {
  font-size: 17px;
  line-height: 1.8;
  color: #c8d8c4;
}

.lpd .prog-content h2,
.lpd .prog-content h3 {
  font-size: 21px;
  color: #FCFDFC;
  margin: 24px 0 8px;
  font-weight: 600;
}

.lpd .prog-content ol {
  padding-left: 24px;
}

.lpd .prog-content li {
  margin-bottom: 8px;
}

.lpd .prog-content strong {
  color: #AED2A6;
}

.lpd .prog-content details {
  background: rgba(107, 182, 88, 0.06);
  border-radius: 6px;
  margin-bottom: 8px;
}

.lpd .prog-content summary {
  font-size: 17px;
  color: #AED2A6;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.lpd .prog-content summary::-webkit-details-marker {
  display: none;
}

.lpd .prog-content details[open] summary {
  color: #6BB658;
}

.lpd .prog-content details>*:not(summary) {
  padding: 0 16px 8px;
}

.lpd .prog-content figure {
  margin: 16px 0;
  border-radius: 12px;
  overflow: hidden;
}

.lpd .prog-content figcaption {
  font-size: 14px;
  color: #AED2A6;
  text-align: center;
  padding: 8px 0;
}

.lpd .prog-content cite {
  font-size: 14px;
  color: #AED2A6;
  font-style: italic;
}

.lpd .divider-band-alt {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #6BB658 40%, #AED2A6 60%, transparent 100%);
}

.lpd .quiz-strip {
  background: linear-gradient(160deg, #141a12 0%, #0d0f14 100%);
  padding: 48px 0;
}

.lpd .quiz-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.lpd .quiz-text {
  flex: 1 1 0;
}

.lpd .quiz-text .sec-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6BB658;
  display: block;
  margin-bottom: 8px;
}

.lpd .quiz-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #FCFDFC;
  margin-bottom: 16px;
  line-height: 1.35;
}

.lpd .quiz-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #c8d8c4;
}

.lpd .quiz-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.lpd .btn-quiz {
  font-size: 17px;
  font-weight: 600;
  color: #6BB658;
  background: transparent;
  border: 2px solid #6BB658;
  border-radius: 6px;
  padding: 16px 48px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lpd .btn-quiz:hover {
  background: #6BB658;
  color: #0d0f14;
}

.lpd .btn-quiz:focus {
  outline: 2px solid #AED2A6;
  outline-offset: 2px;
}

.lpd .btn-contact {
  font-size: 14px;
  color: #AED2A6;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.5s ease-in-out;
}

.lpd .btn-contact:hover {
  color: #6BB658;
}

.lpd .shape-deco {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 180px;
  height: 120px;
  background: rgba(107, 182, 88, 0.06);
  clip-path: polygon(20% 0%, 100% 10%, 80% 100%, 0% 90%);
  pointer-events: none;
  border-radius: 0px;
}

@keyframes colorShiftLoad {
  from {
    color: #AED2A6;
  }

  to {
    color: #FCFDFC;
  }
}

.lpd .band-text h1 {
  animation: colorShiftLoad 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 992px) {
  .lpd .band-inner {
    flex-direction: column;
    align-items: center;
  }

  .lpd .img-left,
  .lpd .img-right {
    flex: 0 0 auto;
    width: 120px;
    display: flex;
    flex-direction: row;
  }

  .lpd .img-right {
    display: none;
  }

  .lpd .body-area {
    flex-direction: column;
  }

  .lpd .sidebar {
    width: 100%;
    flex: none;
    position: static;
  }

  .lpd .quiz-inner {
    flex-direction: column;
    gap: 24px;
  }

  .lpd .btn-enroll {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .lpd .band-text h1 {
    font-size: 38px;
  }

  .lpd .band-text .sub-head {
    font-size: 17px;
  }

  .lpd .img-left {
    display: none;
  }

  .lpd .desc-col .body-cols {
    flex-direction: column;
  }

  .lpd .purchase-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lpd .prog-inner h2 {
    font-size: 28px;
  }

  .lpd .quiz-text h3 {
    font-size: 21px;
  }
}

@media print {
  .lpd {
    background: #fff;
    color: #111;
  }

  .lpd .top-band {
    background: #fff;
  }

  .lpd .top-band::before {
    display: none;
  }

  .lpd .dot-grid {
    display: none;
  }

  .lpd .band-text h1 {
    color: #111;
    font-size: 28px;
    animation: none;
  }

  .lpd .band-text .sub-head {
    color: #333;
  }

  .lpd .cat-label {
    background: #eee;
    color: #333;
  }

  .lpd .meta-pill {
    background: #eee;
    color: #333;
  }

  .lpd .divider-band,
  .lpd .divider-band-alt {
    background: #ccc;
  }

  .lpd .purchase-strip {
    background: #f5f5f5;
    border-color: #ccc;
  }

  .lpd .price-val {
    color: #2a6e1a;
  }

  .lpd .btn-enroll {
    display: none;
  }

  .lpd .btn-quiz {
    display: none;
  }

  .lpd .btn-contact {
    display: none;
  }

  .lpd .body-area {
    flex-direction: column;
    padding: 16px 0;
  }

  .lpd .sidebar {
    background: #f5f5f5;
    box-shadow: none;
    position: static;
    width: 100%;
  }

  .lpd .prog-section {
    background: #fff;
  }

  .lpd .prog-inner h2 {
    color: #111;
  }

  .lpd .prog-content p,
  .lpd .prog-content li {
    color: #333;
  }

  .lpd .prog-content h2,
  .lpd .prog-content h3 {
    color: #111;
  }

  .lpd .quiz-strip {
    display: none;
  }

  .lpd .shape-deco {
    display: none;
  }

  .lpd .desc-col .body-cols {
    flex-direction: column;
  }

  .lpd .desc-col .full-intro {
    color: #111;
  }

  .lpd .desc-col .body-cols p,
  .lpd .desc-col .body-cols li {
    color: #333;
  }

  .lpd .desc-col .body-cols h2,
  .lpd .desc-col .body-cols h3 {
    color: #111;
  }

  .lpd .sidebar h4 {
    color: #2a6e1a;
  }

  .lpd .sidebar .prog-item {
    color: #333;
    border-color: #ccc;
  }

  .lpd .sidebar .prog-item strong {
    color: #111;
  }

  .lpd .purchase-meta .p-meta-val {
    color: #111;
  }

  .lpd .purchase-meta .p-meta-label {
    color: #555;
  }

  .lpd .price-note-txt {
    color: #555;
  }

  .lpd .seats-warn {
    color: #2a6e1a;
  }
}

.bse {
  background: #0d0b14;
  color: #FCFDFC;
  overflow-x: clip;
}

.bse .top_band {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px 48px;
}

.bse .top_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.bse .top_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 48px;
}

.bse .eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #6BB658;
  text-transform: uppercase;
  font-weight: 600;
}

.bse .top_h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: #FCFDFC;
  margin: 0;
}

.bse .top_h1 span {
  color: #6BB658;
  font-weight: 300;
}

.bse .top_desc {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  margin: 0;
  max-width: 420px;
}

.bse .top_cta {
  display: inline-block;
  padding: 16px 32px;
  background: #6BB658;
  color: #0d0b14;
  font-size: 17px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #6BB658;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.bse .top_cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #6BB658;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bse .top_cta:hover {
  background: transparent;
  color: #6BB658;
}

.bse .top_cta:hover::before {
  opacity: 1;
}

.bse .mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  position: relative;
}

.bse .mosaic_img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.bse .mosaic_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bse .mosaic_img:hover img {
  transform: scale(1.04);
}

.bse .mosaic_img.tall {
  grid-row: span 2;
}

.bse .mosaic_img.tall img {
  height: 340px;
}

.bse .mosaic_img.short img {
  height: 160px;
}

.bse .dot_scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bse .dot_scatter circle {
  fill: #6BB658;
  opacity: 0.08;
}

.bse .badge_float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13, 11, 20, 0.88);
  border: 1px solid #6BB658;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: #AED2A6;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.bse .badge_float strong {
  color: #6BB658;
  font-size: 21px;
  display: block;
  line-height: 1.1;
}

.bse .divider_diamond {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
}

.bse .divider_diamond .dline {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6BB658 40%, #6BB658 60%, transparent);
  opacity: 0.3;
}

.bse .divider_diamond .gem {
  width: 10px;
  height: 10px;
  background: #6BB658;
  transform: rotate(45deg);
  margin: 0 12px;
  opacity: 0.7;
}

.bse .invest_wrap {
  background: linear-gradient(160deg, #12101c 0%, #0d0b14 60%, #0f1a0d 100%);
  border-top: 3px solid #6BB658;
  padding: 48px 0;
  position: relative;
}

.bse .invest_inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bse .invest_img_col {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.bse .invest_img_col img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px);
  transition: filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.bse .invest_img_col:hover img {
  filter: blur(2px) brightness(0.85);
}

.bse .invest_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bse .sec_accent_bar {
  width: 40px;
  height: 4px;
  background: #6BB658;
  border-radius: 2px;
}

.bse .sec_h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  color: #FCFDFC;
}

.bse .sec_h2 em {
  font-weight: 300;
  font-style: normal;
  color: #AED2A6;
}

.bse .body_p {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  margin: 0;
}

.bse .invest_items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bse .invest_items li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: #FCFDFC;
}

.bse .invest_items li .ic {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.bse .community_wrap {
  padding: 48px 0;
  background: #0d0b14;
  position: relative;
}

.bse .community_inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.bse .community_top {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.bse .community_cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.bse .comm_card {
  background: linear-gradient(145deg, #141120 0%, #0f1a0d 100%);
  border: 1px solid rgba(107, 182, 88, 0.18);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.bse .comm_card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #6BB658;
  border-radius: 0 12px 12px 0;
  opacity: 0.5;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bse .comm_card:hover {
  border-color: rgba(107, 182, 88, 0.5);
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.bse .comm_card:hover::after {
  opacity: 1;
}

.bse .comm_icon {
  width: 40px;
  height: 40px;
}

.bse .comm_h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: #FCFDFC;
}

.bse .comm_p {
  font-size: 14px;
  line-height: 1.55;
  color: #AED2A6;
  margin: 0;
}

.bse .zigzag_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}

.bse .experts_wrap {
  background: linear-gradient(170deg, #0f1a0d 0%, #12101c 100%);
  padding: 48px 0;
  position: relative;
}

.bse .experts_inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.bse .expert_portrait_col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bse .portrait_frame {
  width: 100%;
  aspect-ratio: 7/9;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.bse .portrait_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bse .portrait_tag {
  background: rgba(107, 182, 88, 0.12);
  border: 1px solid rgba(107, 182, 88, 0.3);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bse .portrait_name {
  font-size: 17px;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
}

.bse .portrait_role {
  font-size: 14px;
  color: #6BB658;
  letter-spacing: 0.08em;
}

.bse .experts_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.bse .experts_metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.bse .metric_box {
  background: rgba(13, 11, 20, 0.6);
  border: 1px solid rgba(174, 210, 166, 0.15);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bse .metric_box:hover {
  border-color: rgba(107, 182, 88, 0.45);
}

.bse .metric_num {
  font-size: 38px;
  font-weight: 800;
  color: #6BB658;
  line-height: 1.1;
}

.bse .metric_label {
  font-size: 14px;
  color: #AED2A6;
  line-height: 1.35;
}

.bse .outcomes_wrap {
  padding: 48px 0;
  background: #0d0b14;
}

.bse .outcomes_inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.bse .outcomes_top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  align-items: center;
  text-align: center;
}

.bse .outcomes_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.bse .outcomes_img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
}

.bse .outcomes_img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bse .outcomes_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bse .outcome_item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.bse .outcome_num {
  font-size: 38px;
  font-weight: 800;
  color: rgba(107, 182, 88, 0.25);
  line-height: 1.1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bse .outcome_item:hover .outcome_num {
  color: #6BB658;
}

.bse .outcome_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bse .outcome_h5 {
  font-size: 17px;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
  line-height: 1.35;
}

.bse .outcome_p {
  font-size: 14px;
  color: #AED2A6;
  line-height: 1.55;
  margin: 0;
}

.bse .curved_connector {
  display: block;
  width: 60px;
  height: 24px;
  margin: 0 auto 8px;
}

@keyframes bse_rotate_in {
  from {
    opacity: 0;
    transform: rotate(-4deg) translateY(24px);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
  }
}

.bse .top_text {
  animation: bse_rotate_in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bse .mosaic {
  animation: bse_rotate_in 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 992px) {
  .bse .top_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bse .top_h1 {
    font-size: 38px;
  }

  .bse .invest_inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bse .community_cols {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .bse .experts_inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bse .portrait_frame {
    max-width: 280px;
  }

  .bse .outcomes_layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .bse .top_h1 {
    font-size: 28px;
  }

  .bse .sec_h2 {
    font-size: 28px;
  }

  .bse .community_cols {
    grid-template-columns: 1fr;
  }

  .bse .experts_metrics {
    grid-template-columns: 1fr;
  }

  .bse .mosaic_img.tall img {
    height: 220px;
  }

  .bse .mosaic_img.short img {
    height: 104px;
  }

  .bse .top_band {
    padding: 24px 16px 24px;
  }

  .bse .invest_inner,
  .bse .community_inner,
  .bse .experts_inner,
  .bse .outcomes_inner {
    padding: 0 16px;
  }
}

.lp_prog {
  background: #0d0b14;
  color: #FCFDFC;
  overflow-x: hidden;
}

.lp_prog .pg_top {
  padding: 72px 24px 48px;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

.lp_prog .pg_top::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80px;
  width: 420px;
  height: 320px;
  background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(107, 182, 88, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp_prog .pg_top::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  width: 280px;
  height: 200px;
  background: radial-gradient(ellipse 50% 45% at 40% 50%, rgba(174, 210, 166, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.lp_prog .top_label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #AED2A6;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.lp_prog .top_label .dot_l,
.lp_prog .top_label .dot_r {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6BB658;
  display: inline-block;
}

.lp_prog .pg_h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.lp_prog .pg_h1 .accent_phrase {
  color: #6BB658;
}

.lp_prog .pg_sub {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  max-width: 560px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.lp_prog .dot_border_top {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(107, 182, 88, 0.25) 0px, rgba(107, 182, 88, 0.25) 3px, transparent 3px, transparent 10px);
  margin: 0;
}

.lp_prog .cards_area {
  padding: 48px 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.lp_prog .cards_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp_prog .prog_card {
  background: linear-gradient(160deg, #161122 0%, #0f0d1a 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp_prog .prog_card:hover {
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
  transform: translateY(-4px);
}

.lp_prog .card_img_wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.lp_prog .card_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp_prog .prog_card:hover .card_img_wrap img {
  transform: scale(1.04);
}

.lp_prog .card_img_wrap .vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13, 11, 20, 0.7) 100%);
  pointer-events: none;
}

.lp_prog .card_body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.lp_prog .card_tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.lp_prog .tag {
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(107, 182, 88, 0.12);
  color: #6BB658;
  letter-spacing: 0.06em;
}

.lp_prog .tag.user_type {
  background: rgba(174, 210, 166, 0.10);
  color: #AED2A6;
}

.lp_prog .card_title {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
}

.lp_prog .card_desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.72);
  margin: 0;
}

.lp_prog .card_meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: rgba(174, 210, 166, 0.75);
}

.lp_prog .meta_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.lp_prog .meta_item svg {
  flex-shrink: 0;
}

.lp_prog .card_price_row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(107, 182, 88, 0.12);
}

.lp_prog .price_block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp_prog .price_val {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #6BB658;
}

.lp_prog .price_note {
  font-size: 14px;
  color: rgba(174, 210, 166, 0.65);
}

.lp_prog .seats_badge {
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(107, 182, 88, 0.08);
  color: #AED2A6;
  border: 1px solid rgba(107, 182, 88, 0.18);
}

.lp_prog .btn_card {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #FCFDFC;
  background: #6BB658;
  border-radius: 6px;
  padding: 8px 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.lp_prog .btn_card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid #AED2A6;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp_prog .btn_card:hover {
  background: transparent;
  color: #6BB658;
  border-color: #6BB658;
}

.lp_prog .btn_card:hover::after {
  opacity: 1;
}

.lp_prog .btn_card:focus {
  outline: 2px solid #AED2A6;
  outline-offset: 2px;
}

.lp_prog .divider_double {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp_prog .divider_double .dl {
  height: 1px;
  background: rgba(107, 182, 88, 0.22);
}

.lp_prog .divider_double .dg {
  height: 4px;
  background: rgba(107, 182, 88, 0.07);
}

.lp_prog .experts_sec {
  padding: 48px 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.lp_prog .sec_label {
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #AED2A6;
  margin-bottom: 8px;
  text-align: center;
}

.lp_prog .sec_heading {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  margin: 0 0 24px;
}

.lp_prog .experts_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.lp_prog .expert_card {
  background: linear-gradient(170deg, #13111f 0%, #0e0c18 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.08);
  transition: box-shadow 0.55s ease-in-out;
}

.lp_prog .expert_card:hover {
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.lp_prog .expert_img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(107, 182, 88, 0.30);
}

.lp_prog .expert_name {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: #FCFDFC;
}

.lp_prog .expert_role {
  font-size: 14px;
  color: #AED2A6;
  text-align: center;
  margin: 0;
}

.lp_prog .expert_quote {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.70);
  text-align: center;
  margin: 0;
}

.lp_prog .metrics_sec {
  background: linear-gradient(160deg, #111020 0%, #0c0b18 60%, #0d0b14 100%);
  padding: 48px 24px;
  animation: bg_warm 8s ease-in-out infinite alternate;
}

@keyframes bg_warm {
  0% {
    background: linear-gradient(160deg, #111020 0%, #0c0b18 60%, #0d0b14 100%);
  }

  100% {
    background: linear-gradient(160deg, #12100f 0%, #0f0c10 60%, #0d0b14 100%);
  }
}

.lp_prog .metrics_inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.lp_prog .metrics_text {
  flex: 1 1 340px;
}

.lp_prog .metrics_text .sec_label {
  text-align: left;
}

.lp_prog .metrics_text .sec_heading {
  text-align: left;
  font-size: 38px;
}

.lp_prog .metrics_text p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.72);
  margin: 0;
}

.lp_prog .metrics_nums {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp_prog .metric_box {
  background: rgba(107, 182, 88, 0.07);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(107, 182, 88, 0.14);
  transition: border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp_prog .metric_box:hover {
  border-color: rgba(107, 182, 88, 0.35);
}

.lp_prog .metric_val {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #6BB658;
  display: block;
}

.lp_prog .metric_desc {
  font-size: 14px;
  color: #AED2A6;
  margin-top: 8px;
  display: block;
}

.lp_prog .format_sec {
  padding: 48px 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.lp_prog .format_layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  margin-top: 24px;
}

.lp_prog .format_img_col {
  flex: 0 0 340px;
}

.lp_prog .format_img_wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.lp_prog .format_img_wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.lp_prog .format_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(ellipse 80% 60% at 90% 90%, rgba(13, 11, 20, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 10%, rgba(13, 11, 20, 0.40) 0%, transparent 60%);
  pointer-events: none;
}

.lp_prog .format_text_col {
  flex: 1 1 0;
}

.lp_prog .format_text_col .sec_heading {
  text-align: left;
  font-size: 28px;
}

.lp_prog .format_text_col .sec_label {
  text-align: left;
}

.lp_prog .format_items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.lp_prog .format_item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.lp_prog .fmt_icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(107, 182, 88, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp_prog .fmt_icon svg {
  display: block;
}

.lp_prog .fmt_body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp_prog .fmt_title {
  font-size: 17px;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
}

.lp_prog .fmt_desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.68);
  margin: 0;
}

.lp_prog .dot_border_bot {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(174, 210, 166, 0.18) 0px, rgba(174, 210, 166, 0.18) 3px, transparent 3px, transparent 14px);
}

@media (max-width: 992px) {
  .lp_prog .cards_grid {
    grid-template-columns: 1fr;
  }

  .lp_prog .experts_grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp_prog .metrics_inner {
    flex-direction: column;
  }

  .lp_prog .format_layout {
    flex-direction: column;
  }

  .lp_prog .format_img_col {
    flex: none;
    width: 100%;
  }

  .lp_prog .pg_h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .lp_prog .pg_h1 {
    font-size: 28px;
  }

  .lp_prog .experts_grid {
    grid-template-columns: 1fr;
  }

  .lp_prog .metrics_nums {
    grid-template-columns: 1fr;
  }

  .lp_prog .cards_area {
    padding: 24px 16px;
  }

  .lp_prog .pg_top {
    padding: 48px 16px 24px;
  }
}

.cu_pg {
  background: #0d0f14;
  color: #FCFDFC;
  overflow-x: hidden;
  position: relative;
}

.cu_pg .pg_reveal {
  animation: reveal_down 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal_down {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0 0% 0);
    opacity: 1;
  }
}

.cu_pg .geo_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.cu_pg .geo_bg::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(107, 182, 88, 0.08);
  border-radius: 0px;
  transform: rotate(22deg);
  animation: geo_pulse 6s ease-in-out infinite alternate;
}

.cu_pg .geo_bg::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 40px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(174, 210, 166, 0.06);
  border-radius: 0px;
  transform: rotate(-14deg);
  animation: geo_pulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes geo_pulse {
  from {
    opacity: 0.4;
    transform: rotate(22deg) scale(1);
  }

  to {
    opacity: 1;
    transform: rotate(22deg) scale(1.04);
  }
}

.cu_pg .split_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
}

.cu_pg .img_side {
  position: relative;
  overflow: hidden;
}

.cu_pg .img_side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: img_fade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes img_fade {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cu_pg .img_side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, #0d0f14 100%);
  pointer-events: none;
}

.cu_pg .img_geo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(107, 182, 88, 0.18);
  border-radius: 0px;
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 2;
}

.cu_pg .txt_side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  position: relative;
  background: linear-gradient(135deg, #13161e 0%, #0d0f14 100%);
}

.cu_pg .pg_label {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #6BB658;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.cu_pg .pg_h1 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #FCFDFC;
  margin-bottom: 16px;
}

.cu_pg .pg_quote {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  font-weight: 300;
  border-left: none;
  padding: 0;
  margin-bottom: 24px;
}

.cu_pg .contact_chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cu_pg .chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #FCFDFC;
  line-height: 1.35;
}

.cu_pg .chip_icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(107, 182, 88, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu_pg .chip_icon svg {
  width: 16px;
  height: 16px;
  fill: #6BB658;
}

.cu_pg .chip a {
  color: #AED2A6;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.cu_pg .chip a:hover {
  color: #6BB658;
  text-decoration-color: #6BB658;
}

.cu_pg .zigzag_div {
  width: 100%;
  line-height: 0;
  display: block;
}

.cu_pg .form_band {
  background: #111318;
  position: relative;
  padding: 48px 0;
}

.cu_pg .form_band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(107, 182, 88, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cu_pg .form_wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.cu_pg .form_meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.cu_pg .form_h2 {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
}

.cu_pg .form_desc {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  font-weight: 300;
}

.cu_pg .stat_row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.cu_pg .stat_item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cu_pg .stat_num {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #6BB658;
}

.cu_pg .stat_lbl {
  font-size: 14px;
  line-height: 1.35;
  color: #AED2A6;
  letter-spacing: 0.06em;
}

.cu_pg .frm {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(174, 210, 166, 0.1);
  border-radius: 12px;
  padding: 48px;
}

.cu_pg .field_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cu_pg .field_grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.cu_pg .f_label {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #AED2A6;
  text-transform: uppercase;
}

.cu_pg .f_input,
.cu_pg .f_select,
.cu_pg .f_textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(174, 210, 166, 0.15);
  border-radius: 6px;
  color: #FCFDFC;
  font-size: 17px;
  line-height: 1.55;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.cu_pg .f_input::placeholder,
.cu_pg .f_textarea::placeholder {
  color: rgba(174, 210, 166, 0.35);
}

.cu_pg .f_input:focus,
.cu_pg .f_select:focus,
.cu_pg .f_textarea:focus {
  border-color: #6BB658;
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
}

.cu_pg .f_select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236BB658' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cu_pg .f_select option {
  background: #13161e;
  color: #FCFDFC;
}

.cu_pg .f_textarea {
  resize: vertical;
  min-height: 120px;
}

.cu_pg .privacy_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}

.cu_pg .priv_check {
  width: 18px;
  height: 18px;
  accent-color: #6BB658;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.cu_pg .priv_text {
  font-size: 14px;
  line-height: 1.55;
  color: #AED2A6;
}

.cu_pg .priv_text a {
  color: #6BB658;
  text-decoration: underline;
  text-decoration-color: rgba(107, 182, 88, 0.4);
  transition: text-decoration-color 0.45s ease-in-out;
}

.cu_pg .priv_text a:hover {
  text-decoration-color: #6BB658;
}

.cu_pg .btn_submit {
  padding: 16px 48px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0d0f14;
  background: #6BB658;
  border: 2px solid #6BB658;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start;
  box-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.08);
}

.cu_pg .btn_submit:hover {
  background: transparent;
  color: #6BB658;
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.cu_pg .btn_submit:active {
  transform: scale(1.04);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.cu_pg .btn_submit:focus-visible {
  outline: 2px solid #6BB658;
  outline-offset: 4px;
}

@media (max-width: 992px) {
  .cu_pg .split_top {
    grid-template-columns: 1fr;
  }

  .cu_pg .img_side {
    height: 280px;
  }

  .cu_pg .img_side::after {
    background: linear-gradient(to bottom, transparent 55%, #0d0f14 100%);
  }

  .cu_pg .txt_side {
    padding: 48px 24px;
  }

  .cu_pg .form_wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cu_pg .stat_row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cu_pg .frm {
    padding: 24px;
  }

  .cu_pg .field_row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cu_pg .pg_h1 {
    font-size: 28px;
  }

  .cu_pg .frm {
    padding: 16px;
  }

  .cu_pg .btn_submit {
    width: 100%;
    text-align: center;
  }
}

.abt {
  background: #0d0f14;
  overflow-x: clip;
  position: relative;
}

.abt .pg-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.abt .top-area {
  padding: 48px 0;
  position: relative;
}

.abt .top-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 40%, rgba(107, 182, 88, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.abt .top-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.abt .top-text {
  flex: 1 1 0;
  min-width: 0;
}

.abt .top-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #AED2A6;
  border: 1px solid rgba(174, 210, 166, 0.3);
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.abt .top-h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: #FCFDFC;
  margin: 0 0 16px 0;
}

.abt .top-h1 span {
  color: #6BB658;
  font-weight: 300;
  display: block;
}

.abt .top-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.72);
  margin: 0 0 24px 0;
  max-width: 480px;
}

.abt .top-stat-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
}

.abt .t-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt .t-stat-num {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #6BB658;
  animation: shpulse 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.abt .t-stat-lbl {
  font-size: 14px;
  line-height: 1.35;
  color: rgba(252, 253, 252, 0.55);
  letter-spacing: 0.06em;
}

@keyframes shpulse {

  0%,
  100% {
    text-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.08), 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  }

  50% {
    text-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.18), 0 6px 18px -2px rgba(107, 182, 88, 0.32), 0 9px 52px -2px rgba(107, 182, 88, 0.22);
  }
}

.abt .top-img-col {
  flex: 0 0 380px;
  position: relative;
}

.abt .top-img-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.abt .top-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.abt .top-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 60% 30%, rgba(174, 210, 166, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.abt .deco-shape {
  position: absolute;
  border-radius: 20px;
  pointer-events: none;
}

.abt .deco-a {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(107, 182, 88, 0.18);
  top: -16px;
  right: -16px;
  border-radius: 20px;
}

.abt .deco-b {
  width: 60px;
  height: 60px;
  background: rgba(107, 182, 88, 0.08);
  bottom: 24px;
  left: -24px;
  border-radius: 12px;
}

.abt .story-area {
  padding: 48px 0;
  background: #111318;
  position: relative;
}

.abt .story-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(107, 182, 88, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.abt .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.abt .story-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt .story-tag {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #6BB658;
  text-transform: uppercase;
}

.abt .story-h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
}

.abt .story-h2 em {
  font-style: normal;
  font-weight: 300;
  color: #AED2A6;
}

.abt .story-body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.7);
  margin: 0;
}

.abt .story-body-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.abt .story-body-col p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.65);
  margin: 0;
}

.abt .steps-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt .step-card {
  background: #181c23;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(174, 210, 166, 0.1);
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease-in-out;
}

.abt .step-card:hover {
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
  border-color: rgba(107, 182, 88, 0.3);
}

.abt .step-num {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #6BB658;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.abt .step-h {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0 0 8px 0;
}

.abt .step-p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.6);
  margin: 0;
}

.abt .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.abt .ba-block {
  border-radius: 12px;
  padding: 16px;
}

.abt .ba-block.before {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.abt .ba-block.after {
  background: rgba(107, 182, 88, 0.1);
  border: 1px solid rgba(107, 182, 88, 0.25);
}

.abt .ba-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.abt .ba-block.before .ba-label {
  color: rgba(252, 253, 252, 0.4);
}

.abt .ba-block.after .ba-label {
  color: #6BB658;
}

.abt .ba-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.65);
  margin: 0;
}

.abt .team-area {
  padding: 48px 0;
  position: relative;
}

.abt .team-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 15% 60%, rgba(107, 182, 88, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.abt .team-top {
  text-align: center;
  margin-bottom: 48px;
}

.abt .team-h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0 0 16px 0;
}

.abt .team-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.65);
  max-width: 560px;
  margin: 0 auto;
}

.abt .three-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.abt .col-card {
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt .col-card.c1 {
  background: #151920;
  border: 1px solid rgba(174, 210, 166, 0.12);
}

.abt .col-card.c2 {
  background: rgba(107, 182, 88, 0.12);
  border: 1px solid rgba(107, 182, 88, 0.28);
}

.abt .col-card.c3 {
  background: #1a1f29;
  border: 1px solid rgba(252, 253, 252, 0.07);
}

.abt .col-card .portrait-wrap {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5/7;
}

.abt .col-card .portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt .col-card .person-name {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
}

.abt .col-card .person-role {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #AED2A6;
  text-transform: uppercase;
  margin: 0;
}

.abt .col-card .person-bio {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.62);
  margin: 0;
}

.abt .col-card.c2 .person-name,
.abt .col-card.c2 .person-bio {
  color: #FCFDFC;
}

.abt .col-card .hover-chars {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
  color: #6BB658;
  display: inline-block;
  cursor: default;
}

.abt .col-card .hover-chars span {
  display: inline-block;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt .col-card:hover .hover-chars span:nth-child(1) {
  color: #FCFDFC;
  transition-delay: 0s;
}

.abt .col-card:hover .hover-chars span:nth-child(2) {
  color: #FCFDFC;
  transition-delay: 0.04s;
}

.abt .col-card:hover .hover-chars span:nth-child(3) {
  color: #FCFDFC;
  transition-delay: 0.08s;
}

.abt .col-card:hover .hover-chars span:nth-child(4) {
  color: #FCFDFC;
  transition-delay: 0.12s;
}

.abt .col-card:hover .hover-chars span:nth-child(5) {
  color: #FCFDFC;
  transition-delay: 0.16s;
}

.abt .col-card:hover .hover-chars span:nth-child(6) {
  color: #FCFDFC;
  transition-delay: 0.20s;
}

.abt .col-card:hover .hover-chars span:nth-child(7) {
  color: #FCFDFC;
  transition-delay: 0.24s;
}

.abt .col-card:hover .hover-chars span:nth-child(8) {
  color: #FCFDFC;
  transition-delay: 0.28s;
}

.abt .col-card:hover .hover-chars span:nth-child(9) {
  color: #FCFDFC;
  transition-delay: 0.32s;
}

.abt .col-card:hover .hover-chars span:nth-child(10) {
  color: #FCFDFC;
  transition-delay: 0.36s;
}

.abt .img-duo {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  align-items: start;
}

.abt .img-duo-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  animation: shadowpulse 3.2s ease-in-out infinite;
}

.abt .img-duo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@keyframes shadowpulse {

  0%,
  100% {
    box-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.08), 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  }

  50% {
    box-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.14), 0 6px 18px -2px rgba(107, 182, 88, 0.22), 0 9px 52px -2px rgba(107, 182, 88, 0.18);
  }
}

.abt .img-duo-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}

.abt .img-duo-h {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
}

.abt .img-duo-p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.67);
  margin: 0;
}

.abt .link-accent {
  color: #AED2A6;
  text-decoration: underline;
  text-decoration-color: rgba(174, 210, 166, 0.4);
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt .link-accent:hover {
  color: #6BB658;
  text-decoration-color: rgba(107, 182, 88, 0.8);
}

.abt .btn-main {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #FCFDFC;
  background: #6BB658;
  border-radius: 6px;
  padding: 16px 48px;
  border: 2px solid #6BB658;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.55s cubic-bezier(0.22, 1, 0.36, 1), background 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
}

.abt .btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid #AED2A6;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt .btn-main:hover {
  background: transparent;
  color: #6BB658;
}

.abt .btn-main:hover::before {
  opacity: 1;
}

@media (max-width: 992px) {
  .abt .top-inner {
    flex-direction: column;
  }

  .abt .top-img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .abt .story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .abt .story-body-col {
    grid-template-columns: 1fr;
  }

  .abt .three-cols {
    grid-template-columns: 1fr 1fr;
  }

  .abt .col-card.c3 {
    display: none !important;
  }

  .abt .img-duo {
    grid-template-columns: 1fr;
  }

  .abt .top-h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .abt .top-h1 {
    font-size: 28px;
  }

  .abt .story-h2 {
    font-size: 28px;
  }

  .abt .team-h2 {
    font-size: 28px;
  }

  .abt .three-cols {
    grid-template-columns: 1fr;
  }

  .abt .before-after {
    grid-template-columns: 1fr;
  }

  .abt .top-stat-row {
    flex-direction: column;
    gap: 16px;
  }

  .abt .col-card.c3 {
    display: none !important;
  }
}

.qz_page {
  background: #0d0b14;
  color: #FCFDFC;
  overflow-x: hidden;
}

.qz_page .stripe_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.qz_page .stripe_bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(52deg,
      transparent,
      transparent 40px,
      rgba(107, 182, 88, 0.03) 40px,
      rgba(107, 182, 88, 0.03) 41px);
  animation: stripe_move 18s linear infinite;
}

@keyframes stripe_move {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(60px) translateY(60px);
  }
}

.qz_page .geo_spin {
  position: fixed;
  top: 15%;
  right: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(107, 182, 88, 0.07);
  border-radius: 20px;
  animation: geo_rotate 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.qz_page .geo_spin::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(174, 210, 166, 0.05);
  border-radius: 12px;
}

@keyframes geo_rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.qz_page .rel {
  position: relative;
  z-index: 1;
}

.qz_page .top_band {
  padding: 48px 24px;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(107, 182, 88, 0.13) 0%, transparent 70%);
  border-bottom: 1px dotted rgba(107, 182, 88, 0.3);
}

.qz_page .top_band_inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qz_page .page_label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #6BB658;
  border: 1px solid rgba(107, 182, 88, 0.35);
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.qz_page .top_ttl {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  color: #FCFDFC;
  max-width: 720px;
  margin: 0 0 24px 0;
}

.qz_page .top_ttl span {
  color: #6BB658;
}

.qz_page .top_sub {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  max-width: 560px;
  margin: 0 0 8px 0;
}

.qz_page .curve_deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.qz_page .curve_deco svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  opacity: 0.12;
}

.qz_page .info_strip {
  padding: 48px 24px;
  background: #110f1a;
  border-bottom: 1px dotted rgba(174, 210, 166, 0.2);
}

.qz_page .info_strip_inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.qz_page .info_img_col {
  position: relative;
}

.qz_page .img_frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.qz_page .img_frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1);
  transition: filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.qz_page .img_frame:hover img {
  filter: saturate(1.1) contrast(1.05);
}

.qz_page .info_txt_col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qz_page .info_h {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
}

.qz_page .info_body {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  margin: 0;
}

.qz_page .info_body_b {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.75);
  margin: 0;
}

.qz_page .stat_row {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.qz_page .stat_item {
  border-radius: 12px;
  background: rgba(107, 182, 88, 0.07);
  border: 1px solid rgba(107, 182, 88, 0.15);
  padding: 16px;
  flex: 1;
  transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.qz_page .stat_item:hover {
  background: rgba(107, 182, 88, 0.14);
  border-color: rgba(107, 182, 88, 0.35);
}

.qz_page .stat_num {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #6BB658;
  display: block;
}

.qz_page .stat_lbl {
  font-size: 14px;
  line-height: 1.35;
  color: #AED2A6;
  letter-spacing: 0.06em;
}

.qz_page .quiz_area {
  padding: 48px 24px;
  background: radial-gradient(ellipse 70% 50% at 15% 60%, rgba(107, 182, 88, 0.08) 0%, transparent 65%);
  border-bottom: 1px dotted rgba(107, 182, 88, 0.25);
}

.qz_page .quiz_area_inner {
  max-width: 1024px;
  margin: 0 auto;
}

.qz_page .quiz_hdr {
  text-align: center;
  margin-bottom: 48px;
}

.qz_page .quiz_h {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0 0 16px 0;
}

.qz_page .quiz_desc {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  max-width: 540px;
  margin: 0 auto;
}

.qz_page .quiz_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qz_page .q_card {
  background: #16131f;
  border: 1px solid rgba(174, 210, 166, 0.12);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.qz_page .q_card:hover {
  border-color: rgba(107, 182, 88, 0.3);
}

.qz_page .q_num {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #6BB658;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.qz_page .q_text {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0 0 24px 0;
}

.qz_page .q_opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qz_page .q_opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid rgba(174, 210, 166, 0.1);
  background: rgba(252, 253, 252, 0.02);
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.qz_page .q_opt:hover {
  background: rgba(107, 182, 88, 0.1);
  border-color: rgba(107, 182, 88, 0.4);
}

.qz_page .q_opt input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid rgba(174, 210, 166, 0.4);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.qz_page .q_opt input[type="radio"]:checked {
  border-color: #6BB658;
  background: #6BB658;
  box-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.08);
}

.qz_page .q_opt input[type="radio"]:focus {
  outline: 2px solid #6BB658;
  outline-offset: 2px;
}

.qz_page .q_opt:has(input:checked) {
  background: rgba(107, 182, 88, 0.12);
  border-color: rgba(107, 182, 88, 0.45);
}

.qz_page .opt_lbl {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.85);
  cursor: pointer;
}

.qz_page .q_explain {
  margin-top: 16px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(107, 182, 88, 0.07);
  border-left: none;
  border: 1px solid rgba(107, 182, 88, 0.2);
  font-size: 14px;
  line-height: 1.55;
  color: #AED2A6;
  display: none;
}

.qz_page .q_card:has(.q_opt input:checked) .q_explain {
  display: block;
}

.qz_page .result_area {
  padding: 48px 24px;
  background: #110f1a;
}

.qz_page .result_inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.qz_page .result_hdr {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 24px;
}

.qz_page .result_h {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0 0 8px 0;
}

.qz_page .result_sub {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  margin: 0;
}

.qz_page .lvl_card {
  background: #16131f;
  border: 1px solid rgba(174, 210, 166, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 2px -2px rgba(107, 182, 88, 0.08);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.qz_page .lvl_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
}

.qz_page .lvl_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qz_page .lvl_icon svg {
  width: 24px;
  height: 24px;
}

.qz_page .lvl_card.starter .lvl_icon {
  background: rgba(107, 182, 88, 0.12);
}

.qz_page .lvl_card.mid .lvl_icon {
  background: rgba(174, 210, 166, 0.12);
}

.qz_page .lvl_card.adv .lvl_icon {
  background: rgba(107, 182, 88, 0.2);
}

.qz_page .lvl_score {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #6BB658;
}

.qz_page .lvl_name {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: #FCFDFC;
  margin: 0;
}

.qz_page .lvl_desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(252, 253, 252, 0.65);
  margin: 0;
}

.qz_page .lvl_bar_bg {
  width: 100%;
  height: 4px;
  background: rgba(174, 210, 166, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.qz_page .lvl_bar_fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #6BB658, #AED2A6);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.qz_page .cta_link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #6BB658;
  text-decoration: underline;
  text-decoration-color: rgba(107, 182, 88, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.qz_page .cta_link:hover {
  color: #AED2A6;
  text-decoration-color: #AED2A6;
}

@media (max-width: 992px) {
  .qz_page .top_ttl {
    font-size: 38px;
  }

  .qz_page .info_strip_inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .qz_page .result_inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .qz_page .top_ttl {
    font-size: 28px;
  }

  .qz_page .stat_row {
    flex-direction: column;
    gap: 16px;
  }

  .qz_page .result_inner {
    grid-template-columns: 1fr;
  }

  .qz_page .quiz_h {
    font-size: 28px;
  }

  .qz_page .q_text {
    font-size: 17px;
  }
}

.success_page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(107, 182, 88, 0.13) 0%, #0d1117 70%);
}

.success_page .card {
  max-width: 560px;
  width: 100%;
  background: linear-gradient(160deg, #131a1f 60%, #162014 100%);
  border: 1px solid rgba(107, 182, 88, 0.18);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 9px 52px -2px rgba(107, 182, 88, 0.13);
  text-align: center;
}

.success_page .icon_wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(107, 182, 88, 0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(107, 182, 88, 0.35);
}

.success_page .icon_wrap svg {
  display: block;
}

.success_page .heading {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #e8f5e4;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.success_page .sub {
  font-size: 17px;
  line-height: 1.55;
  color: #AED2A6;
  margin: 0 0 24px;
}

.success_page .note {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(174, 210, 166, 0.65);
  margin: 0 0 48px;
  letter-spacing: 0.02em;
}

.success_page .btn_home {
  display: inline-block;
  padding: 16px 48px;
  background: #6BB658;
  color: #0d1117;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 6px 18px -2px rgba(107, 182, 88, 0.10);
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.success_page .btn_home:hover {
  background: transparent;
  color: #6BB658;
  border-color: #6BB658;
}

.success_page .divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6BB658, transparent);
  border-radius: 2px;
  margin: 24px auto;
}

@media (max-width: 576px) {
  .success_page .card {
    padding: 24px 16px;
  }

  .success_page .heading {
    font-size: 21px;
  }
}