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

/* Base */
:root {
  --brand: #fe9187;
  --brand-dark: #d97365;
  --brand-contrast: #ffffff;
  --brand-soft: #fef0ef; /* very light tint for backgrounds */
}
* { box-sizing: border-box; letter-spacing: -0.5px; }
html, body { height: 100%; }
body {
  margin: 0;
font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;

  font-style: normal;
  color: #0b1526;
  background: #ffffff;
  line-height: 1.4;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo { width: 200px; height: auto; }

br.m { display: none; }
@media (max-width: 768px) {
  .logo {
    width: 120px;
      }
      br.m { display: block; }

}

.cta-group { display: flex; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-outline { border: 1px solid var(--brand); color: var(--brand); background: #fff; }
.btn-outline:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.btn-kakaotalk { background: #FEE500; color: #000000; border: 1px solid #FEE500; }
.btn-kakaotalk:hover { box-shadow: 0 6px 20px rgba(254, 229, 0, 0.4); }
.btn-kakao { background: #602dff; color: #fff; border: 1px solid #602dff; }
.btn-kakao:hover { box-shadow: 0 6px 20px #beb2e6; }

/* Hero */
.hero {
  position: relative;
  padding: 36px 0 0 ;
  margin-top: 70px;
}
.hero-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 56px 48px 0;
  text-align: center;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  margin: 0 0;
  border-radius: 24px;
  background: radial-gradient(120% 120% at 50% 10%, #fff5f4 0%, #fef0ef 30%, var(--brand-soft) 60%, var(--brand) 90%);
  filter: none;
  z-index: -1;
}

.hero-copy { color: #000000; }
.eyebrow { margin: 0 0 12px; font-weight: 600; opacity: .95;color: #000000; font-size: 20px; }
.title { margin: 0 0 20px; font-size: 80px; line-height: 1.05; letter-spacing: -1.2px;  color: #d97365; font-weight: 700; }
.subtitle { margin: 16px 0 0; font-size: 22px; opacity: .92; color: #000000; font-weight: 500; }

.hero-visual { display: flex; justify-content: center; margin-top: 30px; }
.phone-image {
  width: 370px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.25));
}

/* Reviews Section */
.reviews {
  padding: 120px 0 0;
  background: linear-gradient(to bottom right, #fff5f4 0%, #fef0ef 30%, #fff8ee 100%);
  position: relative;
}
.reviews .container {
  text-align: center;
}
.reviews-pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(254,145,135,.12);
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 20px;
}
.reviews-title {
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -1px;
}
.reviews-sub {
  margin: 0 0 48px;
  color: #64748b;
  font-size: 18px;
  font-weight: 500;
}
.reviews-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-phone {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.review-phone-image {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}
.review-phone-mobile {
  display: none;
}
.reviews-list {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 600px;
  z-index: 10;
  pointer-events: none;
}
.review-item {
  pointer-events: auto;
}
.review-item {
  padding: 20px 24px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.review-item--white {
  background: #ffffff;
  color: #000000;
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.review-item--yellow {
  background: #FEE500;
  color: #000000;
  align-self: flex-end;
  border-top-right-radius: 4px;
}
.review-text {
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
  color: inherit;
  text-align: left;
  letter-spacing: -1px;
}

@media (max-width: 1024px) {
  .reviews-title {
    font-size: 36px;
  }
  .reviews-list {
    max-width: 550px;
    bottom: 40px;
  }
}
@media (max-width: 768px) {
  .reviews {
    padding: 80px 0 0;
  }
  .reviews-title {
    font-size: 28px;
  }
  .reviews-sub {
    font-size: 14px;
    margin-bottom: 36px;
  }
  .review-phone-image {
    display: none;
  }
  .review-phone-mobile {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
  }
  .reviews-list {
    display: none;
  }
}
@media (max-width: 480px) {
  .review-phone-mobile {
    max-width: 100%;
  }
}

/* Smishing Section */
.smishing { 
  padding: 80px 0 100px; 
}
.smishing .container { text-align: center; }
.smishing-title { 
  margin: 0 0 12px; 
  font-size: 42px; 
  font-weight: 700;
  color: #1e293b;
}
.smishing-sub { 
  margin: 0 0 28px; 
  color: #64748b; 
  font-size: 18px;
  font-weight: 500;
}
.smishing-content {
  margin: 0 auto;
  padding: 40px 0;
}
.smishing-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.smishing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 35px 0;
}
.smishing-icon {
  width: 80px;
  height: 80px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  color:#fff;
}
.smishing-item-content {
  width: 100%;
}
.smishing-item-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.5;
  text-align: center;
}
.smishing-item-content h3:only-child {
  margin-bottom:0;
}
.smishing-item-desc {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
}
.smishing-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0;
}

@media (max-width: 1024px) {
  .smishing-title {
    font-size: 36px;
  }
  .smishing-card {
    padding: 32px 40px;
  }
  .smishing-item {
    gap: 14px;
    padding: 18px 0;
  }
  .smishing-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .smishing-item-title {
    font-size: 17px;
  }
  .smishing-item-desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .smishing { 
    padding: 60px 0 80px; 
  }
  .smishing-title { 
    font-size: 28px; 
  }
  .smishing-sub { 
    font-size: 16px; 
    margin-bottom: 36px; 
  }
  .smishing-content {
    padding: 24px 0;
  }
  .smishing-card {
    padding: 24px 20px;
  }
  .smishing-item {
    gap: 12px;
    padding: 16px 0;
  }
  .smishing-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .smishing-item-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .smishing-item-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Footer */
.site-footer { padding: 48px 0; color: #6b7280; text-align: center; background-color: #f1f1f1; }

/* Responsive */
@media (max-width: 1024px) {
  .title { font-size: 68px; }
  .eyebrow { font-size: 18px; }
  .subtitle { font-size: 20px; }
  .hero-inner { padding: 48px 36px 0; }
}
@media (max-width: 768px) {
  .cta-group {
    gap: 6px;
  }
  .hero {
    margin-top: 30px;
  }
  .header-inner { padding: 12px 10px; }
  .cta-group .btn { font-size: 12px; padding: 3px 6px; height: auto; }
  .hero-inner { 
    padding: 32px 20px 0; 
    text-align: center; 
  }
  .hero-copy { text-align: center; }
  .title { font-size: 48px; margin-bottom: 16px; }
  .eyebrow { font-size: 16px; margin-bottom: 10px; }
  .subtitle { font-size: 18px; margin-top: 12px; }
  .phone-image { width: min(320px, 90%); }
}
@media (max-width: 480px) {
  .hero-inner { padding: 24px 16px 0; }
  .title { font-size: 40px; margin-bottom: 12px; }
  .eyebrow { font-size: 14px; margin-bottom: 8px; }
  .subtitle { font-size: 16px; margin-top: 10px; }
  .phone-image { width: min(280px, 85%); }
  .hero-visual { margin-top: 20px; }
}

/* Support Section */
.support { padding: 120px 0 88px; }
.support-title {
  margin: 0 0 10px;
  font-size: 45px;
  line-height: 1.3;
  text-align: center;
  color: #111827;
}
.support-desc {
  margin: 0 0 36px;
  text-align: center;
  font-size: 20px;
  color: #6b7280;
}
.support-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.support-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 112px;
  border-radius: 22px;
  padding: 0 28px;
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
   
}
.support-cta__icon { display: inline-flex; }
.support-cta--phone { background: var(--brand); color: var(--brand-contrast); }
.support-cta--kakaotalk { background: #fceb60; color: #000000; }
.support-cta--kakao { background: #602dff; color: #fff; }

@media (max-width: 1024px) {
  .support-cta { height: auto; font-size: 20px; display: flex; flex-direction: column; padding: 20px 0;}
  .support-cta img {
    width: 40px;
  }
  .support-ctas { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .support { padding: 56px 0 64px; }
  .support-title { font-size: 28px; }
  .support-ctas { grid-template-columns: 1fr; gap: 16px; }
  .support-desc {
    font-size: 16px;
    text-align: center !important;
  }
}


/* Intro Section */
.intro { padding: 56px 0 120px; }
.intro-inner { text-align: center; }
.intro-pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(254,145,135,.12);
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 20px;
}
.intro-title {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.2;
}
.intro-sub { color: #6b7280; margin: 10px 0 32px; font-size: 19px;}

.notice-card {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 28px 100px;
  border-radius: 24px;
  background: #fff5f0;
  text-align: left;

}
.notice-text {flex: 1;}
.notice-title { margin: 0 0 8px; font-size: 40px; font-weight: 500; }
.notice-desc { margin: 0; color: #4b5563; font-size: 20px; }
.notice-illust {}
.notice-illust img {
  width: 300px;
  max-width: 100%;
}
.notice-text a {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .intro-title { font-size: 38px; }
}
@media (max-width: 768px) {
  br.re { display: none; }
  .intro { padding: 40px 0 64px; }
  .intro-title { font-size: 30px; }
  .notice-card {  gap: 20px; padding: 20px; flex-direction: column; }
  .notice-illust { justify-content: center; max-width: 50%;}
  .notice-title {
    font-size: 21px;
  }
  .notice-desc {
    font-size: 16px;
  }
}

/* Products Section */
.products { padding: 64px 0 96px; background: #f1f1f1; border-radius: 28px; margin: 0 0 32px; }
.products .container { text-align: center; }
.products-pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(254,145,135,.12);
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 16px;
}
.products-title { margin: 0 0 8px; font-size: 36px; }
.products-sub { margin: 0 0 28px; color: #6b7280; font-size: 18px;}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04) inset;
}
.product-card img { width: 100%; height: auto; display: block; }

@media (max-width: 1024px) {
  .products-title { font-size: 30px; }
}
@media (max-width: 768px) {
  .product-card {
    padding: 10px;
  }
  .products { padding: 48px 0 72px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* Steps Section */
.steps { 
  padding: 80px 0 100px; 
}
.steps .container { text-align: center; }
.steps-title { 
  margin: 0 0 12px; 
  font-size: 42px; 
  font-weight: 700;
  color: #1e293b;
}
.steps-sub { 
  margin: 0 0 48px; 
  color: #64748b; 
  font-size: 18px;
  font-weight: 500;
}

.steps-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 0;
}
.step-card {
  background: #ffffff;
  color: #000000;
  border-radius: 0;
  padding: 0;
  text-align: center;
  border: none;
  box-shadow: none;
  transition: none;
  position: relative;
  overflow: visible;
  flex: 1;
  border-right: 1px solid #e5e5e5;
}
.step-label {
  font-size: 20px;
  font-weight: 700;
  color: #fe9187;
  margin-bottom: 8px;
}

.step-icon {
  margin: 20px auto 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
}
.step-icon img {
  width: 150px;
}

.step-num { 
  font-weight: 700; 
  font-size: 25px;
  margin: 0 0 8px; 
  color: #fe9187;
}
.step-desc { 
  margin: 0; 
  opacity: 1; 
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #666666;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 3;
}

.step-arrow-right {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.step-arrow-down {
  display: none;
}

.step-arrow-left {
  display: none;
}

.arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #fe9187;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(254, 145, 135, 0.2);
}

.arrow-square {
  width: 10px;
  height: 10px;
  transform: translate(-2px, 0px) rotate(-45deg);
  position: relative;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  border-left: 2px solid transparent;
  border-top: 2px solid transparent;
  
}


@media (max-width: 1024px) {
  .steps-title { font-size: 36px; }
  .steps-grid { 
    padding: 30px 0;
  }
  .step-card { padding: 0; }
  .arrow-circle {
    width: 35px;
    height: 35px;
    border: 2px solid #fe9187;
  }
  .arrow-square {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 768px) {
  .steps { padding: 60px 0 80px; }
  .steps-title { font-size: 28px; }
  .steps-sub { font-size: 16px; margin-bottom: 36px; }
  .steps-grid { 
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    padding: 20px 0;
  }
  .step-card { 
    padding: 20px;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .step-card:last-child {
    border-bottom: none;
  }
  .step-icon { 
    margin: 0 auto 16px;
  }
  .step-num { font-size: 20px; margin-bottom: 8px; }
  .step-desc { font-size: 16px; }
  .step-label { font-size: 18px; }
  
  /* 모바일에서는 화살표 숨기기 */
  .step-arrow {
    display: none;
  }
}



/* good */
.good {
  position: relative;
  padding: 36px 0 0 ;
}
.good-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 70px 48px 40px;
  text-align: center;
  border-radius: 24px;
  background-image: url("img/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.good-inner .products-pill {
  background: #fe9187;
  color: #fff;
}
.good-inner .products-title {
  color: #d97365;
  letter-spacing: -1px;
    /* color: #fff; */
}
.good-inner .products-sub {
  color: #333;
}
.good-inner img {
  width: 400px;
  max-width: 100%;
  margin: 20px auto;
}

.supp2 {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
  justify-content: center;
  margin-bottom: 20px;
}
.supp2 .support-title {
  text-align: left;
  font-size: 40px;
}
.supp2-text {
  /*flex: 1;*/
}
.colorpoint {
  color: #d97365;
}
.supp2 .colorpoint {
  color: var(--brand);
  transform: translateY(-10px);
  font-size: 50px;
}
.supp2 .support-desc {
  text-align: left;
}
.supp2 img {
  width: 350px;
  max-width: 100%;
}
.smishing-image {
  width: 250px;
  display: block;
  margin: 0 auto 10px;

}
@media (max-width: 768px) {
  .smishing-image {
    max-width: 60%;
  }
  .supp2 img {
    max-width: 60%;
  }
  .good-inner {
    padding: 60px 10px;
  }
  .products-title {
    font-size: 24px;
  }
  .products-sub {
    font-size: 16px;
  }
  .supp2 {
    text-align: center;
    align-items: center;
    flex-direction: column;
  }
  .supp2 .support-title {
    font-size: 22px;
    text-align: center;
  }
}

/* Popup Modal */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.popup-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-image {
  max-width: 100%;
  width: 100%;
  max-height: 90vh;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #ffffff;
  font-size: 30px;
  transition: transform 0.2s ease;
}

.popup-close:hover {
  transform: scale(1.1);
}

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

.popup-modal.hidden {
  display: none;
}

@media (max-width: 768px) {
  .popup-content {
    max-width: 95%;
    max-height: 85vh;
  }
  
  .popup-close {
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  
  .popup-image {
    max-height: 85vh;
  }
}

@media (max-width: 480px) {
  .popup-content {
    max-width: 98%;
  }
  
  .popup-close {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}