@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

@font-face {
  font-family: "Paperlogy-8ExtraBold";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

* {
  font-family: "Pretendard Variable";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.mobile-br {
  display: none;
}

.desktop-br {
  display: block;
}

.floating {
  position: fixed;
  bottom: 85px;
  right: 21px;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 98;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}


.floating.show {
  opacity: 1;
  visibility: visible;
}

.floating>a>.gotoTop {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  line-height: 60px;
  color: black;
  background: #F59E0B;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #00000026;
}

.floating>a>.gotoCall {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  line-height: 60px;
  color: #fff;
  background-color: #2CBB00;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #00000026;
}

.frDVOA {
  width: 54px !important;
  height: 54px;
}

.haKruN {
  bottom: calc(env(safe-area-inset-bottom) + 224px) !important;
  right: 4px !important;
}

.floating>a>.gotoCall>svg {
  width: 55%;
}

.floating>a>.gotoChannelTalk {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  box-shadow: 0 2px 8px #00000026;
}

.floating>a>.gotoCall>img {
  width: 100%;
}

.floating>a>.gotoTop>img {
  width: 26px;
}

.floating>a>.gotoChannelTalk>img {
  width: 100%;
  border-radius: 100%;
}

.navigation {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: all 0.3s;
}

.navigation.sticky {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navigation>.container {
  max-width: 1330px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.navigation>.container>.iconLine {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.navigation>.container>.iconLine>img {
  width: 55px;
}

.navigation>.container>.iconLine>p {
  font-family: "Gasoek One";
  font-size: 35px;
  color: white;
  transition: all 0.5s;
}

.navigation>.container>.iconLine>p:hover {
  color: #F59E0B;
}

.navigation.sticky>.container>.iconLine>p {
  color: #F59E0B;
}

.navigation>.container>.navLine {
  margin-left: 55px;
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.navigation>.container>.navLine>a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}

.navigation.sticky>.container>.navLine>a {
  color: black;
}

.navigation>.container>.navLine>a:hover {
  color: #F59E0B;
}

.navigation>.container>.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.navigation>.container>.hamburger>span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navigation.sticky>.container>.hamburger>span {
  background-color: black;
}

.navigation.menu-open>.container>.hamburger>span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.navigation.menu-open>.container>.hamburger>span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.navigation.menu-open>.container>.hamburger>span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.navigation>.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 97;
}

.navigation.menu-open>.mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.navigation>.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 98;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navigation.menu-open>.mobile-menu {
  transform: translateY(0);
}

.navigation>.mobile-menu>.mobile-menu-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}

.navigation>.mobile-menu>.mobile-menu-header>.iconLine {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.navigation>.mobile-menu>.mobile-menu-header>.iconLine>p {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 28px;
  color: #F59E0B;
  margin: 0;
}

.navigation>.mobile-menu>.mobile-menu-content {
  padding: 2rem 0;
}

.navigation>.mobile-menu>.mobile-menu-content>.navLine {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.navigation>.mobile-menu>.mobile-menu-content>.navLine>a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 1.2rem 2rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.navigation>.mobile-menu>.mobile-menu-content>.navLine>a:hover,
.navigation>.mobile-menu>.mobile-menu-content>.navLine>a:focus {
  background-color: #f8f8f8;
  color: #F59E0B;
  padding-left: 2.5rem;
}

.navigation>.mobile-menu>.mobile-menu-content>.navLine>a:active {
  background-color: #f0f0f0;
}

section>.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

#section9 {
  background: #05CF5D;
  text-align: center;
  color: #fff;
}

#section9>.container {
  padding: 80px 0;
}

#section9>.container>.contentLine>.textLine>p.mainText {
  font-size: 50px;
  font-weight: 750;
  margin: 0;
  padding: 0;
}

#section9>.container>.contentLine>.textLine>p.mainText>span.highlight {
  color: #EDFF00;
}

#section1 {

  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/wp-content/uploads/hero_bg_v2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

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

#section1>.container {
  padding: 260px 0;
}

#section1>.container>.contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#section1>.container>.contentLine>.textBox {}

#section1>.container>.contentLine>.textBox>p {
  margin: 0;
  text-align: center;
  line-height: 1.3;
  font-size: 2.5rem;
  font-weight: 750;
  color: white;
}

#section1>.container>.contentLine>.textBox>p.mainText {
  font-size: 72px;
}

#section1>.container>.contentLine>.textBox>p.subText {
  font-size: 22px;
}

#section1>.container>.contentLine>.textBox>p>span.highlight {
  font-weight: bold;
  color: #F59E0B;
}

#section1>.container>.contentLine>.textBox>p>span.highlight.compname {}

#section1>.container>.contentLine>.buttonBox {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 1rem;
}

#section1>.container>.contentLine>.buttonBox>button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
  background-color: white;
  padding: 20px 40px;
  border-radius: 45px;
}

#section1>.container>.contentLine>.buttonBox>button.phoneCall {
  background-color: #E8E4EC;
}

#section1>.container>.contentLine>.buttonBox>button.channelTalk {
  background-color: #F59E0B;
}

#section1>.container>.contentLine>.buttonBox>button:hover {
  transform: scale(1.05);
}

#section1>.container>.contentLine>.buttonBox>button>img {
  width: 30px;
}

#section1>.container>.contentLine>.buttonBox>button>svg {
  width: 30px;
  height: 30px;
}

#section1>.container>.contentLine>.buttonBox>button>p {
  margin: 0;
  color: #676878;
  font-size: 1.2rem;
  font-weight: 650;
}

#section1>.container>.contentLine>.buttonBox>button.channelTalk>p {
  color: white;
}

#section1>.container>.contentLine>.naverLine {}

#section1>.container>.contentLine>.naverLine>.wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}

#section1>.container>.contentLine>.naverLine>.wrapper>p {
  margin: 0;
  font-size: 1.5rem;
  background: #fff;
  border-radius: 50px;
  padding: 20px 45px;
  letter-spacing: -0.02em;
  font-weight: 600;
  border: 8px solid #F59E0B;
  text-align: center;
}

#section1>.container>.contentLine>.naverLine>.wrapper>p>br.infoBr {
  display: none;
}

#section1>.container>.contentLine>.naverLine>.wrapper>.icon1 {
  width: 35px;
}

#section1>.container>.contentLine>.naverLine>.wrapper>.icon2 {
  width: 40px;
}

#section2 {
  background-color: #F59E0B;
}

#section2>.container {
  padding: 160px 0;
}

#section2>.container>.contentLine {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}

#section2>.container>.contentLine>.leftLine {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#section2>.container>.contentLine>.leftLine>.textBox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section2>.container>.contentLine>.leftLine>.textBox>p {
  margin: 0;
  line-height: 1.3;
  color: white;
}

#section2>.container>.contentLine>.leftLine>.textBox>p>span {
  font-weight: bold;
}

#section2>.container>.contentLine>.leftLine>.textBox>p.mainText {
  font-size: 60px;
  font-weight: 750;
}

#section2>.container>.contentLine>.leftLine>.textBox>p.subText {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 20px;
}

#section2>.container>.contentLine>.leftLine>.infoBoxLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section2>.container>.contentLine>.leftLine>.infoBoxLine>.info {
  display: flex;
  flex-direction: row;
  background-color: white;
  width: 300px;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 50px;
  align-items: center;
}

#section2>.container>.contentLine>.leftLine>.infoBoxLine>.info>p {
  margin: 0;
  line-height: 1.3;
  font-size: 1.3rem;
}

#section2>.container>.contentLine>.leftLine>.infoBoxLine>.info>p.leftText {
  font-size: 16px;
  font-weight: 900;
}

#section2>.container>.contentLine>.leftLine>.infoBoxLine>.info>p.rightText {}

#section2>.container>.contentLine>.rightLine {}

#section2>.container>.contentLine>.rightLine>.sliderBox {
  width: 520px;
  height: 370px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sliderTable {
  width: 100%;
  border-collapse: collapse;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sliderTable tr {
  height: 45px;
}

.sliderTable th,
.sliderTable td {
  vertical-align: middle;
}

.sliderTable td {
  text-align: center;
  font-size: 1rem;
  vertical-align: middle;
}

.sliderTable .product-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
}

.sliderTable .product-cell img {
  display: inline-block;
  width: 100px;
  height: auto;
  vertical-align: middle;
}

.status-done {
  color: #fff;
  background: #3CB15B;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 0.95em;
  display: inline-block;
}

.status-fail {
  color: #fff;
  background: #a5a5a5;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 0.95em;
  display: inline-block;
}

.sliderTable-head {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.slider-tbody-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
}

.sliderTable-body {
  width: 100%;
  border-collapse: collapse;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#section3 {}

#section3>.container {
  padding: 160px 0;
}

#section3>.container>.contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

#section3>.container>.contentLine>.textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section3>.container>.contentLine>.textLine>p {
  font-size: 60px;
  font-weight: 750;
  margin: 0;
  text-align: center;
}

#section3>.container>.contentLine>.textLine>p>span {
  font-size: 60px;
  font-weight: 750;
}

#section3>.container>.contentLine>.textLine>p>span.highlight {
  color: #F59E0B;
}

#section3>.container>.contentLine>.textLine>p.subText {
  font-size: 22px;
  font-weight: 750;
  opacity: 0.8;
  margin-top: 40px;
  text-align: center;
}

#section3>.container>.contentLine>.textLine>p.subText>span {
  font-size: 1.2rem;
  font-weight: bold;
}

#section3>.container>.contentLine>.boxLine {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

#section3>.container>.contentLine>.boxLine>.box {
  width: 380px;
  height: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  background: #F59E0B;
  padding: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

#section3>.container>.contentLine>.boxLine>.box:hover {
  transform: scale(1.05);
}

#section3>.container>.contentLine>.boxLine>.box>.head {}

#section3>.container>.contentLine>.boxLine>.box>.head>p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-align: center;
}

#section3>.container>.contentLine>.boxLine>.box>.body {
  margin-top: 1rem;
}

#section3>.container>.contentLine>.boxLine>.box>.body>p {
  margin: 0;
}

#section3>.container>.contentLine>.boxLine>.box>.body>p.mainText {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  font-weight: bold;
}

#section3>.container>.contentLine>.boxLine>.box>.body>p.subText {}

#section3>.container>.contentLine>.boxLine>.box>.foot {
  margin-top: 0.5rem;
}

#section3>.container>.contentLine>.boxLine>.box>.foot>p {
  margin: 0;
  text-align: center;
  color: white;
}

#section3>.container>.contentLine>.boxLine>.box>.foot>p.mainText {
  font-size: 1.2rem;
}

#section3>.container>.contentLine>.boxLine>.box>.foot>p.subText {
  font-weight: 200;
  font-size: 0.7rem;
  color: rgb(236, 236, 236);
}

#section3>.container>.contentLine>.boxLine>.box>.foot>p>span {}

#section4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/wp-content/uploads/section4_bg_v2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#section4>.container {
  padding: 160px 0;
}

#section4>.container>.contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

#section4>.container>.contentLine>.textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section4>.container>.contentLine>.textLine>p {
  margin: 0;
  text-align: center;
  color: white;
}

#section4>.container>.contentLine>.textLine>p.mainText {
  font-size: 72px;
  font-weight: 750;
}

#section4>.container>.contentLine>.textLine>p.subText {
  font-size: 22px;
  font-weight: 750;
  opacity: 0.8;
  margin-top: 40px
}

#section4>.container>.contentLine>.textLine>p>span {
  font-weight: bold;
}

#section4>.container>.contentLine>.textLine>p>span.highlight {
  color: #F59E0B;
}

#section4>.container>.contentLine>.boxListLine {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

#section4>.container>.contentLine>.boxListLine>.box {
  width: 340px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background-color: white;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

#section4>.container>.contentLine>.boxListLine>.box:hover {
  transform: scale(1.05);
}

#section4>.container>.contentLine>.boxListLine>.box>.numb {
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#section4>.container>.contentLine>.boxListLine>.box>.numb>span {
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#section4>.container>.contentLine>.boxListLine>.box>.text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 35px;
}

#section4>.container>.contentLine>.boxListLine>.box>.text>p {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.8;
  font-weight: 600;
  margin-top: 5px;
}

#section4>.container>.contentLine>.boxListLine>.box>.text>p.mainText {
  font-weight: bold;
  font-size: 1.8rem;
}

#section4>.container>.contentLine>.boxListLine>.box>.text>p.subText {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.8;
  font-weight: 600;
  margin-top: 5px;
}

#section5 {}

#section5>.container {
  padding: 160px 0;
}

#section5>.container>.contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

#section5>.container>.contentLine>.textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section5>.container>.contentLine>.textLine>p {
  margin: 0;
  text-align: center;
  color: black;
}

#section5>.container>.contentLine>.textLine>p.mainText {
  font-size: 72px;
  font-weight: 750;
}

#section5>.container>.contentLine>.textLine>p.subText {
  font-size: 22px;
  font-weight: 750;
  opacity: 0.8;
  margin-top: 40px
}

#section5>.container>.contentLine>.textLine>p>span {
  font-weight: bold;
}

#section5>.container>.contentLine>.textLine>p>span.highlight {
  color: #F59E0B;
}

#section5>.container>.contentLine>.reviewList {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform;
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: max-content;
  will-change: transform;
  transition: none;
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review {
  width: 320px;
  height: 120px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 40px 30px;
  background: #F4F6FA;
  border-radius: 25px;
  transition: all 0.3s;
  cursor: pointer;
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review:hover {
  transform: scale(1.05);
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.left {}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.left>img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}


#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.right>.top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.right>.top>.name {
  user-select: none;
  font-weight: 600;
  margin: 0;
  font-size: 20px;
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.right>.top>.star {
  user-select: none;
  font-size: 20px;
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.right>.top>.star>span {
  color: #F59E0B;
  user-select: none;
  margin: 0;
}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.right>.bottom {}

#section5>.container>.contentLine>.reviewList>.reviewList__inner>.review>.right>.bottom>.content {
  user-select: none;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

#section6 {
  background-color: #141A24;
}

#section6>.container {
  padding: 160px 0;
}

#section6>.container>.contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

#section6>.container>.contentLine>.textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section6>.container>.contentLine>.textLine>p {
  margin: 0;
  text-align: center;
  color: #ffffff;
}

#section6>.container>.contentLine>.textLine>p.mainText {
  font-size: 60px;
  font-weight: 750;
}

#section6>.container>.contentLine>.textLine>p.subText {
  font-size: 1.2rem;
}

#section6>.container>.contentLine>.textLine>p>span {
  font-weight: bold;
}

#section6>.container>.contentLine>.textLine>p>span.highlight {
  color: #fff;
}

.faqLine {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 35px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 25px 50px;
  font-size: 20px;
  font-weight: 700;
  user-select: none;
  background: #fff;
}

.faq-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.3em;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #222;
  font-size: 17px;
  line-height: 1.4;
  padding: 0 1.5rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-item.open .faq-answer {
  padding: 0 50px 40px;
  max-height: 600px;
}

#section7 {}

#section7>.container {
  padding: 160px 0;
}

#section7>.container>.contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

#section7>.container>.contentLine>.textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section7>.container>.contentLine>.textLine>p {
  margin: 0;
  text-align: center;
  color: black;
}

#section7>.container>.contentLine>.textLine>p.mainText {
  font-size: 60px;
  font-weight: 750;
}

#section7>.container>.contentLine>.textLine>p.subText {
  font-size: 22px;
  font-weight: 750;
  opacity: 0.8;
  margin-top: 40px
}

#section7>.container>.contentLine>.textLine>p>span {
  font-weight: bold;
}

#section7>.container>.contentLine>.textLine>p>span.highlight {
  color: #F59E0B;
}

#section7>.container>.contentLine>.productList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

#section7>.container>.contentLine>.productList>.product {
  width: 150px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 12px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

#section7>.container>.contentLine>.productList>.product:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#section7>.container>.contentLine>.productList>.product>img {
  width: 100%;
}

#section8 {
  background-color: #F59E0B;
}

#section8>.container {
  padding: 160px 0;
}

#section8>.container>.contentLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

#section8>.container>.contentLine>.textLine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#section8>.container>.contentLine>.textLine>p {
  margin: 0;
  text-align: center;
  color: #fff;
}

#section8>.container>.contentLine>.textLine>p.mainText {
  font-size: 60px;
  font-weight: 750;
}

#section8>.container>.contentLine>.textLine>p.subText {
  font-size: 22px;
  font-weight: 750;
  opacity: 0.8;
  margin-top: 40px
}

#section8>.container>.contentLine>.textLine>p>span {
  font-weight: bold;
}

#section8>.container>.contentLine>.textLine>p>span.highlight {
  color: white;
}

#section8>.container>.contentLine>.buttonList {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

#section8>.container>.contentLine>.buttonList>.contactBtn {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  background-color: white;
  padding: 35px;
  align-content: center;
  align-items: center;
  border-radius: 35px;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

#section8>.container>.contentLine>.buttonList>.contactBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#section8>.container>.contentLine>.buttonList>.contactBtn>.iconLine {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#section8>.container>.contentLine>.buttonList>.contactBtn>.iconLine>img {
  width: 100%;
}

#section8>.container>.contentLine>.buttonList>.contactBtn>.textLine {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#section8>.container>.contentLine>.buttonList>.contactBtn>.textLine>.mainText {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
}

#section8>.container>.contentLine>.buttonList>.contactBtn>.textLine>.subText {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
}

#section8>.container>.contentLine>.textLine>p.mainText>span>br.mobile-br {
  display: none;
}

footer {
  width: 100%;
  background: #262F3C;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  gap: 12px;
}

.footer-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}

.footer-title .highlight {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.footer-desc {
  color: #b0b0b0;
  font-size: 0.8rem;
  margin: 0;
  text-align: center;
  font-weight: 400;
}

.footer-tel {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-kakao {
  color: #fff;
  font-weight: 600;
}

.footer-copy {
  color: #888;
  font-size: 0.9rem;
  margin-top: 30px;
  text-align: center;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.show .popup-container {
  transform: scale(1);
}

.popup-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 15px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 30px;
}

.popup-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popup-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:active {
  transform: scale(0.95);
}

.popup-close:focus {
  outline: 2px solid #F59E0B;
  outline-offset: 2px;
}

.popup-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .popup-container {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 12px;
  }

  .popup-header {
    padding: 12px;
  }

  .popup-close {
    width: 36px;
    height: 36px;
  }

  .popup-close svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .popup-container {
    max-width: 98vw;
    max-height: 98vh;
    border-radius: 8px;
  }

  .popup-header {
    padding: 8px;
  }

  .popup-close {
    width: 32px;
    height: 32px;
  }

  .popup-close svg {
    width: 18px;
    height: 18px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .popup-content img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media (prefers-color-scheme: dark) {
  .popup-close {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
  }

  .popup-close:hover {
    background: rgba(255, 255, 255, 0.95);
  }
}

@media (prefers-reduced-motion: reduce) {

  .popup-overlay,
  .popup-container,
  .popup-close {
    transition: none;
  }
}


.mobileBottomContent {
  width: 100%;
  height: 60px;
  display: none;
  position: fixed;
  bottom: 20px;
  z-index: 1000;
}

.mobileBottomContent>.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  gap: 8px;
}

.mobileBottomContent>.container>.left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #457BE4;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px #00000026;
}

.mobileBottomContent>.container>.left>svg {
  width: 20px;
  height: 20px;
}

.mobileBottomContent>.container>.left>p {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  color: #fff
}

.mobileBottomContent>.container>.right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #FF2D55;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px #00000026;
}

.mobileBottomContent>.container>.right>svg {
  width: 20px;
  height: 20px;
}

.mobileBottomContent>.container>.right>p {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 650;
}





@media all and (max-width: 1366px) {
  .navigation>.container {
    max-width: 1000px;
  }
}

@media all and (max-width: 884px) {
  .navigation {
    height: 70px;
  }

  .navigation>.container {
    max-width: 700px;
  }

  .navigation>.container>.navLine {
    gap: 2rem;
  }

  .navigation>.container>.navLine>a {
    font-size: 17px;
  }

  .navigation>.container>.iconLine>p {
    font-size: 30px;
  }

  #section1>.container>.contentLine>.textBox>p.mainText {
    font-size: 3rem;
  }

  #section2>.container>.contentLine {
    flex-direction: column;
    gap: 3rem;
  }

  #section2>.container>.contentLine>.leftLine>.textBox>p {
    text-align: center;
  }

  #section3>.container>.contentLine {
    gap: 5rem;
  }

  #section3>.container>.contentLine>.textLine>p.mainText,
  #section4>.container>.contentLine>.textLine>p.mainText,
  #section5>.container>.contentLine>.textLine>p.mainText,
  #section6>.container>.contentLine>.textLine>p.mainText,
  #section7>.container>.contentLine>.textLine>p.mainText {
    font-size: 2.2rem;
  }

  #section3>.container>.contentLine>.textLine>p>span,
  #section4>.container>.contentLine>.textLine>p>span,
  #section5>.container>.contentLine>.textLine>p>span,
  #section6>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span.highlight {
    font-size: 2.3rem;
  }

  #section3>.container>.contentLine>.textLine>p.subText,
  #section4>.container>.contentLine>.textLine>p.subText,
  #section5>.container>.contentLine>.textLine>p.subText,
  #section6>.container>.contentLine>.textLine>p.subText,
  #section7>.container>.contentLine>.textLine>p.subText {
    font-size: 18px;
  }

  #section3>.container>.contentLine>.textLine>p.subText>span,
  #section4>.container>.contentLine>.textLine>p.subText>span,
  #section5>.container>.contentLine>.textLine>p.subText>span,
  #section6>.container>.contentLine>.textLine>p.subText>span,
  #section7>.container>.contentLine>.textLine>p.subText>span {
    font-size: 1rem;
  }

  #section3>.container>.contentLine>.boxLine {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  #section3>.container>.contentLine>.boxLine>.box {
    width: 260px;
    height: 340px;
  }

  #section3>.container>.contentLine>.boxLine>.box>.head>p {
    font-size: 1.2rem;
  }

  #section3>.container>.contentLine>.boxLine>.box>.body>p.mainText {
    font-size: 2.5rem;
  }

  #section4>.container>.contentLine>.boxListLine {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .faqLine {
    max-width: 700px;
  }

  #section7>.container>.contentLine>.productList {
    grid-template-columns: repeat(3, 1fr);
  }

  #section8>.container>.contentLine>.buttonList {
    flex-direction: column;
  }
}

@media all and (max-width: 600px) {
  .mobileBottomContent {
    display: flex;
  }

  .floating {
    bottom: 120px;
    right: 10px;
  }

  .floating>a>.gotoCall {
    width: 44px;
    height: 44px;
  }

  .floating>a>.gotoTop {
    width: 44px;
    height: 44px;
  }

  .navigation {
    height: 70px;
  }

  .navigation>.container {
    max-width: 100%;
    padding: 0 20px;
  }

  .navigation>.container>.navLine {
    display: none;
  }

  .navigation>.container>.hamburger {
    display: flex;
  }

  .navigation>.container>.iconLine>p {
    font-size: 24px;
  }

  .navigation>.mobile-menu>.mobile-menu-header {
    height: 70px;
  }

  .navigation>.mobile-menu>.mobile-menu-header>.iconLine>p {
    font-size: 24px;
  }

  .navigation>.mobile-menu>.mobile-menu-content {
    padding: 1.5rem 0;
  }

  .navigation>.mobile-menu>.mobile-menu-content>.navLine>a {
    font-size: 16px;
    padding: 1rem 1.5rem;
  }

  .navigation>.mobile-menu>.mobile-menu-content>.navLine>a:hover,
  .navigation>.mobile-menu>.mobile-menu-content>.navLine>a:focus {
    padding-left: 2rem;
  }

  #section1>.container>.contentLine>.textBox>p.mainText {
    font-size: 2rem;
  }

  #section1>.container>.contentLine>.textBox>p.subText {
    font-size: 18px;
  }

  #section1>.container>.contentLine>.naverLine>.wrapper>p {
    font-size: 1.1rem;
  }

  #section1>.container>.contentLine>.naverLine {
    width: 90%;
  }

  #section1>.container>.contentLine>.naverLine>.wrapper>.icon1 {
    width: 25px;
  }

  #section1>.container>.contentLine>.naverLine>.wrapper>.icon2 {
    width: 25px;
  }

  #section2>.container>.contentLine>.rightLine {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
  }

  #section2>.container>.contentLine>.rightLine>.sliderBox {
    width: 95%;
  }

  #section3>.container>.contentLine>.textLine>p {
    font-size: 2rem;
  }

  #section3>.container>.contentLine>.textLine>p>span,
  #section4>.container>.contentLine>.textLine>p>span,
  #section5>.container>.contentLine>.textLine>p>span,
  #section6>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span {
    font-size: 2.2rem;
  }

  #section3>.container>.contentLine>.textLine>p>span,
  #section4>.container>.contentLine>.textLine>p>span,
  #section5>.container>.contentLine>.textLine>p>span,
  #section6>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span.highlight {
    font-size: 2.2rem;
  }

  #section6>.container>.contentLine {
    gap: 3rem;
  }

  .faqLine {
    max-width: 90%;
  }

  #section7>.container>.contentLine {
    gap: 3rem;
  }

  #section7>.container>.contentLine>.productList {
    grid-template-columns: repeat(2, 1fr);
  }

  #section8>.container>.contentLine>.textLine>p.mainText>span>br.mobile-br {
    display: block;
  }

  #section8>.container>.contentLine>.buttonList>.contactBtn>.iconLine {
    width: 70px;
    height: 70px;
  }

  #section8>.container>.contentLine>.buttonList>.contactBtn {
    width: auto;
  }

  footer {
    padding-bottom: 120px;
  }

  #section2>.container>.contentLine>.leftLine>.textBox>p.mainText {
    font-size: 32px;
  }

  #section2>.container>.contentLine>.leftLine>.textBox>p.subText {
    font-size: 18px;
  }

  #section3>.container>.contentLine>.textLine>p>span,
  #section4>.container>.contentLine>.textLine>p>span,
  #section5>.container>.contentLine>.textLine>p>span,
  #section6>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span.highlight {
    font-size: 32px;
  }

  #section3>.container>.contentLine>.textLine>p.mainText,
  #section4>.container>.contentLine>.textLine>p.mainText,
  #section5>.container>.contentLine>.textLine>p.mainText,
  #section6>.container>.contentLine>.textLine>p.mainText,
  #section7>.container>.contentLine>.textLine>p.mainText {
    font-size: 32px;
  }

  #section8>.container>.contentLine>.textLine>p.mainText {
    font-size: 32px;
  }

  #section9>.container>.contentLine>.textLine>p.mainText {
    font-size: 20px;
  }
}

@media all and (max-width: 478px) {
  #section1>.container>.contentLine>.naverLine {
    width: 100%;
    padding: 10px 20px;
    margin-top: 1rem;
  }

  #section1>.container>.contentLine>.naverLine>.wrapper {
    align-items: center;
    justify-content: center;
  }

  #section1>.container>.contentLine>.naverLine>.wrapper>p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
  }

  #section1>.container>.contentLine>.naverLine>.wrapper>p>br.infoBr {
    display: block;
  }

  #section1>.container>.contentLine>.naverLine>.wrapper>.icon1 {
    width: 20px;
  }

  #section1>.container>.contentLine>.naverLine>.wrapper>.icon2 {
    width: 20px;
  }

  .status-done {
    font-size: 0.75em;
  }

  .status-fail {
    font-size: 0.75em;
  }

  .sliderTable td {
    font-size: 0.8rem;
  }

  .sliderTable .product-cell img {
    width: 80px;
  }

  .sliderTable th {
    font-size: 0.9rem;
  }

  #section2>.container>.contentLine>.leftLine>.infoBoxLine>.info>p {
    font-size: 1rem;
  }

  #section3>.container>.contentLine {
    gap: 3rem;
  }

  #section3>.container>.contentLine>.textLine>p {
    font-size: 34px;
  }

  #section3>.container>.contentLine>.textLine>p>span,
  #section4>.container>.contentLine>.textLine>p>span,
  #section5>.container>.contentLine>.textLine>p>span,
  #section6>.container>.contentLine>.textLine>p>span {
    font-size: 1.8rem;
  }

  #section3>.container>.contentLine>.boxLine>.box>.foot {
    margin-top: 1rem;
  }

  #section3>.container>.contentLine>.textLine>p.mainText,
  #section4>.container>.contentLine>.textLine>p.mainText,
  #section5>.container>.contentLine>.textLine>p.mainText,
  #section6>.container>.contentLine>.textLine>p.mainText,
  #section7>.container>.contentLine>.textLine>p.mainText {
    font-size: 34px;
  }

  #section3>.container>.contentLine>.textLine>p>span,
  #section4>.container>.contentLine>.textLine>p>span,
  #section5>.container>.contentLine>.textLine>p>span,
  #section6>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span,
  #section7>.container>.contentLine>.textLine>p>span.highlight {
    font-size: 34px;
  }

  #section2>.container>.contentLine>.leftLine>.textBox>p.mainText {
    font-size: 34px;
  }

  #section7>.container>.contentLine>.productList>.product {
    width: 100px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 20px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .faq-item {
    border-radius: 25px;
  }

  #section8>.container>.contentLine>.textLine>p.mainText {
    font-size: 34px;
  }

  #section8>.container>.contentLine>.buttonList>.contactBtn>.textLine>p {
    font-size: 1.2rem;
  }

  #section8>.container>.contentLine>.buttonList>.contactBtn>.iconLine {
    width: 55px;
    height: 55px;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-desc {
    font-size: 0.65rem;
  }

  .footer-content {
    gap: 5px;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  .floating>a>.gotoCall {
    width: 44px;
    height: 44px;
  }

  .floating>a>.gotoTop {
    width: 44px;
    height: 44px;
  }


  #section2>.container>.contentLine>.leftLine>.textBox>p.subText {
    font-size: 18px;
  }

  #section8>.container>.contentLine>.textLine>p.subText {
    font-size: 18px;
  }

  #section4>.container>.contentLine>.boxListLine>.box>.text>p.mainText {
    font-size: 20px;
  }

  #section4>.container>.contentLine>.boxListLine>.box>.text>p.subText {
    font-size: 16px;
  }

  #section8>.container>.contentLine>.buttonList>.contactBtn>.textLine>.subText {
    font-size: 25px;
  }

  .mobile-br {
    display: block;
  }

  .desktop-br {
    display: none;
  }

  .faq-item.open .faq-answer {
    padding: 0 25px 35px
  }

  #section1>.container>.contentLine>.buttonBox>button {
    padding: 16px 24px;
  }

  #section1>.container>.contentLine>.buttonBox {
    gap: 8px;
  }

  #section1>.container {
    padding: 120px 0;
  }

  #section1>.container>.contentLine {
    gap: 25px;
  }

}

/* 리뷰 카드 모바일 사이즈 축소 (2026-05-20) */
@media (max-width: 768px) {
    #section5 > .container > .contentLine > .reviewList > .reviewList__inner > .review {
        width: 240px !important;
        height: auto !important;
        min-height: 100px;
        padding: 18px !important;
        gap: 12px !important;
        border-radius: 16px !important;
    }
    #section5 .reviewList__inner .review > .left,
    #section5 .reviewList__inner .review > .left > img {
        width: 50px !important;
        height: 50px !important;
    }
    #section5 .reviewList__inner .review .right > .top > .name {
        font-size: 14px !important;
    }
    #section5 .reviewList__inner .review .right > .top > .gender {
        font-size: 11px !important;
    }
    #section5 .reviewList__inner .review .right > .star {
        font-size: 13px !important;
    }
    #section5 .reviewList__inner .review .right > .bottom > .content {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
}

/* 채널톡 launcher 위치 — howootiket 패턴 (2026-05-21) */
/* 채널톡 SDK 가 생성한 generated class 직접 타겟 */
.frDVOA { width: 54px !important; height: 54px !important; }
.haKruN, .dngGiN {
    bottom: calc(env(safe-area-inset-bottom) + 224px) !important;
    right: 4px !important;
}
/* 다른 generated class 혹시 모르니 폴백 — 모든 generated 4글자 hash 패턴은 못 잡지만 자주 변하는 건 SDK 버전 업데이트 시 재확인 필요 */
