* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
  letter-spacing: -0.3px;
}

html,
body {
 
  overflow-x: auto;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  color: #111;
  background: #fff;
  line-height: 1.5;
  overflow-x: auto;
  transform-origin: 0 0;
  overflow-x: visible;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
section {
  width: 100%;
  padding: 80px 0;
  margin: 0 auto;
}

section>div {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 20px 84px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 4px 4px 10px #2a20131f;
  backdrop-filter: blur(5px);
}

.btn-primary {
  background: url("../images/download_icon.png") left 76px center / 28px no-repeat, linear-gradient(to right, #C59D63, #8A6A3F);
  padding-left: 116px;
  color: #fff;
}

.btn-next {
  background: url("../images/bullet1.png") left 174px center / 28px no-repeat, #D4A04A;
  padding-left: 60px;
  color: #fff;
}

.btn-next2 {
  background: url("../images/bullet1.png") left 174px center / 28px no-repeat, #4F3A27;
  padding-left: 60px;
  color: #fff;
}

.site-header {
  width: 100%;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  z-index: 20;
  transition: background 0.3s, color 0.3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.7);
}

.site-header.scrolled .gnb a {
  color: #111;
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gnb ul {
  display: flex;
  gap: 70px;
  white-space: nowrap;
}

.gnb li a {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}

.gnb ul li a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.gnb ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #D4A04A;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.gnb ul li a:hover::after {
  width: 100%;
}

.site-header.scrolled .gnb ul li a::after {
  background: #8A6A3F;
}

.hero-wrap {
  position: relative;
  overflow: hidden;
  height: 780px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../images/visual1.png") right 36px / cover no-repeat, linear-gradient(to right, #58442e 0%, #58442e 20%, #afa488 100%);
  transform: scale(1);
  transition: transform 10s ease-out;
}

.hero-blur {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, #58442e 0%, #58442e 20%, #afa488 100%);
  filter: blur(5px);
  transform: scale(1.08);
  opacity: 0.75;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 2.2s ease-out;
  animation: cinematicPan 22s linear infinite alternate;
}

.hero-content,
.hero,
.site-header,
.rolling {
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.rolling {
  position: absolute;
  top: 520px;
  left: 100%;
  z-index: 3;
  font-size: 100px;
  color: #fff;
  filter: blur(6px);
  opacity: 0.1;
  font-weight: 900;
  white-space: nowrap;
  animation: rollLeft 15s linear infinite;
}

@keyframes rollLeft {
  0% {
    transform: translateX(0);
  }

  17% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-220%);
  }
}

#hero {
  padding-top: 156px;
  color: #fff;
  position: relative;
  z-index: 3;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 4;
}

.hero-text {
  position: relative;
  z-index: 5;
  margin-top: 50px;
}

.hero-title {
  font-size: 60px;
  line-height: 82px;
  font-weight: 700;
  margin-bottom: 110px;
}

.hero-title span {
  color: #D4A04A;
}

.hero-subtitle {
  font-size: 17px;
  opacity: 0.5;
  margin-bottom: 25px;
  font-weight: 100;
  color: #ffffff7d;
  border-bottom: 1px solid #c3baaa29;
  display: inline-block;
  padding-bottom: 25px;
}

/* Intro Animation */
.hero-subtitle,
.hero-title,
.hero-cta {
  opacity: 0;
  transform: translateX(50px) scale(1.02);
  filter: blur(6px);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), filter 1.4s ease-out;
}

.hero-animate .hero-subtitle,
.hero-animate .hero-title,
.hero-animate .hero-cta {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.hero-animate .hero-subtitle {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.hero-animate .hero-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.hero-animate .hero-cta {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}

.hero-wrap {
  position: relative;
  z-index: 1;
}

.hero-wrap::before {
  z-index: 1;
}

.hero-wrap::after {
  z-index: 2;
}

.rolling {
  position: absolute;
  top: 470px;
  left: 100%;
  font-size: 100px;
  opacity: 0.1;
  white-space: nowrap;
  animation: rollLeft 25s linear infinite;
  z-index: 5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 20;
}

@keyframes rollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-250%);
  }
}

.intro {
  padding: 50px 0 !important;
  background: url(../images/phone_img1.png) no-repeat;
  height: 758px;
}

.intro-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.intro-text {
  width: 680px;
  padding-top: 150px;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, filter 1s ease-out;
}

.intro-text.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.intro-text h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 28px;
}

.intro-desc {
  font-size: 16px;
  opacity: 0.5;
  margin-bottom: 84px;
  line-height: 26px;
}

.message-feature {
  background: #2A221B;
  padding: 100px 0;
}

.message-feature-inner {
  text-align: center;
}

.message-feature-heading {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 33px;
}

.message-feature-heading h3 {
  font-size: 34px;
  color: #fff;
}

.message-feature-heading p {
  color: #fff;
  opacity: 0.5;
}

.message-feature-heading span {
  color: #c89554;
}

.feature-card-row {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  gap: 20px;
}

/*** CARD ***/
.feature-card-row>div {
  width: 23%;
}

.feature-card {
  color: #fff;
  padding: 30px 10px;
  border-radius: 10px;
  background: linear-gradient(to bottom, rgba(144, 113, 82, 0.13), rgba(42, 33, 24, 0.15));
  border: 1px solid #BB8E62;
  box-shadow: 0 5px 8.8px #c8955454;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

.feature-card:hover {
  background: linear-gradient(to top, rgba(144, 113, 82, 0.25), rgba(42, 33, 24, 0.25));
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 60%, transparent 80%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-icon {
  height: 144px;
  display: flex;
  align-items: center;
}

.feature-icon img {
  margin: 0 auto;
  width: 38%;
}

.feature-card h4 {
  font-size: 22px;
  margin: 26px 0 3px 0;
  font-weight: 300;
}

.feature-card h4 span {
  color: #BB8E62;
}

.feature-card-desc {
  font-size: 14px;
  opacity: 0.5;
  font-weight: 100;
}

.feature-card-label {
  color: #fff;
  margin-top: 42px;
  font-size: 22px;
}

.detail-block {
  background: linear-gradient(to bottom, #fff, #EBE6DD);
}

.detail-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.detail-image {
  width: 625px;
  height: 613px;
  background: url(../images/bg1.png) no-repeat;
}

.detail-label span {
  background: #c89554;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 18px;
  margin-bottom: 30px;
  display: inline-block;
}

.detail-text h3 {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 33px;
}

.detail-text p {
  font-size: 15px;
  opacity: 0.5;
  line-height: 26px;
  margin-bottom: 80px;
}

.detail-buttons a {
  color: #5A4732;
  border: 1px solid #E3D4B3;
  padding:15px 36px 15px 15px;
  border-radius: 5px;
  font-size: 13px;
  background: url(../images/bullet2.png) no-repeat 90% center, rgba(255, 255, 255, 0.7);
}

.points {
  background: #fff;
}

.points-inner h3 {
  font-size: 36px;
  text-align: center;
}

.points-desc {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.5;
}

.points-card-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.points-card {
  width: 40%;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #EADCC5;
  background: url(../images/img5.png) no-repeat 92% 80%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: border-color 0.3s ease, border-width 0.3s ease;
  cursor: pointer;
}

.points-card:hover {
  border-color: #EADCC5;
  border-width: 3px;
}

.points-card:hover h4 em {
  background: #d7b57c;
  color: #fff;
}

.point_service:hover {
  border-color: #6c4e2c52;
  border-width: 3px;
}

.point_service:hover h4 em {
  background: #6C4E2C;
  color: #fff;
}

.points-card h4 {
  font-size: 22px;
  color: #D4A04A;
  background: url(../images/bg4.png) no-repeat;
  padding-left: 17px;
}

.points-card h4 em {
  border: 1px solid #EADCC5;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 100;
  padding: 5px 10px;
  position: absolute;
  right: 22px;
}

.points-card p {
  margin-left: 17px;
  font-size: 14px;
  opacity: 0.5;
}

.points-card ul {
  list-style: none;
  margin-left: 17px;
  margin-top: 27px;
}

.points-card li {
  margin-bottom: 12px;
}

.points-card li span {
  font-family: 'Times New Roman';
  font-weight: 900;
  margin-right: 10px;
}

.point_service {
  border: 1px solid #6c4e2c52;
  background: url(../images/img6.png) no-repeat 92% 80%;
}

.point_service h4 {
  color: #6C4E2C;
}

.point_service h4 em {
  border-color: #6C4E2C;
}

.faq {
  background: #f3f3f3;
}

.faq-list {
  border-top: 1px solid #E7E3DA;
}

.faq-inner h3 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #E7E3DA;
  cursor: pointer;
  margin: 20px 0;
}

.faq-q {
  font-size: 16px;
  font-weight: 400;
  background: url('../images/Q.png') no-repeat 5px 5px;
  padding: 0 30px 20px 23px;
  position: relative;
}

.faq-q::after {
  content: "";
  position: absolute;
  right: 2%;
  top: 50%;
  width: 15px;
  height: 9px;
  transform: translateY(-50%);
  background: url("../images/bullet5.png") center/contain no-repeat;
  transition: .3s;
}

.faq-item.active .faq-q::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-a {
  max-height: 0;
  opacity: 0;
  font-size: 14px;
  overflow: hidden;
  transition: 0.3s;
  padding-left: 30px;
}

.faq-item.active .faq-a {
  padding: 40px 30px 90px;
  opacity: 1;
  max-height: 1000px;
  background: rgba(255, 255, 255, 0.8);
  color: #A49E93;
}

.cta-last {
  padding: 0;
  background: url("../images/bottom_bg.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.cta-inner {
  padding: 100px 0;
}

.cta-title {
  font-size: 30px;
  margin: 6px 0 30px;
}

.cta-subtitle {
  opacity: 0.5;
}

.footer {
  background: #111;
  color: #ddd;
  padding: 30px 0;
}

.footer-inner {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-links {
  display: flex;
  gap: 25px;
  margin-bottom: 14px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
}

.footer-line {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 2px;
  font-weight: 100;
}

.footer-phone {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-hours {
  font-size: 14px;
  opacity: 0.8;
}

.feature-card-row>div {
  position: relative;
  overflow: visible;
}

.feature-card-label {
  color: #fff;
  margin-top: 42px;
  font-size: 22px;
  text-align: center;
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease, color .35s ease;
  opacity: 0.85;
}

.feature-card-row>div:hover .feature-card-label {
  transform: translateY(-6px);
  opacity: 1;
  color: #BB8E62;
}

.detail-image {
  position: relative;
  width: 625px;
  height: 613px;
}

.detail-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .6s ease;
}

.detail-image img.active-img {
  opacity: 1;
  transform: scale(1);
}

.detail-buttons a {
  transition: background .3s ease, color .3s ease, padding-left .3s ease, box-shadow .3s ease;
}

.detail-buttons a:hover {
  color: #BB8E62;
  padding-left: 22px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.detail-block {
  background: linear-gradient(to bottom, #fff, #EBE6DD);
}

.detail-block .detail-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}

.detail-block.show .detail-content {
  opacity: 1;
  transform: translateY(0);
}

.detail-content {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.detail-block.show .detail-content {
  opacity: 1;
  transform: translateY(0);
}

/* .detail-content {
  opacity: 1 !important;
  transform: none !important;
} */

.message-feature-heading,
.feature-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.message-feature.show .message-feature-heading {
  opacity: 1;
  transform: translateY(0);
}

.message-feature.show .feature-card {
  opacity: 1;
  transform: translateY(0);
}

.message-feature.show .feature-card:nth-child(1) {
  transition-delay: 0.15s;
}

.message-feature.show .feature-card:nth-child(2) {
  transition-delay: 0.30s;
}

.message-feature.show .feature-card:nth-child(3) {
  transition-delay: 0.45s;
}

.message-feature.show .feature-card:nth-child(4) {
  transition-delay: 0.60s;
}

.cta-last {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: #0000;
}

.cta-moving-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: auto;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  animation: ctaImgMotion 15s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 5;
}

@keyframes ctaImgMotion {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-52%, -52%) scale(1.12);
  }
}

.detail-block .txt_box {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

.detail-campaign .txt_box {
  transform: translateX(-60px);
}

.detail-election .txt_box {
  transform: translateX(60px);
}

.detail-result .txt_box {
  transform: translateX(-60px);
}

.detail-block.show .txt_box {
  opacity: 1;
  transform: translateX(0);
}

.hero-cta .btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-4px);
}

.hero-cta .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: .5s;
}

.hero-cta .btn-primary:hover::after {
  left: 120%;
}

.hero-blob {
  position: absolute;
  top: -10%;
  left: -20%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at 30% 30%, #f2f2f2 0%, #87532085 40%, rgba(90, 60, 40, 0.18) 60%, rgba(0, 0, 0, 0) 100%);
  filter: blur(45px);
  opacity: 0.55;
  animation: blobWave 12s ease-in-out infinite alternate;
  z-index: 2;
  pointer-events: none;
}

@keyframes blobWave {
  0% {
    transform: translate(-80px, 40px) scale(1.1) rotate(0deg);
  }

  50% {
    transform: translate(40px, -60px) scale(1.25) rotate(8deg);
  }

  100% {
    transform: translate(120px, 20px) scale(1.18) rotate(-6deg);
  }
}

.hero-bg,
.hero-blur {
  opacity: 0;
  transition: opacity 2.2s ease-out;
}

.hero-wrap.loaded .hero-bg,
.hero-wrap.loaded .hero-blur {
  opacity: 1;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: .6s ease;
}

.btn:hover::after {
  left: 130%;
}

.intro-buttons {
  display: flex;
  justify-content: start;
  gap: 20px;
}

.hero-bg,
.hero-blur {
  animation: cinematicPan 22s linear infinite alternate;
}

@keyframes cinematicPan {
  0% {
    transform: scale(1.05) translateX(-20px);
  }

  100% {
    transform: scale(1.05) translateX(20px);
  }
}

/* .hero-bg {
  display: none;
}
 */
.hero-blur {
  z-index: 0;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.3s ease-out, transform 1.8s ease-out;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.hero-dot.active {
  background: #D4A04A;
  transform: scale(1.3);
}

#topBtn-pc {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #333;
  border: none;
  font-size: 1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .3s ease;
  z-index: 9999;
}

#topBtn-pc.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.logo{min-width:130px;}


.policy-wrap {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 60px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.policy-header {
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-header h2 {
    margin: 0;
    font-size: 28px;
    color: #222;
}

.home-btn {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    transition: 0.3s;
}

.home-btn:hover {
    background: #f1f1f1;
}

.policy-content {
    line-height: 1.8;
    font-size: 15px;
    color: #444;
}

.policy-content h4 {
    font-size: 18px;
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.policy_popup{
    box-sizing: border-box;
    padding: 10px;
}
.policy_popup > span{}
.policy_popup > div{
    padding-top: 12px;
    margin: 5px;
}
.policy_popup h1{
    font-size: 22px;
    margin-bottom: 12px;
    color: #916D4C;
}
.policy_popup textarea , .policy_popup > div > p{
    padding: 13px;
    line-height: 22px;
    color: #7d7d7d;
    height: 250px;
    width: 100%;
    font-size:13px;
    border: 1px solid #ccc;
}