
    :root{
      --text:#111;
      --muted:#6b7280;
      --line:#e5e7eb;
      --card:#ffffff;
      --bg:#ffffff;
      --accent:#e11d2e;
      --cta:#0b0b0b;
      --green:#16a34a;
      --radius:18px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; } /* 네비 이동 부드럽게 */
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
                   "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
      color:var(--text);
      background:var(--bg);
    }

    .wrap{
      width: min(1180px, calc(100% - 48px));
      margin: 34px auto 80px;
    }

    /* ===============================
       TOPBAR
    ============================== */
    .topbar{
      background:#fff;
      border-bottom: 1px solid #eee;
    }

    .topbar-inner{
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      height: 78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 18px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap: 12px;
      text-decoration:none;
      color:#111;
      white-space: nowrap;
      flex-wrap: nowrap;
    }

    /* ✅ 로고는 1장만 두고 src를 교체 */
    .brand-logo{
      height: 50px;
      width: auto;
      display:block;
      flex: 0 0 auto;
      opacity: 1;
      transition: opacity .35s ease;
    }

    .brand-sub{
      font-size: 13px;
      font-weight: 800;
      color: #6b7280;
      letter-spacing: -0.01em;
      padding-left: 12px;
      border-left: 2px solid #e5e7eb;
      display:inline-block;
      white-space: nowrap;
    }

    .call{
      display:flex;
      align-items:center;
      gap: 10px;
      text-decoration:none;
      color:#111;
      font-weight: 900;
      flex: 0 0 auto;
      white-space: nowrap;
    }
    .call-ico{ font-size: 18px; opacity: .85; }
    .call-label{
      font-size: 20px;
      font-weight: 900;
      letter-spacing:-0.02em;
    }
    .call-num{
      font-size: 34px;
      font-weight: 1000;
      letter-spacing:-0.02em;
      position: relative;
    }
    .call-num::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:-6px;
      height: 3px;
      background: var(--accent);
      border-radius: 999px;
      opacity: .85;
    }

    /* ===============================
       NAV
    ============================== */
    .gnb{
      border-top: 1px solid #f2f2f2;
      background:#fff;
      display:flex;
      justify-content:center;
      gap: 80px;
      padding: 14px 12px;
    }

    .gnb-item{
      position: relative;
      display:inline-flex;
      align-items:center;
      padding: 10px 14px;
      border-radius: 12px;
      text-decoration:none;
      color:#333;
      font-weight: 900;
      font-size: 18px;
      letter-spacing:-0.02em;
      transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
      will-change: transform;
      white-space: nowrap;
    }

    .gnb-item::after{
      content:"";
      position:absolute;
      left: 12px;
      right: 12px;
      bottom: 7px;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: center;
      opacity: 0;
      transition: transform .18s ease, opacity .18s ease;
    }

    .gnb-item:hover{
      transform: translateY(-3px);
      background: rgba(225,29,46,0.08);
      color: #111;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    .gnb-item:hover::after{
      transform: scaleX(1);
      opacity: 1;
    }

    /* ===============================
       HERO CAROUSEL (1장씩)
    ============================== */
    .hero-carousel{
      margin-bottom: 36px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: linear-gradient(120deg, #021b3a, #000814);
      color:#fff;
    }

    .hero-carousel-inner{
      display:grid;
      grid-template-columns: 1fr 1.7fr;
      align-items:center;
      gap: 25px;
      padding: 34px 32px;
    }

    .hero-badge{
      display:inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.22);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 14px;
      letter-spacing:-0.01em;
    }

    .hero-copy h1{
      margin:0 0 10px;
      font-size: 40px;
      font-weight: 1000;
      letter-spacing:-0.03em;
      line-height:1.1;
    }

    .hero-copy p{
      margin:0;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
      font-size: 15px;
    }

    .hero-call{
      margin-top: 18px;
      line-height: 1.1;
    }
    .hero-call .label{
      font-size: 20px;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      margin-right: 10px;
      letter-spacing:-0.02em;
    }
    .hero-call .phone{
      font-size: 38px;
      font-weight: 1000;
      color: #FFD400;
      letter-spacing: -0.03em;
    }

    .carousel{
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(0,0,0,0.25);
    }

    .carousel-track{
      display:flex;
      transition: transform 520ms cubic-bezier(.22, .9, .22, 1);
      will-change: transform;
    }

    /* ✅ 이미지 안 잘리게(PC) */
    .slide{
      min-width: 100%;
      padding: 18px 0;
      display:flex;
      justify-content:center;
      align-items:center;
    }
    .slide img{
      width: 100%;
      max-height: 260px;       /* 크기 조절은 여기 */
      object-fit: contain;     /* 절대 안 잘림 */
      display:block;
    }

    .dots{
      position:absolute;
      left: 14px;
      bottom: 12px;
      display:flex;
      gap: 8px;
      z-index: 5;
    }
    .dot{
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 0;
      cursor: pointer;
      background: rgba(255,255,255,0.35);
    }
    .dot.is-active{
      background: rgba(255,255,255,0.95);
    }

    .nav{
      position:absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.22);
      background: rgba(0,0,0,0.35);
      color:#fff;
      font-size: 22px;
      font-weight: 900;
      cursor: pointer;
      z-index: 6;
    }
    .nav:hover{ filter: brightness(1.1); }
    .nav.prev{ left: 10px; }
    .nav.next{ right: 10px; }

    /* ===============================
       SECTION + PLANS (PC)
    ============================== */
    .section{
      display:grid;
      grid-template-columns: 1.05fr 1.95fr;
      gap: 28px;
      padding: 34px 0;
      border-top: 1px solid rgba(22,163,74,0.35);
      scroll-margin-top: 110px; /* 네비 클릭 시 제목 가림 방지 */
    }
    .section:first-of-type{ border-top:0; padding-top:0; }

    .left h2{
      margin:0 0 22px;
      font-size: 30px;
      line-height: 1.05;
      letter-spacing: -0.02em;
      font-weight: 900;
      color: var(--green);
    }
    .left h2 .plus{ display:block; margin-top:10px; }

    .benefit{
      margin-top: 10px;
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }
    .benefit h3{
      margin:0 0 10px;
      font-size: 16px;
      font-weight: 900;
      letter-spacing:-0.01em;
    }
    .benefit ul{
      margin:0;
      padding-left: 18px;
      color: var(--text);
    }
    .benefit li{
      margin: 8px 0;
      font-size: 14px;
      line-height: 1.45;
    }
    .benefit li b{
      color: var(--accent);
      font-weight: 900;
    }
    .benefit .muted{
      color: var(--muted);
      font-size: 13px;
      margin-top: 10px;
      line-height: 1.5;
    }

    .plans{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .card{
      position: relative;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow:hidden;
      display:flex;
      flex-direction: column;
      box-shadow: 0 6px 18px rgba(0,0,0,0.04);
      min-height: 280px;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      will-change: transform;
    }

    .card:hover{
      transform: translateY(-8px);
      box-shadow: 0 14px 28px rgba(0,0,0,0.12);
      border-color: rgba(17, 24, 39, 0.25);
    }

    .card .inner{
      padding: 22px 22px 18px;
      flex: 1;
    }
    .card h4{
      margin:0 0 10px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.01em;
    }
    .desc{
      margin:0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      min-height: 64px;
    }
    .divider{
      border-top: 1px dashed var(--line);
      margin: 16px 0;
    }
    .meta{
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 6px;
    }
    .price{
      font-weight: 900;
      color: var(--accent);
      font-size: 30px;
      letter-spacing: -0.02em;
      margin: 0;
    }
    .price small{
      font-size: 18px;
      font-weight: 900;
      margin-right: 6px;
    }

    .cta{
      display:flex;
      align-items:center;
      justify-content:center;
      background: var(--cta);
      color:#fff;
      text-decoration:none;
      height: 56px;
      font-weight: 900;
      letter-spacing: -0.01em;
      font-size: 15px;
      transition: filter .22s ease, transform .22s ease;
    }
    .card:hover .cta{
      filter: brightness(1.12);
      transform: translateY(-1px);
    }

    /* BEST 리본 */
    .card.best{
      border: 2px solid rgba(225,29,46,0.55);
      box-shadow: none;
    }
    .card.best::before{
      content: "추천 요금제";
      position: absolute;
      top: 14px;
      left: -58px;
      width: 180px;
      text-align: center;
      background: rgba(225,29,46,0.72);
      color: #fff;
      font-size: 12px;
      font-weight: 1000;
      padding: 7px 0;
      transform: rotate(-35deg);
      letter-spacing: -0.01em;
      z-index: 2;
      pointer-events:none;
    }


/* 접근성: 화면에는 안 보이지만 리더기는 읽음 */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* =========================
   RED APPLY BAR (PC)
========================= */
.applybar{
  background: #e11d2e;           /* 빨강 */
  color: #fff;
}

.applybar-inner{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  height: 86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

/* 왼쪽: 아이콘 + 문구 + 번호 */
.apply-left{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 340px;
}

.apply-ico{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  color: #e11d2e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  font-weight: 1000;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.apply-txt{
  display:flex;
  flex-direction:column;
  gap: 4px;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.35);
}

.apply-title{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  opacity: 0.95;
}

.apply-num .num{
  font-size: 30px;
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: #ffd400;               /* 노랑 번호 */
}

/* 오른쪽: 입력 + 버튼 + 동의 */
.apply-form{
  display:flex;
  align-items:center;
  gap: 12px;
  flex: 1;
  justify-content:flex-end;
}

.apply-input{
  width: 190px;
  height: 44px;
  border-radius: 10px;
  border: 0;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
  color: #111;
}

.apply-input::placeholder{
  color: #9ca3af;
  font-weight: 800;
}

.apply-btn{
  height: 44px;
  min-width: 150px;
  padding: 0 18px;
  border-radius: 10px;
  border: 0;
  background: #111;
  color:#fff;
  font-weight: 1000;
  letter-spacing:-0.02em;
  cursor:pointer;
  transition: transform .16s ease, filter .16s ease;
}

.apply-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.apply-consent{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  opacity: 0.95;
  white-space: nowrap;
  margin-left: 8px;
}

.apply-consent .check{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-weight: 1000;
}

.apply-link{
  color:#fff;
  font-weight: 1000;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0,0,0,0.14);
}
.apply-link:hover{
  background: rgba(0,0,0,0.22);
}
/* =========================
   APPLY BAR - PC 하단 고정
========================= */
.applybar-fixed{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;              /* 무조건 위 */
}

/* 메인 콘텐츠가 가려지지 않도록 여백 */
body{
  padding-bottom: 96px;      /* applybar 높이보다 살짝 크게 */
}




/* =========================
   SIDE FLOAT BANNER (PC)
========================= */
.side-float{
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sf-btn{
  width: 104px;
  height: 104px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
  background: #fff;
  color: #111;
}

.sf-btn:hover{
  transform: translateY(-4px);
  filter: brightness(1.02);
}

.sf-btn.kakao{ background: #FEE500; border-color: rgba(0,0,0,0.06); }
.sf-btn.apply{ background: #e11d2e; color:#fff; border-color: rgba(0,0,0,0.05); }
.sf-btn.call{ background: #111; color:#fff; border-color: rgba(0,0,0,0.05); }

.sf-ico{ font-size: 50px; line-height: 1; }
.sf-txt{ font-size: 15px; font-weight: 900; letter-spacing: -0.02em; }

/* =========================
   MODAL
========================= */
.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal.is-open{ display: block; }

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
}

.modal-card{
  position: relative;
  width: 420px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
  padding: 20px 20px 18px;
}

.modal-close{
  position: absolute;
  right: 14px;
  top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.modal-title{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -0.03em;
}
.modal-sub{
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.modal-form{
  display: grid;
  gap: 10px;
}

.mf-field span{
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #374151;
  margin-bottom: 6px;
}

.mf-field input,
.mf-field select{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.mf-field input:focus,
.mf-field select:focus{
  border-color: rgba(225,29,46,0.55);
  box-shadow: 0 0 0 4px rgba(225,29,46,0.12);
}

.mf-agree{
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.mf-submit{
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: #e11d2e;
  color: #fff;
  font-weight: 1000;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}

.mf-submit:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.mf-submit:disabled{
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.mf-mini{
  margin: 4px 0 0;
  font-size: 12px;
  color: #9ca3af;
}

/* 성공 화면 */
.modal-success{
  padding: 18px 6px 10px;
  text-align: center;
}

.success-badge{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22,163,74,0.10);
  color: #16a34a;
  font-weight: 1000;
  font-size: 12px;
  margin-bottom: 10px;
}

.success-title{
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.success-sub{
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}


/* =========================
   CHANNEL LINEUP
========================= */
.channel-section{
  margin: 50px 0 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(22,163,74,0.25);
}

.channel-inner{
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.channel-title{
  font-size: 30px;
  font-weight: 1000;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.channel-sub{
  margin: 0 0 24px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.channel-img-wrap{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  background: #fff;
}

.channel-img-wrap img{
  width: 100%;
  height: auto;          /* ❗ 절대 안 잘림 */
  display: block;
}


/* =========================
   MVNO PRICE (PC)
========================= */
.mvno-section{
  margin: 60px 0 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(22,163,74,0.25);
}

.mvno-inner{
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.mvno-title{
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: #111;
}

.mvno-sub{
  margin: 0 0 26px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.mvno-img-wrap{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.mvno-img-wrap img{
  width: 100%;
  height: auto;         /* ❗ 절대 안 잘림 */
  display: block;
}

.mvno-note{
  margin-top: 14px;
  font-size: 13px;
  color: #9ca3af;
}

/* =========================
   CARD SECTION (아까 느낌 유지)
========================= */
.card2{
  margin-top: 46px;
}

.card2-head{
  margin-bottom: 10px;
}
.card2-title{
  margin:0;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing:-0.03em;
}

/* 탭 */
.card2-tabs{
  display:flex;
  gap: 34px;
  padding: 10px 4px 14px;
  border-bottom: 1px solid #eee;
}
.card2-tab{
  position: relative;
  border: 0;
  background: transparent;
  padding: 10px 6px;
  cursor: pointer;
  color: #6b7280;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}
.card2-tab:hover{
  color:#111;
  transform: translateY(-1px);
}
.card2-tab.is-active{
  color:#111;
}
.card2-tab.is-active::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: #111;
}

/* 본문 */
.card2-body{
  display:grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  padding-top: 26px;
  align-items: start;
}

/* 왼쪽 */
.card2-left{
  display:flex;
  flex-direction: column;
  gap: 18px;
}
.card2-card{
  border-radius: 18px;
  overflow:hidden;
}
.card2-card img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: contain; /* 잘림 방지 */
}

/* 아래 상세 이미지 */
.card2-detailimg{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid #f1f1f1;
  background:#fff;
}
.card2-detailimg img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: contain; /* 잘림 방지 */
}

/* 오른쪽 텍스트 */
.card2-right{
  padding-top: 6px;
}
.card2-rt-title{
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 1000;
  letter-spacing:-0.02em;
}
.card2-rt-list{
  margin: 0 0 18px;
  padding-left: 18px;
  color: #333;
  line-height: 1.7;
  font-weight: 700;
}
.card2-rt-list li{
  margin: 6px 0;
}

/* 버튼 */
.card2-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  background: #222;
  color: #fff;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing:-0.01em;
}
.card2-btn:hover{ filter: brightness(1.08); }

.card2-note{
  margin: 10px 0 0;
  color: #16a34a;
  font-weight: 900;
  font-size: 13px;
}

/* 상단 카드 이미지 (PNG) */
#card2Png{
  display: block;
  width: 150px;
  margin: 0 auto 10px;
  height: auto;
}

/* 하단 상세 이미지 (WEBP) */
#card2Webp{
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 28px auto 0;
  height: auto;
}


/* ===============================
   SIMPLE FOOTER (PC 전용)
================================ */
.simple-footer{
  margin-top: 80px;
  background: #0b0f1a;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}

.sf-inner{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 26px;
}

.sf-brand{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 14px;
}

.sf-logo{
  height: 42px;
  width: auto;
  display:block;
}

.sf-text strong{
  display:block;
  font-size: 15px;
  font-weight: 900;
  color:#fff;
  letter-spacing:-0.02em;
}

.sf-text span{
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.sf-info{
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.sf-info b{
  color:#fff;
  font-weight: 900;
}

.sf-copy{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.agree-box{
  display: flex;
  align-items: center;
  gap: 6px;
}

.agree-box label{
  font-size: 12.5px;      /* ← 여기 핵심 (기존 14~16이면 너무 큼) */
  line-height: 1.4;
  color: #111;         /* 은은한 회색 */
  font-weight: 500;
  cursor: pointer;
}

.agree-box input{
  width: 14px;
  height: 14px;
  cursor: pointer;
}
