html {
  box-sizing: border-box;
}

body {
  margin: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
  font-family: 'Noto Serif', Georgia, serif;
}

@keyframes focus_dash_spin {
  from {
    outline-offset: 2px;
    transform: rotate(0deg);
  }

  to {
    outline-offset: 4px;
    transform: rotate(360deg);
  }
}

:focus-visible {
  outline: 2px dashed #7F5539;
  outline-offset: 3px;
  animation: focus_dash_spin 3s linear infinite;
}

.page_header {
  position: relative;
  background: linear-gradient(135deg, #2a1a10 0%, #3d2010 55%, #1a2a2b 100%);
  overflow: hidden;
}

.page_header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7F5539, #0DB2BA, #7F5539);
  pointer-events: none;
}

.header_upper {
  border-bottom: 1px solid rgba(127, 85, 57, 0.25);
  padding: 16px 32px;
}

.header_upper_row {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand_block {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand_hex {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand_hex_frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.brand_hex_inner {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 227, 220, 0.08);
  border-radius: 6px;
  box-shadow: 2px 2px 4px 0 rgba(127, 85, 57, 0.08), 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
  padding: 4px;
}

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

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

.brand_name {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  color: #FEE3DC;
  letter-spacing: 0;
}

.brand_tagline {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #0DB2BA;
}

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

.contact_item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.18s ease-out;
}

.contact_item_label {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(254, 227, 220, 0.75);
  transition: color 0.18s ease-out;
}

.contact_item:hover .contact_item_label {
  color: #FEE3DC;
}

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

.header_nav_bar {
  padding: 0 32px;
}

.header_nav_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 4px;
  flex-wrap: wrap;
}

.nav_link {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(254, 227, 220, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out;
  border-radius: 2px 2px 0 0;
  white-space: nowrap;
}

.nav_link:hover {
  color: #FEE3DC;
  border-bottom-color: #0DB2BA;
  background-color: rgba(13, 178, 186, 0.08);
}

.nav_link.active {
  color: #0DB2BA;
  border-bottom-color: #0DB2BA;
}

.page_footer {
  background: linear-gradient(135deg, #2a1a10 0%, #3d2010 60%, #1a2a2b 100%);
  padding: 48px 32px 32px;
  position: relative;
}

.page_footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0DB2BA, #7F5539, #0DB2BA);
  pointer-events: none;
}

.footer_main {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(127, 85, 57, 0.2);
}

.footer_brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}

.footer_logo_wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 227, 220, 0.07);
  border-radius: 12px;
  border: 1px solid rgba(127, 85, 57, 0.3);
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
  padding: 8px;
}

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

.footer_brand_name {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  color: #FEE3DC;
  text-align: center;
}

.footer_contact_links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer_contact_link {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(254, 227, 220, 0.65);
  text-decoration: none;
  transition: color 0.18s ease-out;
}

.footer_contact_link:hover {
  color: #0DB2BA;
}

.footer_nav_col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}

.footer_nav_heading {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #0DB2BA;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer_nav_link {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(254, 227, 220, 0.7);
  text-decoration: none;
  transition: color 0.15s ease-out;
  display: inline-block;
}

.footer_nav_link:hover {
  color: #FEE3DC;
}

.footer_address_col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.footer_address_label {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #0DB2BA;
  text-transform: uppercase;
}

.footer_address_text {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(254, 227, 220, 0.65);
  font-style: normal;
}

.footer_bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer_copy {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(254, 227, 220, 0.45);
  text-align: center;
}

.footer_legal_link {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(254, 227, 220, 0.5);
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.footer_legal_link:hover {
  color: #FEE3DC;
}

@media (max-width: 1024px) {
  .header_upper {
    padding: 16px 24px;
  }

  .header_nav_bar {
    padding: 0 24px;
  }

  .page_footer {
    padding: 48px 24px 32px;
  }
}

@media (max-width: 768px) {
  .header_upper_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header_contact_strip {
    justify-content: flex-start;
    gap: 16px;
  }

  .brand_hex {
    width: 72px;
    height: 72px;
  }

  .brand_hex_inner {
    width: 60px;
    height: 60px;
  }

  .brand_hex_inner img {
    width: 52px;
    height: 52px;
  }

  .brand_name {
    font-size: 20px;
  }

  .footer_main {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .footer_nav_col,
  .footer_address_col {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header_upper {
    padding: 12px 16px;
  }

  .header_nav_bar {
    padding: 0 16px;
  }

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

  .page_footer {
    padding: 32px 16px 24px;
  }

  .header_contact_strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.doc-pye-info {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 32px;
  color: #2c2c2c;
  line-height: 1.6;
  font-size: 17px;
}

.doc-pye-info h1 {
  font-size: 50px;
  line-height: 1.15;
  color: #7F5539;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #FEE3DC;
}

.doc-pye-info h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #7F5539;
  margin-top: 48px;
  margin-bottom: 16px;
}

.doc-pye-info h3 {
  font-size: 26px;
  line-height: 1.4;
  color: #5a3a24;
  margin-top: 32px;
  margin-bottom: 12px;
}

.doc-pye-info h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #5a3a24;
  margin-top: 32px;
  margin-bottom: 12px;
}

.doc-pye-info h5 {
  font-size: 17px;
  line-height: 1.4;
  color: #5a3a24;
  margin-top: 16px;
  margin-bottom: 8px;
}

.doc-pye-info h6 {
  font-size: 15px;
  line-height: 1.4;
  color: #7F5539;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.doc-pye-info ul {
  margin: 16px 0;
  padding-left: 32px;
  list-style: none;
}

.doc-pye-info ol {
  margin: 16px 0;
  padding-left: 32px;
  list-style: none;
  counter-reset: policy-counter;
}

.doc-pye-info ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
  line-height: 1.6;
  font-size: 17px;
}

.doc-pye-info ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background-color: #0DB2BA;
  flex-shrink: 0;
}

.doc-pye-info ol li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
  line-height: 1.6;
  font-size: 17px;
  counter-increment: policy-counter;
}

.doc-pye-info ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -16px;
  top: 0;
  color: #7F5539;
  font-size: 15px;
  font-weight: 700;
  min-width: 24px;
}

.doc-pye-info ul ul,
.doc-pye-info ol ol,
.doc-pye-info ul ol,
.doc-pye-info ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.doc-pye-info ul ul li::before {
  background-color: #FEE3DC;
  border: 1.5px solid #7F5539;
  border-radius: 40px;
}

.doc-pye-info strong,
.doc-pye-info b {
  color: #5a3a24;
  font-weight: 700;
}

.doc-pye-info em,
.doc-pye-info i {
  color: #4a4a4a;
  font-style: italic;
}

.doc-pye-info a {
  color: #0DB2BA;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.18s ease-out, text-decoration-color 0.14s ease-out;
}

.doc-pye-info a:hover {
  color: #7F5539;
  text-decoration-color: #7F5539;
}

.doc-pye-info a:visited {
  color: #5a7fbf;
}

@media (max-width: 1024px) {
  .doc-pye-info {
    padding: 48px 32px;
  }

  .doc-pye-info h1 {
    font-size: 36px;
  }

  .doc-pye-info h2 {
    font-size: 26px;
  }

  .doc-pye-info h3 {
    font-size: 20px;
  }
}

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

  .doc-pye-info h1 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .doc-pye-info h2 {
    font-size: 20px;
    margin-top: 32px;
  }

  .doc-pye-info h3 {
    font-size: 17px;
    margin-top: 16px;
  }

  .doc-pye-info h4,
  .doc-pye-info h5,
  .doc-pye-info h6 {
    font-size: 15px;
    margin-top: 16px;
  }

  .doc-pye-info ul,
  .doc-pye-info ol {
    padding-left: 16px;
  }

  .doc-pye-info ul li,
  .doc-pye-info ol li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .doc-pye-info {
    padding: 16px 12px;
  }

  .doc-pye-info h1 {
    font-size: 20px;
  }

  .doc-pye-info h2 {
    font-size: 17px;
  }

  .doc-pye-info h3,
  .doc-pye-info h4,
  .doc-pye-info h5,
  .doc-pye-info h6 {
    font-size: 15px;
  }
}

.abt-us {
  max-width: 100%;
  overflow-x: hidden;
}

.abt-us .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.abt-us .lead-blk {
  background: #fff;
  padding: 48px 0 0;
  position: relative;
}

.abt-us .lead-blk .dot-field {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background-image: radial-gradient(circle, rgba(127, 85, 57, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.abt-us .lead-blk .pg-wrap {
  position: relative;
  z-index: 1;
}

.abt-us .lead-txt {
  text-align: center;
  padding: 48px 0 32px;
}

.abt-us .lead-txt .eyebrow {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  color: #0DB2BA;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border-bottom: 2px solid #0DB2BA;
  padding-bottom: 4px;
}

.abt-us .lead-txt .draw-line {
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(263deg, #7F5539 0%, #0DB2BA 100%);
  border-radius: 2px;
  margin: 0 auto 32px;
  animation: line-draw 0.18s cubic-bezier(0.4, 0, 0.6, 1) 0.2s forwards;
}

@keyframes line-draw {
  to {
    width: 80px;
  }
}

.abt-us .lead-txt .h-top {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 900;
  color: #1e1510;
  margin-bottom: 8px;
  display: block;
}

.abt-us .lead-txt .h-mid {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  color: #7F5539;
  display: block;
  margin-bottom: 8px;
}

.abt-us .lead-txt .h-sub {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: #3a2c22;
  display: block;
  max-width: 620px;
  margin: 16px auto 0;
}

.abt-us .lead-img-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  align-items: end;
  padding-top: 32px;
}

.abt-us .lead-img-frame {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
}

.abt-us .lead-img-frame.center {
  border-radius: 24px;
}

.abt-us .lead-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.abt-us .lead-img-frame:hover img {
  transform: scale(1.04);
}

.abt-us .lead-img-frame.left {
  height: 220px;
}

.abt-us .lead-img-frame.center {
  height: 320px;
}

.abt-us .lead-img-frame.right {
  height: 180px;
}

.abt-us .stat-strip {
  display: flex;
  flex-direction: row;
  gap: 0;
  background: #7F5539;
  border-radius: 12px 12px 0 0;
  margin-top: 32px;
  overflow: hidden;
}

.abt-us .stat-item {
  flex: 1;
  padding: 16px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.abt-us .stat-item:last-child {
  border-right: none;
}

.abt-us .stat-item .s-num {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  color: #FEE3DC;
  display: block;
}

.abt-us .stat-item .s-lbl {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(254, 227, 220, 0.75);
}

.abt-us .div-band-a {
  height: 6px;
  background: conic-gradient(from 263deg, #7F5539, #0DB2BA, #7F5539);
}

.abt-us .story-blk {
  background: #FEE3DC;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.abt-us .topo-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-radial-gradient(ellipse 80% 40% at 60% 50%, transparent 0px, transparent 28px, rgba(127, 85, 57, 0.8) 29px, transparent 30px),
    repeating-radial-gradient(ellipse 60% 30% at 60% 50%, transparent 0px, transparent 48px, rgba(127, 85, 57, 0.8) 49px, transparent 50px),
    repeating-radial-gradient(ellipse 40% 20% at 60% 50%, transparent 0px, transparent 68px, rgba(127, 85, 57, 0.8) 69px, transparent 70px);
  pointer-events: none;
}

.abt-us .story-blk .pg-wrap {
  position: relative;
  z-index: 1;
}

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

.abt-us .story-col .s-tag {
  font-size: 15px;
  line-height: 1.4;
  color: #7F5539;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.abt-us .story-col h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  color: #1e1510;
  margin-bottom: 16px;
}

.abt-us .story-col .para {
  font-size: 17px;
  line-height: 1.6;
  color: #2e2018;
  margin-bottom: 12px;
}

.abt-us .story-col .para .fw {
  font-weight: 700;
  color: #7F5539;
  text-transform: uppercase;
  font-size: 15px;
}

.abt-us .team-col h3 {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  color: #1e1510;
  margin-bottom: 16px;
}

.abt-us .person-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

.abt-us .person-card:hover {
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
}

.abt-us .person-card .p-avatar {
  width: 52px;
  height: 52px;
  border-radius: 40px;
  background: linear-gradient(263deg, #7F5539 0%, #0DB2BA 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abt-us .person-card .p-avatar svg {
  width: 28px;
  height: 28px;
}

.abt-us .person-card .p-name {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #1e1510;
  display: block;
}

.abt-us .person-card .p-role {
  font-size: 15px;
  line-height: 1.4;
  color: #0DB2BA;
  display: block;
}

.abt-us .person-card .p-note {
  font-size: 15px;
  line-height: 1.4;
  color: #5a4030;
}

.abt-us .div-band-b {
  height: 4px;
  background: #0DB2BA;
}

.abt-us .method-blk {
  background: #fff;
  padding: 48px 0;
}

.abt-us .method-blk .sec-label {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #0DB2BA;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.abt-us .method-blk h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  color: #1e1510;
  margin-bottom: 32px;
  max-width: 680px;
}

.abt-us .method-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.abt-us .infographic-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.abt-us .info-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #f5ede8;
  border-radius: 6px;
  padding: 12px 16px;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.6, 1);
}

.abt-us .info-step:hover {
  background: #FEE3DC;
}

.abt-us .info-step .step-num {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  color: #7F5539;
  min-width: 36px;
  text-align: center;
}

.abt-us .info-step .step-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.abt-us .info-step .step-txt {
  flex: 1;
}

.abt-us .info-step .step-txt strong {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #1e1510;
  display: block;
}

.abt-us .info-step .step-txt span {
  font-size: 15px;
  line-height: 1.4;
  color: #5a4030;
}

.abt-us .method-para {
  font-size: 17px;
  line-height: 1.6;
  color: #2e2018;
  margin-bottom: 12px;
}

.abt-us .method-para .fw {
  font-weight: 700;
  color: #7F5539;
  text-transform: uppercase;
  font-size: 15px;
}

.abt-us .method-img-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .method-img-frame {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
  position: relative;
}

.abt-us .method-img-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.abt-us .method-img-frame:hover img {
  transform: scale(1.04);
}

.abt-us .method-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(127, 85, 57, 0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  border-radius: 24px;
}

.abt-us .method-img-frame:hover::after {
  background: radial-gradient(ellipse at center, transparent 40%, rgba(127, 85, 57, 0.45) 100%);
  opacity: 1;
}

.abt-us .contact-strip {
  background: #7F5539;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-us .contact-strip .cs-head {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #FEE3DC;
}

.abt-us .contact-strip .cs-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.abt-us .contact-strip .cs-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.abt-us .contact-strip .cs-row a {
  font-size: 15px;
  line-height: 1.4;
  color: #FEE3DC;
  text-decoration: none;
  border-bottom: 1px solid rgba(254, 227, 220, 0.4);
  transition: border-color 0.15s cubic-bezier(0.4, 0, 0.6, 1), color 0.15s cubic-bezier(0.4, 0, 0.6, 1);
}

.abt-us .contact-strip .cs-row a:hover {
  color: #fff;
  border-color: rgba(254, 227, 220, 0.9);
}

.abt-us .contact-strip .cs-row span {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(254, 227, 220, 0.8);
}

@media (max-width: 1024px) {
  .abt-us .lead-img-row {
    grid-template-columns: 1fr 1.5fr 1fr;
  }

  .abt-us .method-layout {
    grid-template-columns: 1fr;
  }

  .abt-us .method-img-col {
    flex-direction: row;
  }

  .abt-us .method-img-frame {
    flex: 1;
  }

  .abt-us .contact-strip {
    flex: 0 0 auto;
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  .abt-us .pg-wrap {
    padding: 0 16px;
  }

  .abt-us .lead-txt .h-top {
    font-size: 36px;
  }

  .abt-us .lead-txt .h-mid {
    font-size: 26px;
  }

  .abt-us .lead-img-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .abt-us .lead-img-frame.left,
  .abt-us .lead-img-frame.right {
    display: none;
  }

  .abt-us .lead-img-frame.center {
    height: 240px;
    border-radius: 12px;
  }

  .abt-us .stat-strip {
    flex-direction: column;
  }

  .abt-us .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .abt-us .stat-item:last-child {
    border-bottom: none;
  }

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

  .abt-us .method-img-col {
    flex-direction: column;
  }

  .abt-us .method-blk h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .abt-us .lead-txt {
    padding: 32px 0 16px;
  }

  .abt-us .lead-txt .h-top {
    font-size: 26px;
  }

  .abt-us .lead-txt .h-mid {
    font-size: 20px;
  }

  .abt-us .stat-item .s-num {
    font-size: 26px;
  }

  .abt-us .info-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.dbt_pg {
  max-width: 100%;
  overflow-x: hidden;
}

.dbt_pg .pg_bound {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.dbt_pg a {
  color: #7F5539;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.18s ease-out;
}

.dbt_pg a:hover {
  background-size: 100% 1px;
}

.dbt_pg .acnt_first::first-letter {
  text-transform: uppercase;
  color: #7F5539;
  font-size: 20px;
}

.dbt_pg .acnt_first_teal::first-letter {
  text-transform: uppercase;
  color: #0DB2BA;
  font-size: 20px;
}

.dbt_pg .ttl_blk {
  background: conic-gradient(from 263deg at 38% 55%, #7F5539 0%, #0DB2BA 40%, #FEE3DC 70%, #7F5539 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.dbt_pg .ttl_blk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.dbt_pg .ttl_deco {
  position: absolute;
  top: 32px;
  left: 48px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(from 263deg, rgba(127, 85, 57, 0.12) 0%, rgba(13, 178, 186, 0.10) 60%, rgba(254, 227, 220, 0.18) 100%);
  pointer-events: none;
  z-index: 0;
}

.dbt_pg .ttl_deco_sq {
  position: absolute;
  bottom: 24px;
  left: 120px;
  width: 80px;
  height: 80px;
  border: 2px dashed rgba(127, 85, 57, 0.22);
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}

.dbt_pg .ttl_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.dbt_pg .ttl_text {
  flex: 1 1 580px;
}

.dbt_pg .ttl_label {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7F5539;
  background: rgba(127, 85, 57, 0.08);
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.dbt_pg .ttl_h1 {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 900;
  color: #2a1a0e;
  margin-bottom: 16px;
}

.dbt_pg .ttl_h1 em {
  font-style: normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: conic-gradient(from 263deg, #7F5539 0%, #0DB2BA 100%);
}

.dbt_pg .ttl_desc {
  font-size: 17px;
  line-height: 1.6;
  color: #3a2a1e;
  max-width: 540px;
  margin-bottom: 24px;
}

.dbt_pg .ttl_meta {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

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

.dbt_pg .ttl_stat_num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  color: #7F5539;
}

.dbt_pg .ttl_stat_lbl {
  font-size: 15px;
  line-height: 1.4;
  color: #5a4030;
}

.dbt_pg .ttl_sep {
  width: 1px;
  height: 48px;
  background: rgba(127, 85, 57, 0.22);
}

.dbt_pg .ttl_img_col {
  flex: 0 0 320px;
  position: relative;
}

.dbt_pg .ttl_img_frame {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(127, 85, 57, 0.18);
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
  position: relative;
}

.dbt_pg .ttl_img_frame img {
  width: 320px;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.18s ease-out;
}

.dbt_pg .ttl_img_frame:hover img {
  transform: scale(1.04);
}

.dbt_pg .ttl_img_blur {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 0 0 12px 12px;
  pointer-events: none;
}

.dbt_pg .hes_blk {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(127, 85, 57, 0.10);
}

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

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

.dbt_pg .hes_tag {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0DB2BA;
  letter-spacing: 0.05em;
}

.dbt_pg .hes_h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  color: #2a1a0e;
}

.dbt_pg .hes_intro {
  font-size: 17px;
  line-height: 1.6;
  color: #3a2a1e;
}

.dbt_pg .hes_dashed {
  border: 2px dashed rgba(127, 85, 57, 0.38);
  border-radius: 12px;
  padding: 24px;
  background: rgba(254, 227, 220, 0.28);
  margin-top: 8px;
}

.dbt_pg .hes_dashed_lbl {
  font-size: 15px;
  font-weight: 700;
  color: #7F5539;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dbt_pg .hes_dashed_txt {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2a1e;
}

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

.dbt_pg .hes_img_wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(13, 178, 186, 0.18);
  box-shadow: 2px 5px 18px 0 rgba(13, 178, 186, 0.08);
}

.dbt_pg .hes_img_wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.20s ease-out;
}

.dbt_pg .hes_img_wrap:hover img {
  transform: scale(1.04);
}

.dbt_pg .hes_note {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4030;
  padding: 12px 16px;
  background: rgba(13, 178, 186, 0.07);
  border-radius: 6px;
}

.dbt_pg .env_blk {
  padding-top: 72px;
  padding-bottom: 72px;
  background: #FEE3DC;
  position: relative;
}

.dbt_pg .env_bg_img {
  position: absolute;
  inset: 0;
  background-image: url("./image_files/260831_media-7.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  border-radius: 0;
  pointer-events: none;
}

.dbt_pg .env_inner {
  position: relative;
  z-index: 1;
}

.dbt_pg .env_top {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.dbt_pg .env_top_text {
  flex: 1 1 420px;
}

.dbt_pg .env_tag {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7F5539;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.dbt_pg .env_h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  color: #2a1a0e;
  margin-bottom: 12px;
}

.dbt_pg .env_desc {
  font-size: 17px;
  line-height: 1.6;
  color: #3a2a1e;
}

.dbt_pg .env_img_wrap {
  flex: 0 0 340px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(127, 85, 57, 0.22);
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
}

.dbt_pg .env_img_wrap img {
  width: 340px;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.dbt_pg .env_img_wrap:hover img {
  transform: scale(1.04);
}

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

.dbt_pg .env_card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.16s ease-out;
}

.dbt_pg .env_card:hover {
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
}

.dbt_pg .env_card_ico {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dbt_pg .env_card_h {
  font-size: 17px;
  font-weight: 800;
  color: #2a1a0e;
  line-height: 1.15;
}

.dbt_pg .env_card_p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4030;
}

.dbt_pg .cond_blk {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.dbt_pg .cond_layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

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

.dbt_pg .cond_tag {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0DB2BA;
  letter-spacing: 0.05em;
}

.dbt_pg .cond_h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  color: #2a1a0e;
}

.dbt_pg .cond_brief {
  font-size: 17px;
  line-height: 1.6;
  color: #3a2a1e;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(127, 85, 57, 0.15);
}

.dbt_pg .cond_detail {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4030;
}

.dbt_pg .cond_img_wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(127, 85, 57, 0.15);
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
  margin-top: 8px;
}

.dbt_pg .cond_img_wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.18s ease-out;
}

.dbt_pg .cond_img_wrap:hover img {
  transform: scale(1.04);
}

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

.dbt_pg .cond_steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dbt_pg .cond_step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: rgba(254, 227, 220, 0.32);
  border-radius: 12px;
  padding: 16px 20px;
  position: relative;
}

.dbt_pg .cond_step_arr {
  flex: 0 0 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dbt_pg .cond_step_body {
  flex: 1;
}

.dbt_pg .cond_step_h {
  font-size: 17px;
  font-weight: 800;
  color: #2a1a0e;
  line-height: 1.15;
  margin-bottom: 4px;
}

.dbt_pg .cond_step_p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4030;
}

.dbt_pg .cond_step_connector {
  width: 2px;
  height: 12px;
  background: rgba(127, 85, 57, 0.22);
  margin-left: 30px;
}

.dbt_pg .dist_blk {
  background: rgba(254, 227, 220, 0.18);
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(127, 85, 57, 0.10);
}

.dbt_pg .dist_anchor_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: start;
}

.dbt_pg .dist_anchor {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: shadow_pulse 3.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes shadow_pulse {
  0% {
    box-shadow: 2px 2px 4px 0 rgba(127, 85, 57, 0.08);
  }

  50% {
    box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.18);
  }

  100% {
    box-shadow: 2px 2px 4px 0 rgba(127, 85, 57, 0.08);
  }
}

.dbt_pg .dist_anchor_tag {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7F5539;
  letter-spacing: 0.05em;
}

.dbt_pg .dist_anchor_h {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  color: #2a1a0e;
}

.dbt_pg .dist_anchor_p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4030;
}

.dbt_pg .dist_anchor_img {
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(127, 85, 57, 0.15);
}

.dbt_pg .dist_anchor_img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.20s ease-out;
}

.dbt_pg .dist_anchor_img:hover img {
  transform: scale(1.04);
}

.dbt_pg .dist_compact {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 2px 2px 4px 0 rgba(127, 85, 57, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.16s ease-out;
}

.dbt_pg .dist_compact:hover {
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
}

.dbt_pg .dist_compact_h {
  font-size: 17px;
  font-weight: 800;
  color: #2a1a0e;
  line-height: 1.15;
}

.dbt_pg .dist_compact_p {
  font-size: 15px;
  line-height: 1.4;
  color: #5a4030;
}

.dbt_pg .dist_h2_row {
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 32px;
}

.dbt_pg .dist_h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  color: #2a1a0e;
}

.dbt_pg .dist_sub {
  font-size: 17px;
  line-height: 1.6;
  color: #5a4030;
  max-width: 440px;
}

.dbt_pg .dist_anchor_tag {
  display: inline-block;
  animation: rot_settle 1.4s cubic-bezier(0.4, 0, 0.6, 1) both;
}

@keyframes rot_settle {
  0% {
    transform: rotate(-6deg);
    opacity: 0;
  }

  70% {
    transform: rotate(1.5deg);
    opacity: 1;
  }

  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .dbt_pg .ttl_inner {
    flex-direction: column;
    gap: 32px;
  }

  .dbt_pg .ttl_img_col {
    flex: 0 0 auto;
    width: 100%;
  }

  .dbt_pg .ttl_img_frame img {
    width: 100%;
    height: 280px;
  }

  .dbt_pg .hes_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dbt_pg .env_top {
    flex-direction: column;
    gap: 32px;
  }

  .dbt_pg .env_img_wrap {
    flex: 0 0 auto;
    width: 100%;
  }

  .dbt_pg .env_img_wrap img {
    width: 100%;
  }

  .dbt_pg .env_cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .dbt_pg .cond_layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dbt_pg .dist_anchor_grid {
    grid-template-columns: 1fr 1fr;
  }

  .dbt_pg .dist_anchor {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .dbt_pg .pg_bound {
    padding-left: 16px;
    padding-right: 16px;
  }

  .dbt_pg .ttl_h1 {
    font-size: 36px;
  }

  .dbt_pg .hes_h2,
  .dbt_pg .env_h2,
  .dbt_pg .cond_h2,
  .dbt_pg .dist_h2 {
    font-size: 26px;
  }

  .dbt_pg .ttl_meta {
    gap: 16px;
  }

  .dbt_pg .env_cards {
    grid-template-columns: 1fr;
  }

  .dbt_pg .dist_anchor_grid {
    grid-template-columns: 1fr;
  }

  .dbt_pg .dist_anchor {
    grid-column: 1;
    grid-row: auto;
  }

  .dbt_pg .dist_h2_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .dbt_pg .ttl_h1 {
    font-size: 26px;
  }

  .dbt_pg .ttl_blk {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

.cnt-us {
  max-width: 100%;
  overflow-x: hidden;
}

.cnt-us .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.cnt-us .reach-split {
  padding: 48px 0;
  background: #fff;
}

.cnt-us .reach-split .pg-wrap {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: stretch;
}

.cnt-us .reach-left {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cnt-us .reach-right {
  flex: 0 0 calc(40% - 48px);
  max-width: calc(40% - 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cnt-us .reach-eyebrow {
  font-size: 15px;
  color: #7F5539;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cnt-us .reach-heading {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 900;
  color: #1b1b1b;
  margin: 0;
}

.cnt-us .reach-heading .acnt {
  color: #7F5539;
}

.cnt-us .reach-heading .brkt {
  color: #0DB2BA;
}

.cnt-us .reach-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
}

.cnt-us .reach-desc .fw {
  font-weight: 700;
  color: #7F5539;
  text-transform: uppercase;
  font-size: 15px;
}

.cnt-us .reach-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cnt-us .reach-info-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.cnt-us .info-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #FEE3DC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cnt-us .info-ico svg {
  width: 18px;
  height: 18px;
}

.cnt-us .info-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cnt-us .info-lbl {
  font-size: 15px;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.15;
}

.cnt-us .info-val {
  font-size: 17px;
  color: #3a3a3a;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

.cnt-us .info-val:hover {
  color: #7F5539;
}

.cnt-us .reach-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.cnt-us .reach-divider-line {
  flex: 1;
  height: 1px;
  background: #FEE3DC;
}

.cnt-us .reach-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #7F5539;
  transform: rotate(45deg);
}

.cnt-us .reach-right-card {
  background: #FEE3DC;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cnt-us .right-card-label {
  font-size: 15px;
  font-weight: 700;
  color: #7F5539;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cnt-us .right-card-stat {
  font-size: 36px;
  font-weight: 900;
  color: #1b1b1b;
  line-height: 1.15;
}

.cnt-us .right-card-stat .stat-unit {
  font-size: 20px;
  font-weight: 600;
  color: #7F5539;
}

.cnt-us .right-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
}

.cnt-us .right-card-accent {
  background: #7F5539;
  border-radius: 6px;
  padding: 12px 16px;
}

.cnt-us .right-card-accent .right-card-label {
  color: #FEE3DC;
}

.cnt-us .right-card-accent .right-card-stat {
  color: #fff;
}

.cnt-us .right-card-accent .stat-unit {
  color: #FEE3DC;
}

.cnt-us .right-card-accent .right-card-desc {
  color: #FEE3DC;
}

.cnt-us .dot-scatter {
  position: relative;
  overflow: hidden;
}

.cnt-us .dot-scatter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(127, 85, 57, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.cnt-us .dot-scatter>* {
  position: relative;
  z-index: 1;
}

.cnt-us .form-strip {
  padding: 48px 0;
  background: #f5ede8;
  position: relative;
}

.cnt-us .form-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(at 60% 50%, rgba(127, 85, 57, 0.06) 0deg, rgba(13, 178, 186, 0.04) 263deg, transparent 360deg);
  pointer-events: none;
}

.cnt-us .form-strip .pg-wrap {
  position: relative;
  z-index: 1;
}

.cnt-us .form-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.cnt-us .form-meta {
  flex: 0 0 35%;
  max-width: 35%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.cnt-us .form-meta-heading {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  color: #1b1b1b;
  margin: 0;
}

.cnt-us .form-meta-heading .acnt {
  color: #7F5539;
}

.cnt-us .form-meta-para {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
}

.cnt-us .form-meta-para .fw {
  font-weight: 700;
  color: #7F5539;
  text-transform: uppercase;
}

.cnt-us .topic-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.cnt-us .topic-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 2px 2px 4px 0 rgba(127, 85, 57, 0.08);
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.4;
}

.cnt-us .topic-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #0DB2BA;
  flex-shrink: 0;
}

.cnt-us .form-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cnt-us .ed-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cnt-us .form-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.cnt-us .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cnt-us .form-field.full {
  flex: 0 0 100%;
  width: 100%;
}

.cnt-us .field-lbl {
  font-size: 15px;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.4;
}

.cnt-us .field-lbl .req {
  color: #7F5539;
  margin-left: 4px;
}

.cnt-us .ed-input {
  height: 48px;
  border: 1.5px solid #d4b9a8;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 17px;
  color: #1b1b1b;
  background: #fff;
  outline: none;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  width: 100%;
  box-sizing: border-box;
}

.cnt-us .ed-input::placeholder {
  color: rgba(27, 27, 27, 0.4);
}

.cnt-us .ed-input:focus {
  border-color: #7F5539;
  box-shadow: inset 0 2px 4px 0 rgba(127, 85, 57, 0.08);
}

.cnt-us .ed-select {
  height: 48px;
  border: 1.5px solid #d4b9a8;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 17px;
  color: #1b1b1b;
  background: #fff;
  outline: none;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  width: 100%;
  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 fill='%237F5539' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.cnt-us .ed-select:focus {
  border-color: #7F5539;
  box-shadow: inset 0 2px 4px 0 rgba(127, 85, 57, 0.08);
}

.cnt-us .ed-textarea {
  border: 1.5px solid #d4b9a8;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 17px;
  color: #1b1b1b;
  background: #fff;
  outline: none;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.6, 1);
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 96px;
}

.cnt-us .ed-textarea::placeholder {
  color: rgba(27, 27, 27, 0.4);
}

.cnt-us .ed-textarea:focus {
  border-color: #7F5539;
  box-shadow: inset 0 2px 4px 0 rgba(127, 85, 57, 0.08);
}

.cnt-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: #FEE3DC;
  border-radius: 6px;
}

.cnt-us .privacy-chk {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: #7F5539;
  margin-top: 2px;
  cursor: pointer;
}

.cnt-us .privacy-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
}

.cnt-us .privacy-txt a {
  color: #7F5539;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.cnt-us .privacy-txt a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #7F5539;
  transition: width 0.16s cubic-bezier(0.4, 0, 0.6, 1);
}

.cnt-us .privacy-txt a:hover::after {
  width: 100%;
}

.cnt-us .submit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.cnt-us .btn-submit {
  height: 52px;
  padding: 0 32px;
  background: #7F5539;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.16s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.16s cubic-bezier(0.4, 0, 0.6, 1), transform 0.12s cubic-bezier(0.4, 0, 0.6, 1);
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cnt-us .btn-submit:hover {
  background: #6a4530;
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
  transform: translateY(-1px);
}

.cnt-us .btn-submit:active {
  transform: translateY(0);
  background: #5c3a28;
}

.cnt-us .btn-submit:focus {
  outline: 2px solid #0DB2BA;
  outline-offset: 3px;
}

.cnt-us .form-note {
  font-size: 15px;
  color: #7a6558;
  line-height: 1.4;
}

.cnt-us .anim-left {
  opacity: 0;
  transform: translateX(-28px);
  animation: slideFromLeft 0.22s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.cnt-us .anim-right {
  opacity: 0;
  transform: translateX(28px);
  animation: slideFromRight 0.22s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.cnt-us .anim-left:nth-child(1),
.cnt-us .anim-right:nth-child(1) {
  animation-delay: 0.04s;
}

.cnt-us .anim-left:nth-child(2),
.cnt-us .anim-right:nth-child(2) {
  animation-delay: 0.09s;
}

.cnt-us .anim-left:nth-child(3),
.cnt-us .anim-right:nth-child(3) {
  animation-delay: 0.14s;
}

.cnt-us .anim-left:nth-child(4),
.cnt-us .anim-right:nth-child(4) {
  animation-delay: 0.19s;
}

@keyframes slideFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cnt-us .form-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.cnt-us .form-divider-line {
  flex: 1;
  height: 1px;
  background: #d4b9a8;
}

.cnt-us .form-divider-lbl {
  font-size: 15px;
  color: #7a6558;
  font-weight: 600;
  white-space: nowrap;
}

.cnt-us .field-hint {
  font-size: 15px;
  color: #7a6558;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .cnt-us .reach-split .pg-wrap {
    flex-direction: column;
    gap: 32px;
  }

  .cnt-us .reach-left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cnt-us .reach-right {
    flex: 0 0 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cnt-us .reach-right-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 240px;
  }

  .cnt-us .form-layout {
    flex-direction: column;
    gap: 32px;
  }

  .cnt-us .form-meta {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cnt-us .reach-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .cnt-us .reach-heading {
    font-size: 36px;
  }

  .cnt-us .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .cnt-us .reach-right {
    flex-direction: column;
  }

  .cnt-us .reach-right-card {
    flex: 0 0 100%;
    min-width: 0;
  }

  .cnt-us .ed-form {
    padding: 24px 16px;
  }

  .cnt-us .submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cnt-us .btn-submit {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cnt-us .reach-heading {
    font-size: 26px;
  }

  .cnt-us .form-meta-heading {
    font-size: 26px;
  }

  .cnt-us .reach-split {
    padding: 32px 0;
  }

  .cnt-us .form-strip {
    padding: 32px 0;
  }
}

.tech-req-pg {
  background: #fff;
  overflow-x: hidden;
}

.tech-req-pg .pg-schema {
  display: none;
}

.tech-req-pg .sec-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  max-width: 1140px;
  margin: 0 auto;
}

.tech-req-pg .sec-divider .div-line {
  flex: 1;
  height: 1px;
  background: #7F5539;
  opacity: 0.18;
}

.tech-req-pg .sec-divider .div-num {
  font-size: 15px;
  color: #7F5539;
  opacity: 0.5;
  letter-spacing: 0.08em;
}

.tech-req-pg .title-blk {
  position: relative;
  background: #FEE3DC;
  padding: 48px 48px 32px;
  overflow: hidden;
}

.tech-req-pg .title-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    conic-gradient(at 80% 50%, rgba(127, 85, 57, 0.07) 0deg, rgba(13, 178, 186, 0.05) 263deg, transparent 360deg);
  pointer-events: none;
}

.tech-req-pg .title-blk::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(127, 85, 57, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(127, 85, 57, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.tech-req-pg .title-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}

.tech-req-pg .title-text-col {
  flex: 1;
  position: relative;
}

.tech-req-pg .quote-mark {
  position: absolute;
  top: -12px;
  left: -16px;
  font-size: 120px;
  line-height: 1.15;
  color: #7F5539;
  opacity: 0.08;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.tech-req-pg .cat-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.tech-req-pg .cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #0DB2BA;
  flex-shrink: 0;
}

.tech-req-pg .cat-name {
  font-size: 15px;
  color: #0DB2BA;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tech-req-pg .pg-heading {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 900;
  color: #2c1a0e;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.tech-req-pg .pg-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #4a3020;
  margin: 0 0 12px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.tech-req-pg .pg-lead .first-word {
  text-transform: uppercase;
  color: #7F5539;
  font-weight: 700;
}

.tech-req-pg .theses-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.tech-req-pg .thesis-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(127, 85, 57, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  flex: 1;
  box-shadow: 2px 2px 4px 0 rgba(127, 85, 57, 0.08);
}

.tech-req-pg .thesis-item .th-label {
  font-size: 15px;
  font-weight: 700;
  color: #7F5539;
  display: block;
  margin-bottom: 4px;
}

.tech-req-pg .thesis-item .th-desc {
  font-size: 15px;
  line-height: 1.4;
  color: #4a3020;
  margin: 0;
}

.tech-req-pg .title-img-col {
  width: 320px;
  flex-shrink: 0;
  position: relative;
}

.tech-req-pg .img-frame {
  width: 320px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
  position: relative;
}

.tech-req-pg .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.18s ease-out;
}

.tech-req-pg .img-frame:hover img {
  transform: scale(1.04);
}

.tech-req-pg .img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(30, 10, 0, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(30, 10, 0, 0.3) 0%, transparent 45%);
  pointer-events: none;
  border-radius: 12px;
}

.tech-req-pg .diamond-acc {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  background: #0DB2BA;
  transform: rotate(45deg);
  border-radius: 2px;
  opacity: 0.85;
}

.tech-req-pg .req-blk {
  background: #fff;
  padding: 48px 48px;
  position: relative;
}

.tech-req-pg .req-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.tech-req-pg .req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.tech-req-pg .req-grid .col-tall {
  margin-top: 0;
}

.tech-req-pg .req-grid .col-mid {
  margin-top: 24px;
}

.tech-req-pg .req-grid .col-short {
  margin-top: 48px;
}

.tech-req-pg .req-card {
  background: #fff;
  border: 1px solid rgba(127, 85, 57, 0.12);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
  transition: box-shadow 0.15s ease-out, border-color 0.15s ease-out;
  position: relative;
}

.tech-req-pg .req-card:hover {
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
  border-color: rgba(127, 85, 57, 0.25);
}

.tech-req-pg .req-card .card-ico {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #FEE3DC;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.tech-req-pg .req-card .card-ico svg {
  width: 22px;
  height: 22px;
}

.tech-req-pg .req-card .card-ttl {
  font-size: 17px;
  font-weight: 800;
  color: #2c1a0e;
  line-height: 1.15;
  margin: 0 0 8px;
}

.tech-req-pg .req-card .card-body {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3020;
  margin: 0 0 12px;
}

.tech-req-pg .req-card .card-body .first-word {
  text-transform: uppercase;
  color: #7F5539;
  font-weight: 700;
}

.tech-req-pg .req-card .spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-req-pg .req-card .spec-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3020;
  padding: 4px 0 4px 16px;
  position: relative;
  border-bottom: 1px solid rgba(127, 85, 57, 0.07);
}

.tech-req-pg .req-card .spec-list li:last-child {
  border-bottom: none;
}

.tech-req-pg .req-card .spec-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #0DB2BA;
}

.tech-req-pg .req-card .spec-list li strong {
  color: #7F5539;
  font-weight: 700;
}

.tech-req-pg .pricing-tbl {
  margin-top: 32px;
  border: 1px solid rgba(127, 85, 57, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
}

.tech-req-pg .pricing-tbl table {
  width: 100%;
  border-collapse: collapse;
}

.tech-req-pg .pricing-tbl thead tr {
  background: #7F5539;
}

.tech-req-pg .pricing-tbl thead th {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1.4;
}

.tech-req-pg .pricing-tbl thead th:not(:first-child) {
  text-align: center;
}

.tech-req-pg .pricing-tbl tbody tr {
  border-bottom: 1px solid rgba(127, 85, 57, 0.08);
  transition: background 0.12s ease-out;
}

.tech-req-pg .pricing-tbl tbody tr:last-child {
  border-bottom: none;
}

.tech-req-pg .pricing-tbl tbody tr:hover {
  background: rgba(254, 227, 220, 0.4);
}

.tech-req-pg .pricing-tbl tbody tr:nth-child(even) {
  background: rgba(254, 227, 220, 0.15);
}

.tech-req-pg .pricing-tbl tbody tr:nth-child(even):hover {
  background: rgba(254, 227, 220, 0.4);
}

.tech-req-pg .pricing-tbl td {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 1.4;
  color: #2c1a0e;
  vertical-align: middle;
}

.tech-req-pg .pricing-tbl td:not(:first-child) {
  text-align: center;
}

.tech-req-pg .pricing-tbl td:first-child {
  font-weight: 600;
  color: #4a3020;
}

.tech-req-pg .tbl-yes {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 40px;
  background: #0DB2BA;
  position: relative;
}

.tech-req-pg .tbl-yes::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(40deg);
}

.tech-req-pg .tbl-no {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 40px;
  background: rgba(127, 85, 57, 0.15);
  position: relative;
}

.tech-req-pg .tbl-no::before,
.tech-req-pg .tbl-no::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  width: 2px;
  height: 10px;
  background: rgba(127, 85, 57, 0.4);
  border-radius: 2px;
}

.tech-req-pg .tbl-no::before {
  transform: rotate(45deg);
}

.tech-req-pg .tbl-no::after {
  transform: rotate(-45deg);
}

.tech-req-pg .tbl-part {
  display: inline-block;
  font-size: 15px;
  color: #7F5539;
  font-weight: 600;
}

.tech-req-pg .req-blk-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}

.tech-req-pg .req-blk-head .hd-text {
  flex: 1;
}

.tech-req-pg .req-blk-head .hd-text .blk-cat {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tech-req-pg .req-blk-head .hd-text .blk-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #7F5539;
  flex-shrink: 0;
}

.tech-req-pg .req-blk-head .hd-text .blk-cat-lbl {
  font-size: 15px;
  color: #7F5539;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-req-pg .req-blk-head .hd-text .blk-h {
  font-size: 36px;
  font-weight: 900;
  color: #2c1a0e;
  line-height: 1.15;
  margin: 0 0 12px;
}

.tech-req-pg .req-blk-head .hd-text .blk-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #4a3020;
  margin: 0;
  max-width: 520px;
}

.tech-req-pg .req-blk-head .hd-text .blk-sub .first-word {
  text-transform: uppercase;
  color: #7F5539;
  font-weight: 700;
}

.tech-req-pg .fib-bg-sec {
  background: #FEE3DC;
  padding: 48px 48px;
  position: relative;
  overflow: hidden;
}

.tech-req-pg .fib-bg-sec::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 340px;
  height: 340px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 100 Q100 61 61 61 Q22 61 22 100 Q22 139 61 139 Q100 139 100 100 M61 61 Q61 39 39 39 Q17 39 17 61 Q17 83 39 83 Q61 83 61 61 M39 39 Q39 27 27 27 Q15 27 15 39 Q15 51 27 51 Q39 51 39 39' stroke='%237F5539' stroke-width='1.5' fill='none' opacity='0.09'/%3E%3Ccircle cx='100' cy='100' r='60' stroke='%237F5539' stroke-width='1' fill='none' opacity='0.06'/%3E%3Ccircle cx='61' cy='61' r='37' stroke='%237F5539' stroke-width='1' fill='none' opacity='0.06'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
}

.tech-req-pg .fib-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tech-req-pg .fib-inner .fib-head {
  margin-bottom: 32px;
}

.tech-req-pg .fib-inner .fib-head .fib-cat {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tech-req-pg .fib-inner .fib-head .fib-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #0DB2BA;
}

.tech-req-pg .fib-inner .fib-head .fib-cat-lbl {
  font-size: 15px;
  color: #0DB2BA;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-req-pg .fib-inner .fib-head .fib-h {
  font-size: 36px;
  font-weight: 900;
  color: #2c1a0e;
  line-height: 1.15;
  margin: 0 0 12px;
}

.tech-req-pg .fib-inner .fib-head .fib-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #4a3020;
  max-width: 600px;
  margin: 0;
}

.tech-req-pg .fib-inner .fib-head .fib-desc .first-word {
  text-transform: uppercase;
  color: #7F5539;
  font-weight: 700;
}

.tech-req-pg .compat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.tech-req-pg .compat-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(127, 85, 57, 0.12);
  box-shadow: 2px 2px 4px 0 rgba(127, 85, 57, 0.08);
  transition: box-shadow 0.18s ease-out;
}

.tech-req-pg .compat-card:hover {
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
}

.tech-req-pg .compat-card .cc-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tech-req-pg .compat-card .cc-ico {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #FEE3DC;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-req-pg .compat-card .cc-ico svg {
  width: 20px;
  height: 20px;
}

.tech-req-pg .compat-card .cc-ttl {
  font-size: 17px;
  font-weight: 800;
  color: #2c1a0e;
  line-height: 1.15;
  margin: 0;
}

.tech-req-pg .compat-card .cc-body {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3020;
  margin: 0 0 12px;
}

.tech-req-pg .compat-card .cc-body .first-word {
  text-transform: uppercase;
  color: #7F5539;
  font-weight: 700;
}

.tech-req-pg .compat-card .tag-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-req-pg .compat-card .tag-item {
  font-size: 15px;
  color: #7F5539;
  background: rgba(127, 85, 57, 0.08);
  border-radius: 6px;
  padding: 4px 12px;
  font-weight: 600;
  line-height: 1.4;
}

.tech-req-pg .notice-strip {
  background: rgba(13, 178, 186, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(13, 178, 186, 0.2);
}

.tech-req-pg .notice-strip .ns-ico {
  width: 32px;
  height: 32px;
  border-radius: 40px;
  background: #0DB2BA;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-req-pg .notice-strip .ns-ico svg {
  width: 18px;
  height: 18px;
}

.tech-req-pg .notice-strip .ns-text {
  flex: 1;
}

.tech-req-pg .notice-strip .ns-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #2c1a0e;
  display: block;
  margin-bottom: 4px;
}

.tech-req-pg .notice-strip .ns-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3020;
  margin: 0;
}

.tech-req-pg .pricing-tbl-wrap {
  margin-top: 32px;
}

.tech-req-pg .pricing-tbl-wrap .tbl-head-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tech-req-pg .pricing-tbl-wrap .tbl-head-row .th-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #7F5539;
}

.tech-req-pg .pricing-tbl-wrap .tbl-head-row .th-lbl {
  font-size: 17px;
  font-weight: 800;
  color: #2c1a0e;
  margin: 0;
}

@media (max-width: 1024px) {
  .tech-req-pg .title-inner {
    flex-direction: column;
    gap: 32px;
  }

  .tech-req-pg .title-img-col {
    width: 100%;
  }

  .tech-req-pg .img-frame {
    width: 100%;
    height: 220px;
  }

  .tech-req-pg .req-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-req-pg .req-grid .col-mid,
  .tech-req-pg .req-grid .col-short {
    margin-top: 0;
  }

  .tech-req-pg .compat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .tech-req-pg .title-blk,
  .tech-req-pg .req-blk,
  .tech-req-pg .fib-bg-sec {
    padding: 32px 16px;
  }

  .tech-req-pg .pg-heading {
    font-size: 36px;
  }

  .tech-req-pg .theses-row {
    flex-direction: column;
  }

  .tech-req-pg .req-grid {
    grid-template-columns: 1fr;
  }

  .tech-req-pg .req-blk-head {
    flex-direction: column;
  }

  .tech-req-pg .sec-divider {
    padding: 0 16px;
  }

  .tech-req-pg .fib-inner .fib-h,
  .tech-req-pg .req-blk-head .hd-text .blk-h {
    font-size: 26px;
  }

  .tech-req-pg .pricing-tbl td,
  .tech-req-pg .pricing-tbl thead th {
    padding: 8px 10px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .tech-req-pg .pg-heading {
    font-size: 26px;
  }

  .tech-req-pg .pricing-tbl {
    overflow-x: auto;
    display: block;
  }

  .tech-req-pg .pricing-tbl table {
    min-width: 480px;
  }
}

.success_page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: #fff;
}

.success_page .confirm_wrap {
  max-width: 560px;
  width: 100%;
  background: #FEE3DC;
  border-radius: 12px;
  padding: 48px 32px;
  box-shadow: 2px 9px 36px 0 rgba(127, 85, 57, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success_page .confirm_icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  flex-shrink: 0;
}

.success_page .confirm_icon .icon_circle {
  fill: none;
  stroke: #7F5539;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success_page .confirm_icon .icon_check {
  fill: none;
  stroke: #0DB2BA;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 0;
}

.success_page .confirm_heading {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  color: #7F5539;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.success_page .confirm_subtext {
  font-size: 17px;
  line-height: 1.6;
  color: #3a2518;
  margin-bottom: 32px;
  max-width: 420px;
}

.success_page .confirm_subtext strong {
  color: #7F5539;
  font-weight: 700;
}

.success_page .confirm_divider {
  width: 48px;
  height: 3px;
  background: conic-gradient(from 263deg, #7F5539, #0DB2BA);
  border-radius: 2px;
  margin-bottom: 32px;
}

.success_page .confirm_detail {
  font-size: 15px;
  line-height: 1.6;
  color: #5a3d2b;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 6px;
  padding: 16px;
  box-shadow: 2px 2px 4px 0 rgba(127, 85, 57, 0.08);
  width: 100%;
  text-align: left;
}

.success_page .confirm_detail .detail_label {
  font-size: 15px;
  font-weight: 700;
  color: #7F5539;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.success_page .confirm_detail .detail_value {
  font-size: 15px;
  color: #3a2518;
}

.success_page .back_btn {
  display: inline-block;
  padding: 12px 32px;
  background: #7F5539;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s ease-out, box-shadow 0.14s ease-out;
  box-shadow: 2px 5px 18px 0 rgba(127, 85, 57, 0.08);
}

.success_page .back_btn:hover {
  background: #0DB2BA;
  box-shadow: 2px 9px 36px 0 rgba(13, 178, 186, 0.14);
}

.success_page .back_btn:focus {
  outline: 2px solid #0DB2BA;
  outline-offset: 4px;
}

.success_page .back_btn:active {
  background: #5a3d2b;
}

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

  .success_page .confirm_heading {
    font-size: 26px;
  }
}