@import url('https://cdn.jsdelivr.net/npm/@fontsource/ubuntu@latest/300.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/ubuntu@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/ubuntu@latest/700.css');

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  font-family: 'Ubuntu', sans-serif;
}

.pg_header {
  position: relative;
  background: #FFFFFF;
  border-bottom: 2px solid #B69840;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  overflow: visible;
  z-index: 100;
}

.pg_header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B69840 0%, #C4B58B 60%, #FFFFFF 100%);
  pointer-events: none;
}

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

.hd_identity {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.hd_logo_frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #C4B58B;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06), 0 0 0 3px rgba(182, 152, 64, 0.08);
  background: #FFFFFF;
  flex-shrink: 0;
}

.hd_logo_frame img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

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

.hd_brand_name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #2a2218;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hd_brand_tag {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.1;
  color: #B69840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hd_accent_bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 152, 64, 0.25) 0%, rgba(196, 181, 139, 0.10) 100%);
  min-width: 16px;
}

.hd_nav_group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hd_nav_item {
  position: relative;
}

.hd_nav_link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2218;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 0.15s ease-out, border-color 0.15s ease-out, background 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}

.hd_nav_link:hover,
.hd_nav_link:focus {
  color: #B69840;
  border-color: #C4B58B;
  background: rgba(196, 181, 139, 0.08);
  outline: none;
}

.hd_nav_link:focus-visible {
  outline: 2px solid #B69840;
  outline-offset: 2px;
}

.hd_nav_link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.15s ease-out;
}

.hd_nav_item:hover .hd_nav_link svg,
.hd_nav_item:focus-within .hd_nav_link svg {
  transform: rotate(180deg);
}

.hd_sub {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid #C4B58B;
  border-radius: 7px;
  box-shadow: -1px 9px 48px 0 rgba(182, 152, 64, 0.11);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-out;
  z-index: 200;
}

.hd_nav_item:hover .hd_sub,
.hd_nav_item:focus-within .hd_sub {
  opacity: 1;
  pointer-events: auto;
}

.hd_sub_link {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2218;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.12s ease, background 0.12s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.hd_sub_link:hover,
.hd_sub_link:focus {
  color: #B69840;
  background: rgba(182, 152, 64, 0.07);
  outline: none;
}

.hd_sub_link:focus-visible {
  outline: 2px solid #B69840;
  outline-offset: 2px;
}

.pg_footer {
  background: #FFFFFF;
  border-top: 2px solid #B69840;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06) inset;
}

.ft_outer {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px 32px;
}

.ft_card {
  border: 1px solid #C4B58B;
  border-radius: 7px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  box-shadow: inset 0 2px 6px 0 rgba(196, 181, 139, 0.08), -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
}

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

.ft_col_label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #B69840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.ft_address_line {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #3a2f1a;
}

.ft_contact_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft_contact_item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft_contact_label {
  font-size: 16px;
  font-weight: 700;
  color: #6b5c30;
  line-height: 1.5;
  min-width: 52px;
}

.ft_contact_val {
  font-size: 16px;
  font-weight: 400;
  color: #2a2218;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease-out, border-color 0.15s ease-out;
}

.ft_contact_val:hover,
.ft_contact_val:focus {
  color: #B69840;
  border-bottom-color: #B69840;
  outline: none;
}

.ft_contact_val:focus-visible {
  outline: 2px solid #B69840;
  outline-offset: 2px;
  border-radius: 4px;
}

.ft_divider {
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, #C4B58B 30%, #C4B58B 70%, transparent 100%);
  align-self: stretch;
  min-height: 120px;
}

.ft_right_col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

.ft_logo_frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #C4B58B;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06), 0 0 0 3px rgba(182, 152, 64, 0.08);
  background: #FFFFFF;
}

.ft_logo_frame img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.ft_nav_links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft_nav_link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #3a2f1a;
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 0.12s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.ft_nav_link:hover,
.ft_nav_link:focus {
  color: #B69840;
  border-color: #C4B58B;
  outline: none;
}

.ft_nav_link:focus-visible {
  outline: 2px solid #B69840;
  outline-offset: 2px;
}

.ft_bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(196, 181, 139, 0.35);
}

.ft_copy {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #6b5c30;
}

.ft_copy span {
  color: #B69840;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hd_band {
    padding: 16px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hd_accent_bar {
    display: none;
  }

  .hd_nav_group {
    width: 100%;
    justify-content: flex-start;
  }

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

  .ft_divider {
    width: 100%;
    height: 1px;
    min-height: unset;
    background: linear-gradient(90deg, transparent 0%, #C4B58B 30%, #C4B58B 70%, transparent 100%);
  }

  .ft_right_col {
    align-items: flex-start;
  }

  .ft_nav_links {
    align-items: flex-start;
  }

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

.ck_popup {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 380px;
  max-width: calc(100vw - 64px);
  background: #FFFFFF;
  border: 1px solid #B69840;
  border-radius: 7px;
  box-shadow: -1px 9px 48px 0 rgba(182, 152, 64, 0.11);
  padding: 32px;
  z-index: 1000;
  display: none;
}

.ck_headline {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #2a2218;
  margin: 0 0 8px 0;
}

.ck_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #3a2f1a;
  margin: 0 0 16px 0;
}

.ck_policy_link {
  color: #B69840;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.12s ease;
}

.ck_policy_link:hover,
.ck_policy_link:focus {
  color: #6b5c30;
  outline: none;
}

.ck_policy_link:focus-visible {
  outline: 2px solid #B69840;
  outline-offset: 2px;
  border-radius: 4px;
}

.ck_panel {
  display: none;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #C4B58B;
  border-radius: 4px;
  background: rgba(196, 181, 139, 0.06);
}

.ck_panel.open {
  display: block;
}

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

.ck_toggle_label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2218;
}

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

.ck_toggle_switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.ck_toggle_track {
  position: absolute;
  inset: 0;
  background: #e8e0cc;
  border-radius: 36px;
  border: 1px solid #C4B58B;
  cursor: pointer;
  transition: background 0.15s ease-out;
}

.ck_toggle_switch input[type="checkbox"]:checked+.ck_toggle_track {
  background: #B69840;
}

.ck_toggle_track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 36px;
  background: #FFFFFF;
  transition: transform 0.15s ease-out;
}

.ck_toggle_switch input[type="checkbox"]:checked+.ck_toggle_track::after {
  transform: translateX(18px);
}

.ck_toggle_switch input[type="checkbox"]:focus-visible+.ck_toggle_track {
  outline: 2px solid #B69840;
  outline-offset: 2px;
}

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

.ck_sale_label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2218;
}

.ck_manage_btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #B69840;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: 16px;
  transition: color 0.12s ease;
}

.ck_manage_btn:hover,
.ck_manage_btn:focus {
  color: #6b5c30;
  outline: none;
}

.ck_manage_btn:focus-visible {
  outline: 2px solid #B69840;
  outline-offset: 2px;
  border-radius: 4px;
}

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

.ck_btn {
  flex: 1;
  min-width: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #B69840;
  background: transparent;
  color: #B69840;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease-out, color 0.15s ease-out;
  min-height: 44px;
}

.ck_btn:hover,
.ck_btn:focus {
  background: #B69840;
  color: #FFFFFF;
  outline: none;
}

.ck_btn:focus-visible {
  outline: 2px solid #2a2218;
  outline-offset: 2px;
}

.ck_btn.reject {
  border-color: #C4B58B;
  color: #6b5c30;
}

.ck_btn.reject:hover,
.ck_btn.reject:focus {
  background: #C4B58B;
  color: #2a2218;
}

.doc-section {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #2a2520;
  line-height: 1.8;
  font-size: 18px;
}

.doc-section p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 18px;
  color: #2a2520;
}

.doc-section strong,
.doc-section b {
  font-weight: 700;
  color: #1e1a14;
}

.doc-section hr {
  border: none;
  border-top: 1px solid #C4B58B;
  margin: 32px 0;
  opacity: 0.6;
}

.doc-section div {
  margin-bottom: 16px;
}

.doc-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  border-radius: 7px;
  overflow: hidden;
}

.doc-section thead {
  background-color: #B69840;
}

.doc-section thead tr {
  background-color: transparent;
}

.doc-section thead th {
  padding: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  border: none;
}

.doc-section tbody tr {
  border-bottom: 1px solid rgba(196, 181, 139, 0.35);
  transition: background-color 0.15s ease-out;
}

.doc-section tbody tr:last-child {
  border-bottom: none;
}

.doc-section tbody tr:nth-child(even) {
  background-color: rgba(196, 181, 139, 0.08);
}

.doc-section tbody tr:hover {
  background-color: rgba(182, 152, 64, 0.07);
}

.doc-section td {
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #2a2520;
  vertical-align: top;
  border: none;
}

.doc-section th {
  padding: 16px;
}

@media (max-width: 768px) {
  .doc-section {
    padding: 32px 16px;
    font-size: 16px;
  }

  .doc-section p {
    font-size: 16px;
  }

  .doc-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
  }

  .doc-section thead th,
  .doc-section td {
    padding: 8px 16px;
    min-width: 120px;
  }
}

.tech_pg {
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
}

.tech_pg .pg_bound {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
}

.tech_pg .strip_a {
  background: radial-gradient(ellipse 80% 60% at 18% 40%, rgba(182, 152, 64, 0.08) 0%, #fff 70%);
  padding: 64px 0 48px;
}

.tech_pg .strip_a .pg_bound {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}

.tech_pg .strip_a .col_img {
  flex: 0 0 260px;
  position: relative;
}

.tech_pg .strip_a .col_img .img_frame {
  width: 260px;
  height: 340px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
}

.tech_pg .strip_a .col_img .img_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.88) brightness(0.96);
  transition: filter 0.18s ease-out;
  animation: img_load 0.2s ease-out both;
}

@keyframes img_load {
  from {
    transform: scale(0.97);
  }

  to {
    transform: scale(1);
  }
}

.tech_pg .strip_a .col_img .img_frame:hover img {
  filter: saturate(1) brightness(1);
}

.tech_pg .strip_a .col_img .dash_border {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 260px;
  height: 340px;
  border: 2px dashed rgba(182, 152, 64, 0.38);
  border-radius: 7px;
  pointer-events: none;
}

.tech_pg .strip_a .col_txt {
  flex: 1 1 0;
  padding-top: 32px;
}

.tech_pg .strip_a .col_txt .lbl_sm {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #B69840;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 16px;
  display: block;
}

.tech_pg .strip_a .col_txt h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #1b1610;
  margin: 0 0 32px;
  font-weight: 800;
}

.tech_pg .strip_a .col_txt h1 .hl_bar {
  display: inline;
  background: linear-gradient(90deg, rgba(182, 152, 64, 0.18) 0%, rgba(196, 181, 139, 0.12) 100%);
  padding: 0 8px;
  border-radius: 4px;
}

.tech_pg .strip_a .col_txt .lead_p {
  font-size: 18px;
  line-height: 1.8;
  color: #2e2a1f;
  max-width: 560px;
  margin-bottom: 16px;
}

.tech_pg .strip_a .col_txt .lead_p.narrow {
  max-width: 400px;
  font-size: 16px;
  color: #4a4232;
}

.tech_pg .strip_a .col_txt .arr_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.tech_pg .strip_a .col_txt .arr_row .btn_out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 2px solid #B69840;
  border-radius: 4px;
  background: transparent;
  color: #B69840;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease-out, color 0.15s ease-out;
}

.tech_pg .strip_a .col_txt .arr_row .btn_out:hover {
  background: #B69840;
  color: #fff;
}

.tech_pg .strip_a .col_txt .arr_row .btn_out:active {
  transform: scale(1.04);
  transition: transform 0.1s ease;
}

.tech_pg .strip_a .col_txt .arr_row .lnk_plain {
  font-size: 16px;
  color: #4a4232;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.12s ease-out;
}

.tech_pg .strip_a .col_txt .arr_row .lnk_plain:hover {
  color: #B69840;
}

.tech_pg .div_tri {
  width: 100%;
  line-height: 0;
  text-align: right;
}

.tech_pg .div_tri svg {
  display: block;
  margin-left: auto;
}

.tech_pg .strip_b {
  background: radial-gradient(ellipse 70% 50% at 15% 55%, rgba(182, 152, 64, 0.05) 0%, #faf8f3 100%);
  padding: 64px 0;
}

.tech_pg .strip_b .pg_bound {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.tech_pg .strip_b .sec_hd {
  text-align: center;
}

.tech_pg .strip_b .sec_hd h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #1b1610;
  display: inline-block;
  background: linear-gradient(90deg, rgba(182, 152, 64, 0.16) 0%, rgba(196, 181, 139, 0.10) 100%);
  padding: 4px 16px;
  border-radius: 4px;
  margin: 0 0 16px;
}

.tech_pg .strip_b .sec_hd p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4232;
  max-width: 520px;
  margin: 0 auto;
}

.tech_pg .strip_b .checker_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tech_pg .strip_b .checker_grid .c_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: #fff;
  border-radius: 7px;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06), -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  position: relative;
  transition: box-shadow 0.15s ease-out;
}

.tech_pg .strip_b .checker_grid .c_item:hover {
  box-shadow: -1px 9px 48px 0 rgba(182, 152, 64, 0.11);
}

.tech_pg .strip_b .checker_grid .c_item.offset {
  margin-top: 32px;
}

.tech_pg .strip_b .checker_grid .c_item .corner_acc {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: #B69840;
  border-radius: 0 7px 0 36px;
}

.tech_pg .strip_b .checker_grid .c_item .ic_wrap {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  border: 2px solid #C4B58B;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 152, 64, 0.06);
}

.tech_pg .strip_b .checker_grid .c_item .ic_wrap svg {
  width: 24px;
  height: 24px;
  stroke: #B69840;
  fill: none;
  stroke-width: 1.8;
}

.tech_pg .strip_b .checker_grid .c_item .c_body h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #1b1610;
  margin: 0 0 8px;
}

.tech_pg .strip_b .checker_grid .c_item .c_body p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4232;
  margin: 0;
}

.tech_pg .strip_b .img_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.tech_pg .strip_b .img_row .img_side {
  flex: 0 0 420px;
  height: 280px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  position: relative;
}

.tech_pg .strip_b .img_row .img_side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85) brightness(0.94);
  transition: filter 0.18s ease-out;
}

.tech_pg .strip_b .img_row .img_side:hover img {
  filter: saturate(1) brightness(1);
}

.tech_pg .strip_b .img_row .txt_side {
  flex: 1 1 0;
}

.tech_pg .strip_b .img_row .txt_side h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #1b1610;
  display: inline-block;
  background: linear-gradient(90deg, rgba(182, 152, 64, 0.14) 0%, transparent 100%);
  padding: 4px 16px;
  border-radius: 4px;
  margin: 0 0 16px;
}

.tech_pg .strip_b .img_row .txt_side p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4232;
  margin: 0 0 16px;
}

.tech_pg .strip_b .img_row .txt_side p.wide {
  max-width: 100%;
}

.tech_pg .strip_b .img_row .txt_side p.narrow {
  max-width: 380px;
}

.tech_pg .div_line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(182, 152, 64, 0.22) 40%, rgba(196, 181, 139, 0.14) 100%);
}

.tech_pg .strip_c {
  background: #fff;
  padding: 64px 0;
}

.tech_pg .strip_c .pg_bound {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tech_pg .strip_c .top_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}

.tech_pg .strip_c .top_row .portrait_col {
  flex: 0 0 220px;
}

.tech_pg .strip_c .top_row .portrait_col .p_frame {
  width: 220px;
  height: 293px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
}

.tech_pg .strip_c .top_row .portrait_col .p_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) brightness(0.96);
  transition: filter 0.16s ease-out;
}

.tech_pg .strip_c .top_row .portrait_col .p_frame:hover img {
  filter: saturate(1) brightness(1);
}

.tech_pg .strip_c .top_row .portrait_col .p_name {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #1b1610;
  line-height: 1.5;
}

.tech_pg .strip_c .top_row .portrait_col .p_role {
  font-size: 16px;
  color: #B69840;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.tech_pg .strip_c .top_row .quote_col {
  flex: 1 1 0;
  padding-top: 16px;
}

.tech_pg .strip_c .top_row .quote_col h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #1b1610;
  display: inline-block;
  background: linear-gradient(90deg, rgba(182, 152, 64, 0.16) 0%, rgba(196, 181, 139, 0.08) 100%);
  padding: 4px 16px;
  border-radius: 4px;
  margin: 0 0 24px;
}

.tech_pg .strip_c .top_row .quote_col .qt_block {
  border: 2px dashed rgba(182, 152, 64, 0.36);
  border-radius: 7px;
  padding: 32px;
  background: radial-gradient(ellipse 80% 60% at 10% 30%, rgba(182, 152, 64, 0.05) 0%, transparent 70%);
  box-shadow: inset 0 4px 6px 0 rgba(182, 152, 64, 0.06);
}

.tech_pg .strip_c .top_row .quote_col .qt_block p {
  font-size: 18px;
  line-height: 1.8;
  color: #2e2a1f;
  margin: 0 0 8px;
  font-style: italic;
}

.tech_pg .strip_c .top_row .quote_col .qt_block .qt_attr {
  font-size: 16px;
  color: #B69840;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.tech_pg .strip_c .metrics_row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.tech_pg .strip_c .metrics_row .met_card {
  flex: 1 1 0;
  padding: 32px 32px 32px;
  border: 2px solid rgba(196, 181, 139, 0.4);
  border-radius: 7px;
  background: radial-gradient(ellipse 70% 50% at 20% 40%, rgba(182, 152, 64, 0.06) 0%, #fff 80%);
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  cursor: default;
}

.tech_pg .strip_c .metrics_row .met_card:hover {
  border-color: #B69840;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
}

.tech_pg .strip_c .metrics_row .met_card:active {
  transform: scale(1.04);
  transition: transform 0.1s ease;
}

.tech_pg .strip_c .metrics_row .met_card .met_num {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
  color: #B69840;
  letter-spacing: -0.02em;
}

.tech_pg .strip_c .metrics_row .met_card .met_lbl {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4232;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tech_pg .strip_c .metrics_row .met_card .met_desc {
  font-size: 16px;
  line-height: 1.8;
  color: #6b5e3e;
  margin: 0;
}

@media (max-width: 900px) {
  .tech_pg .strip_a .pg_bound {
    flex-direction: column;
    gap: 32px;
  }

  .tech_pg .strip_a .col_img {
    flex: none;
  }

  .tech_pg .strip_a .col_txt h1 {
    font-size: 32px;
  }

  .tech_pg .strip_b .checker_grid {
    grid-template-columns: 1fr;
  }

  .tech_pg .strip_b .checker_grid .c_item.offset {
    margin-top: 0;
  }

  .tech_pg .strip_b .img_row {
    flex-direction: column;
    gap: 32px;
  }

  .tech_pg .strip_b .img_row .img_side {
    flex: none;
    width: 100%;
    height: 220px;
  }

  .tech_pg .strip_c .top_row {
    flex-direction: column;
    gap: 32px;
  }

  .tech_pg .strip_c .metrics_row {
    flex-direction: column;
  }
}

.ab_us {
  display: block;
  width: 100%;
  overflow-x: clip;
  background: #ffffff;
}

.ab_us .ld_schema {
  display: none;
}

/* ===================== SECTION 1 - TITLE BLOCK ===================== */
.ab_us .pg_lead {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-width: 0;
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 64px 64px 0;
  gap: 64px;
  align-items: stretch;
}

.ab_us .pg_lead .img_strip {
  position: relative;
  width: 220px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

.ab_us .pg_lead .img_strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) brightness(0.92);
  transition: filter 0.18s ease-out;
}

.ab_us .pg_lead .img_strip:hover img {
  filter: saturate(1) brightness(1);
}

.ab_us .pg_lead .img_strip .tex_overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg,
      rgba(182, 152, 64, 0.07) 0px,
      rgba(182, 152, 64, 0.07) 1px,
      transparent 1px,
      transparent 6px);
  pointer-events: none;
}

.ab_us .pg_lead .lead_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative;
}

.ab_us .pg_lead .lead_body::before {
  content: '';
  position: absolute;
  top: -32px;
  left: -32px;
  width: 260px;
  height: 260px;
  background: radial-gradient(ellipse 70% 60% at 20% 40%, rgba(182, 152, 64, 0.13) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 36px;
}

.ab_us .pg_lead .lead_body .stack_circles {
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
  overflow: hidden;
}

.ab_us .pg_lead .lead_body .stack_circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(182, 152, 64, 0.15);
}

.ab_us .pg_lead .lead_body .stack_circles span:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 20px;
  right: 10px;
}

.ab_us .pg_lead .lead_body .stack_circles span:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 50px;
  right: 50px;
  border-color: rgba(196, 181, 139, 0.18);
}

.ab_us .pg_lead .lead_body .stack_circles span:nth-child(3) {
  width: 160px;
  height: 160px;
  top: 0px;
  right: -20px;
  border-color: rgba(182, 152, 64, 0.08);
}

.ab_us .pg_lead .lead_label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #B69840;
  text-transform: uppercase;
  border-bottom: 1px solid #B69840;
  padding-bottom: 4px;
  width: fit-content;
}

.ab_us .pg_lead .lead_h {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 700;
  color: #1a1108;
  margin: 0;
  max-width: 640px;
  animation: rise_in 0.2s ease-out both;
}

.ab_us .pg_lead .lead_h em {
  font-style: normal;
  color: #B69840;
}

.ab_us .pg_lead .lead_strip_line {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, #B69840, #C4B58B);
  border-radius: 4px;
}

.ab_us .pg_lead .lead_desc {
  font-size: 18px;
  line-height: 1.8;
  color: #3a3020;
  max-width: 520px;
  margin: 0;
}

.ab_us .pg_lead .lead_meta {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.ab_us .pg_lead .lead_meta .met_item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ab_us .pg_lead .lead_meta .met_val {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #B69840;
}

.ab_us .pg_lead .lead_meta .met_lbl {
  font-size: 16px;
  line-height: 1.5;
  color: #6b5d3a;
  letter-spacing: 0.06em;
}

.ab_us .pg_lead .lead_meta .met_div {
  width: 1px;
  height: 40px;
  background: rgba(182, 152, 64, 0.25);
}

/* ===================== SECTION 2 - ABOUT DETAIL ===================== */
.ab_us .det_sect {
  background: radial-gradient(ellipse 80% 60% at 18% 55%, rgba(182, 152, 64, 0.07) 0%, transparent 65%),
    linear-gradient(180deg, #f7f4ed 0%, #ffffff 100%);
  padding: 64px 0;
  position: relative;
}

.ab_us .det_sect .det_inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.ab_us .det_sect .sidebar_col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px;
  animation: rise_in 0.18s ease-out 0.08s both;
}

.ab_us .det_sect .portrait_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(182, 152, 64, 0.2);
  border-radius: 7px;
  padding: 32px;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
}

.ab_us .det_sect .portrait_wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #B69840;
  flex-shrink: 0;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  transition: box-shadow 0.18s ease-out;
}

.ab_us .det_sect .portrait_wrap:hover {
  box-shadow: -1px 9px 48px 0 rgba(182, 152, 64, 0.11);
}

.ab_us .det_sect .portrait_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ab_us .det_sect .expert_name {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #2a2010;
  margin: 0;
}

.ab_us .det_sect .expert_role {
  font-size: 16px;
  line-height: 1.5;
  color: #B69840;
  margin: 0;
  letter-spacing: 0.04em;
}

.ab_us .det_sect .expert_note {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3e22;
  margin: 0;
}

.ab_us .det_sect .sidebar_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(196, 181, 139, 0.3);
  border-radius: 7px;
  padding: 32px;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
}

.ab_us .det_sect .sidebar_links .sl_label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B69840;
  margin-bottom: 8px;
}

.ab_us .det_sect .sidebar_links a {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2010;
  text-decoration: none;
  border-bottom: 1px solid rgba(182, 152, 64, 0.2);
  padding-bottom: 8px;
  transition: color 0.15s ease-out, border-color 0.15s ease-out;
}

.ab_us .det_sect .sidebar_links a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ab_us .det_sect .sidebar_links a:hover {
  color: #B69840;
  border-color: #B69840;
}

.ab_us .det_sect .main_col {
  display: flex;
  flex-direction: column;
  gap: 64px;
  animation: rise_in 0.2s ease-out 0.12s both;
}

.ab_us .det_sect .blk_head {
  display: inline-block;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #2a2010;
  background: linear-gradient(90deg, rgba(182, 152, 64, 0.14) 0%, rgba(196, 181, 139, 0.08) 100%);
  padding: 4px 16px 4px 8px;
  border-radius: 4px;
  margin: 0 0 8px 0;
}

.ab_us .det_sect .blk_line {
  width: 48px;
  height: 2px;
  background: #B69840;
  border-radius: 4px;
  margin-bottom: 16px;
}

.ab_us .det_sect .txt_wide {
  font-size: 18px;
  line-height: 1.8;
  color: #2a2010;
  max-width: 640px;
  margin: 0 0 16px 0;
}

.ab_us .det_sect .txt_narrow {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3e22;
  max-width: 440px;
  margin: 0 0 16px 0;
}

.ab_us .det_sect .txt_wide:last-child,
.ab_us .det_sect .txt_narrow:last-child {
  margin-bottom: 0;
}

.ab_us .det_sect .img_showcase {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  transition: box-shadow 0.18s ease-out;
  position: relative;
}

.ab_us .det_sect .img_showcase:hover {
  box-shadow: -1px 9px 48px 0 rgba(182, 152, 64, 0.11);
}

.ab_us .det_sect .img_showcase img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.95);
  transition: filter 0.2s ease-out;
}

.ab_us .det_sect .img_showcase:hover img {
  filter: saturate(1) brightness(1);
}

.ab_us .det_sect .pillars_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ab_us .det_sect .pillar_item {
  background: #ffffff;
  border: 1px solid rgba(182, 152, 64, 0.18);
  border-radius: 7px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  transition: box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.ab_us .det_sect .pillar_item:hover {
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  border-color: rgba(182, 152, 64, 0.4);
}

.ab_us .det_sect .pillar_item .pi_icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab_us .det_sect .pillar_item .pi_icon svg {
  width: 28px;
  height: 28px;
  stroke: #B69840;
  fill: none;
  stroke-width: 1.5;
}

.ab_us .det_sect .pillar_item .pi_name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #2a2010;
  margin: 0;
}

.ab_us .det_sect .pillar_item .pi_desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3e22;
  margin: 0;
}

.ab_us .det_sect .contact_strip {
  background: linear-gradient(135deg, rgba(182, 152, 64, 0.1) 0%, rgba(196, 181, 139, 0.06) 100%);
  border: 1px solid rgba(182, 152, 64, 0.22);
  border-radius: 7px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.ab_us .det_sect .contact_strip .cs_group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ab_us .det_sect .contact_strip .cs_lbl {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B69840;
}

.ab_us .det_sect .contact_strip .cs_val {
  font-size: 18px;
  line-height: 1.5;
  color: #2a2010;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.ab_us .det_sect .contact_strip .cs_val:hover {
  color: #B69840;
}

.ab_us .det_sect .contact_strip .cs_sep {
  width: 1px;
  height: 40px;
  background: rgba(182, 152, 64, 0.25);
}

.ab_us .det_sect .contact_strip .cs_btn {
  margin-left: auto;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  color: #B69840;
  border: 1px solid #B69840;
  border-radius: 4px;
  padding: 8px 32px;
  text-decoration: none;
  background: transparent;
  transition: background 0.18s ease-out, color 0.18s ease-out;
  white-space: nowrap;
}

.ab_us .det_sect .contact_strip .cs_btn:hover {
  background: #B69840;
  color: #ffffff;
}

/* ===================== ANIMATIONS ===================== */
@keyframes rise_in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .ab_us .pg_lead {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }

  .ab_us .pg_lead .img_strip {
    width: 100%;
    height: 220px;
  }

  .ab_us .pg_lead .lead_h {
    font-size: 32px;
  }

  .ab_us .det_sect .det_inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 32px;
  }

  .ab_us .det_sect .sidebar_col {
    position: static;
  }

  .ab_us .det_sect .pillars_grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab_us .det_sect .contact_strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .ab_us .det_sect .contact_strip .cs_sep {
    display: none;
  }

  .ab_us .det_sect .contact_strip .cs_btn {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .ab_us .pg_lead {
    padding: 32px 16px;
  }

  .ab_us .pg_lead .lead_meta {
    gap: 16px;
  }

  .ab_us .det_sect .det_inner {
    padding: 0 16px;
  }

  .ab_us .det_sect .pillars_grid {
    grid-template-columns: 1fr;
  }
}

.ctc_pg {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
}

.ctc_pg .pg_lead {
  padding: 64px 32px 64px;
  background: linear-gradient(160deg, #ffffff 0%, #f5f0e8 60%, #ede4cc 100%);
  position: relative;
  overflow: hidden;
}

.ctc_pg .pg_lead::before {
  content: '';
  position: absolute;
  left: -80px;
  top: -40px;
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse 70% 60% at 30% 40%, rgba(182, 152, 64, 0.13) 0%, transparent 75%);
  pointer-events: none;
}

.ctc_pg .pg_lead_inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ctc_pg .lead_text {
  position: relative;
  z-index: 1;
}

.ctc_pg .lead_label {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #B69840;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.ctc_pg .lead_heading {
  font-size: 62px;
  line-height: 1.1;
  color: #1a1200;
  font-weight: 800;
  margin: 0 0 32px 0;
  position: relative;
  display: inline-block;
}

.ctc_pg .lead_heading span {
  display: inline;
  background: linear-gradient(90deg, #B69840 0%, #C4B58B 50%, #B69840 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sweep_color 2.2s ease-out forwards;
}

@keyframes sweep_color {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: 0% center;
  }
}

.ctc_pg .lead_desc {
  font-size: 18px;
  line-height: 1.8;
  color: #3a3020;
  max-width: 480px;
  margin: 0 0 32px 0;
}

.ctc_pg .lead_desc.narrow {
  max-width: 340px;
  font-size: 16px;
  line-height: 1.5;
  color: #5a4e30;
}

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

.ctc_pg .fact_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(182, 152, 64, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  transition: border-color 0.15s ease-out, box-shadow 0.2s ease;
}

.ctc_pg .fact_row:hover {
  border-color: rgba(182, 152, 64, 0.55);
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
}

.ctc_pg .fact_icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctc_pg .fact_icon svg {
  width: 22px;
  height: 22px;
  stroke: #B69840;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctc_pg .fact_detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctc_pg .fact_lbl {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #B69840;
  text-transform: uppercase;
}

.ctc_pg .fact_val {
  font-size: 16px;
  line-height: 1.5;
  color: #2a2010;
  font-weight: 600;
}

.ctc_pg .fact_val a {
  color: #2a2010;
  text-decoration: none;
  border-bottom: 1px solid rgba(182, 152, 64, 0.4);
  transition: border-color 0.15s ease-out, color 0.15s ease-out;
}

.ctc_pg .fact_val a:hover {
  color: #B69840;
  border-color: #B69840;
}

.ctc_pg .lead_img_col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctc_pg .img_frame_outer {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.ctc_pg .img_bracket_tl,
.ctc_pg .img_bracket_br {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 2;
}

.ctc_pg .img_bracket_tl {
  top: -8px;
  left: -8px;
  border-top: 2px solid #B69840;
  border-left: 2px solid #B69840;
  border-radius: 4px 0 0 0;
}

.ctc_pg .img_bracket_br {
  bottom: -8px;
  right: -8px;
  border-bottom: 2px solid #B69840;
  border-right: 2px solid #B69840;
  border-radius: 0 0 4px 0;
}

.ctc_pg .img_clip_wrap {
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: -1px 9px 48px 0 rgba(182, 152, 64, 0.11);
  position: relative;
}

.ctc_pg .img_clip_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(182, 152, 64, 0.28);
  transition: background 0.2s ease-out;
  pointer-events: none;
}

.ctc_pg .img_clip_wrap:hover::after {
  background: rgba(182, 152, 64, 0.04);
}

.ctc_pg .img_clip_wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: blur(0px);
}

.ctc_pg .abstract_shape {
  position: absolute;
  pointer-events: none;
}

.ctc_pg .shape_a {
  right: -24px;
  top: 40px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(196, 181, 139, 0.35);
  border-radius: 7px;
  transform: rotate(18deg);
}

.ctc_pg .shape_b {
  left: -16px;
  bottom: 32px;
  width: 28px;
  height: 28px;
  background: rgba(182, 152, 64, 0.12);
  border-radius: 4px;
  transform: rotate(-12deg);
}

.ctc_pg .divider_dots {
  width: 100%;
  height: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.ctc_pg .dot_row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.ctc_pg .dot_row span {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 36px;
  background: rgba(182, 152, 64, 0.35);
}

.ctc_pg .form_seg {
  padding: 64px 32px 64px;
  background: #ffffff;
  position: relative;
}

.ctc_pg .form_seg_inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: flex-start;
}

.ctc_pg .form_aside {
  position: relative;
}

.ctc_pg .aside_bracket {
  display: inline-block;
  padding: 32px 24px;
  border: 1.5px solid rgba(182, 152, 64, 0.3);
  border-radius: 7px;
  background: linear-gradient(160deg, #fdfaf4 0%, #f8f2e2 100%);
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  width: 100%;
}

.ctc_pg .aside_heading {
  font-size: 32px;
  line-height: 1.1;
  color: #1a1200;
  font-weight: 700;
  margin: 0 0 16px 0;
  text-align: center;
}

.ctc_pg .aside_heading_bg {
  display: inline-block;
  background: rgba(182, 152, 64, 0.13);
  padding: 4px 16px;
  border-radius: 4px;
}

.ctc_pg .aside_body {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3020;
  text-align: left;
  margin: 0 0 16px 0;
}

.ctc_pg .aside_body.narrow {
  max-width: 260px;
  font-size: 16px;
  line-height: 1.5;
  color: #5a4e30;
}

.ctc_pg .aside_img_wrap {
  margin-top: 24px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  border: 1px solid rgba(182, 152, 64, 0.18);
}

.ctc_pg .aside_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(182, 152, 64, 0.22);
  transition: background 0.18s ease-out;
  pointer-events: none;
}

.ctc_pg .aside_img_wrap:hover::after {
  background: rgba(182, 152, 64, 0.04);
}

.ctc_pg .aside_img_wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ctc_pg .form_card {
  background: #fff;
  border: 1.5px solid rgba(182, 152, 64, 0.22);
  border-radius: 7px;
  padding: 32px;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  position: relative;
}

.ctc_pg .form_card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 32px;
  width: 80px;
  height: 3px;
  background: #B69840;
  border-radius: 0 0 4px 4px;
}

.ctc_pg .form_title {
  font-size: 32px;
  line-height: 1.1;
  color: #1a1200;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: center;
}

.ctc_pg .form_title_bg {
  display: inline-block;
  background: rgba(182, 152, 64, 0.13);
  padding: 4px 16px;
  border-radius: 4px;
}

.ctc_pg .form_sub {
  font-size: 16px;
  line-height: 1.5;
  color: #5a4e30;
  margin: 0 0 32px 0;
  text-align: center;
}

.ctc_pg .form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.ctc_pg .field_lbl {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #3a3020;
  font-weight: 600;
}

.ctc_pg .field_lbl .req {
  color: #B69840;
  margin-left: 2px;
}

.ctc_pg .field_input {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #2a2010;
  background: #fdfaf4;
  border: 1.5px solid rgba(182, 152, 64, 0.28);
  border-radius: 7px;
  outline: none;
  box-shadow: inset 0 3px 6px 0 rgba(182, 152, 64, 0.06);
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.ctc_pg .field_input::placeholder {
  color: rgba(42, 32, 16, 0.4);
}

.ctc_pg .field_input:focus {
  border-color: #B69840;
  box-shadow: inset 0 3px 6px 0 rgba(182, 152, 64, 0.06), 0 0 0 3px rgba(182, 152, 64, 0.12);
}

.ctc_pg .field_select {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #2a2010;
  background: #fdfaf4;
  border: 1.5px solid rgba(182, 152, 64, 0.28);
  border-radius: 7px;
  outline: none;
  box-shadow: inset 0 3px 6px 0 rgba(182, 152, 64, 0.06);
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23B69840' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.ctc_pg .field_select:focus {
  border-color: #B69840;
  box-shadow: inset 0 3px 6px 0 rgba(182, 152, 64, 0.06), 0 0 0 3px rgba(182, 152, 64, 0.12);
}

.ctc_pg .field_textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #2a2010;
  background: #fdfaf4;
  border: 1.5px solid rgba(182, 152, 64, 0.28);
  border-radius: 7px;
  outline: none;
  box-shadow: inset 0 3px 6px 0 rgba(182, 152, 64, 0.06);
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
}

.ctc_pg .field_textarea::placeholder {
  color: rgba(42, 32, 16, 0.4);
}

.ctc_pg .field_textarea:focus {
  border-color: #B69840;
  box-shadow: inset 0 3px 6px 0 rgba(182, 152, 64, 0.06), 0 0 0 3px rgba(182, 152, 64, 0.12);
}

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

.ctc_pg .radio_opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border: 1.5px solid rgba(182, 152, 64, 0.2);
  border-radius: 7px;
  background: #fdfaf4;
  transition: border-color 0.15s ease-out, background 0.15s ease-out;
}

.ctc_pg .radio_opt:hover {
  border-color: rgba(182, 152, 64, 0.55);
  background: rgba(182, 152, 64, 0.06);
}

.ctc_pg .radio_opt input[type="radio"] {
  accent-color: #B69840;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.ctc_pg .radio_opt_lbl {
  font-size: 16px;
  color: #2a2010;
  line-height: 1.5;
  cursor: pointer;
}

.ctc_pg .privacy_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(182, 152, 64, 0.05);
  border: 1px solid rgba(182, 152, 64, 0.18);
  border-radius: 7px;
  margin-top: 8px;
}

.ctc_pg .privacy_row input[type="checkbox"] {
  accent-color: #B69840;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.ctc_pg .privacy_text {
  font-size: 16px;
  line-height: 1.5;
  color: #3a3020;
}

.ctc_pg .privacy_text a {
  color: #B69840;
  text-decoration: none;
  border-bottom: 1px solid rgba(182, 152, 64, 0.4);
  transition: border-color 0.12s ease-out;
}

.ctc_pg .privacy_text a:hover {
  border-color: #B69840;
}

.ctc_pg .submit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #B69840;
  background: transparent;
  border: 2px solid #B69840;
  border-radius: 7px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.18s ease-out, background 0.18s ease-out, box-shadow 0.18s ease-out;
  outline: none;
}

.ctc_pg .submit_btn:hover {
  background: #B69840;
  color: #ffffff;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.22);
}

.ctc_pg .submit_btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(182, 152, 64, 0.3);
}

.ctc_pg .submit_btn:active {
  background: #9a8030;
  border-color: #9a8030;
  color: #ffffff;
}

.ctc_pg .btn_icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ctc_pg .btn_icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctc_pg .form_actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}

.ctc_pg .outline_trace {
  position: relative;
}

.ctc_pg .outline_trace::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid transparent;
  border-radius: 7px;
  background: linear-gradient(90deg, #B69840, #C4B58B, #B69840) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.18s ease-out;
  pointer-events: none;
}

.ctc_pg .outline_trace:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .ctc_pg .pg_lead_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ctc_pg .lead_img_col {
    order: -1;
  }

  .ctc_pg .form_seg_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ctc_pg .form_grid {
    grid-template-columns: 1fr;
  }

  .ctc_pg .field_grp.full {
    grid-column: 1;
  }

  .ctc_pg .lead_heading {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .ctc_pg .pg_lead {
    padding: 32px 16px 32px;
  }

  .ctc_pg .form_seg {
    padding: 32px 16px 32px;
  }

  .ctc_pg .form_card {
    padding: 16px;
  }

  .ctc_pg .aside_bracket {
    padding: 16px;
  }
}

.base_pg {
  display: block;
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.base_pg .schema_data {
  display: none;
}

/* ── SECTION 1: TITLE BLOCK ── */
.base_pg .lead_unit {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 64px 0;
  text-align: center;
  position: relative;
}

.base_pg .lead_unit .corner_rings {
  position: absolute;
  top: 16px;
  right: 32px;
  width: 80px;
  height: 80px;
  pointer-events: none;
  overflow: hidden;
}

.base_pg .lead_unit .corner_rings span {
  position: absolute;
  border: 1px solid #C4B58B;
  border-radius: 4px;
}

.base_pg .lead_unit .corner_rings span:nth-child(1) {
  inset: 0;
}

.base_pg .lead_unit .corner_rings span:nth-child(2) {
  inset: 8px;
}

.base_pg .lead_unit .corner_rings span:nth-child(3) {
  inset: 16px;
}

.base_pg .lead_unit .corner_rings span:nth-child(4) {
  inset: 24px;
}

.base_pg .lead_kicker {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #B69840;
  text-transform: uppercase;
  border: 1px solid #C4B58B;
  border-radius: 4px;
  padding: 4px 16px;
  margin-bottom: 32px;
}

.base_pg .lead_h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #1e1e1e;
  font-weight: 700;
  max-width: 860px;
  margin: 0 auto 16px;
}

.base_pg .lead_h1 .h1_accent {
  background: #B69840;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.base_pg .lead_sub {
  font-size: 18px;
  line-height: 1.5;
  color: #3a3530;
  max-width: 560px;
  margin: 0 auto 32px;
}

.base_pg .lead_img_frame {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 6;
}

.base_pg .lead_img_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.18s ease-out;
}

.base_pg .lead_img_frame:hover img {
  filter: brightness(1);
}

.base_pg .lead_img_frame .scanline_layer {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom,
      transparent 0px,
      transparent 3px,
      rgba(182, 152, 64, 0.04) 3px,
      rgba(182, 152, 64, 0.04) 4px);
  pointer-events: none;
}

.base_pg .lead_img_frame .vignette_layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, transparent 40%, rgba(30, 20, 5, 0.52) 100%);
  pointer-events: none;
}

.base_pg .lead_wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.base_pg .lead_wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* ── SECTION 2: INVESTMENT SIGNAL ── */
.base_pg .invest_band {
  background: linear-gradient(155deg, #fdf9f0 0%, #f5eedc 60%, #fdf9f0 100%);
  padding: 64px 0;
  animation: bg_pulse 7s ease-in-out infinite;
}

@keyframes bg_pulse {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.03);
  }
}

.base_pg .invest_inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.base_pg .invest_label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B69840;
  margin-bottom: 16px;
}

.base_pg .invest_h2 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #1e1e1e;
  background: #C4B58B;
  display: inline;
  padding: 2px 8px;
  border-radius: 4px;
}

.base_pg .invest_col_left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.base_pg .invest_col_left .invest_h2 {
  display: inline-block;
  margin-bottom: 8px;
}

.base_pg .invest_body {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
}

.base_pg .invest_body.narrow {
  max-width: 340px;
}

.base_pg .invest_metric_col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
}

.base_pg .invest_stat {
  text-align: center;
  border: 1px solid #C4B58B;
  border-radius: 7px;
  padding: 16px;
  width: 100%;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  background: #ffffff;
}

.base_pg .invest_stat .big_num {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 700;
  color: #B69840;
  display: inline-block;
}

.base_pg .invest_stat .big_num sup {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #C4B58B;
  vertical-align: super;
}

.base_pg .invest_stat .stat_desc {
  font-size: 16px;
  line-height: 1.5;
  color: #3a3530;
  margin-top: 4px;
}

.base_pg .invest_col_right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.base_pg .invest_card {
  border: 1px solid #C4B58B;
  border-radius: 7px;
  padding: 16px;
  background: #ffffff;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
  transition: box-shadow 0.15s ease-out;
}

.base_pg .invest_card:hover {
  box-shadow: -1px 9px 48px 0 rgba(182, 152, 64, 0.11);
}

.base_pg .invest_card .card_head {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e1e1e;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.base_pg .invest_card .card_txt {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
}

/* ── SECTION 3: APPROACH DISTINCTION ── */
.base_pg .dist_band {
  background: #1e1a14;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.base_pg .dist_band .dist_bg_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  filter: brightness(0.7);
  pointer-events: none;
}

.base_pg .dist_band .dist_overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 25% 50%, rgba(182, 152, 64, 0.18) 0%, rgba(30, 26, 20, 0.82) 70%);
  pointer-events: none;
}

.base_pg .dist_inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 1;
}

.base_pg .dist_label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4B58B;
  margin-bottom: 16px;
}

.base_pg .dist_h2 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  background: rgba(182, 152, 64, 0.25);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.base_pg .dist_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.base_pg .dist_item {
  border: 1px solid rgba(196, 181, 139, 0.3);
  border-radius: 7px;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 4px 6px 0 rgba(182, 152, 64, 0.06);
  transition: background 0.2s ease-out, border-color 0.15s ease-out;
}

.base_pg .dist_item:hover {
  background: rgba(182, 152, 64, 0.10);
  border-color: rgba(196, 181, 139, 0.6);
}

.base_pg .dist_item_num {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 700;
  color: #B69840;
  opacity: 0.35;
  margin-bottom: 8px;
}

.base_pg .dist_item_num sup {
  font-size: 18px;
  vertical-align: super;
}

.base_pg .dist_item_head {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.base_pg .dist_item_txt {
  font-size: 16px;
  line-height: 1.8;
  color: #c8bfa8;
}

.base_pg .dist_item_fade {
  opacity: 1;
  transition: opacity 0.18s ease-out;
}

.base_pg .dist_item:hover .dist_item_fade {
  opacity: 1;
}

/* slow fade after hover - achieved via transition delay on non-hover state */
.base_pg .dist_item .dist_item_fade {
  transition: opacity 0.8s ease-out;
}

.base_pg .dist_item:hover .dist_item_fade {
  opacity: 1;
  transition: opacity 0.12s ease-out;
}

/* ── SECTION 4: COMMUNITY / ENVIRONMENT ── */
.base_pg .env_band {
  background: #ffffff;
  padding: 64px 0;
}

.base_pg .env_inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.base_pg .env_left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.base_pg .env_label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B69840;
  margin-bottom: 8px;
}

.base_pg .env_h2 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #1e1e1e;
  background: #C4B58B;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
}

.base_pg .env_desc {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
}

.base_pg .env_desc.narrow {
  max-width: 420px;
}

.base_pg .env_peers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.base_pg .env_peer_card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid #C4B58B;
  border-radius: 7px;
  padding: 16px;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  background: #fdfaf4;
  transition: box-shadow 0.15s ease-out;
}

.base_pg .env_peer_card:hover {
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10);
}

.base_pg .env_peer_img_wrap {
  width: 64px;
  height: 82px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}

.base_pg .env_peer_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.base_pg .env_peer_no_img {
  width: 64px;
  height: 64px;
  border-radius: 7px;
  background: linear-gradient(135deg, #C4B58B 0%, #B69840 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.base_pg .env_peer_no_img svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.base_pg .env_peer_name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e1e1e;
}

.base_pg .env_peer_role {
  font-size: 16px;
  line-height: 1.5;
  color: #B69840;
  margin-bottom: 4px;
}

.base_pg .env_peer_quote {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
}

.base_pg .env_right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.base_pg .env_img_card {
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  box-shadow: -1px 9px 48px 0 rgba(182, 152, 64, 0.11);
}

.base_pg .env_img_card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.18s ease-out;
}

.base_pg .env_img_card:hover img {
  filter: brightness(1);
}

.base_pg .env_img_card .env_vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 40%, transparent 35%, rgba(30, 20, 5, 0.48) 100%);
  pointer-events: none;
}

.base_pg .env_detail_box {
  border: 1px solid #C4B58B;
  border-radius: 7px;
  padding: 32px 16px;
  box-shadow: inset 0 3px 6px 0 rgba(182, 152, 64, 0.06);
  background: #fdfaf4;
  position: relative;
}

.base_pg .env_detail_box .corner_rings_sm {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  pointer-events: none;
  overflow: hidden;
}

.base_pg .env_detail_box .corner_rings_sm span {
  position: absolute;
  border: 1px solid #C4B58B;
  border-radius: 4px;
}

.base_pg .env_detail_box .corner_rings_sm span:nth-child(1) {
  inset: 0;
}

.base_pg .env_detail_box .corner_rings_sm span:nth-child(2) {
  inset: 6px;
}

.base_pg .env_detail_box .corner_rings_sm span:nth-child(3) {
  inset: 12px;
}

.base_pg .env_detail_head {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 8px;
}

.base_pg .env_detail_txt {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
}

/* ── PROGRESSIVE DISCLOSURE (details/summary) ── */
.base_pg .disc_unit {
  border: 1px solid #C4B58B;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  overflow: hidden;
}

.base_pg .disc_unit summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e1e1e;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  user-select: none;
  transition: background 0.15s ease-out;
}

.base_pg .disc_unit summary::-webkit-details-marker {
  display: none;
}

.base_pg .disc_unit summary:hover {
  background: #fdf9f0;
}

.base_pg .disc_unit summary .disc_icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.base_pg .disc_unit summary .disc_icon svg {
  width: 16px;
  height: 16px;
  stroke: #B69840;
  fill: none;
  transition: transform 0.15s ease-out;
}

.base_pg .disc_unit[open] summary .disc_icon svg {
  transform: rotate(45deg);
}

.base_pg .disc_body {
  padding: 0 16px 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .base_pg .lead_unit {
    padding: 32px 16px 0;
  }

  .base_pg .lead_h1 {
    font-size: 32px;
  }

  .base_pg .invest_inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }

  .base_pg .dist_inner {
    padding: 0 16px;
  }

  .base_pg .dist_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .base_pg .env_inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 32px;
  }

  .base_pg .invest_band,
  .base_pg .dist_band,
  .base_pg .env_band {
    padding: 32px 0;
  }
}

@media (max-width: 600px) {
  .base_pg .lead_h1 {
    font-size: 32px;
  }

  .base_pg .lead_img_frame {
    aspect-ratio: 4 / 3;
  }

  .base_pg .invest_metric_col {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .base_pg .invest_stat {
    flex: 1 1 140px;
  }
}

.success_page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(182, 152, 64, 0.08) 0%, rgba(255, 255, 255, 0) 70%), #ffffff;
}

.success_page .success_card {
  max-width: 560px;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(182, 152, 64, 0.28);
  border-radius: 7px;
  padding: 64px 32px;
  box-shadow: -1px 7px 28px 0 rgba(182, 152, 64, 0.10), -1px 2px 4px 0 rgba(182, 152, 64, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.success_page .icon_wrap {
  width: 64px;
  height: 64px;
  border-radius: 36px;
  border: 2px solid #B69840;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 3px 6px 0 rgba(182, 152, 64, 0.10);
}

.success_page .icon_wrap svg {
  display: block;
}

.success_page .success_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.success_page .success_label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #B69840;
  text-transform: uppercase;
  font-weight: 600;
}

.success_page .success_heading {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b1812;
  margin: 0;
  padding: 4px 16px;
  background: linear-gradient(90deg, rgba(196, 181, 139, 0.18) 0%, rgba(182, 152, 64, 0.13) 100%);
  border-radius: 4px;
}

.success_page .success_text {
  font-size: 18px;
  line-height: 1.8;
  color: #3d3829;
  margin: 0;
  max-width: 420px;
}

.success_page .success_note {
  font-size: 16px;
  line-height: 1.5;
  color: #6b5e38;
  margin: 0;
  max-width: 380px;
}

.success_page .divider_line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(182, 152, 64, 0.30) 40%, rgba(196, 181, 139, 0.22) 70%, transparent 100%);
}

.success_page .action_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.success_page .btn_primary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  color: #B69840;
  background: transparent;
  border: 1.5px solid #B69840;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.2s ease;
}

.success_page .btn_primary:hover,
.success_page .btn_primary:focus {
  background: #B69840;
  color: #ffffff;
  outline: none;
}

.success_page .btn_primary:active {
  background: #9a8134;
  border-color: #9a8134;
  color: #ffffff;
}

.success_page .btn_secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 500;
  color: #3d3829;
  background: transparent;
  border: 1.5px solid rgba(196, 181, 139, 0.55);
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.18s ease-out, color 0.18s ease-out;
}

.success_page .btn_secondary:hover,
.success_page .btn_secondary:focus {
  border-color: #C4B58B;
  color: #B69840;
  outline: none;
}

.success_page .btn_secondary:active {
  color: #9a8134;
  border-color: #B69840;
}

@media (max-width: 600px) {
  .success_page {
    padding: 32px 16px;
  }

  .success_page .success_card {
    padding: 32px 16px;
    gap: 16px;
  }

  .success_page .action_row {
    flex-direction: column;
    align-items: stretch;
  }

  .success_page .btn_primary,
  .success_page .btn_secondary {
    text-align: center;
  }
}