body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif;
  background:#fff;
  color:#111;
}

.m-header{
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 16px;
  border-bottom:1px solid #eee;
}

.m-logo{ height:28px; }
.m-sub{ font-size:12px; color:#6b7280; }

.m-wrap{ padding:16px; }

.m-hero{
  text-align:center;
  margin:24px 0;
}
.m-hero h1{
  font-size:22px;
  font-weight:900;
}
.m-phone{
  display:block;
  margin-top:10px;
  font-size:24px;
  color:#e11d2e;
}

/* 하단 고정바 */
.m-bottom-bar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  height:68px;
  background:#fff;
  border-top:1px solid #e5e7eb;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  z-index:100;
  box-shadow:0 -6px 18px rgba(0,0,0,0.08);
}

/* 공통 버튼 */
.mb-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  font-size:11px;
  font-weight:800;
  color:#111;
  text-decoration:none;
  border:none;
  background:none;
  transition: transform .15s ease, background-color .15s ease;
}

.mb-item svg{
  width:22px;
  height:22px;
  fill:currentColor;
}

/* 터치 효과 */
.mb-item:active{
  transform: scale(0.94);
}

/* 전화 */
.mb-item.call{
  color:#0ea5e9;
}
.mb-item.call svg{
  background:rgba(14,165,233,.12);
  padding:6px;
  border-radius:10px;
}

/* 카카오 */
.mb-item.kakao{
  color:#3b1d1d;
}
.mb-item.kakao svg{
  background:#fae100;
  padding:6px;
  border-radius:10px;
}

/* 빠른신청 (중앙 강조) */
.mb-item.quick{
  color:#fff;
  background:linear-gradient(135deg,#e11d2e,#ff3b3b);
  margin:6px;
  border-radius:14px;
  font-size:12px;
  box-shadow:0 8px 18px rgba(225,29,46,.35);
}

.mb-item.quick svg{
  background:rgba(255,255,255,.2);
  padding:6px;
  border-radius:10px;
}


/* ===============================
   모바일 요금표
================================ */
.m-plan-wrap{
  padding:16px;
}

.m-plan-title{
  font-size:22px;
  font-weight:900;
  margin-bottom:12px;
}

.m-benefit{
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px;
}
.m-benefit ul{
  padding-left:16px;
}
.m-benefit .red{
  color:#e11d2e;
  font-weight:700;
}

.m-plan-card{
  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:16px;
  background:#fff;
}

.m-plan-row{
  display:flex;
  padding:16px;
}

.m-plan-row .left{
  flex:1;
}
.m-plan-row h4{
  font-size:16px;
  font-weight:900;
  margin-bottom:6px;
}
.m-plan-row p{
  font-size:13px;
  color:#555;
  line-height:1.4;
}

.divider{
  width:1px;
  background: repeating-linear-gradient(
    to bottom,
    #ddd,
    #ddd 4px,
    transparent 4px,
    transparent 8px
  );
  margin:0 12px;
}

.m-plan-row .right{
  text-align:right;
}
.m-plan-row .right span{
  font-size:13px;
  color:#666;
}
.m-plan-row .right strong{
  display:block;
  font-size:25px;
  font-weight:900;
  color:#e11d2e;
  margin-top:6px;
}

.m-cta.black{
  width:100%;
  border:none;
  background:#000;
  color:#fff;
  padding:14px;
  font-size:15px;
  font-weight:900;
}

.m-plan-title{
  color:#111;
}

.m-plan-card h4{
  color:#16a34a;
}

li b{
  color: #e11d2e;   /* 선명한 레드 */
  font-weight: 700;
}

.m-plan-card b{
  color: #e11d2e;   /* 스카이라이프 레드 */
  font-weight: 700;
}


.m-plan-card .right{
  display: flex;
  flex-direction: column;
  align-items: center;     /* 가로 가운데 */
  justify-content: center; /* 세로 가운데 */
  text-align: center;
}

.m-plan-card .right{
  display: flex;
  flex-direction: column;
  align-items: center;     /* 가격은 가운데 */
}

.m-plan-card .price{
  font-size: 30px;
  font-weight: 900;
  color: #e11d2e;
}

.m-plan-card .price em{
  font-size: 15px;        /* 월 / 원 작게 */
  font-style: normal;
  font-weight: 600;
  margin: 0 2px;
}

.m-plan-card .vat{
  align-self: flex-end;   /* ⬅ 오른쪽 */
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* ===============================
   QUICK MODAL (모바일 고급형)
================================ */
.m-modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;          /* 아래에서 올라오는 느낌 */
  justify-content: center;
  padding: 12px;
  background: rgba(0,0,0,.45);
  z-index: 9999;
}

.m-modal.is-open{ display:flex; }

.m-modal-box{
  width: min(480px, 100%);
  border-radius: 20px 20px 14px 14px;
  background: #fff;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  overflow: hidden;
  transform: translateY(10px);
  animation: qmUp .18s ease forwards;
}

/* 상단 그라데이션 포인트 */
.m-modal-box::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 120px;
  background: radial-gradient(600px 180px at 30% 10%, rgba(22,163,74,.20), transparent 60%),
              radial-gradient(500px 200px at 90% 0%, rgba(225,29,46,.18), transparent 55%),
              linear-gradient(180deg, #ffffff, #ffffff);
  pointer-events:none;
}

@keyframes qmUp{
  to{ transform: translateY(0); }
}

.m-modal-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: rgba(243,244,246,.95);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  z-index: 3;
}

.qm-head{
  position: relative;
  z-index: 2;
  padding: 18px 18px 10px;
}

.qm-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(22,163,74,.10);
  color: #16a34a;
  font-size: 12px;
  font-weight: 900;
}

.qm-title{
  margin: 10px 0 6px;
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: -0.02em;
}

.qm-sub{
  margin: 0;
  color:#6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.qm-form{
  position: relative;
  z-index: 2;
  padding: 10px 18px 18px;
  display: grid;
  gap: 12px;
}

.qm-field{ display:block; }
.qm-label{
  display:block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  color:#111;
}

.qm-input{
  display:flex;
  align-items:center;
  gap:10px;
  border: 1px solid #e5e7eb;
  background:#fff;
  border-radius: 14px;
  padding: 12px 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.qm-ico{
  width: 26px;
  height: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  background:#f3f4f6;
  font-size: 14px;
  flex: 0 0 auto;
}

.qm-input input{
  width:100%;
  border:0;
  outline: none;
  font-size: 15px;
  font-weight: 700;
  color:#111;
  background: transparent;
}

.qm-input:focus-within{
  border-color: rgba(22,163,74,.45);
  box-shadow: 0 0 0 3px rgba(22,163,74,.14);
}

.qm-check{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  color:#374151;
  padding: 2px 2px;
}
.qm-check input{
  width: 16px;
  height: 16px;
}

.qm-submit{
  border:0;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #16a34a, #0ea5e9);
  color:#fff;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: -0.01em;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(14,165,233,.18);
  transition: transform .15s ease, filter .15s ease;
}

.qm-submit:active{ transform: translateY(1px); }
.qm-submit:hover{ filter: brightness(1.03); }

.qm-arrow{
  font-weight: 1000;
  opacity: .95;
}

.qm-mini{
  margin-top: 2px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  color:#6b7280;
  font-size: 12px;
}
.qm-mini .dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
}

/* 성공 화면 */
.qm-success{
  position: relative;
  z-index: 2;
  padding: 20px 18px 22px;
  text-align:center;
}

.qm-success-ico{
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  border-radius: 18px;
  background: rgba(22,163,74,.12);
  color:#16a34a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 26px;
  font-weight: 900;
}

.qm-success-title{
  font-size: 17px;
  font-weight: 1000;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

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

/* ===============================
   모바일 히어로 이미지
================================ */
.m-hero-image{
  position: relative;
  width: 100%;
  height: 320px;              /* 모바일에서 안정적인 높이 */
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.m-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* ❗ 안 찌그러지고 꽉 차게 */
  display: block;
}

/* 어두운 그라데이션 오버레이 */
.m-hero-image::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.65)
  );
}

/* 텍스트 영역 */
.m-hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 20px 16px;
  color:#fff;
}

.m-hero-badge{
  align-self:flex-start;
  background: rgba(22,163,74,0.9);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.m-hero-overlay h1{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1.2;
}

.m-hero-overlay p{
  margin: 0;
  font-size: 13px;
  opacity: .95;
}


/* ===============================
   모바일 네비게이션
================================ */
.m-nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 6px;
  padding: 10px 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.m-nav::-webkit-scrollbar{
  display: none;
}

.m-nav-item{
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #374151;
  text-decoration: none;
  background: #f3f4f6;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.m-nav-item:hover{
  background: #e5e7eb;
}

.m-nav-item.is-active{
  background: #16a34a;
  color: #fff;
}

/* ===============================
   하단 분할 CTA (레드)
================================ */
.m-cta-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 56px;
}

.cta-half{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#e11d2e;
  color:#fff;
  font-size:14px;
  font-weight:900;
  border:none;
  cursor:pointer;
  text-decoration:none; /* a 밑줄 제거 */
}

.cta-half svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

.cta-half.call{
  border-right:1px solid rgba(255,255,255,.35);
}

.cta-half:hover{
  filter: brightness(1.08);
}


/* ===============================
   하단 분할 CTA (블랙)
================================ */
.m-cta-split1{
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 56px;
}

.cta-half1{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#000000;
  color:#fff;
  font-size:14px;
  font-weight:900;
  border:none;
  cursor:pointer;
  text-decoration:none; /* a 밑줄 제거 */
}

.cta-half1 svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

.cta-half1.call{
  border-right:1px solid rgba(255,255,255,.35);
}

.cta-half:hover{
  filter: brightness(1.08);
}


/* 모바일 상단 고정 헤더 */
.m-header-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

/* 헤더 클릭 영역 */
.m-header-link{
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 14px;
  text-decoration: none;
  color: #111;
}

/* 로고 */
.m-logo{
  height: 35px;
}

/* 서브 문구 */
.m-sub{
  font-size: 13px;
  color: #808080;   /*  회색 */
  font-weight: 700;
}

/* 헤더 때문에 콘텐츠 가려지는 것 방지 */
body{
  padding-top: 56px;
}


/* ===============================
   FOOTER
================================ */
.site-footer{
  border-top: 1px solid #eee;
  background: #0b0b0b;
  color: rgba(255,255,255,0.86);
  margin-top: 60px;
}

.footer-inner{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 22px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-logo{
  height: 26px;
  width: auto;
  display:block;
  filter: brightness(1.05);
}

.footer-title{
  display:block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-sub{
  display:block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr 1.5fr 1fr;
  gap: 22px;
  padding: 18px 0 20px;
}

.footer-box{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 14px;
  background: rgba(255,255,255,0.04);
}

.footer-h{
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.footer-call{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 16px;
  font-weight: 1000;
  color: #fff;
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(225,29,46,0.92);
  box-shadow: 0 10px 18px rgba(225,29,46,0.22);
}
.footer-call:hover{ filter: brightness(1.06); }

.footer-small{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-list{
  margin: 0;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.footer-list li{ margin: 6px 0; }

.footer-links{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a{
  font-size: 12px;
  text-decoration:none;
  color: rgba(255,255,255,0.78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}
.footer-links a:hover{
  color:#fff;
  border-color: rgba(255,255,255,0.25);
}

.footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  color: rgba(255,255,255,0.62);
}

.footer-legal{
  display:flex;
  align-items:center;
  gap: 8px;
}
.footer-legal-link{
  color: rgba(255,255,255,0.72);
  text-decoration:none;
}
.footer-legal-link:hover{ color:#fff; }
.dot{ opacity: .5; }

/* 모바일/작은 화면 */
@media (max-width: 900px){
  .footer-inner{
    width: min(1180px, calc(100% - 28px));
    padding: 26px 0 18px;
  }
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===============================
   채널 편성표 영역
================================ */
.channel-section{
  padding: 60px 0;
  background: #f9fafb;
  border-top: 1px solid #eee;
}

.channel-inner{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.channel-title{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.channel-desc{
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
}

/* 이미지 박스 */
.channel-image-box{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* 채널 이미지 */
.channel-image-box img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* 모바일 */
@media (max-width: 900px){
  .channel-section{
    padding: 40px 0;
  }
  .channel-title{
    font-size: 22px;
  }
  .channel-desc{
    font-size: 13px;
  }
  .channel-inner{
    width: min(1180px, calc(100% - 28px));
  }
}


/* ===============================
   KT 알뜰폰 섹션
================================ */
.mvno-section{
  padding: 36px 0 20px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

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

/* 제목 */
.mvno-section .m-plan-title{
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 900;
  color: #16a34a;
}

/* 혜택 박스 */
.mvno-section .m-benefit{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 14px;
}

.mvno-section .m-benefit strong{
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.mvno-section .m-benefit ul{
  padding-left: 18px;
}

.mvno-section .m-benefit li{
  margin: 6px 0;
  line-height: 1.5;
}

/* 이미지 박스 */
.mvno-image-box{
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.mvno-image-box img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

