
/* responsive helpers replacing Imweb pc/mobile sections */
@media (min-width: 769px) {
  .oh-m { display: none !important; }
}
@media (max-width: 768px) {
  .oh-pc { display: none !important; }
}

/* Imweb `.inside` equivalent — site content width */
.original-home .oh-inside {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .original-home .oh-inside {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Keep section paddings from original; avoid double-side padding when nested */
.original-home .oh-inside > .inherit-wrap,
.original-home .oh-inside > .inherit-wrap-m,
.original-home .oh-inside > .faq-section {
  padding-left: 0;
  padding-right: 0;
}
.original-home .oh-inside > .hero-intro2,
.original-home .oh-inside > .hero-intro,
.original-home .oh-inside > .hero-practice,
.original-home .oh-inside > .hero-review,
.original-home .oh-inside > .hero-faq {
  padding-left: 0;
  padding-right: 0;
}

.original-home .oh-faq-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 900px) {
  .original-home .oh-faq-top {
    grid-template-columns: 1fr;
  }
}

.original-home, .original-home * {
  box-sizing: border-box;
}
.original-home a { text-decoration: none; color: inherit; }
.original-home button { font: inherit; cursor: pointer; }

.hero-text{
      display: block;
      text-align: center;
      padding: 0;
    }

/* First visual — match original spacer rhythm (96 top / 554 bottom on PC) */
.hero-visual--pc {
  min-height: 100vh;
  background-attachment: fixed;
}

.hero-visual__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 120px;
  box-sizing: border-box;
}

.hero-visual--m {
  min-height: 85vh;
}

.hero-visual__inner--m {
  min-height: 85vh;
  padding-top: 65px;
  padding-bottom: 80px;
}

@media (max-width: 1280px) {
  .hero-visual--pc {
    background-attachment: scroll;
  }
}

.hero-text__body{
      font-family: "Noto Serif KR", serif;
      font-size: 38px;
      font-weight: 300;
      line-height: 1.6;
      color: #ffffff;
      letter-spacing: -0.02em;
      margin: 0 0 20px 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

.hero-text__footer{
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.8s ease;
    }

.hero-text__line{
      display: block;
      width: 100%;
      max-width: 420px;
      height: 1px;
      background: rgba(255, 255, 255, 0.4);
    }

.hero-text__en{
      font-family: "Raleway", sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.15em;
      opacity: 0;
      transition: opacity 0.8s ease;
    }

.hero-text-mobile{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
  }

.hero-text-mobile__body{
    font-family: "Noto Serif KR", serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.75;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0 0 18px 0;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

.hero-text-mobile__footer{
    width: 100%;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

.hero-text-mobile__line{
    display: block;
    width: 100%;
    max-width: 260px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
  }

.hero-text-mobile__en{
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.15em;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

.hero-text-mobile .char{
    display: inline;
    opacity: 0;
    transition: opacity 1.2s ease;
  }

.hero-text-mobile .char.visible{
    opacity: 1;
  }

.hero-intro2-m{
  width: 100%;
  padding: 28px 20px 24px;
  background: transparent;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero-intro2-m__inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-intro2-m__inner.hero-intro2-m--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-intro2-m__badge-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-intro2-m__line{
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #000;
}

.hero-intro2-m__badge{
  font-size: 13px !important;
  color: #000 !important;
  font-family: "Noto Serif KR", serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.hero-intro2-m__headline{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  text-align: center;
  width: 100%;
  word-break: keep-all;
  margin: 0;
}

.hero-intro2-m__bold{
  font-weight: 600;
}

.inherit-wrap-m *{
  font-family: 'Pretendard', sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.inherit-wrap-m{
  padding: 24px 16px 48px;
}

.inherit-wrap-m .main-card-m{
  width: 100%;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.inherit-wrap-m .main-card-m::before{
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 30%, rgba(215,190,120,0.22) 0%, rgba(220,195,130,0.10) 30%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.inherit-wrap-m .card-top-m{
  padding: 28px 24px 12px;
  position: relative;
  z-index: 1;
}

.inherit-wrap-m .card-top-m h2{
  font-size: 20px;
  font-weight: 600;
  color: #1E1A10;
  line-height: 1.42;
  letter-spacing: -0.4px;
}

.inherit-wrap-m .card-desc-m{
  padding: 0 24px 0;
  position: relative;
  z-index: 1;
  flex: 1;
}

.inherit-wrap-m .card-desc-m p{
  font-size: 13px;
  font-weight: 500;
  color: #444;
  line-height: 1.7;
}

.inherit-wrap-m .card-bottom-img-m{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 32px 20px 44px;
}

.inherit-wrap-m .card-bottom-img-m img{
  width: 190px;
  height: 190px;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: translateX(-30px);
}

.inherit-wrap-m .selector-wrap-m{
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.inherit-wrap-m .selector-wrap-m:active{
  cursor: grabbing;
}

.inherit-wrap-m .selector-m{
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: max-content;
  will-change: transform;
  animation: iw-marquee 40s linear infinite;
}

.inherit-wrap-m .selector-wrap-m:hover .selector-m{
  animation-play-state: paused;
}

.inherit-wrap-m .case-btn-m{
  flex: 0 0 auto;
  width: 140px;
  min-height: 108px;
  padding: 16px 14px 14px;
  border-radius: 18px;
  border: none;
  background: rgba(179,160,135,0.13);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
}

.inherit-wrap-m .case-btn-m:hover,
.inherit-wrap-m .case-btn-m.active-m{
  background: #B3A087;
  opacity: 1;
}

.inherit-wrap-m .case-btn-m:hover .btn-label-m,
.inherit-wrap-m .case-btn-m.active-m .btn-label-m{
  color: #fff;
}

.inherit-wrap-m .btn-label-m{
  font-size: 13px;
  font-weight: 700;
  color: #3A2E1A;
  line-height: 1.4;
  margin-bottom: 16px;
  display: block;
}

.inherit-wrap-m .btn-icon-m{
  display: flex;
  justify-content: flex-end;
}

.inherit-wrap-m .btn-icon-m img{
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 1;
  filter: invert(18%) sepia(15%) saturate(800%) hue-rotate(10deg) brightness(60%);
  transition: filter 0.2s ease;
}

.inherit-wrap-m .case-btn-m:hover .btn-icon-m img,
.inherit-wrap-m .case-btn-m.active-m .btn-icon-m img{
  filter: brightness(0) invert(1) !important;
}

.hero-intro2{
  width: 100%;
  padding: 20px 20px 20px;
  background: transparent;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-intro2__inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-intro2__inner.hero-intro2--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-intro2__badge-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-intro2__line{
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #333;
}

.hero-intro2__badge{
  font-size: 20px;
  color: #333;
  font-family: "Noto Serif KR", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
}

.hero-intro2__headline{
  font-size: 38px;
  font-weight: 400;
  line-height: 1.55;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  text-align: center;
  width: 100%;
}

.hero-intro2__bold{
  font-weight: 600;
}

.hero-cases-section{
  padding: 50px 0 40px;
  background-color: #f7f5f2;
}

@media (max-width: 768px) {
  .hero-cases-section{
    padding: 40px 0 30px;
  }
}

@keyframes iw-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.inherit-wrap *{
  font-family: 'Pretendard', sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.inherit-wrap{
  padding: 10px 40px 80px;
}

.inherit-wrap .main-card{
  max-width: 820px;
  margin: 0 auto 32px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  min-height: 340px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.inherit-wrap .main-card::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 38% 50%, rgba(215,190,120,0.28) 0%, rgba(220,195,130,0.13) 25%, rgba(225,200,135,0.04) 45%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.inherit-wrap .card-left{
  width: 50%;
  min-width: 180px;
  padding: 36px 24px 36px 52px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

.inherit-wrap .card-left h2{
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 600;
  color: #1E1A10;
  line-height: 1.38;
  letter-spacing: -0.5px;
  padding-top: 0;
  align-self: flex-start;
}

.inherit-wrap .card-left-footer{
  font-size: 12px;
  color: #B3A082;
  letter-spacing: 0.3px;
}

.inherit-wrap .card-left-img{
  margin-top: 32px;
  width: 100%;
  max-width: 200px;
  align-self: center;
}

.inherit-wrap .card-left-img img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  opacity: 0;
  transform: translateX(-60px);
}

.inherit-wrap .card-right{
  flex: 1;
  padding: 36px 52px 36px 12px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}

.inherit-wrap .card-right p{
  font-size: 15px;
  font-weight: 500;
  color: #363636;
  line-height: 1.9;
}

.inherit-wrap .selector-wrap{
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.inherit-wrap .selector{
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: max-content;
  animation: iw-marquee 40s linear infinite;
  will-change: transform;
}

.inherit-wrap .selector-wrap:hover .selector{
  animation-play-state: paused;
}

.inherit-wrap .case-btn{
  flex: 0 0 auto;
  width: 180px;
  min-height: 140px;
  padding: 22px 18px 18px;
  border-radius: 20px;
  border: none;
  background: rgba(179,160,135,0.13);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.inherit-wrap .case-btn:hover{
  background: #B3A087;
  opacity: 1;
}

.inherit-wrap .case-btn:hover .btn-label{ color: #fff; }

.inherit-wrap .case-btn:hover .btn-icon img{ filter: brightness(10) invert(0); opacity: 1; }

.inherit-wrap .case-btn.active{
  background: #B3A087;
  opacity: 1;
  box-shadow: none;
}

.inherit-wrap .btn-label{
  font-size: 17px;
  font-weight: 700;
  color: #3A2E1A;
  line-height: 1.4;
  margin-bottom: 24px;
  display: block;
}

.inherit-wrap .case-btn.active .btn-label{ color: #fff; }

.inherit-wrap .btn-icon{
  display: flex;
  justify-content: flex-end;
}

.inherit-wrap .btn-icon img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 1;
  filter: invert(18%) sepia(15%) saturate(800%) hue-rotate(10deg) brightness(60%);
}

.inherit-wrap .case-btn.active .btn-icon img{
  opacity: 1;
  filter: brightness(10) invert(0);
}

.hero-intro-m{
  width: 100%;
  padding: 28px 20px 24px;
  background: transparent;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero-intro-m__inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-intro-m__inner.hero-intro-m--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-intro-m__badge-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-intro-m__line{
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #000;
}

.hero-intro-m__badge{
  font-size: 13px !important;
  color: #000 !important;
  font-family: "Noto Serif KR", serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.hero-intro-m__headline{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  text-align: center;
  width: 100%;
  word-break: keep-all;
  margin: 0;
}

.hero-intro-m__bold{
  font-weight: 600;
}

.intro-wrap-m1{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.intro-wrap-m1__img-area{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  line-height: 0;
  font-size: 0;
}

.intro-wrap-m1__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
  border-radius: 10px;
}

.intro-wrap-m1__quote{
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: #4f4538;
  color: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
  z-index: 2;
}

.intro-wrap-m1__content{
  padding: 28px 0 40px;
}

.intro-card-m1,
.intro-card-m1 *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.intro-card-m1{
  width: 100%;
  padding: 0;
}

.intro-card-m1__inner{
  width: 100%;
  padding: 0 0 0 6px;
}

.intro-card-m1__icon{
  width: 38px;
  height: 38px;
  background: #B3A087;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.intro-card-m1__title{
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  line-height: 1.45 !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.03em;
  word-break: keep-all;
  text-align: left;
}

.intro-card-m1__desc{
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  word-break: keep-all;
  text-align: left;
}

.intro-wrap-m2{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.intro-wrap-m2__img-area{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  line-height: 0;
  font-size: 0;
}

.intro-wrap-m2__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
  border-radius: 10px;
}

.intro-wrap-m2__quote{
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: #4f4538;
  color: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
  z-index: 2;
}

.intro-wrap-m2__content{
  padding: 28px 0 40px;
}

.intro-card-m2,
.intro-card-m2 *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.intro-card-m2{
  width: 100%;
  padding: 0;
}

.intro-card-m2__inner{
  width: 100%;
  padding: 0 0 0 6px;
}

.intro-card-m2__icon{
  width: 38px;
  height: 38px;
  background: #B3A087;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.intro-card-m2__title{
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  line-height: 1.45 !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.03em;
  word-break: keep-all;
  text-align: left;
}

.intro-card-m2__desc{
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  word-break: keep-all;
  text-align: left;
}

.intro-wrap-m3{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.intro-wrap-m3__img-area{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  line-height: 0;
  font-size: 0;
}

.intro-wrap-m3__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
  border-radius: 10px;
}

.intro-wrap-m3__quote{
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: #4f4538;
  color: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
  z-index: 2;
}

.intro-wrap-m3__content{
  padding: 28px 0 40px;
}

.intro-card-m3,
.intro-card-m3 *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.intro-card-m3{
  width: 100%;
  padding: 0;
}

.intro-card-m3__inner{
  width: 100%;
  padding: 0 0 0 6px;
}

.intro-card-m3__icon{
  width: 38px;
  height: 38px;
  background: #B3A087;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.intro-card-m3__title{
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  line-height: 1.45 !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.03em;
  word-break: keep-all;
  text-align: left;
}

.intro-card-m3__desc{
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  word-break: keep-all;
  text-align: left;
}

.intro-wrap-m4{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.intro-wrap-m4__img-area{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: url('https://cdn.imweb.me/thumbnail/20260402/91c1ef0c7caa1.jpg') center/cover no-repeat;
  overflow: hidden;
}

.intro-wrap-m4__quote{
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: #4f4538;
  color: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
  z-index: 2;
}

.intro-wrap-m4__content{
  padding: 28px 0 40px;
}

.intro-card-m4,
.intro-card-m4 *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.intro-card-m4{
  width: 100%;
  padding: 0;
}

.intro-card-m4__inner{
  width: 100%;
  padding: 0 0 0 6px;
}

.intro-card-m4__icon{
  width: 38px;
  height: 38px;
  background: #B3A087;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.intro-card-m4__title{
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  line-height: 1.45 !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.03em;
  word-break: keep-all;
  text-align: left;
}

.intro-card-m4__desc{
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  word-break: keep-all;
  text-align: left;
}

.hero-intro{
  width: 100%;
  padding: 20px 20px 20px;
  background: transparent;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-intro__inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-intro__inner.hero-intro--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-intro__badge-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-intro__line{
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #333;
}

.hero-intro__badge{
  font-size: 20px;
  color: #333;
  font-family: "Noto Serif KR", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
}

.hero-intro__headline{
  font-size: 38px;
  font-weight: 400;
  line-height: 1.55;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  text-align: center;
  width: 100%;
}

.hero-intro__bold{
  font-weight: 600;
}

.intro-wrap{
  display: flex;
  align-items: center;
  width: 100%;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.intro-wrap__img-area{
  position: relative;
  width: 48%;
  flex-shrink: 0;
  max-height: 460px;
}

.intro-wrap__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 460px;
  display: block;
  border-radius: 20px;
}

.intro-wrap__quote{
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: fit-content;
  white-space: nowrap;
  background: #4f4538;
  color: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding: 14px 18px;
  border-radius: 8px;
}

.intro-wrap__right{
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 60px 80px 60px 100px;
}

.intro-card,
.intro-card *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.intro-card{
  padding: 0;
  width: 100%;
}

.intro-card__inner{
  max-width: 380px;
}

.intro-card__icon{
  width: 42px;
  height: 42px;
  background: #B3A087;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.intro-card__title{
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
  margin: 0 0 16px !important;
  letter-spacing: -0.03em;
}

.intro-card__desc{
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.intro-wrap2{
  display: flex;
  align-items: center;
  width: 100%;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.intro-wrap2__img-area{
  position: relative;
  width: 48%;
  flex-shrink: 0;
  max-height: 460px;
}

.intro-wrap2__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  max-height: 460px;
}

.intro-wrap2__quote{
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: #4f4538;
  color: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding: 14px 18px;
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
}

.intro-wrap2__right{
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 60px 80px 60px 100px;
}

.intro-card2,
.intro-card2 *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.intro-card2{
  padding: 0;
  width: 100%;
}

.intro-card2__inner{
  max-width: 380px;
}

.intro-card2__icon{
  width: 42px;
  height: 42px;
  background: #B3A087;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.intro-card2__title{
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
  margin: 0 0 16px !important;
  letter-spacing: -0.03em;
}

.intro-card2__desc{
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.intro-wrap3{
  display: flex;
  align-items: center;
  width: 100%;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.intro-wrap3__img-area{
  position: relative;
  width: 48%;
  flex-shrink: 0;
  height: 460px;
  max-height: 460px;
  overflow: hidden;
  border-radius: 20px;
}

.intro-wrap3__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-wrap3__quote{
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-80%);
  background: #4f4538;
  color: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding: 14px 18px;
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
}

.intro-wrap3__right{
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 60px 80px 60px 100px;
}

.intro-card3,
.intro-card3 *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.intro-card3{
  padding: 0;
  width: 100%;
}

.intro-card3__inner{
  max-width: 380px;
}

.intro-card3__icon{
  width: 42px;
  height: 42px;
  background: #B3A087;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.intro-card3__title{
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
  margin: 0 0 16px !important;
  letter-spacing: -0.03em;
}

.intro-card3__desc{
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.intro-wrap4{
  display: flex;
  align-items: center;
  width: 100%;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.intro-wrap4__img-area{
  position: relative;
  width: 48%;
  flex-shrink: 0;
  height: 460px;
  max-height: 460px;
  background: url('https://cdn.imweb.me/thumbnail/20260402/91c1ef0c7caa1.jpg') center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
}

.intro-wrap4__quote{
  position: absolute;
  bottom: 80px;
  right: 28px;
  background: #4f4538;
  color: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding: 14px 18px;
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
}

.intro-wrap4__right{
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 60px 80px 60px 100px;
}

.intro-card4,
.intro-card4 *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.intro-card4{
  padding: 0;
  width: 100%;
}

.intro-card4__inner{
  max-width: 380px;
}

.intro-card4__icon{
  width: 42px;
  height: 42px;
  background: #B3A087;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.intro-card4__title{
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
  margin: 0 0 16px !important;
  letter-spacing: -0.03em;
}

.intro-card4__desc{
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.hero-practice-m{
  width: 100%;
  padding: 28px 20px 24px;
  background: transparent;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero-practice-m__inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-practice-m__inner.hero-practice-m--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-practice-m__badge-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-practice-m__line{
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #000;
}

.hero-practice-m__badge{
  font-size: 13px !important;
  color: #000 !important;
  font-family: "Noto Serif KR", serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.hero-practice-m__headline{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  text-align: center;
  width: 100%;
  word-break: keep-all;
  margin: 0;
}

.practice-grid-m{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.practice-item-m{
  background: #fff;
  text-align: center;
  padding: 32px 14px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  text-decoration: none;
}

.practice-item-m:hover{
  background: #fff;
  outline: 1px solid #111;
}

.practice-item-m__top{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.practice-item-m__name{
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-break: keep-all;
}

.practice-item-m__tag{
  display: inline-block;
  margin-top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #B3A087;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.practice-item-m:hover .practice-item-m__tag{
  background: #111;
}

.practice-item-m__desc{
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #555;
  letter-spacing: -0.02em;
  line-height: 1.7;
  margin-top: 10px;
  text-align: center;
  width: 100%;
  word-break: keep-all;
}

.practice-item-m__icon{
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.hero-review-m{
  width: 100%;
  padding: 28px 20px 24px;
  background: transparent;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero-review-m__inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-review-m__inner.hero-review-m--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-review-m__badge-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-review-m__line{
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #000;
}

.hero-review-m__badge{
  font-size: 13px !important;
  color: #000 !important;
  font-family: "Noto Serif KR", serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.hero-review-m__headline{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  text-align: center;
  width: 100%;
  word-break: keep-all;
  margin: 0;
}

.review-slider2-m,
.review-slider2-m *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.review-slider2-m{
  width: 100%;
  padding: 0 0 24px;
}

.review-slider2-m__wrap{
  width: 100%;
  overflow: hidden;
}

.review-slider2-m__track{
  display: flex;
  gap: 12px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-slider2-m__card{
  flex: 0 0 88%;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  min-height: 280px;
  scroll-snap-align: start;
}

.review-slider2-m__card-inner{
  flex: 1;
}

.review-slider2-m__title{
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 5px !important;
  line-height: 1.4;
}

.review-slider2-m__sub{
  font-size: 11px !important;
  color: #aaa !important;
  margin: 0 0 14px !important;
}

.review-slider2-m__text{
  font-size: 13px !important;
  color: #555 !important;
  line-height: 1.75 !important;
  margin: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-slider2-m__more{
  display: block;
  text-align: center;
  padding: 14px 0;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  text-decoration: none;
  border-top: 1px solid #e0e0e0;
  margin-top: 16px;
  letter-spacing: -0.01em;
}

/* 도트 */
.review-slider2-m__dots{
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.review-slider2-m__dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.2s ease, transform 0.2s ease;
}

.review-slider2-m__dot.active{
  background: #B3A087;
  transform: scale(1.3);
}

.hero-faq-m{
  width: 100%;
  padding: 28px 20px 24px;
  background: transparent;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}

.hero-faq-m__inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-faq-m__inner.hero-faq-m--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-faq-m__badge-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-faq-m__line{
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #000;
}

.hero-faq-m__badge{
  font-size: 13px !important;
  color: #000 !important;
  font-family: "Noto Serif KR", serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.hero-faq-m__headline{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  text-align: left;
  width: 100%;
  word-break: keep-all;
  margin: 0;
}

.hero-faq-m__bold{
  font-weight: 600;
}

.circle-btn-wrap-m{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 4px 20px 20px;
}

.circle-btn-m{
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
}

.circle-btn-m__ring{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate-ring-m 8s linear infinite;
}

.circle-btn-m__ring-text{
  font-size: 11px;
  fill: #C5B9AA;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-weight: 400;
}

@keyframes rotate-ring-m {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circle-btn-m__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 1;
}

.circle-btn-m__label1{
  font-size: 11px;
  font-weight: 700;
  color: #333;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  letter-spacing: -0.03em;
}

.circle-btn-m__label2{
  font-size: 11px;
  font-weight: 700;
  color: #333;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  letter-spacing: -0.03em;
}

.faq-section-m,
.faq-section-m *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.faq-section-m{
  width: 100%;
  padding: 0 0 40px;
}

.faq-section-m__inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-cats-m{
  display: flex;
  flex-direction: row;
  gap: 6px;
  width: 100%;
}

.faq-cat-m{
  flex: 1;
  background: none;
  border: none;
  text-align: center;
  padding: 10px 4px;
  font-size: 13px !important;
  color: #aaa !important;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 500 !important;
  transition: background 0.2s, color 0.2s;
}

.faq-cat-m--active{
  background: #e8e0d8 !important;
  color: #7a6a56 !important;
  font-weight: 700 !important;
}

.faq-q-m{
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  text-align: left;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.faq-item-m--open .faq-q-m{
  color: #B3A087 !important;
  font-weight: 700 !important;
}

.faq-list-m{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item-m{
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item-m--open{
  border-color: #B3A087;
}

.faq-icon-m{
  font-size: 20px !important;
  color: #aaa !important;
  font-weight: 300 !important;
  flex-shrink: 0;
}

.faq-item-m--open .faq-icon-m{
  color: #B3A087 !important;
}

.faq-a-m{
  display: none;
  padding: 0 16px 16px;
  font-size: 13px !important;
  color: #555 !important;
  line-height: 1.75 !important;
  word-break: keep-all;
}

.faq-item-m--open .faq-a-m{
  display: block;
}

.attorney-msg-m{
  width: 100%;
  padding: 32px 20px;
  text-align: center;
  box-sizing: border-box;
}

.attorney-msg-m__top{
  font-family: "Noto Serif KR", serif;
  font-size: 18px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.65;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  word-break: keep-all;
}

.attorney-msg-m__body{
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 1.75;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  word-break: keep-all;
}

.attorney-msg-m__sign-wrap{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.attorney-msg-m__sign-img{
  height: 44px;
  width: auto;
}

.attorney-msg-m__sign-label{
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  letter-spacing: -0.01em;
}

.fade-target{
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-target.visible{
  opacity: 1;
}

.hero-practice{
  width: 100%;
  padding: 20px 20px 20px;
  background: transparent;
  display: flex;
  align-items: flex-end;
}

.hero-practice__inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-practice__inner.hero-practice--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-practice__left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-practice__badge-wrap{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-practice__line{
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #333;
}

.hero-practice__badge{
  font-size: 20px;
  color: #333;
  font-family: "Noto Serif KR", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.hero-practice__headline{
  font-size: 38px;
  font-weight: 400;
  line-height: 1.55;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.hero-practice__btn{
  flex-shrink: 0;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 52px;
  background: #111;
  color: #fff !important;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s;
}

.hero-practice__btn:hover{
  background: #333;
}

.practice-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.practice-item{
  background: #fff;
  text-align: center;
  padding: 52px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  text-decoration: none;
}

.practice-item:hover{
  background: #fff;
  outline: 1px solid #111;
}

.practice-item__top{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.practice-item__name{
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.practice-item__tag{
  display: inline-block;
  margin-top: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #B3A087;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.practice-item:hover .practice-item__tag{
  background: #111;
}

.practice-item__desc{
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  letter-spacing: -0.02em;
  line-height: 1.8;
  margin-top: 14px;
  text-align: center;
  width: 100%;
}

.practice-item__icon{
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.hero-review{
  width: 100%;
  padding: 20px 20px 20px;
  background: transparent;
  display: flex;
  align-items: flex-end;
}

.hero-review__inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-review__inner.hero-review--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-review__left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-review__badge-wrap{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-review__line{
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #333;
}

.hero-review__badge{
  font-size: 20px;
  color: #333;
  font-family: "Noto Serif KR", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.hero-review__headline{
  font-size: 38px;
  font-weight: 400;
  line-height: 1.55;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.hero-review__btn{
  flex-shrink: 0;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 52px;
  background: #111;
  color: #fff !important;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s;
}

.hero-review__btn:hover{
  background: #333;
}

.review-slider2{
  width: 100%;
  padding: 0 0 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-slider2__wrap{
  flex: 1;
  overflow: hidden;
}

.review-slider2__track{
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.review-slider2__card{
  flex: 0 0 calc((100% - 32px) / 3);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 36px 32px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  min-height: 420px;
}

.review-slider2__card-inner{
  flex: 1;
}

.review-slider2__title{
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  line-height: 1.4;
}

.review-slider2__sub{
  font-size: 12px;
  color: #aaa;
  margin: 0 0 20px;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
}

.review-slider2__text{
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-slider2__more{
  display: block;
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  border-top: 1px solid #e0e0e0;
  margin-top: 24px;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  letter-spacing: -0.01em;
}

.review-slider2__more:hover{
  color: #B3A087;
}

.review-slider2__arrow{
  background: none;
  border: none;
  font-size: 48px;
  color: #ccc;
  cursor: pointer;
  padding: 0 8px;
  flex-shrink: 0;
  line-height: 1;
}

.review-slider2__arrow:hover{
  color: #333;
}

.hero-faq{
  width: 100%;
  padding: 20px 20px 20px;
  background: transparent;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-faq__inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.hero-faq__inner.hero-faq--visible{
  opacity: 1;
  transform: translateY(0);
}

.hero-faq__badge-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-faq__line{
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #333;
}

.hero-faq__badge{
  font-size: 20px;
  color: #333;
  font-family: "Noto Serif KR", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: left;
}

.hero-faq__headline{
  font-size: 38px;
  font-weight: 400;
  line-height: 1.55;
  color: #111;
  letter-spacing: -0.02em;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  text-align: left;
  width: 100%;
}

.hero-faq__bold{
  font-weight: 600;
}

.circle-btn-wrap{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}

.circle-btn{
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
}

.circle-btn__ring{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate-ring 8s linear infinite;
}

.circle-btn__ring-text{
  font-size: 11px;
  fill: #C5B9AA;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-weight: 400;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circle-btn__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 1;
}

.circle-btn__label1{
  font-size: 15px;
  font-weight: 700;
  color: #333;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  letter-spacing: -0.03em;
}

.circle-btn__label2{
  font-size: 15px;
  font-weight: 700;
  color: #333;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  letter-spacing: -0.03em;
}

.faq-section,
.faq-section *{
  font-family: Pretendard, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box;
}

.faq-section{
  width: 100%;
  padding: 20px 40px 60px;
}

.faq-section__inner{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-cats{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 220px;
  flex-shrink: 0;
}

.faq-cat{
  background: none;
  border: none;
  text-align: left;
  padding: 14px 24px;
  font-size: 16px !important;
  color: #888 !important;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 500 !important;
  transition: background 0.2s, color 0.2s;
}

.faq-cat--active{
  background: #B3A087 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.faq-q{
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item--open .faq-q{
  color: #B3A087 !important;
  font-weight: 700 !important;
}

.faq-list{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.faq-item{
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item--open{
  border-color: #B3A087;
}

.faq-icon{
  font-size: 20px !important;
  color: #aaa !important;
  font-weight: 300 !important;
  flex-shrink: 0;
}

.faq-item--open .faq-icon{
  color: #B3A087 !important;
}

.faq-a{
  display: none;
  padding: 0 20px 18px;
  font-size: 14px !important;
  color: #555 !important;
  line-height: 1.7 !important;
  word-break: keep-all;
}

.faq-item--open .faq-a{
  display: block;
}

.attorney-msg{
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.attorney-msg__top{
  font-family: "Noto Serif KR", serif;
  font-size: 26px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  opacity: 0;
  transition: opacity 2.4s ease-out;
}

.attorney-msg__top.attorney-visible{
  opacity: 1;
}

.attorney-msg__body{
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
}

.attorney-msg__sign-wrap{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.attorney-msg__sign-img{
  height: 60px;
  width: auto;
}

.attorney-msg__sign-label{
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  letter-spacing: -0.01em;
}