html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
}

.top_bar {
  background: #91894F;
  width: 100%;
}
.top_bar_inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 48px;
}
.top_contact_row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.top_contact_item {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: #F7F8F3;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s ease-out;
}
.top_contact_item:hover,
.top_contact_item:focus {
  color: #C8CEB3;
  outline: none;
}
.top_contact_item:focus-visible {
  outline: 2px dashed #F7F8F3;
  outline-offset: 2px;
  border-radius: 3px;
}
.top_nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.top_nav_link {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: #F7F8F3;
  line-height: 1.2;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: background 0.15s ease-out, color 0.12s ease-out;
}
.top_nav_link:hover {
  background: rgba(200, 206, 179, 0.18);
  color: #F7F8F3;
}
.top_nav_link:focus-visible {
  outline: 2px dashed #F7F8F3;
  outline-offset: 2px;
}

.brand_strip {
  background: #F7F8F3;
  border-bottom: 1px solid #C8CEB3;
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
  width: 100%;
}
.brand_strip_inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  gap: 32px;
}
.logo_hex_frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #fff;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 1px 2px 2px -2px rgba(145, 137, 79, 0.08), 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
  border: 2px solid #C8CEB3;
  flex-shrink: 0;
  position: relative;
}
.logo_hex_frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  z-index: 0;
}
.logo_img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}
.brand_descriptor {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand_name {
  font-family: 'PT Serif', serif;
  font-size: 33px;
  font-weight: 700;
  color: #3a3520;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.brand_tagline {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: #91894F;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand_action_link {
  font-family: 'Source Serif Pro', serif;
  font-size: 16px;
  font-weight: 700;
  color: #F7F8F3;
  background: #91894F;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 10px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 2px 2px -2px rgba(145, 137, 79, 0.08);
  transition: color 0.18s ease-out, box-shadow 0.18s ease-out;
  min-height: 44px;
}
.brand_action_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #3a3520;
  border-radius: 10px;
  transition: height 0.16s ease-out;
  z-index: 0;
}
.brand_action_link:hover::after,
.brand_action_link:focus::after {
  height: 100%;
}
.brand_action_link span {
  position: relative;
  z-index: 1;
}
.brand_action_link:focus-visible {
  outline: 2px dashed #91894F;
  outline-offset: 3px;
}

@media (max-width: 1280px) {
  .top_bar_inner {
    padding: 8px 32px;
  }
  .brand_strip_inner {
    padding: 16px 32px;
  }
}
@media (max-width: 768px) {
  .top_bar_inner {
    flex-direction: column;
    gap: 8px;
    padding: 8px 16px;
  }
  .top_contact_row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .top_nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
  .brand_strip_inner {
    flex-wrap: wrap;
    padding: 16px;
    gap: 16px;
  }
  .brand_descriptor {
    flex: 1 1 200px;
  }
  .brand_name {
    font-size: 24px;
  }
  .brand_action_link {
    padding: 16px 24px;
    font-size: 14px;
  }
}

.site_footer {
  background: linear-gradient(160deg, #3a3520 0%, #2a2815 100%);
  width: 100%;
}
.footer_upper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 48px 32px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.footer_brand_col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}
.footer_logo_frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #F7F8F3;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 1px 2px 2px -2px rgba(200, 206, 179, 0.08);
  flex-shrink: 0;
}
.footer_logo_img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.footer_brand_name {
  font-family: 'PT Serif', serif;
  font-size: 24px;
  font-weight: 700;
  color: #F7F8F3;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.footer_desc {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: #C8CEB3;
  line-height: 1.8;
  max-width: 300px;
}
.footer_contacts_col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer_col_label {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  font-weight: 700;
  color: #91894F;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer_contact_link {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: #C8CEB3;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  transition: color 0.14s ease-out;
}
.footer_contact_link:hover {
  color: #F7F8F3;
}
.footer_contact_link:focus-visible {
  outline: 2px dashed #C8CEB3;
  outline-offset: 2px;
  border-radius: 3px;
}
.footer_addr {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: #C8CEB3;
  line-height: 1.8;
}
.footer_divider {
  border: none;
  border-top: 1px solid rgba(200, 206, 179, 0.15);
  margin: 0;
}
.footer_lower {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer_copy {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: rgba(200, 206, 179, 0.6);
  line-height: 1.2;
}
.footer_policy_nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer_policy_link {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: rgba(200, 206, 179, 0.6);
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.14s ease-out;
}
.footer_policy_link:hover {
  color: #C8CEB3;
}
.footer_policy_link:focus-visible {
  outline: 2px dashed #C8CEB3;
  outline-offset: 2px;
  border-radius: 3px;
}

@media (max-width: 1280px) {
  .footer_upper {
    padding: 48px 32px 32px;
  }
  .footer_lower {
    padding: 16px 32px;
  }
}
@media (max-width: 768px) {
  .footer_upper {
    flex-direction: column;
    padding: 32px 16px 24px;
    gap: 32px;
  }
  .footer_lower {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 8px;
  }
  .footer_policy_nav {
    gap: 16px;
  }
}.content-legal {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 48px;
}

.content-legal h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #2a2620;
    margin-bottom: 48px;
    margin-top: 0;
}

.content-legal h2 {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2a2620;
    margin-top: 96px;
    margin-bottom: 32px;
}

.content-legal h3 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #2a2620;
    margin-top: 48px;
    margin-bottom: 16px;
}

.content-legal h4 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #2a2620;
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-legal h5 {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #91894F;
    margin-top: 32px;
    margin-bottom: 8px;
}

.content-legal h6 {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #91894F;
    margin-top: 16px;
    margin-bottom: 8px;
}

.content-legal p {
    font-size: 16px;
    line-height: 1.8;
    color: #3d3a30;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch;
}

.content-legal ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: none;
}

.content-legal ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: none;
    counter-reset: policy-counter;
}

.content-legal ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #3d3a30;
    margin-bottom: 8px;
    position: relative;
    max-width: 72ch;
}

.content-legal ul li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: -20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #91894F;
}

.content-legal ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #3d3a30;
    margin-bottom: 8px;
    position: relative;
    max-width: 72ch;
    counter-increment: policy-counter;
}

.content-legal ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -28px;
    top: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #91894F;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.content-legal ul ul,
.content-legal ol ol,
.content-legal ul ol,
.content-legal ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 32px;
}

.content-legal strong,
.content-legal b {
    font-weight: 700;
    color: #2a2620;
}

.content-legal a {
    color: #91894F;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

.content-legal a:hover {
    color: #6b6438;
    text-decoration-color: transparent;
}

.content-legal hr {
    border: none;
    border-top: 1px solid #C8CEB3;
    margin-top: 48px;
    margin-bottom: 48px;
}

.content-legal table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.8;
    box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
    border-radius: 10px;
    overflow: hidden;
}

.content-legal thead {
    background-color: #F7F8F3;
}

.content-legal thead tr {
    border-bottom: 2px solid #C8CEB3;
}

.content-legal th {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #91894F;
}

.content-legal tbody tr {
    border-bottom: 1px solid rgba(200, 206, 179, 0.5);
    transition: background-color 0.1s ease-out;
}

.content-legal tbody tr:last-child {
    border-bottom: none;
}

.content-legal tbody tr:hover {
    background-color: #F7F8F3;
}

.content-legal td {
    padding: 16px;
    color: #3d3a30;
    font-size: 14px;
    line-height: 1.8;
    vertical-align: top;
}

@media (max-width: 768px) {
    .content-legal {
        padding: 48px 16px;
    }

    .content-legal h1 {
        font-size: 46px;
        margin-bottom: 32px;
    }

    .content-legal h2 {
        font-size: 33px;
        margin-top: 48px;
        margin-bottom: 16px;
    }

    .content-legal h3 {
        font-size: 24px;
        margin-top: 32px;
    }

    .content-legal h4 {
        font-size: 16px;
        margin-top: 16px;
    }

    .content-legal table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .content-legal th,
    .content-legal td {
        padding: 16px 8px;
        min-width: 120px;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .content-legal {
        padding: 96px 32px;
    }

    .content-legal h1 {
        font-size: 46px;
    }

    .content-legal h2 {
        font-size: 33px;
    }
}
.qz_pg {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.qz_pg .reveal {
  opacity: 0;
  transform: translateY(32px);
  animation: rise 0.5s ease-out forwards;
}
.qz_pg .reveal.d1 { animation-delay: 0.08s; }
.qz_pg .reveal.d2 { animation-delay: 0.18s; }
.qz_pg .reveal.d3 { animation-delay: 0.28s; }
.qz_pg .reveal.d4 { animation-delay: 0.38s; }
.qz_pg .reveal.d5 { animation-delay: 0.48s; }

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

.qz_pg .grad_txt {
  background: linear-gradient(120deg, #91894F 0%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qz_pg .geo_div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  overflow: hidden;
}
.qz_pg .geo_div svg {
  flex-shrink: 0;
}

.qz_pg .title_blk {
  position: relative;
  padding: 96px 48px 48px 48px;
  background: #F7F8F3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.qz_pg .title_blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(145,137,79,0.10) 0%, rgba(247,248,243,0) 70%);
  pointer-events: none;
}
.qz_pg .title_txt {
  position: relative;
  z-index: 1;
}
.qz_pg .title_eyebrow {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #91894F;
  margin-bottom: 16px;
}
.qz_pg .title_h1 {
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #2a2510;
  margin-bottom: 32px;
}
.qz_pg .title_desc {
  font-size: 16px;
  line-height: 1.8;
  color: #3d3820;
  max-width: 480px;
  margin-bottom: 32px;
}
.qz_pg .title_desc em {
  font-size: 18px;
  font-style: italic;
  color: #91894F;
}
.qz_pg .title_img_wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.qz_pg .title_img {
  width: 100%;
  max-width: 520px;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.72;
  box-shadow: 1px 10px 36px -2px rgba(145,137,79,0.10);
}
.qz_pg .title_shape {
  position: absolute;
  top: -24px;
  right: 24px;
  width: 80px;
  height: 80px;
  pointer-events: none;
}
.qz_pg .title_cta {
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  color: #2a2510;
  border: 1.5px solid #91894F;
  border-radius: 3px;
  padding: 16px 32px;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out;
  text-decoration: none;
}
.qz_pg .title_cta::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #91894F;
  transition: height 0.18s ease-out;
  z-index: 0;
}
.qz_pg .title_cta:hover::after { height: 100%; }
.qz_pg .title_cta:hover { color: #F7F8F3; }
.qz_pg .title_cta span { position: relative; z-index: 1; }

.qz_pg .title_cta:focus-visible {
  outline: 3px solid #91894F !important;
  outline-offset: 3px !important;
}

.qz_pg .geo_strip {
  background: #2a2510;
  padding: 12px 0;
  overflow: hidden;
}
.qz_pg .geo_strip_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 32px;
}
.qz_pg .geo_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.qz_pg .geo_dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #C8CEB3;
  flex-shrink: 0;
}
.qz_pg .geo_label {
  font-size: 14px;
  line-height: 1.2;
  color: #C8CEB3;
  letter-spacing: 0.06em;
}

.qz_pg .quiz_area {
  padding: 96px 48px;
  background: #fff;
  position: relative;
}
.qz_pg .quiz_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, #91894F 0px, #91894F 18px, transparent 18px, transparent 28px, #C8CEB3 28px, #C8CEB3 38px, transparent 38px, transparent 48px);
}
.qz_pg .quiz_header {
  text-align: center;
  margin-bottom: 48px;
}
.qz_pg .quiz_h2 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a2510;
  margin-bottom: 16px;
}
.qz_pg .quiz_sub {
  font-size: 16px;
  line-height: 1.8;
  color: #3d3820;
  max-width: 560px;
  margin: 0 auto;
}

.qz_pg .quiz_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.qz_pg .q_card {
  background: #F7F8F3;
  border-radius: 10px;
  padding: 32px;
  border: 1.5px solid rgba(145,137,79,0.15);
  box-shadow: 1px 5px 25px -2px rgba(145,137,79,0.10);
  position: relative;
  overflow: hidden;
}
.qz_pg .q_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #91894F 0%, #C8CEB3 100%);
  border-radius: 3px 0 0 3px;
}
.qz_pg .q_num {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #91894F;
  margin-bottom: 8px;
}
.qz_pg .q_text {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2510;
  font-weight: 600;
  margin-bottom: 24px;
}
.qz_pg .q_opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.qz_pg .q_opt {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 3px;
  border: 1.5px solid rgba(145,137,79,0.18);
  background: #fff;
  transition: border-color 0.15s ease-out, background 0.15s ease-out;
}
.qz_pg .q_opt:hover {
  border-color: #91894F;
  background: rgba(145,137,79,0.06);
}
.qz_pg .q_opt input[type="radio"] {
  margin-top: 2px;
  accent-color: #91894F;
  flex-shrink: 0;
}
.qz_pg .q_opt_txt {
  font-size: 14px;
  line-height: 1.8;
  color: #3d3820;
}
.qz_pg .q_opt input[type="radio"]:focus-visible {
  outline: 3px solid #91894F !important;
  outline-offset: 2px !important;
}

.qz_pg .quiz_submit_row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 48px;
}
.qz_pg .quiz_btn {
  font-size: 16px;
  line-height: 1.2;
  color: #F7F8F3;
  background: #91894F;
  border: none;
  border-radius: 3px;
  padding: 16px 48px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out;
}
.qz_pg .quiz_btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #2a2510;
  transition: height 0.18s ease-out;
  z-index: 0;
}
.qz_pg .quiz_btn:hover::after { height: 100%; }
.qz_pg .quiz_btn span { position: relative; z-index: 1; }
.qz_pg .quiz_btn:focus-visible {
  outline: 3px solid #91894F !important;
  outline-offset: 3px !important;
}

.qz_pg .result_panel {
  display: none;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background: #F7F8F3;
  border-radius: 10px;
  padding: 48px;
  border: 1.5px solid rgba(145,137,79,0.2);
  box-shadow: 1px 10px 36px -2px rgba(145,137,79,0.10);
}
.qz_pg .result_panel.visible { display: block; }
.qz_pg .result_score {
  font-size: 33px;
  line-height: 1.2;
  color: #2a2510;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.qz_pg .result_msg {
  font-size: 16px;
  line-height: 1.8;
  color: #3d3820;
}
.qz_pg .result_breakdown {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qz_pg .rb_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 3px;
  background: #fff;
  border: 1.5px solid rgba(145,137,79,0.12);
}
.qz_pg .rb_indicator {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}
.qz_pg .rb_indicator.correct { background: rgba(145,137,79,0.7); }
.qz_pg .rb_indicator.wrong { background: rgba(200,206,179,0.7); }
.qz_pg .rb_q_txt {
  font-size: 14px;
  line-height: 1.8;
  color: #2a2510;
  font-weight: 600;
  margin-bottom: 4px;
}
.qz_pg .rb_ans {
  font-size: 14px;
  line-height: 1.8;
  color: #3d3820;
}
.qz_pg .rb_correct_lbl {
  font-size: 14px;
  line-height: 1.8;
  color: #91894F;
  font-style: italic;
}

.qz_pg .ring_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.qz_pg .ring_svg {
  flex-shrink: 0;
}
.qz_pg .ring_txt {
  flex: 1;
}

.qz_pg .guide_area {
  padding: 96px 48px;
  background: #2a2510;
  position: relative;
  clip-path: polygon(0 0, 100% 32px, 100% 100%, 0 calc(100% - 32px));
}
.qz_pg .guide_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,206,179,0.08) 0%, rgba(42,37,16,0) 65%);
  pointer-events: none;
}
.qz_pg .guide_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.qz_pg .guide_label {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C8CEB3;
  margin-bottom: 16px;
}
.qz_pg .guide_h3 {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F7F8F3;
  margin-bottom: 24px;
}
.qz_pg .guide_body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(247,248,243,0.82);
  margin-bottom: 32px;
}
.qz_pg .guide_body em {
  font-size: 18px;
  font-style: italic;
  color: #C8CEB3;
}
.qz_pg .guide_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qz_pg .guide_list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(247,248,243,0.82);
}
.qz_pg .guide_list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #91894F;
  flex-shrink: 0;
  margin-top: 9px;
}
.qz_pg .guide_cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qz_pg .g_card {
  background: rgba(247,248,243,0.06);
  border: 1.5px solid rgba(200,206,179,0.18);
  border-radius: 10px;
  padding: 24px 32px;
  transition: background 0.15s ease-out, border-color 0.15s ease-out;
}
.qz_pg .g_card:hover {
  background: rgba(247,248,243,0.10);
  border-color: rgba(200,206,179,0.35);
}
.qz_pg .g_card_num {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #C8CEB3;
  margin-bottom: 8px;
}
.qz_pg .g_card_label {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(247,248,243,0.65);
}

.qz_pg .topics_area {
  padding: 96px 48px;
  background: #F7F8F3;
  position: relative;
}
.qz_pg .topics_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, #C8CEB3 0px, #C8CEB3 18px, transparent 18px, transparent 28px, #91894F 28px, #91894F 38px, transparent 38px, transparent 48px);
}
.qz_pg .topics_inner {
  max-width: 1100px;
  margin: 0 auto;
}
.qz_pg .topics_header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.qz_pg .topics_h2 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a2510;
}
.qz_pg .topics_intro {
  font-size: 16px;
  line-height: 1.8;
  color: #3d3820;
}
.qz_pg .topics_intro blockquote {
  border-left: 3px solid #91894F;
  border-top: 1px solid rgba(145,137,79,0.3);
  border-bottom: 1px solid rgba(145,137,79,0.3);
  padding: 16px 24px;
  margin: 16px 0 0 0;
  background: rgba(145,137,79,0.06);
  border-radius: 0 3px 3px 0;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: #2a2510;
}
.qz_pg .topics_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 5px 25px -2px rgba(145,137,79,0.10);
}
.qz_pg .topics_table thead tr {
  background: #91894F;
}
.qz_pg .topics_table thead th {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F7F8F3;
  padding: 16px 24px;
  text-align: left;
}
.qz_pg .topics_table tbody tr {
  background: #fff;
  border-bottom: 1px solid rgba(145,137,79,0.1);
  transition: background 0.12s ease-out;
}
.qz_pg .topics_table tbody tr:nth-child(even) {
  background: rgba(200,206,179,0.12);
}
.qz_pg .topics_table tbody tr:hover {
  background: rgba(145,137,79,0.08);
}
.qz_pg .topics_table tbody td {
  font-size: 14px;
  line-height: 1.8;
  color: #2a2510;
  padding: 16px 24px;
}
.qz_pg .topics_table tbody td strong {
  color: #91894F;
}
.qz_pg .difficulty_bar {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
.qz_pg .d_seg {
  width: 20px;
  height: 6px;
  border-radius: 3px;
  background: rgba(145,137,79,0.18);
}
.qz_pg .d_seg.filled {
  background: #91894F;
}

@media (max-width: 1280px) {
  .qz_pg .title_blk {
    padding: 64px 32px 48px 32px;
    gap: 32px;
  }
  .qz_pg .title_h1 { font-size: 46px; }
  .qz_pg .quiz_area { padding: 64px 32px; }
  .qz_pg .guide_area { padding: 96px 32px; }
  .qz_pg .topics_area { padding: 64px 32px; }
}

@media (max-width: 768px) {
  .qz_pg .title_blk {
    grid-template-columns: 1fr;
    padding: 48px 16px 32px 16px;
  }
  .qz_pg .title_h1 { font-size: 33px; }
  .qz_pg .title_img { max-width: 100%; height: 240px; }
  .qz_pg .quiz_area { padding: 48px 16px; }
  .qz_pg .quiz_h2 { font-size: 33px; }
  .qz_pg .quiz_grid { grid-template-columns: 1fr; gap: 16px; }
  .qz_pg .guide_area {
    padding: 80px 16px;
    clip-path: polygon(0 0, 100% 16px, 100% 100%, 0 calc(100% - 16px));
  }
  .qz_pg .guide_inner { grid-template-columns: 1fr; gap: 32px; }
  .qz_pg .topics_area { padding: 48px 16px; }
  .qz_pg .topics_header { grid-template-columns: 1fr; gap: 16px; }
  .qz_pg .topics_h2 { font-size: 33px; }
  .qz_pg .ring_wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
  .qz_pg .result_panel { padding: 32px 16px; }
  .qz_pg .geo_strip_inner { gap: 16px; }
}

.frst {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

.frst .grad-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #91894F, transparent);
  border: none;
  margin: 0;
}

.frst .t-block {
  position: relative;
  padding: 96px 96px 96px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #F7F8F3;
}

.frst .t-deco-band {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #91894F 30%, #C8CEB3 70%, transparent);
}

.frst .t-left {
  padding-left: 96px;
  padding-right: 48px;
}

.frst .t-tagline {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #91894F;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 1px solid #C8CEB3;
  padding-bottom: 8px;
}

.frst .t-heading {
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #3a3520 0%, #91894F 55%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.frst .t-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4535;
  margin-bottom: 32px;
  max-width: 480px;
}

.frst .t-links {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.frst .t-link-main {
  font-size: 16px;
  color: #fff;
  background: #91894F;
  padding: 16px 32px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #91894F;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out;
}

.frst .t-link-main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #3a3520;
  transition: height 0.18s ease-out;
  z-index: 0;
}

.frst .t-link-main:hover::after {
  height: 100%;
}

.frst .t-link-main span {
  position: relative;
  z-index: 1;
}

.frst .t-link-sec {
  font-size: 16px;
  color: #91894F;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: opacity 0.12s ease, border-color 0.15s ease;
}

.frst .t-link-sec:hover {
  opacity: 0.65;
  border-color: #91894F;
}

.frst .t-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 10px 36px -2px rgba(145, 137, 79, 0.10);
}

.frst .t-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frst .t-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(0deg, rgba(58, 53, 32, 0.72) 0%, transparent 100%);
}

.frst .proof-sec {
  padding: 96px 96px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.frst .proof-label {
  font-size: 14px;
  color: #91894F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 8px;
}

.frst .proof-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.frst .proof-h {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(125deg, #3a3520 0%, #91894F 60%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.frst .proof-quote {
  font-size: 24px;
  line-height: 1.8;
  color: #3a3520;
  font-style: italic;
  border-left: 3px solid #91894F;
  border-top: 1px solid #C8CEB3;
  padding: 16px 32px;
  background: #F7F8F3;
  border-radius: 0 10px 10px 0;
}

.frst .proof-body {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4535;
}

.frst .proof-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.frst .proof-img-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
}

.frst .proof-img-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frst .fit-sec {
  padding: 96px 96px;
  background: #F7F8F3;
  position: relative;
}

.frst .fit-deco-top {
  position: absolute;
  top: 0;
  left: 96px;
  right: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8CEB3, transparent);
}

.frst .fit-deco-bot {
  position: absolute;
  bottom: 0;
  left: 96px;
  right: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8CEB3, transparent);
}

.frst .fit-h {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #3a3520 0%, #91894F 50%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 48px;
  max-width: 600px;
}

.frst .fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.frst .fit-col-head {
  font-size: 14px;
  color: #91894F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #C8CEB3;
}

.frst .fit-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 1px 2px 2px -2px rgba(145, 137, 79, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s ease-out;
  animation: border-glow 2.4s ease-out forwards;
}

@keyframes border-glow {
  0% { box-shadow: 0 0 0 0 rgba(145, 137, 79, 0); }
  60% { box-shadow: 0 0 0 3px rgba(145, 137, 79, 0.22); }
  100% { box-shadow: 1px 2px 2px -2px rgba(145, 137, 79, 0.08); }
}

.frst .fit-card:hover {
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
}

.frst .fit-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent #F7F8F3 transparent transparent;
  transition: border-width 0.15s ease-out;
}

.frst .fit-card:hover .fit-card-corner {
  border-width: 0 48px 48px 0;
}

.frst .fit-card-t {
  font-size: 16px;
  font-weight: 600;
  color: #3a3520;
  margin-bottom: 8px;
}

.frst .fit-card-p {
  font-size: 14px;
  line-height: 1.8;
  color: #5a5440;
}

.frst .fit-not {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 1px 2px 2px -2px rgba(200, 206, 179, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s ease-out;
}

.frst .fit-not:hover {
  box-shadow: 1px 5px 25px -2px rgba(200, 206, 179, 0.10);
}

.frst .fit-not-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent #F7F8F3 transparent transparent;
  transition: border-width 0.15s ease-out;
}

.frst .fit-not:hover .fit-not-corner {
  border-width: 0 48px 48px 0;
}

.frst .fit-not-t {
  font-size: 16px;
  font-weight: 600;
  color: #3a3520;
  margin-bottom: 8px;
}

.frst .fit-not-p {
  font-size: 14px;
  line-height: 1.8;
  color: #5a5440;
}

.frst .invest-sec {
  padding: 96px 96px;
  background: #3a3520;
  position: relative;
  overflow: hidden;
}

.frst .invest-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}

.frst .invest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 53, 32, 0.82);
}

.frst .invest-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.frst .invest-h {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F7F8F3;
  margin-bottom: 16px;
}

.frst .invest-sub {
  font-size: 16px;
  line-height: 1.8;
  color: #C8CEB3;
  margin-bottom: 32px;
}

.frst .invest-label {
  font-size: 14px;
  color: #91894F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.frst .invest-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frst .invest-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(247, 248, 243, 0.06);
  border-radius: 3px;
  border: 1px solid rgba(200, 206, 179, 0.15);
  transition: background 0.15s ease-out, border-color 0.15s ease-out;
}

.frst .invest-row:hover {
  background: rgba(247, 248, 243, 0.12);
  border-color: rgba(200, 206, 179, 0.3);
}

.frst .invest-row-name {
  font-size: 16px;
  color: #F7F8F3;
}

.frst .invest-row-val {
  font-size: 16px;
  color: #91894F;
  font-weight: 600;
}

.frst .invest-note {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(200, 206, 179, 0.7);
  margin-top: 16px;
}

.frst .team-sec {
  padding: 96px 96px;
  background: #fff;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}

.frst .team-port-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 10px 36px -2px rgba(145, 137, 79, 0.10);
}

.frst .team-port-wrap img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frst .team-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.frst .team-label {
  font-size: 14px;
  color: #91894F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frst .team-h {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(130deg, #3a3520 0%, #91894F 55%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.frst .team-quote {
  font-size: 24px;
  line-height: 1.8;
  color: #3a3520;
  font-style: italic;
  background: #F7F8F3;
  border-left: 3px solid #91894F;
  border-right: 1px solid #C8CEB3;
  padding: 16px 32px;
  border-radius: 0 10px 10px 0;
}

.frst .team-body {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4535;
}

.frst .team-creds {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.frst .team-cred {
  font-size: 14px;
  color: #91894F;
  border: 1px solid #C8CEB3;
  border-radius: 3px;
  padding: 4px 16px;
  background: #F7F8F3;
}

.frst .scale-sec {
  padding: 96px 96px;
  background: #F7F8F3;
  position: relative;
}

.frst .scale-h {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(115deg, #3a3520 0%, #91894F 50%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 48px;
  max-width: 560px;
}

.frst .scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 48px;
}

.frst .scale-num-block {
  padding: 32px;
  background: #fff;
  border-radius: 3px;
  text-align: center;
  box-shadow: 1px 2px 2px -2px rgba(145, 137, 79, 0.08);
  transition: box-shadow 0.2s ease;
}

.frst .scale-num-block:first-child {
  border-radius: 20px 3px 3px 20px;
}

.frst .scale-num-block:last-child {
  border-radius: 3px 20px 20px 3px;
}

.frst .scale-num-block:hover {
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
}

.frst .scale-num {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #91894F;
  display: block;
  margin-bottom: 8px;
}

.frst .scale-num-label {
  font-size: 14px;
  color: #5a5440;
  line-height: 1.8;
}

.frst .scale-body {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4535;
  max-width: 720px;
}

.frst .voices-sec {
  padding: 96px 96px;
  background: #fff;
}

.frst .voices-h {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #3a3520 0%, #91894F 55%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.frst .voices-sub {
  font-size: 16px;
  color: #5a5440;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 560px;
}

.frst .voices-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.frst .voice-card {
  background: #F7F8F3;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 1px 2px 2px -2px rgba(145, 137, 79, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s ease-out;
}

.frst .voice-card:hover {
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
}

.frst .voice-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent #C8CEB3 transparent transparent;
  transition: border-width 0.15s ease-out;
}

.frst .voice-card:hover .voice-card-corner {
  border-width: 0 44px 44px 0;
}

.frst .voice-text {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3520;
  font-style: italic;
}

.frst .voice-text em {
  font-size: 18px;
  color: #91894F;
  font-style: italic;
}

.frst .voice-name {
  font-size: 14px;
  color: #91894F;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.frst .voice-detail {
  font-size: 14px;
  color: #7a7258;
  line-height: 1.8;
}

.frst .voice-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
}

.frst .voice-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 1280px) {
  .frst .t-block {
    padding: 96px 48px 96px 0;
    gap: 32px;
  }
  .frst .t-left {
    padding-left: 64px;
    padding-right: 32px;
  }
  .frst .t-heading {
    font-size: 46px;
  }
  .frst .proof-sec {
    padding: 96px 48px;
    grid-template-columns: 1fr;
  }
  .frst .fit-sec {
    padding: 96px 48px;
  }
  .frst .invest-sec {
    padding: 96px 48px;
  }
  .frst .invest-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .frst .team-sec {
    padding: 96px 48px;
    grid-template-columns: 1fr 1fr;
  }
  .frst .scale-sec {
    padding: 96px 48px;
  }
  .frst .scale-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .frst .scale-num-block:first-child {
    border-radius: 20px 3px 3px 3px;
  }
  .frst .scale-num-block:last-child {
    border-radius: 3px 3px 20px 3px;
  }
  .frst .voices-sec {
    padding: 96px 48px;
  }
  .frst .voices-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .frst .t-block {
    grid-template-columns: 1fr;
    padding: 48px 16px 48px 16px;
  }
  .frst .t-deco-band {
    width: 4px;
  }
  .frst .t-left {
    padding-left: 24px;
    padding-right: 16px;
  }
  .frst .t-heading {
    font-size: 33px;
  }
  .frst .t-img-wrap img {
    height: 320px;
  }
  .frst .proof-sec {
    padding: 48px 16px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .frst .proof-imgs {
    grid-template-columns: 1fr;
  }
  .frst .fit-sec {
    padding: 48px 16px;
  }
  .frst .fit-grid {
    grid-template-columns: 1fr;
  }
  .frst .fit-deco-top, .frst .fit-deco-bot {
    left: 16px;
    right: 16px;
  }
  .frst .invest-sec {
    padding: 48px 16px;
  }
  .frst .invest-inner {
    grid-template-columns: 1fr;
  }
  .frst .invest-h {
    font-size: 33px;
  }
  .frst .team-sec {
    padding: 48px 16px;
    grid-template-columns: 1fr;
  }
  .frst .scale-sec {
    padding: 48px 16px;
  }
  .frst .scale-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .frst .scale-num {
    font-size: 33px;
  }
  .frst .voices-sec {
    padding: 48px 16px;
  }
  .frst .voices-grid {
    grid-template-columns: 1fr;
  }
}

.frst *:focus-visible {
  outline: 3px solid #91894F !important;
  outline-offset: 3px !important;
  border-radius: 3px !important;
}

.abt {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

.abt .pg-identity {
  background: #F7F8F3;
  padding: 96px 48px 48px;
  position: relative;
}

.abt .pg-identity::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #91894F, #C8CEB3);
  border-radius: 3px 0 0 3px;
}

.abt .pg-identity::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 48px;
  background: #F7F8F3;
  clip-path: ellipse(52% 100% at 50% 0%);
  z-index: 1;
}

.abt .ident-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.abt .ident-lead {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt .accent-phrase {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #91894F;
  border-bottom: 1px solid #91894F;
  border-left: 1px solid #91894F;
  padding: 4px 8px;
  border-radius: 3px;
}

.abt .ident-h1 {
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
  background: linear-gradient(135deg, #91894F 0%, #C8CEB3 60%, #91894F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abt .ident-sub {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
  max-width: 480px;
}

.abt .ident-sub em {
  font-style: italic;
  font-size: 18px;
  color: #91894F;
}

.abt .ident-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: rgba(145, 137, 79, 0.06);
  border-radius: 10px;
  border-top: 2px solid rgba(145, 137, 79, 0.25);
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
}

.abt .stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.abt .stat-label {
  font-size: 14px;
  color: #5a5348;
  line-height: 1.2;
  flex: 1;
}

.abt .stat-bar-wrap {
  width: 140px;
  height: 6px;
  background: rgba(200, 206, 179, 0.4);
  border-radius: 3px;
  overflow: hidden;
}

.abt .stat-bar {
  height: 100%;
  background: linear-gradient(90deg, #91894F, #C8CEB3);
  border-radius: 3px;
  transition: width 0.2s ease-out;
}

.abt .stat-val {
  font-size: 16px;
  font-weight: 700;
  color: #91894F;
  min-width: 48px;
  text-align: right;
  line-height: 1.2;
}

.abt .contrast-nums {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  padding: 32px 0 0;
}

.abt .num-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt .num-big {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #91894F;
}

.abt .num-big.after {
  color: #3a3530;
}

.abt .num-desc {
  font-size: 14px;
  color: #7a7268;
  line-height: 1.2;
}

.abt .num-sep {
  font-size: 33px;
  color: #C8CEB3;
  line-height: 1.2;
  align-self: center;
}

.abt .ident-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.abt .ident-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(145, 137, 79, 0.15);
  mix-blend-mode: multiply;
}

.abt .ident-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
  box-shadow: 1px 10px 36px -2px rgba(145, 137, 79, 0.10);
}

.abt .team-section {
  background: #fff;
  padding: 96px 48px;
  position: relative;
}

.abt .team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8CEB3, transparent);
}

.abt .team-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.abt .team-hd {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.abt .team-h2 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  background: linear-gradient(135deg, #91894F 0%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 520px;
}

.abt .team-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
  max-width: 380px;
}

.abt .team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.abt .team-featured {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: #F7F8F3;
  border-radius: 20px;
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
  border-right: 3px solid #91894F;
  transition: background 0.15s ease-out, box-shadow 0.2s ease;
}

.abt .team-featured:hover {
  background: rgba(247, 248, 243, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 1px 10px 36px -2px rgba(145, 137, 79, 0.10);
}

.abt .portrait-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
}

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

.abt .team-person-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt .person-name {
  font-size: 24px;
  line-height: 1.2;
  color: #2a2520;
  margin: 0;
}

.abt .person-role {
  font-size: 14px;
  color: #91894F;
  line-height: 1.2;
}

.abt .person-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4540;
}

.abt .person-quote {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3530;
  font-style: italic;
  border-left: 3px solid #C8CEB3;
  padding-left: 16px;
  border-radius: 0 3px 3px 0;
}

.abt .team-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt .team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #F7F8F3;
  border-radius: 10px;
  box-shadow: 1px 2px 2px -2px rgba(145, 137, 79, 0.08);
  transition: background 0.15s ease-out;
}

.abt .team-card:hover {
  background: rgba(247, 248, 243, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.abt .card-name {
  font-size: 16px;
  line-height: 1.2;
  color: #2a2520;
  margin: 0;
}

.abt .card-role {
  font-size: 14px;
  color: #91894F;
  line-height: 1.2;
}

.abt .card-text {
  font-size: 14px;
  line-height: 1.8;
  color: #5a5348;
}

.abt .approach-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: rgba(200, 206, 179, 0.15);
  border-radius: 20px;
  border-top: 2px solid rgba(200, 206, 179, 0.5);
}

.abt .approach-h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #2a2520;
  margin: 0;
  letter-spacing: -0.02em;
}

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

.abt .approach-item {
  font-size: 14px;
  line-height: 1.8;
  color: #4a4540;
  padding-left: 16px;
  border-left: 2px solid #91894F;
  border-radius: 0 3px 3px 0;
}

.abt .img-pair {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  margin-top: 8px;
}

.abt .img-pair-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
}

.abt .img-pair-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.2s ease-out;
}

.abt .img-pair-item:hover .img-pair-img {
  transform: scale(1.02);
}

.abt .subscribe-strip {
  background: #F7F8F3;
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}

.abt .subscribe-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(145, 137, 79, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.abt .subscribe-strip::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #91894F, transparent);
}

.abt .sub-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.abt .sub-eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #91894F;
  line-height: 1.2;
}

.abt .sub-h2 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  color: #2a2520;
}

.abt .sub-h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #91894F, #C8CEB3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abt .sub-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4540;
}

.abt .sub-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt .sub-email-wrap {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
}

.abt .sub-email {
  flex: 1;
  padding: 16px;
  font-size: 16px;
  color: #2a2520;
  background: #fff;
  border: 1px solid rgba(145, 137, 79, 0.3);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(145, 137, 79, 0.06);
}

.abt .sub-email::placeholder {
  color: rgba(42, 37, 32, 0.4);
}

.abt .sub-email:focus {
  border-color: #91894F;
  box-shadow: inset 0 2px 4px rgba(145, 137, 79, 0.06), 0 0 0 3px rgba(145, 137, 79, 0.12);
}

.abt .sub-btn {
  padding: 16px 32px;
  font-size: 16px;
  color: #fff;
  background: #91894F;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out;
  white-space: nowrap;
}

.abt .sub-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #2a2520;
  border-radius: 10px;
  transition: height 0.2s ease-out;
  z-index: 0;
}

.abt .sub-btn:hover::before {
  height: 100%;
}

.abt .sub-btn-text {
  position: relative;
  z-index: 1;
}

.abt .sub-btn:focus-visible {
  outline: 3px solid #91894F;
  outline-offset: 3px;
}

.abt .consent-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.abt .consent-check {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #91894F;
  cursor: pointer;
  flex-shrink: 0;
}

.abt .consent-label {
  font-size: 14px;
  line-height: 1.8;
  color: #5a5348;
  cursor: pointer;
}

.abt .early-note {
  font-size: 14px;
  line-height: 1.8;
  color: #91894F;
  padding: 8px 16px;
  background: rgba(145, 137, 79, 0.08);
  border-radius: 10px;
  border-left: 3px solid #91894F;
}

@keyframes colorwash {
  0% { background-color: #F7F8F3; }
  40% { background-color: rgba(200, 206, 179, 0.35); }
  100% { background-color: #F7F8F3; }
}

.abt .pg-identity {
  animation: colorwash 8s ease-in-out infinite;
}

@media (max-width: 1280px) {
  .abt .ident-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .abt .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .abt .team-featured {
    grid-column: 1 / -1;
  }
  .abt .team-hd {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .abt .pg-identity {
    padding: 48px 16px 48px;
  }
  .abt .ident-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .abt .ident-h1 {
    font-size: 46px;
  }
  .abt .team-section {
    padding: 48px 16px;
  }
  .abt .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .abt .team-featured {
    grid-column: auto;
  }
  .abt .team-h2 {
    font-size: 33px;
  }
  .abt .img-pair {
    grid-template-columns: 1fr;
  }
  .abt .subscribe-strip {
    padding: 48px 16px;
  }
  .abt .sub-h2 {
    font-size: 33px;
  }
  .abt .sub-email-wrap {
    flex-direction: column;
  }
  .abt .contrast-nums {
    gap: 16px;
  }
  .abt .num-big {
    font-size: 33px;
  }
}

.ctus {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

.ctus .split-top {
  display: grid;
  grid-template-columns: 30% 70%;
  min-height: 520px;
  position: relative;
}

.ctus .split-left {
  background: #91894F;
  padding: 96px 48px 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.ctus .split-left::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(200,206,179,0.35);
  border-radius: 50%;
  pointer-events: none;
}

.ctus .split-left::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border: 2px dashed rgba(247,248,243,0.2);
  border-radius: 50%;
  pointer-events: none;
}

.ctus .left-tag {
  font-size: 14px;
  color: rgba(247,248,243,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ctus .left-head {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #F7F8F3 30%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
}

.ctus .left-desc {
  font-size: 16px;
  color: rgba(247,248,243,0.82);
  line-height: 1.8;
  margin-bottom: 32px;
}

.ctus .left-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctus .left-link {
  font-size: 16px;
  color: #F7F8F3;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,206,179,0.4);
  padding-bottom: 8px;
  transition: opacity 0.15s ease-out, border-color 0.15s ease-out;
  line-height: 1.2;
}

.ctus .left-link:hover {
  opacity: 0.65;
  border-color: rgba(200,206,179,0.8);
}

.ctus .dot-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 48px;
  align-items: center;
}

.ctus .dot-row span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247,248,243,0.4);
}

.ctus .dot-row span.active {
  background: #F7F8F3;
  width: 18px;
  border-radius: 3px;
}

.ctus .split-right {
  background: #C8CEB3;
  padding: 96px 96px 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.ctus .split-right::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: rgba(145,137,79,0.12);
  border-radius: 0 0 0 320px;
  pointer-events: none;
}

.ctus .right-eyebrow {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(60,56,30,0.55);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ctus .right-head {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: linear-gradient(120deg, #3c381e 0%, #91894F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.ctus .right-body {
  font-size: 16px;
  color: #3c381e;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 32px;
}

.ctus .right-body em {
  font-style: italic;
  font-size: 18px;
  color: #91894F;
}

.ctus .info-row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
}

.ctus .info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctus .info-label {
  font-size: 14px;
  color: rgba(60,56,30,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.ctus .info-val {
  font-size: 16px;
  color: #3c381e;
  line-height: 1.2;
  font-weight: 600;
}

.ctus .info-val a {
  color: #3c381e;
  text-decoration: none;
  transition: opacity 0.12s ease;
}

.ctus .info-val a:hover {
  opacity: 0.6;
}

.ctus .zigzag-div {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #F7F8F3;
}

.ctus .zigzag-div svg {
  display: block;
  width: 100%;
}

.ctus .form-band {
  background: #F7F8F3;
  padding: 96px 96px;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 64px;
  align-items: start;
}

.ctus .form-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.ctus .aside-head {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: linear-gradient(110deg, #91894F 0%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctus .aside-note {
  font-size: 16px;
  color: #4a4535;
  line-height: 1.8;
}

.ctus .aside-quote {
  border-left: 3px solid #91894F;
  border-top: 1px solid rgba(145,137,79,0.3);
  border-bottom: 1px solid rgba(145,137,79,0.3);
  padding: 16px 16px;
  background: rgba(145,137,79,0.06);
  border-radius: 3px;
}

.ctus .aside-quote p {
  font-size: 16px;
  font-style: italic;
  color: #91894F;
  line-height: 1.8;
  margin: 0;
}

.ctus .aside-dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.ctus .aside-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C8CEB3;
}

.ctus .aside-dots span.hi {
  background: #91894F;
}

.ctus .form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 5px 25px -2px rgba(145,137,79,0.10);
  padding: 48px;
}

.ctus .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.ctus .field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus .field-wrap label {
  font-size: 14px;
  color: #4a4535;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.ctus .field-wrap input,
.ctus .field-wrap select,
.ctus .field-wrap textarea {
  border: 1px solid rgba(145,137,79,0.3);
  border-radius: 3px;
  padding: 16px;
  font-size: 16px;
  color: #3c381e;
  background: #F7F8F3;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  line-height: 1.2;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.ctus .field-wrap input::placeholder,
.ctus .field-wrap textarea::placeholder {
  color: rgba(60,56,30,0.4);
}

.ctus .field-wrap input:focus,
.ctus .field-wrap select:focus,
.ctus .field-wrap textarea:focus {
  border-color: #91894F;
  box-shadow: 1px 2px 2px -2px rgba(145,137,79,0.08);
}

.ctus .field-wrap 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='%2391894F' 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;
}

.ctus .field-wrap textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.8;
}

.ctus .time-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus .time-group label.group-lbl {
  font-size: 14px;
  color: #4a4535;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.ctus .time-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.ctus .time-opt {
  position: relative;
}

.ctus .time-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ctus .time-opt label {
  display: block;
  padding: 8px 16px;
  border: 1px solid rgba(145,137,79,0.35);
  border-radius: 20px;
  font-size: 14px;
  color: #4a4535;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  line-height: 1.2;
  user-select: none;
}

.ctus .time-opt input[type="radio"]:checked + label {
  background: #91894F;
  border-color: #91894F;
  color: #F7F8F3;
}

.ctus .time-opt label:hover {
  border-color: #91894F;
  background: rgba(145,137,79,0.08);
}

.ctus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  margin-top: 8px;
}

.ctus .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #91894F;
  margin-top: 2px;
  cursor: pointer;
}

.ctus .privacy-row span {
  font-size: 14px;
  color: #4a4535;
  line-height: 1.8;
}

.ctus .privacy-row a {
  color: #91894F;
  text-decoration: underline;
  transition: opacity 0.12s ease;
}

.ctus .privacy-row a:hover {
  opacity: 0.65;
}

.ctus .submit-btn {
  position: relative;
  overflow: hidden;
  background: #91894F;
  color: #F7F8F3;
  border: none;
  border-radius: 3px;
  padding: 16px 48px;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s ease-out;
  box-shadow: 1px 5px 25px -2px rgba(145,137,79,0.10);
  line-height: 1.2;
}

.ctus .submit-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #3c381e;
  transition: bottom 0.18s ease-out;
  z-index: 0;
}

.ctus .submit-btn:hover::before {
  bottom: 0;
}

.ctus .submit-btn span {
  position: relative;
  z-index: 1;
}

.ctus .submit-btn:focus {
  outline: 2px solid #91894F;
  outline-offset: 3px;
}

.ctus .submit-btn:active {
  transform: translateY(1px);
}

.ctus .zigzag-div2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #91894F;
}

.ctus .zigzag-div2 svg {
  display: block;
  width: 100%;
}

.ctus .addr-band {
  background: #91894F;
  padding: 96px 96px;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 64px;
  align-items: start;
}

.ctus .addr-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ctus .addr-head {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: linear-gradient(115deg, #F7F8F3 0%, #C8CEB3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctus .addr-body {
  font-size: 16px;
  color: rgba(247,248,243,0.82);
  line-height: 1.8;
  max-width: 520px;
}

.ctus .addr-body em {
  font-style: italic;
  font-size: 18px;
  color: #F7F8F3;
}

.ctus .addr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ctus .addr-card {
  background: rgba(247,248,243,0.1);
  border: 1px solid rgba(247,248,243,0.18);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 1px 2px 2px -2px rgba(145,137,79,0.08);
  transition: background 0.15s ease-out, border-color 0.15s ease-out;
}

.ctus .addr-card:hover {
  background: rgba(247,248,243,0.16);
  border-color: rgba(247,248,243,0.32);
}

.ctus .addr-card-lbl {
  font-size: 14px;
  color: rgba(247,248,243,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ctus .addr-card-val {
  font-size: 16px;
  color: #F7F8F3;
  line-height: 1.8;
  font-weight: 600;
}

.ctus .addr-card-val a {
  color: #F7F8F3;
  text-decoration: none;
  transition: opacity 0.12s ease;
}

.ctus .addr-card-val a:hover {
  opacity: 0.6;
}

.ctus .addr-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.ctus .addr-dashed {
  border: 2px dashed rgba(247,248,243,0.25);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctus .addr-dashed-head {
  font-size: 24px;
  line-height: 1.2;
  color: #F7F8F3;
  letter-spacing: -0.01em;
}

.ctus .addr-dashed-body {
  font-size: 16px;
  color: rgba(247,248,243,0.75);
  line-height: 1.8;
}

.ctus .addr-dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.ctus .addr-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247,248,243,0.3);
}

.ctus .addr-dots span.lit {
  background: #F7F8F3;
}

.ctus .slide-up {
  animation: slideUp 0.2s ease-out both;
}

.ctus .slide-up.d1 { animation-delay: 0.05s; }
.ctus .slide-up.d2 { animation-delay: 0.1s; }
.ctus .slide-up.d3 { animation-delay: 0.15s; }
.ctus .slide-up.d4 { animation-delay: 0.18s; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1280px) {
  .ctus .split-top {
    grid-template-columns: 1fr 1fr;
  }
  .ctus .form-band {
    grid-template-columns: 1fr;
    padding: 64px 48px;
    gap: 32px;
  }
  .ctus .addr-band {
    grid-template-columns: 1fr;
    padding: 64px 48px;
    gap: 32px;
  }
  .ctus .addr-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ctus .split-left {
    padding: 64px 32px;
  }
  .ctus .split-right {
    padding: 64px 48px;
  }
}

@media (max-width: 768px) {
  .ctus .split-top {
    grid-template-columns: 1fr;
  }
  .ctus .split-left {
    padding: 48px 32px;
  }
  .ctus .split-right {
    padding: 48px 32px;
  }
  .ctus .left-head {
    font-size: 33px;
  }
  .ctus .form-band {
    padding: 48px 16px;
    gap: 24px;
  }
  .ctus .form-card {
    padding: 32px 16px;
  }
  .ctus .form-row {
    grid-template-columns: 1fr;
  }
  .ctus .addr-band {
    padding: 48px 16px;
    gap: 24px;
  }
  .ctus .addr-grid {
    grid-template-columns: 1fr;
  }
  .ctus .info-row {
    flex-direction: column;
    gap: 24px;
  }
  .ctus .time-options {
    gap: 8px;
  }
}

.success_pg {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background: #F7F8F3;
    position: relative;
    overflow: hidden;
}

.success_pg::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(145, 137, 79, 0.08) 0%, rgba(200, 206, 179, 0.04) 55%, transparent 75%);
    pointer-events: none;
}

.success_pg .confirm_wrap {
    max-width: 560px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 1px 5px 25px -2px rgba(145, 137, 79, 0.10);
    text-align: center;
    position: relative;
}

.success_pg .confirm_wrap::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #91894F, #C8CEB3);
    border-radius: 3px 3px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}

.success_pg .icon_mark {
    width: 56px;
    height: 56px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success_pg .icon_mark svg {
    width: 56px;
    height: 56px;
}

.success_pg .confirm_title {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    background: linear-gradient(120deg, #91894F 30%, #C8CEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success_pg .confirm_note {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3830;
    margin: 0 0 32px;
}

.success_pg .confirm_note em {
    font-style: italic;
    font-size: 17px;
    color: #91894F;
}

.success_pg .divider_line {
    width: 48px;
    height: 2px;
    background: #C8CEB3;
    border-radius: 3px;
    margin: 0 auto 32px;
}

.success_pg .info_row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
}

.success_pg .info_item {
    flex: 1;
    background: #F7F8F3;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid rgba(145, 137, 79, 0.12);
    box-shadow: inset 0 1px 2px rgba(145, 137, 79, 0.06);
}

.success_pg .info_item .item_label {
    font-size: 14px;
    line-height: 1.2;
    color: #91894F;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.success_pg .info_item .item_val {
    font-size: 14px;
    line-height: 1.8;
    color: #2e2c24;
}

.success_pg .back_link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: #91894F;
    text-decoration: none;
    padding: 16px 32px;
    border: 1px solid rgba(145, 137, 79, 0.35);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: color 0.15s ease-out, border-color 0.15s ease-out;
    background: transparent;
}

.success_pg .back_link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(0deg, rgba(145, 137, 79, 0.10) 0%, transparent 100%);
    transition: height 0.18s ease-out;
    pointer-events: none;
}

.success_pg .back_link:hover::before {
    height: 100%;
}

.success_pg .back_link:hover {
    color: #6b6438;
    border-color: rgba(145, 137, 79, 0.6);
}

.success_pg .back_link:focus {
    outline: 2px solid #91894F;
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .success_pg {
        padding: 48px 16px;
    }

    .success_pg .confirm_wrap {
        padding: 32px 16px;
    }

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

    .success_pg .confirm_title {
        font-size: 24px;
    }
}
