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

:root {
  --navy-950: #111111;
  --navy-900: #1a1a1a;
  --navy-800: #2a2a2a;
  --navy-700: #3a3a3a;
  --accent: #e81420;
  --accent-light: #ff3b45;
  --accent-muted: rgba(232, 20, 32, 0.08);
  --accent-border: rgba(232, 20, 32, 0.18);
  --blue-500: var(--accent);
  --blue-400: var(--accent-light);
  --sky-400: #20acc1;
  --gold-500: var(--accent);
  --gold-400: var(--accent-light);
  --gold-muted: rgba(232, 20, 32, 0.08);
  --ink-900: #141416;
  --ink-600: #5c5c66;
  --ink-400: #94949e;
  --paper-0: #ffffff;
  --paper-50: #f8f8f9;
  --paper-100: #f1f1f3;
  --line-100: #ececee;
  --line-200: #dddde2;
  --ok-500: #2d8a5e;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 2px 12px rgba(20, 20, 22, 0.04);
  --shadow-card: 0 4px 24px rgba(20, 20, 22, 0.06);
  --shadow-float: 0 8px 32px rgba(20, 20, 22, 0.14);
  --container: 1120px;
}

.icon { display: block; flex-shrink: 0; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;
  color: var(--ink-900);
  background: var(--paper-0);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Promo ribbon ---------- */
.promo-ribbon {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}
.promo-ribbon .track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  font-weight: 500;
  padding-left: 100%;
  letter-spacing: 0.02em;
}
.promo-ribbon .track span { display: inline-flex; align-items: center; gap: 8px; }
.promo-ribbon .track span::before {
  content: "";
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.promo-ribbon .track b { color: #fff; font-weight: 700; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-100);
}
.site-header .wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-img--footer {
  height: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.brand-sub {
  font-weight: 500;
  font-size: 10.5px;
  color: var(--ink-600);
  letter-spacing: 0.02em;
  text-transform: none;
}
.brand .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.brand small {
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-400);
  margin-left: 2px;
  letter-spacing: 0;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-600);
  transition: color .2s;
  position: relative;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--navy-900); }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--navy-900);
  border-radius: 1px;
}
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  line-height: inherit;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--navy-900); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 148px;
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: 8px;
  padding: 6px 0;
  box-shadow: 0 4px 16px rgba(20, 20, 22, 0.08);
  z-index: 300;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-600);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--paper-50);
  color: var(--navy-900);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-drawer-group {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border-top: none;
  border-bottom: none;
}
.nav-drawer-label {
  display: block;
  padding: 18px 20px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-400);
  letter-spacing: -0.02em;
}
.nav-drawer-sub {
  padding: 14px 20px 14px 28px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--ink-600) !important;
  border-bottom: none !important;
}
.nav-drawer-sub + .nav-drawer-sub {
  border-top: 1px solid var(--line-100) !important;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-channel-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-400);
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 6px 0;
  margin-right: 2px;
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}
.header-channel-link:hover,
.header-channel-link.is-active {
  color: var(--accent);
}
.page-clean .header-channel-link {
  font-size: 10.5px;
  color: var(--ink-400);
}
.tel-chip {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13.5px;
  color: var(--navy-900);
  padding: 9px 16px;
  border: 1px solid var(--line-200);
  border-radius: 999px;
  white-space: nowrap;
  background: var(--paper-0);
  transition: border-color .2s;
}
.tel-chip:hover { border-color: var(--navy-700); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: none; border-radius: 999px;
  padding: 11px 22px;
  font-weight: 600; font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover {
  transform: none;
  background: var(--accent-light);
  box-shadow: none;
}
.btn-gold {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 20, 32, 0.25);
}
.btn-gold:hover {
  transform: translateY(-1px);
  background: var(--accent-light);
  box-shadow: 0 6px 18px rgba(232, 20, 32, 0.32);
}
.btn-outline {
  background: #fff;
  border: 1px solid var(--line-200);
  color: var(--navy-900);
}
.btn-outline:hover { border-color: var(--navy-700); color: var(--navy-900); }
.btn-hero-outline {
  background: transparent;
  border: 1px solid var(--line-200);
  color: var(--navy-900);
}
.btn-hero-outline:hover { border-color: var(--navy-700); background: rgba(255,255,255,0.6); }
.btn-ghost { background: transparent; color: var(--ink-600); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 12px; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  border: none; background: none;
  flex-direction: column; justify-content: center; gap: 5px;
}
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--navy-900); margin: 0 auto; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fafafa 0%, #f5f4f1 55%, #f0eeea 100%);
  color: var(--ink-900);
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line-100);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  pointer-events: none;
}
.hero-orb.a { width: 500px; height: 500px; background: rgba(166, 139, 91, 0.12); top: -240px; right: -140px; }
.hero-orb.b { width: 360px; height: 360px; background: rgba(155, 35, 53, 0.06); bottom: -200px; left: -100px; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  color: var(--ink-600);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-200);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.hero h1 {
  font-size: 40px;
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink-900);
}
.hero h1 .grad {
  color: var(--accent);
  font-weight: 700;
}
.hero p.lead {
  margin-top: 22px;
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.75;
  max-width: 460px;
  font-weight: 400;
}
.hero-stats {
  display: flex; gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-100);
}
.hero-stats div strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.03em;
}
.hero-stats div span { font-size: 12px; color: var(--ink-400); margin-top: 4px; display: block; font-weight: 500; }
.hero-cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.hero-illust {
  position: relative;
  width: 200px;
  max-width: 55%;
  margin: 36px 0 0;
}
.hero-illust > svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 16px 40px rgba(20,20,22,0.1)); }
.hero-illust-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line-100);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; color: var(--navy-900);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.hero-illust-chip.c1 { top: -12px; right: -24px; }
.hero-illust-chip.c2 { bottom: -12px; left: -24px; }
.hero-illust-chip .icon { color: var(--gold-500); }
@media (max-width: 980px) {
  .hero-illust { display: none; }
}

.quick-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.quick-card h3 { font-size: 17px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; }
.quick-card .sub { font-size: 13px; color: var(--ink-400); margin-top: 6px; font-weight: 400; }
.quick-form { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qc-input, .qc-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line-200);
  background: var(--paper-50);
  color: var(--ink-900);
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.qc-input:focus, .qc-select:focus {
  outline: none;
  border-color: var(--navy-700);
  background: #fff;
}
.qc-input::placeholder { color: var(--ink-400); }
.qc-select option { color: #111; }
.qc-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-400);
  margin-top: 2px;
  line-height: 1.5;
}
.qc-agree input { flex-shrink: 0; margin-top: 2px; }
.qc-agree span { min-width: 0; }
.qc-agree a { text-decoration: underline; color: var(--ink-600); }
.quick-card .fine { font-size: 11px; color: var(--ink-400); margin-top: 14px; text-align: center; line-height: 1.6; }

/* ---------- Sections generic ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--paper-50); }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.section-head .tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.38;
  color: var(--navy-900);
}
.section-head p { margin-top: 14px; color: var(--ink-600); font-size: 15px; line-height: 1.75; font-weight: 400; }

.trust-bar {
  background: var(--navy-950);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.trust-bar .wrap {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px; font-weight: 500;
}
.trust-item strong { color: #fff; font-size: 14px; font-weight: 700; }

.tab-bar {
  display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line-200);
  background: #fff; font-weight: 500; font-size: 13.5px; color: var(--ink-600);
  transition: all .2s;
}
.tab-btn:hover { border-color: var(--navy-700); color: var(--navy-900); }
.tab-btn.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  overflow: visible;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--line-100);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-200);
}
.plan-card.featured {
  border-color: var(--line-200);
  box-shadow: var(--shadow-card);
}
.plan-card.featured::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--sky-400));
  border-radius: 0 0 2px 2px;
}
.plan-badge {
  position: absolute; top: -11px; left: 28px;
  background: var(--accent);
  color: #fff; font-size: 10.5px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.02em;
}
.plan-card .icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--paper-50);
  border: 1px solid var(--line-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--navy-900);
}
.plan-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.plan-card .desc { font-size: 13px; color: var(--ink-400); margin-top: 6px; line-height: 1.5; }
.plan-price { margin: 20px 0; display: flex; align-items: baseline; gap: 6px; }
.plan-price .original { font-size: 13px; color: var(--ink-400); text-decoration: line-through; }
.plan-price strong { font-size: 28px; font-weight: 700; color: var(--navy-900); letter-spacing: -0.03em; }
.plan-price span { font-size: 13px; color: var(--ink-600); font-weight: 500; }
.plan-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.plan-benefits li { display: flex; gap: 8px; font-size: 13px; color: var(--ink-600); align-items: flex-start; line-height: 1.5; }
.plan-benefits li::before { content: "·"; color: var(--accent); font-weight: 700; font-size: 16px; line-height: 1.2; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line-100);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: border-color .2s;
}
.why-card:hover { border-color: var(--line-200); }
.why-card .emoji {
  width: 48px; height: 48px; margin: 0 auto 16px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  background: var(--paper-50);
  border: 1px solid var(--line-100);
}
.why-card h4 { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.why-card p { font-size: 12.5px; color: var(--ink-400); margin-top: 8px; line-height: 1.65; }

.review-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.review-track::-webkit-scrollbar { height: 4px; }
.review-track::-webkit-scrollbar-thumb { background: var(--line-200); border-radius: 4px; }
.review-card {
  flex: 0 0 auto;
  width: min(300px, calc(100% - 24px));
  min-width: 0;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line-100);
  border-radius: var(--radius-md);
  padding: 26px;
}
.review-stars { color: var(--accent); font-size: 13px; letter-spacing: 3px; }
.review-card p.body { margin-top: 12px; font-size: 13.5px; color: var(--ink-600); line-height: 1.75; }
.review-meta { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 12px;
}
.review-meta .name { font-size: 13px; font-weight: 600; }
.review-meta .plan { font-size: 11.5px; color: var(--ink-400); }

.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line-100); border-radius: 12px; overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--line-200); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; font-weight: 600; font-size: 14px;
  border: none; background: none; width: 100%; text-align: left;
  color: var(--navy-900);
}
.faq-q .plus { font-size: 18px; color: var(--ink-400); transition: transform .2s; font-weight: 300; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--navy-900); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
  padding: 0 22px;
  font-size: 13.5px; color: var(--ink-600); line-height: 1.75;
}
.faq-item.open .faq-a { padding-bottom: 20px; }

.board-list { display: flex; flex-direction: column; }
.board-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 4px; border-bottom: 1px solid var(--line-100);
  transition: background .15s;
}
.board-row:hover { background: var(--paper-50); }
.board-row .b-tag {
  font-size: 10.5px; font-weight: 600; color: var(--accent);
  background: var(--accent-muted);
  padding: 4px 10px; border-radius: 4px; flex-shrink: 0;
  letter-spacing: 0.02em;
}
.board-row .b-title { font-size: 14px; font-weight: 500; flex: 1; color: var(--navy-900); }
.board-row .b-date { font-size: 12px; color: var(--ink-400); }
.board-row--btn {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.board-row--btn:hover { background: var(--paper-50); }

.hero-form-success {
  display: none;
  text-align: center;
  padding: 24px 8px 8px;
}
.hero-form-success .check {
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--accent-muted); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
}
.hero-form-success h4 { margin: 0 0 8px; font-size: 18px; color: var(--navy-900); }
.hero-form-success p { margin: 0; font-size: 14px; color: var(--ink-600); line-height: 1.6; }

.mypage-list { display: flex; flex-direction: column; gap: 12px; }
.mypage-item {
  padding: 18px 20px;
  border: 1px solid var(--line-100);
  border-radius: 10px;
  background: #fff;
}
.mypage-item-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.mypage-item-head strong { font-size: 15px; color: var(--navy-900); }
.mypage-status {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.mypage-status--new { background: #fff3cd; color: #856404; }
.mypage-status--contacted { background: #d1ecf1; color: #0c5460; }
.mypage-status--done { background: #d4edda; color: #155724; }
.mypage-item-meta { font-size: 13px; color: var(--ink-600); line-height: 1.6; }
.mypage-empty {
  text-align: center; padding: 48px 20px; color: var(--ink-400);
  border: 1px dashed var(--line-200); border-radius: 12px;
}

.cta-banner {
  background: linear-gradient(135deg, #c9101a 0%, var(--accent) 50%, #ff4d57 100%);
  border-radius: 20px;
  padding: 56px 48px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,165,116,0.12), transparent 70%);
}
.cta-banner h3 { font-size: 22px; font-weight: 700; position: relative; z-index: 1; letter-spacing: -0.02em; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-top: 10px; font-size: 14px; position: relative; z-index: 1; line-height: 1.6; }
.cta-banner .cta-actions { position: relative; z-index: 1; display: flex; gap: 10px; }
.cta-banner .btn-gold { background: #fff; color: var(--accent); box-shadow: none; }
.cta-banner .btn-gold:hover { background: var(--paper-50); box-shadow: none; }
.cta-banner .btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.countdown {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px; margin-top: 20px;
}
.countdown .cd-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; margin-right: 4px; }
.countdown .cd-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 8px 10px; min-width: 44px; text-align: center;
}
.countdown .cd-box strong { display: block; font-size: 18px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.countdown .cd-box span { font-size: 10px; color: rgba(255,255,255,0.5); }
.countdown .cd-colon { color: rgba(255,255,255,0.35); font-weight: 400; font-size: 16px; }

.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.45); padding: 0; }
.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-block { min-width: 0; }
.footer-tagline {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}
.footer-slogan {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}
.footer-contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-tel {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-contact-tel:hover { color: var(--accent-light); }
.footer-contact-hours { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { color: rgba(255,255,255,0.72); font-size: 12px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { font-size: 13px; margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.5); }
.footer-col a:hover { color: #fff; }
.footer-legal {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer-legal-list li {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}
.footer-legal-list li span {
  margin-right: 6px;
  color: rgba(255,255,255,0.32);
}
.footer-legal-list strong {
  color: rgba(255,255,255,0.62);
  font-weight: 600;
}
.footer-bottom { padding: 20px 0 28px; font-size: 11.5px; line-height: 1.8; color: rgba(255,255,255,0.32); }
.footer-disclaimer { margin: 0 0 10px; max-width: 920px; }
.footer-copy { margin: 0; color: rgba(255,255,255,0.28); }
.footer-bottom b { color: rgba(255,255,255,0.55); font-weight: 500; }

.float-stack {
  position: fixed; right: 24px; bottom: 96px; z-index: 300;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-float);
  border: none;
  position: relative;
  transition: transform .2s;
}
.float-btn:hover { transform: translateY(-2px); }
.float-btn.kakao { background: #fee500; color: #191600; }
.float-btn.tel { background: var(--accent); color: #fff; }
.float-btn.tel .ring {
  position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid rgba(20, 20, 22, 0.2);
  animation: ringPulse 3s infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  80% { transform: scale(1.2); opacity: 0; }
  100% { opacity: 0; }
}
.float-btn.top { background: #fff; color: var(--navy-900); border: 1px solid var(--line-200); opacity:0; pointer-events:none; transition:opacity .2s; box-shadow: var(--shadow-soft); }
.float-btn.top.show { opacity: 1; pointer-events: auto; }

.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-100);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(20, 20, 22, 0.06);
  gap: 10px;
}
.mobile-cta .btn { flex: 1; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(10, 10, 11, 0.5);
  display: none; align-items: flex-end; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-sheet {
  background: #fff; width: 100%; max-width: 440px;
  border-radius: 20px 20px 0 0;
  padding: 32px 28px 28px;
  max-height: 88vh; overflow-y: auto;
  animation: sheetUp .25s ease;
}
@media (min-width: 640px) {
  .modal-overlay { align-items: center; }
  .modal-sheet { border-radius: 20px; margin-bottom: 0; }
}
@keyframes sheetUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.modal-head h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.modal-sheet--notice .modal-head { align-items: flex-start; }
.notice-modal-tag {
  display: inline-block; margin-bottom: 8px;
  font-size: 10.5px; font-weight: 700; color: var(--accent);
  background: var(--accent-muted); padding: 4px 10px; border-radius: 4px;
}
.notice-modal-date { margin: 6px 0 0; font-size: 12px; color: var(--ink-400); }
.notice-modal-body {
  margin: 18px 0 20px; font-size: 14px; line-height: 1.75; color: var(--ink-600);
  white-space: pre-wrap;
}
.modal-close { background: none; border: none; font-size: 22px; color: var(--ink-400); }
.modal-sub { font-size: 13px; color: var(--ink-400); margin-bottom: 22px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-600); margin-bottom: 7px; }
.form-field input, .form-field select {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1px solid var(--line-200); font-size: 14px; font-family: inherit;
  background: var(--paper-50);
  transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--navy-700); background: #fff; }
.form-check { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--ink-600); margin: 16px 0; line-height: 1.5; }
.form-check a { text-decoration: underline; color: var(--ink-600); }
.modal-success { display: none; text-align: center; padding: 20px 0 6px; }
.modal-success .check {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(45, 138, 94, 0.08); color: var(--ok-500); font-size: 26px;
  display: flex; align-items: center; justify-content: center;
}
.modal-success h4 { font-size: 17px; font-weight: 700; }
.modal-success p { font-size: 13px; color: var(--ink-600); margin-top: 8px; line-height: 1.7; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .hero { padding: 48px 0 36px; }
  .hero h1 { font-size: 26px; }
  .hero p.lead { font-size: 14.5px; }
  .hero-stats { gap: 20px; }
  .hero-stats div strong { font-size: 20px; }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 22px; }
  .plan-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .trust-bar .wrap { justify-content: flex-start; }
  .cta-banner { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
  .cta-banner--plans-bg .cta-actions { align-self: stretch; margin-bottom: 0; }
  .footer-cols { gap: 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .mobile-cta { display: flex; }
  .float-stack { bottom: 84px; right: 16px; }
  .float-btn { width: 48px; height: 48px; }
  body { padding-bottom: 68px; }
  .tel-chip { display: none; }
  .header-channel-link { display: none; }
  .header-actions { gap: 8px; }
  .brand-img { height: 32px; }
  .brand-img--footer { height: 26px; }
  .quick-card { padding: 24px; }
}

/* ---------- Popup layer ---------- */
.popup-layer {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10, 10, 11, 0.55);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.popup-layer.open { display: flex; }
.popup-sheet {
  width: 100%; max-width: 360px;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  animation: sheetUp .25s ease;
}
.popup-sheet .popup-banner {
  background: linear-gradient(135deg, #c9101a, var(--accent) 55%, #ff4d57);
  color: #fff; padding: 32px 28px;
}
.popup-sheet .popup-banner .tag {
  display: inline-block; font-size: 10.5px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.popup-sheet .popup-banner h4 { font-size: 18px; font-weight: 700; line-height: 1.45; letter-spacing: -0.02em; }
.popup-sheet .popup-banner p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 10px; line-height: 1.65; }
.popup-body { padding: 24px 28px 28px; }
.popup-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px; border-top: 1px solid var(--line-100);
  font-size: 12px; color: var(--ink-400);
}
.popup-foot button { background: none; border: none; font-size: 12px; color: var(--ink-400); font-weight: 500; }
.popup-foot button:hover { color: var(--navy-900); }

/* ---------- Card row ---------- */
.card-row-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.card-row {
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line-100); border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: border-color .2s;
}
.card-row:hover { border-color: var(--line-200); }
.card-row-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: var(--paper-50); border: 1px solid var(--line-100);
  display: flex; align-items: center; justify-content: center; color: var(--navy-900);
}
.card-row-body { flex: 1; min-width: 0; }
.card-row-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.card-row-bank { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.02em; }
.card-row-tag { font-size: 10px; font-weight: 500; color: var(--ink-400); background: var(--paper-100); padding: 3px 8px; border-radius: 4px; }
.card-row-body h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.card-row-desc { font-size: 12.5px; color: var(--ink-400); margin-top: 4px; line-height: 1.6; }
.card-row-discount { flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--ok-500); text-align: right; white-space: nowrap; }
@media (max-width: 640px) {
  .card-row { flex-wrap: wrap; }
  .card-row-discount { width: 100%; text-align: left; padding-left: 62px; }
}

/* ---------- 채널편성표 ---------- */
.channel-groups { display: flex; flex-direction: column; gap: 16px; max-width: 840px; margin: 0 auto; }
.channel-group { background: #fff; border: 1px solid var(--line-100); border-radius: var(--radius-md); padding: 22px 24px; }
.channel-group h4 { font-size: 13.5px; font-weight: 600; color: var(--navy-900); margin-bottom: 14px; letter-spacing: -0.01em; }
.channel-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.channel-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 500; color: var(--ink-600);
  background: var(--paper-50); border: 1px solid var(--line-100);
  padding: 7px 12px; border-radius: 8px;
}
.channel-chip b { color: var(--navy-900); font-weight: 600; }

/* ---------- 로그인 / 회원가입 ---------- */
.auth-wrap { max-width: 400px; margin: 0 auto; }
.auth-card {
  background: #fff; border: 1px solid var(--line-100); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-soft);
}
.auth-card h2 { font-size: 20px; font-weight: 700; text-align: center; letter-spacing: -0.02em; }
.auth-card .sub { font-size: 13px; color: var(--ink-400); text-align: center; margin-top: 8px; margin-bottom: 28px; }
.auth-error { display: none; font-size: 12.5px; color: #b42318; background: #fef3f2; border: 1px solid #fecdca; border-radius: 8px; padding: 10px 14px; margin-bottom: 14px; }
.auth-error.show { display: block; }
.auth-foot { text-align: center; font-size: 13px; color: var(--ink-400); margin-top: 20px; }
.auth-foot a { font-weight: 600; color: var(--navy-900); }

.auth-chip { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--ink-600); }
.auth-chip a { color: var(--ink-600); }
.auth-chip a:hover { color: var(--navy-900); }
.auth-chip .divider { color: var(--line-200); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 350; display: none;
}
.nav-drawer.open { display: block; }
.nav-drawer .backdrop { position: absolute; inset: 0; background: rgba(10, 10, 11, 0.45); backdrop-filter: blur(2px); }
.nav-drawer .panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 82%; max-width: 320px;
  background: #fff;
  padding: 28px 8px 28px 8px;
  padding-top: max(28px, env(safe-area-inset-top));
  padding-bottom: max(28px, env(safe-area-inset-bottom));
  box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: slideIn .22s ease;
}
@keyframes slideIn { from { transform: translateX(30px); opacity:0;} to { transform: translateX(0); opacity:1;} }
.nav-drawer a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--line-100);
  color: var(--navy-900);
  line-height: 1.4;
}
.nav-drawer .panel > a:last-child { border-bottom: none; }

/* ========== Clean layout (kt-sky inspired) ========== */
.page-clean { background: #fff; }

/* ---------- 메인 홈 슬라이더 (헤더 아래 히어로) ---------- */
.home-slider {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-100);
}
.home-slider-viewport { overflow: hidden; }
.home-slider-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}
.home-slider-slide {
  flex: 0 0 100%;
  min-width: 100%;
  aspect-ratio: 1024 / 400;
}
.home-slider-slide .home-banner { height: 100%; border-bottom: none; }
.home-slider-slide .install-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  line-height: 0;
}
.home-slider-slide .install-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 721px) {
  .home-slider-slide {
    aspect-ratio: auto;
    height: 400px;
  }
  .home-slider-slide .install-banner-link {
    background: #f5f0e6;
  }
  .home-slider-slide:nth-child(2) .install-banner-link { background: #ff8c00; }
  .home-slider-slide:nth-child(3) .install-banner-link { background: #e8eef5; }
  .home-slider-slide .install-banner-img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .home-banner-inner { padding-top: 20px; padding-bottom: 20px; }
  .home-banner-copy h2 { font-size: clamp(26px, 2.4vw, 36px); }
  .home-banner-sub { margin-top: 12px; padding-top: 12px; font-size: clamp(15px, 1.4vw, 19px); }
  .home-banner-price { margin-top: 10px; font-size: clamp(14px, 1.2vw, 17px); }
}
.slide-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slide-banner-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.28);
  cursor: pointer;
}
.slide-banner-dot.is-active { background: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .home-slider-track { transition: none; }
}

/* ---------- 메인 홈 배너 (슬라이드 1) ---------- */
.home-banner {
  position: relative;
  border-bottom: 1px solid var(--line-100);
  background-color: #f5f0e6;
  overflow: hidden;
}
.home-banner-bg {
  position: absolute;
  inset: 0;
  background: #f5f0e6 url("../img/marketing/home-banner-living.png") right center / contain no-repeat;
}
.home-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.home-banner-copy { max-width: 560px; }
.home-banner-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.home-banner-sub {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 2px solid var(--accent);
  display: inline-block;
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.5;
}
.home-banner-price {
  margin: 16px 0 0;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--navy-900);
}
.home-banner-price strong {
  color: var(--accent);
  font-weight: 800;
}
@media (max-width: 720px) {
  .home-banner-bg {
    background-size: 118% auto;
    background-position: right -10px bottom;
    opacity: 0.5;
  }
  .home-banner-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .home-banner-copy { max-width: none; }
  .home-banner-copy h2 { font-size: clamp(20px, 5vw, 28px); }
  .home-banner-sub { margin-top: 10px; padding-top: 10px; font-size: clamp(13px, 3.4vw, 18px); }
  .home-banner-price { margin-top: 8px; font-size: clamp(12px, 3vw, 16px); }
}

/* ---------- Top ticker (site-wide promo bar) ---------- */
.top-ticker {
  position: sticky;
  top: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  height: 38px;
  background: var(--navy-900);
  border-bottom: none;
  overflow: hidden;
}
.top-ticker-badge {
  flex-shrink: 0;
  margin: 0 12px 0 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.top-ticker-track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.top-ticker-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;
  animation: topTickerScroll 24s linear infinite;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.top-ticker-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top-ticker-inner span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.top-ticker-inner span:first-child::before { display: none; }
.top-ticker-inner strong { color: #fff; font-weight: 700; }
.top-ticker-link {
  flex-shrink: 0;
  margin: 0 16px 0 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}
.top-ticker-link:hover { color: #fff; opacity: 0.85; }
.top-ticker-link::after { content: " ›"; }
@keyframes topTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.top-ticker + .site-header { top: 38px; }
@media (prefers-reduced-motion: reduce) {
  .top-ticker-inner { animation: none; }
}
@media (max-width: 640px) {
  .top-ticker-badge { margin-left: 12px; font-size: 10px; padding: 2px 6px; }
  .top-ticker-inner { font-size: 12px; gap: 40px; }
  .top-ticker-link { margin-right: 12px; font-size: 12px; }
}

.site-header {
  background: #fff;
  backdrop-filter: none;
  box-shadow: none;
}
.site-header .wrap { height: 76px; }
.brand-img { height: 50px; }

.quick-nav {
  background: #fff;
  border-top: 1px solid var(--line-100);
  border-bottom: 1px solid var(--line-100);
}
.quick-nav-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
}
.quick-nav-item {
  flex: 1;
  min-width: 72px;
  text-align: center;
  padding: 14px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-600);
  border-right: 1px solid var(--line-100);
  white-space: nowrap;
}
.quick-nav-item:last-child { border-right: none; }
.quick-nav-item:hover,
.quick-nav-item.is-accent { color: var(--accent); }

.nav-desktop a.active { color: var(--accent); }
.nav-desktop a.active::after { background: var(--accent); }
.nav-dropdown-trigger.active { color: var(--accent); }

.tel-chip--lg {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  border-color: var(--accent-border);
  background: #fff;
}

.hero--clean {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid var(--line-100);
}

/* 히어로: 왼쪽 사진 · 오른쪽 콘텐츠 */
.hero--split { padding: 0; }
.hero-split {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 32px;
  align-items: stretch;
  padding-top: 40px;
  padding-bottom: 36px;
}
.hero-split-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  justify-content: center;
}
.hero-split-content .hero-stats-row { margin-top: 0; }
.hero-split-content .quick-card {
  max-width: 360px;
  margin-left: auto;
  border: 1px solid var(--line-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.hero-split-visual {
  min-height: 560px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-50);
  border: 1px solid var(--line-100);
}
.hero-split-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-photo-scrim {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
}
.hero-promo-bar--overlay {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.92);
}
.hero-photo-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: end;
  padding: 28px 0 36px;
}
.hero--photo .hero-copy .hero-kicker,
.hero--photo .hero-copy h1,
.hero--photo .hero-copy .lead { color: var(--navy-900); }
.hero--photo .hero-copy .lead { color: var(--ink-600); }
.hero--photo .hero-stat {
  background: rgba(255, 255, 255, 0.95);
}
.quick-card--overlay {
  background: #fff;
  border: 1px solid var(--line-200);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.hero-points-wrap {
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line-100);
  background: #fff;
}
.hero-points-wrap .hero-points {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}
.hero-points-wrap .hero-points li {
  font-size: 13px;
  padding-left: 16px;
}

.hero-promo-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 11px 0;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line-100);
  background: var(--paper-50);
}
.hero-promo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--accent-border);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-promo-bar p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-600);
  flex: 1;
  min-width: 200px;
}
.hero-promo-bar p strong { color: var(--navy-900); font-weight: 700; }
.hero-promo-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-600);
  white-space: nowrap;
  text-decoration: none;
}
.hero-promo-link:hover { color: var(--accent); }

.hero-copy { min-width: 0; }
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.hero-stat {
  padding: 14px 12px;
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: 8px;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}
.hero-stat span {
  display: block;
  font-size: 11px;
  color: var(--ink-400);
  margin-top: 4px;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero--clean h1 {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
}
.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-points li {
  font-size: 14px;
  color: var(--ink-600);
  padding-left: 14px;
  position: relative;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.quick-card {
  border: 1px solid var(--line-200);
  border-radius: 12px;
  padding: 20px;
  box-shadow: none;
  background: #fff;
}
.quick-card h3 { font-size: 16px; }
.quick-card .sub { font-size: 12px; margin-top: 4px; }
.quick-form { margin-top: 16px; gap: 8px; }
.qc-input, .qc-select {
  background: #fff;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
}
.quick-card .fine { font-size: 10px; margin-top: 10px; }

.trust-bar--light {
  background: var(--paper-50);
  border-top: 1px solid var(--line-100);
  border-bottom: 1px solid var(--line-100);
  padding: 18px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.trust-pill {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-600);
  padding: 10px 8px;
  background: #fff;
  border: 1px solid var(--line-100);
  border-radius: 8px;
}

.trust-strip {
  background: #fff;
  border-top: 1px solid var(--line-200);
  border-bottom: 1px solid var(--line-200);
}
.trust-strip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--line-100);
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-muted);
  border-radius: 6px;
}
.trust-strip-text {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.trust-strip-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}

.section-plans {
  padding-top: 40px;
}
.section-head--left {
  text-align: left;
  max-width: none;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-100);
}
.section-head--left h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
}
.section-head--left p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-400);
}

.section { padding: 56px 0; }
.section--tight { padding: 48px 0; }
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: 24px; font-weight: 700; }
.section-head p { font-size: 14px; margin-top: 8px; }

.tab-bar {
  gap: 0;
  border: 1px solid var(--line-200);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #fff;
}
.tab-btn {
  flex: 1;
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--line-200);
  padding: 13px 12px;
  background: #fff;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active {
  background: var(--accent);
  color: #fff;
}

.plan-card--clean {
  border: 1px solid var(--line-200);
  border-radius: 12px;
  padding: 24px;
  box-shadow: none;
  overflow: visible;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.plan-card--clean:has(.plan-badge),
.plan-card--clean:has(.plan-popular-tag) {
  padding-top: 44px;
}
.plan-card--clean .plan-badge {
  top: 12px;
  left: 12px;
  z-index: 2;
}
.plan-card--clean:hover {
  transform: none;
  border-color: var(--accent-border);
  box-shadow: none;
}
.plan-card--clean.featured::before { display: none; }
.plan-card--clean.featured,
.plan-card--clean.is-popular {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232, 20, 32, 0.08);
}
.plan-popular-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  background: #fff;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  pointer-events: none;
}
.plan-popular-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.plan-discount {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.plan-price--clean {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 16px 0 8px;
}
.plan-price--clean strong {
  font-size: 26px;
  color: var(--accent);
}
.plan-note {
  font-size: 12px;
  color: var(--ink-400);
  margin-bottom: 14px;
}
.plan-benefits { margin-bottom: 18px; }
.btn { box-shadow: none !important; border-radius: 8px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.partner-card {
  margin-bottom: 16px;
}
.partner-card-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.partner-card-layout:hover {
  border-color: var(--line-200);
  box-shadow: none;
  transform: none;
}
.partner-card-layout.is-ended {
  opacity: 0.72;
  filter: grayscale(0.35);
}
.partner-card-layout.is-ended:hover {
  transform: none;
  box-shadow: none;
}
.partner-card-visual {
  perspective: 800px;
}
.credit-card-mock {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.partner-card-layout:hover .credit-card-mock {
  transform: none;
}
.credit-card-img,
.credit-card-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.credit-card-shine { display: none; }
.partner-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.partner-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.partner-status {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-muted);
  padding: 4px 10px;
  border-radius: 4px;
}
.partner-card-layout.is-ended .partner-status {
  color: var(--ink-400);
  background: var(--paper-100);
}
.partner-period {
  font-size: 12px;
  color: var(--ink-400);
}
.partner-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy-900);
}
.partner-bank { color: var(--accent); font-weight: 700; }
.partner-discount {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}
.partner-desc {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.6;
}
.partner-card-body .btn { align-self: flex-start; margin-top: 4px; }

.card-preview-strip {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 0 8px;
  min-height: 180px;
}
.card-preview-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.card-preview-item:nth-child(1) { transform: rotate(-8deg) translateY(8px); }
.card-preview-item:nth-child(2) { transform: rotate(-2deg); z-index: 2; }
.card-preview-item:nth-child(3) { transform: rotate(4deg); z-index: 3; }
.card-preview-item:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.05);
  z-index: 10;
}
.credit-card-mock--sm {
  width: 168px;
  transform: rotateY(-6deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.card-preview-item:hover .credit-card-mock--sm {
  transform: rotateY(0deg) scale(1.06);
}
.card-preview-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-600);
}
.card-preview-cta {
  text-align: center;
  margin-top: 20px;
}
.page-title--anim p {
  max-width: 560px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes cardShine {
  0%, 75% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes tabSwap {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 20, 32, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(232, 20, 32, 0); }
}

body.is-loaded .anim-fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--delay, 0s);
}
body.is-loaded .anim-scale-in {
  animation: scaleIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--delay, 0s);
}
.anim-card-float {
  animation: cardFloat 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.plan-grid.tab-swap .plan-card--clean {
  animation: tabSwap 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.plan-grid.tab-swap .plan-card--clean:nth-child(1) { animation-delay: 0.02s; }
.plan-grid.tab-swap .plan-card--clean:nth-child(2) { animation-delay: 0.06s; }
.plan-grid.tab-swap .plan-card--clean:nth-child(3) { animation-delay: 0.1s; }
.plan-grid.tab-swap .plan-card--clean:nth-child(4) { animation-delay: 0.14s; }
.plan-grid.tab-swap .plan-card--clean:nth-child(5) { animation-delay: 0.18s; }
.plan-grid.tab-swap .plan-card--clean:nth-child(6) { animation-delay: 0.22s; }

.quick-nav-item {
  transition: color 0.2s, background 0.2s;
}
.quick-nav-item:hover {
  background: var(--accent-muted);
}
.btn-primary {
  transition: transform 0.2s, background 0.2s;
}
.btn-primary:active {
  transform: scale(0.98);
}
.float-btn.tel .ring {
  animation: pulseSoft 2.5s ease-out infinite;
}

@media (max-width: 980px) {
  .hero-stats-row { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-scale-in, .anim-card-float,
  .credit-card-shine, .reveal, .plan-grid.tab-swap .plan-card--clean {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 720px) {
  .partner-card-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .partner-card-visual { max-width: 220px; margin: 0 auto; }
  .credit-card-mock { transform: none; }
  .partner-card-layout:hover .credit-card-mock { transform: scale(1.02); }
}

.cta-banner--plans-bg {
  background-color: #f5efe6;
  background-image: url("../img/marketing/cta-plans-bg.jpg");
  background-position: right center;
  background-size: cover;
  color: var(--navy-900);
  align-items: stretch;
  min-height: 240px;
}
.cta-banner--plans-bg .cta-actions {
  align-self: flex-end;
  margin-bottom: 12px;
}
.cta-banner--plans-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.94) 0%, rgba(245, 239, 230, 0.78) 44%, transparent 72%);
  pointer-events: none;
}
.cta-banner--plans-bg::after { display: none; }
.cta-banner--plans-bg > * { position: relative; z-index: 1; }
.cta-banner--plans-bg h3 { color: var(--navy-900); }
.cta-banner--plans-bg p { color: var(--ink-600); }
.cta-banner--plans-bg .countdown .cd-label { color: var(--ink-500, var(--ink-600)); }
.cta-banner--plans-bg .countdown .cd-box {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line-200);
}
.cta-banner--plans-bg .countdown .cd-box strong { color: var(--navy-900); }
.cta-banner--plans-bg .countdown .cd-box span { color: var(--ink-400); }
.cta-banner--plans-bg .countdown .cd-colon { color: var(--ink-400); }
.cta-banner--plans-bg .btn-gold { background: var(--accent); color: #fff; }
.cta-banner--plans-bg .btn-gold:hover { background: #d0121c; color: #fff; }
.cta-banner--plans-bg .btn-outline {
  background: #fff !important;
  color: var(--navy-900) !important;
  border-color: var(--line-200) !important;
}
.cta-banner--plans-bg .btn-outline:hover {
  border-color: var(--accent-border) !important;
  color: var(--accent) !important;
}

.cta-banner--clean {
  background: #fff;
  color: var(--navy-900);
  border: 1px solid var(--line-200);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: none;
}
.cta-banner--clean::after { display: none; }
.cta-banner--clean h3 { font-size: 20px; color: var(--navy-900); }
.cta-banner--clean h3 span { color: var(--accent); }
.cta-banner--clean p { color: var(--ink-600); }
.cta-banner--clean .btn-gold { background: var(--accent); color: #fff; }
.cta-outline {
  background: #fff !important;
  color: var(--navy-900) !important;
  border-color: var(--line-200) !important;
}

.page-clean .site-footer {
  background: #141414;
  color: rgba(255,255,255,0.5);
  border-top: 3px solid var(--accent);
}
.page-clean .footer-brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border-radius: 6px;
}
.page-clean .footer-brand .brand-img {
  filter: none;
  opacity: 1;
  height: 32px;
  width: auto;
  display: block;
}
.page-clean .footer-contact-tel { color: #fff; }

.float-stack { bottom: 88px; }
.float-btn { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.page-title {
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line-100);
  background: #fff;
}
.page-title h1 { font-size: 26px; font-weight: 700; }
.page-title p { margin-top: 10px; font-size: 14px; color: var(--ink-600); max-width: 640px; line-height: 1.7; }

/* ---------- 홈 마케팅 / 공식인증 ---------- */
.section-cert {
  padding: 48px 0;
  background: var(--paper-50);
}
.cert-panel {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line-100);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.06);
  overflow: hidden;
  position: relative;
}
.cert-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}
.cert-panel-body {
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cert-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.cert-heading {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1.35;
}
.cert-heading span {
  font-weight: 700;
  color: var(--ink-600);
}
.cert-official {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.6;
}
.cert-lead {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.6;
}
.cert-lead strong { font-weight: 700; }
.cert-note {
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.75;
  max-width: 560px;
}
.cert-meta-item--code {
  min-width: 200px;
  max-width: none;
}
.cert-meta-item--code dd {
  font-size: 28px;
  letter-spacing: 0.04em;
}
.cert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  justify-content: center;
}
.cert-meta-item {
  flex: 1;
  min-width: 148px;
  max-width: 220px;
  padding: 14px 18px;
  background: var(--paper-50);
  border: 1px solid var(--line-100);
  border-radius: 8px;
}
.cert-meta-item dt {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-400);
  letter-spacing: 0.02em;
}
.cert-meta-item dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.section-cert--home {
  padding-top: 24px;
  padding-bottom: 32px;
}

/* ---------- 홈 인트로 밴드 ---------- */
.intro-band {
  background: var(--paper-50);
  border-bottom: 1px solid var(--line-100);
}
.intro-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  padding: 36px 0 40px;
  flex-wrap: wrap;
}
.intro-band-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.intro-band-copy h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1.32;
}
.intro-band-desc {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--ink-600);
  line-height: 1.6;
  max-width: 520px;
}
.intro-band-cta { flex-shrink: 0; }

.plans-more {
  margin: 24px 0 0;
  text-align: center;
}

/* ---------- 서비스 비교 카드 ---------- */
.section-compare {
  padding: 48px 0 56px;
  background: #fff;
  border-top: 1px solid var(--line-100);
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compare-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.compare-card:hover {
  border-color: var(--line-200);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
}
.compare-card--accent {
  border-color: var(--accent-border);
  background: var(--paper-50);
}
.compare-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-400);
}
.compare-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.compare-desc {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.6;
}
.compare-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compare-list li {
  font-size: 13px;
  color: var(--ink-600);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.compare-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
  border-top: 1px solid var(--line-100);
  padding-top: 16px;
}
.compare-link:hover { color: var(--accent); }
.compare-link::after { content: " →"; }

@media (max-width: 980px) {
  .compare-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .intro-band-inner { flex-direction: column; align-items: flex-start; }
  .intro-band-cta { width: 100%; text-align: center; }
}

.section-marketing {
  padding: 40px 0 48px;
  background: var(--paper-50);
  border-top: 1px solid var(--line-100);
  border-bottom: 1px solid var(--line-100);
}
.marketing-head {
  text-align: center;
  margin-bottom: 28px;
}
.marketing-head h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
}
.marketing-head p {
  margin-top: 8px;
  font-size: 16px;
  color: var(--navy-900);
}
.marketing-head p strong { color: var(--accent); font-weight: 800; }
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mkt-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line-200);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  position: relative;
  transition: border-color 0.2s;
}
.mkt-card:hover { border-color: var(--accent); }
.mkt-card-top {
  flex: 1;
  min-height: 160px;
  position: relative;
  background-color: var(--paper-100);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.mkt-card-top--tv { background-image: url("../img/marketing/hero-banner.jpg"); background-position: center 40%; }
.mkt-card-top--internet { background-image: url("../img/marketing/internet.jpg"); }
.mkt-card-top--combo { background-image: url("../img/marketing/combo-living.jpg"); }
.mkt-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}
.mkt-card-top-inner {
  position: relative;
  z-index: 1;
  padding: 28px 20px 32px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mkt-card-top h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.mkt-card-top h3 span {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}
.mkt-card-top p {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.55;
}
.mkt-card-bottom {
  padding: 18px 16px;
  text-align: center;
}
.mkt-card-bottom p {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.mkt-card-bottom--red { background: var(--accent); }
.mkt-card-bottom--dark { background: var(--navy-900); }
.mkt-muted { opacity: 0.75; font-weight: 600 !important; }
.mkt-card--combo { position: relative; }
.mkt-plus {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  border: 3px solid #fff;
}

@media (max-width: 980px) {
  .trust-strip-list { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--line-100);
    padding: 16px;
  }
  .trust-strip-item:nth-child(odd) { border-right: 1px solid var(--line-100); }
  .trust-strip-item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .hero--clean h1,
  .hero--split .hero-copy h1 { font-size: 28px; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 36px;
    padding-bottom: 40px;
  }
  .hero-split-content {
    width: 100%;
    align-items: stretch;
    gap: 28px;
  }
  .hero-split-content .quick-card {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .hero-split-visual { min-height: 300px; }
  .hero-split-img { min-height: 300px; }
  .hero-photo-content {
    grid-template-columns: 1fr;
    padding: 20px 0 28px;
  }
  .hero-photo-banner { min-height: auto; }
  .hero-points-wrap .hero-points { grid-template-columns: 1fr; }
  .cert-panel-body { padding: 28px 24px 32px; }
  .cert-meta { justify-content: center; }
  .cert-meta-item { max-width: none; }
  .marketing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .quick-nav-item { font-size: 12.5px; padding: 12px 8px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
  .brand-img { height: 34px; }
  .section { padding: 40px 0; }
  .trust-strip-list { grid-template-columns: 1fr; }
  .trust-strip-item,
  .trust-strip-item:nth-child(odd) {
    border-right: none;
    border-bottom: 1px solid var(--line-100);
    padding: 14px 8px;
  }
  .trust-strip-item:last-child { border-bottom: none; }
  .tab-bar { flex-wrap: nowrap; overflow-x: auto; }
  .tab-btn { flex: 0 0 auto; min-width: 72px; }

  /* 히어로·상담 섹션: 세로 쌓임/플로팅 겹침 해소 */
  .hero--split .hero-copy h1 {
    font-size: 26px;
    line-height: 1.4;
  }
  .hero--split .hero-copy .lead {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-split {
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 36px;
  }
  .hero-split-content { gap: 28px; }
  .hero-kicker { margin-bottom: 12px; font-size: 12.5px; }
  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 22px;
  }
  .hero-stat {
    padding: 14px 6px;
    border-radius: 10px;
  }
  .hero-stat strong { font-size: 16px; }
  .hero-stat span {
    font-size: 10.5px;
    margin-top: 5px;
    line-height: 1.35;
  }
  .hero-split-content .quick-card {
    padding: 24px 20px;
    border-radius: 14px;
  }
  .hero-split-content .quick-card h3 { font-size: 17px; }
  .hero-split-content .quick-card .sub {
    margin-top: 6px;
    font-size: 13px;
  }
  .hero-split-content .quick-form {
    margin-top: 20px;
    gap: 12px;
  }
  .hero-split-content .qc-input,
  .hero-split-content .qc-select {
    padding: 14px 16px;
    font-size: 15px;
  }
  .hero-split-content .qc-agree {
    margin-top: 4px;
    gap: 10px;
  }
  .hero-split-content .quick-card .fine {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.65;
  }
  .hero-points-wrap {
    padding-top: 22px;
    padding-bottom: 28px;
  }
  .hero-points-wrap .hero-points { gap: 14px; }
  .hero-points-wrap .hero-points li {
    font-size: 13.5px;
    padding-left: 20px;
    line-height: 1.6;
  }
  /* 하단 바로 전화 가능 → 플로팅은 폼을 가리지 않게 정리 */
  .float-stack .float-btn.tel,
  .float-stack .float-btn.kakao { display: none; }
  .float-stack { bottom: 80px; right: 14px; }
  .quick-card { padding: 22px 18px; }
  .hero-promo-bar { gap: 8px; padding: 10px 0; }
  .hero-promo-bar p { font-size: 12.5px; min-width: 0; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-legal-list { flex-direction: column; gap: 6px; }
  .cta-banner--clean { flex-direction: column; align-items: flex-start; }
  .cert-meta { flex-direction: column; }
  .cert-meta-item { flex: 1 1 auto; max-width: none; }
}
