:root {
  color-scheme: dark;

  /* rend 무드 (다크 네이비 + 골드 + 글로우) */
  --bg: #060d1a;
  --bg-2: #0a1730;
  --surface: #102240;
  --surface-2: #16305a;
  --line: rgba(120, 165, 230, 0.16);
  --ink: #eaf2ff;
  --muted: #8ea4c6;
  --white: #ffffff;
  --blue: #2f70ff;
  --blue-2: #1c52e0;
  --cyan: #34d0ff;
  --gold: #ffd36b;
  --gold-2: #ffb03a;
  --violet: #7b6bff;
  --glow: rgba(47, 112, 255, 0.45);
  --shadow: 0 26px 70px rgba(2, 8, 20, 0.6);

  /* rend2 액센트 (스티커 하드 그림자) */
  --sticker: 8px 10px 0 rgba(0, 0, 0, 0.38);
  --sticker-sm: 5px 6px 0 rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 80% -5%, rgba(52, 208, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(6, 13, 26, 0.42), rgba(6, 13, 26, 0.66)),
    url("assets/back.webp") center top / cover no-repeat,
    var(--bg);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  word-break: keep-all;
}

/* ---------- Shared buttons (랜딩 + 관리자 공유) ---------- */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 0 22px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.button-primary {
  color: #04122e;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 32px rgba(255, 176, 58, 0.32);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  color: #04122e;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

/* Pulsing CTA glow */
.cta-pulse {
  position: relative;
}

.cta-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 196, 90, 0.55);
  animation: ctaPulse 2.1s ease-out infinite;
  pointer-events: none;
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 196, 90, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(255, 196, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 196, 90, 0); }
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(6, 13, 26, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: var(--sticker-sm), 0 6px 18px var(--glow);
}

.brand-name {
  font-size: 1.25rem;
}

.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  margin-right: 10px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.phone-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 4px solid var(--cyan);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-42deg);
}

.phone-icon::after {
  position: absolute;
  right: -6px;
  bottom: -3px;
  width: 8px;
  height: 11px;
  content: "";
  background: var(--cyan);
  border-radius: 8px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: #04122e;
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  box-shadow: var(--sticker-sm);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(22px, 3vw, 38px);
  width: min(1040px, calc(100% - 64px));
  margin: 0 auto;
  padding: 48px 0 36px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  width: 100%;
}

.paint-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  margin: 0;
  padding: 0 22px;
  color: #04122e;
  font-size: 1.05rem;
  font-weight: 900;
  background: var(--cyan);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  transform: rotate(-3deg);
  box-shadow: var(--sticker-sm), 0 0 28px rgba(52, 208, 255, 0.35);
}

.paint-tag .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #04122e;
  animation: ctaPulse 1.6s infinite;
}

.hero-art-wrap {
  width: 100%;
  margin: 4px 0 0;
}

.hero-art {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

.hero-bundle-art {
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
  margin-top: 18px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  gap: 8px 22px;
  margin-top: 16px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-stats > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-stats .stat-symbol {
  width: 18px;
  height: 18px;
}

.hero-label {
  margin: 6px 0 0;
  color: var(--cyan);
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.18);
}

.amount-line {
  display: block;
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 40px rgba(255, 176, 58, 0.28);
}

.support-word {
  display: inline-block;
}

/* ---------- 애니메이션 텍스트 히어로 ---------- */
.hero-title {
  display: grid;
  justify-items: center;
  gap: clamp(6px, 1.2vw, 14px);
  margin: 6px 0 2px;
  text-shadow: none;
}

.ht-kicker {
  display: inline-block;
  color: var(--cyan);
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 0 18px rgba(52, 208, 255, 0.35);
}

.ht-main {
  display: grid;
  justify-items: center;
  gap: clamp(2px, 0.6vw, 8px);
  line-height: 1.02;
}

.ht-line1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 18px);
  color: var(--ink);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 900;
}

.ht-amount {
  display: inline-block;
  font-size: clamp(3.6rem, 18vw, 7.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff3cf 0%, var(--gold) 38%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: amountGlow 2.4s ease-in-out infinite;
}

.ht-line2 {
  color: var(--white);
  font-size: clamp(2.7rem, 13.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.18), 0 0 26px rgba(52, 208, 255, 0.18);
}

.ht-line2 b {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  max-width: 740px;
  margin: clamp(8px, 1.4vw, 14px) auto 0;
  color: var(--ink);
  font-size: clamp(1rem, 2.1vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(7px, 1vw, 11px);
  margin: clamp(12px, 1.8vw, 20px) 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: clamp(7px, 1vw, 11px) clamp(12px, 1.6vw, 18px);
  color: var(--ink);
  font-size: clamp(0.9rem, 1.7vw, 1.18rem);
  font-weight: 800;
  background: rgba(10, 23, 48, 0.6);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero-points li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
}

.hero-points li.hl {
  color: #04122e;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255, 176, 58, 0.4);
}

.hero-points li.hl::before {
  content: "★";
  color: #04122e;
}

/* 진입 애니메이션 (스태거) */
.hero-anim > * {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-anim > .paint-tag {
  animation-name: heroFadeIn;
  animation-delay: 0.05s;
}

.hero-anim > .hero-title {
  animation-delay: 0.18s;
}

.hero-anim > .hero-desc {
  animation-delay: 0.34s;
}

.hero-anim > .hero-points {
  animation-delay: 0.48s;
}

.hero-anim > .hero-stats {
  animation-delay: 0.62s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes amountGlow {
  0%,
  100% {
    filter: drop-shadow(0 6px 28px rgba(255, 176, 58, 0.25));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 205, 100, 0.6));
    transform: scale(1.045);
  }
}

.hero-tagline {
  margin: 4px 0 0;
  padding-bottom: 10px;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.trust-row span {
  position: relative;
  width: 24px;
  height: 24px;
}

.trust-row span::before {
  position: absolute;
  left: 4px;
  top: 0;
  width: 10px;
  height: 20px;
  content: "";
  border-right: 5px solid var(--gold);
  border-bottom: 5px solid var(--gold);
  transform: rotate(42deg);
}

/* ---------- Phone slider (rend 기능 유지, 리스킨) ---------- */
.slider-section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 30px 0 50px;
}

.slider-section .slider {
  max-width: 360px;
  margin: 0 auto;
}

.slider {
  position: relative;
  width: 100%;
  margin-top: 12px;
}

.slider-stage {
  position: relative;
  height: 252px;
  display: grid;
  place-items: center;
}

.phone {
  position: absolute;
  width: 134px;
  height: 236px;
  border-radius: 26px;
  background: linear-gradient(160deg, #213a66 0%, #0e1f3c 100%);
  border: 2px solid rgba(150, 190, 255, 0.28);
  box-shadow: var(--shadow), 0 0 50px rgba(47, 112, 255, 0.28);
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  transition: opacity 500ms ease, transform 500ms ease;
  pointer-events: none;
}

.phone.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.phone .notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
}

.phone .phone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  background:
    radial-gradient(120px 80px at 50% 0%, rgba(52, 208, 255, 0.25), transparent 70%),
    linear-gradient(180deg, #0b1c38, #0a1730);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 16px 10px;
  text-align: center;
}

.phone .model {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
}

.phone .screen-amount {
  font-weight: 900;
  font-size: 1.4rem;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phone .screen-tag {
  display: inline-block;
  margin-top: 2px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 196, 90, 0.16);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
}

/* ---------- 가전 슬라이드 (스마트폰 아닌 형태) ---------- */
.phone.appliance {
  background: none;
  border: 0;
  box-shadow: none;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 10px;
}

.phone.appliance .model {
  color: var(--cyan);
  font-size: 0.95rem;
  font-weight: 800;
}

.phone.appliance .screen-amount {
  font-size: 2.1rem;
}

.appl-icon {
  position: relative;
  display: block;
  color: var(--cyan);
}

/* 에어컨 (벽걸이형) */
.appl-ac {
  width: 130px;
  height: 58px;
  border: 5px solid currentColor;
  border-radius: 14px;
}

.appl-ac::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  border-top: 4px solid currentColor;
}

.appl-ac::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 13px;
  width: 18px;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
}

/* 냉장고 (2도어) */
.appl-fridge {
  width: 82px;
  height: 128px;
  border: 5px solid currentColor;
  border-radius: 14px;
}

.appl-fridge::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: 42px;
  border-top: 4px solid currentColor;
}

.appl-fridge::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 16px;
  width: 5px;
  height: 16px;
  background: currentColor;
  border-radius: 3px;
  box-shadow: 0 40px 0 currentColor;
}

/* 세탁기 (드럼) */
.appl-washer {
  width: 106px;
  height: 114px;
  border: 5px solid currentColor;
  border-radius: 14px;
}

.appl-washer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border: 5px solid currentColor;
  border-radius: 50%;
}

.appl-washer::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 16px 0 0 currentColor;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(150, 185, 240, 0.3);
  transition: background 200ms ease, transform 200ms ease;
}

.slider-dots button.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

.slider-caption {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.slider-caption strong {
  color: var(--gold);
}

/* ---------- Consult card (rend2 카드 + rend 필드) ---------- */
.consult-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(22, 48, 90, 0.9), rgba(16, 34, 64, 0.92));
  border: 2px solid rgba(150, 190, 255, 0.22);
  border-radius: 18px;
  box-shadow: var(--shadow), var(--sticker);
  backdrop-filter: blur(8px);
}

.consult-card::before {
  position: absolute;
  inset: 9px;
  pointer-events: none;
  content: "";
  border: 2px dashed rgba(150, 190, 255, 0.18);
  border-radius: 12px;
}

.consult-card > * {
  position: relative;
  z-index: 1;
}

.consult-head {
  text-align: center;
}

.consult-head p {
  margin-bottom: 6px;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--ink);
}

.consult-head span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.consult-note {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem;
  color: #8a97ac;
}

.field {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
}

.label-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.user-icon {
  color: var(--blue);
}

.label-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.call-icon {
  color: var(--violet);
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(6, 13, 26, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input::placeholder {
  color: rgba(142, 164, 198, 0.7);
}

input:focus,
select:focus,
.chip:has(input:focus-visible),
.submit-button:focus-visible,
.header-cta:focus-visible,
.phone-link:focus-visible {
  border-color: var(--cyan);
  outline: 3px solid rgba(52, 208, 255, 0.35);
  outline-offset: 2px;
}

.product-field {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 2px 0 0;
  border: 0;
}

.product-field legend {
  margin-bottom: 8px;
  padding: 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  background: rgba(6, 13, 26, 0.5);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 160ms ease, background 160ms ease;
}

.chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.chip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1.2;
}

.chip span::before {
  width: 13px;
  height: 13px;
  content: "";
  border: 2px solid rgba(142, 164, 198, 0.55);
  border-radius: 50%;
}

.chip:has(input:checked) {
  color: #04122e;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: var(--gold);
}

.chip:has(input:checked) span::before {
  border-color: #04122e;
  background: #04122e;
  box-shadow: inset 0 0 0 3px var(--gold);
}

.chip.featured {
  grid-column: span 2;
}

.form-callout {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 2px 0;
  padding: 11px 14px;
  border: 1px dashed rgba(52, 208, 255, 0.5);
  border-radius: 12px;
  background: rgba(52, 208, 255, 0.07);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-callout b {
  color: var(--cyan);
}

.form-callout .clock {
  font-size: 1.05rem;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.checkbox-row a {
  color: var(--cyan);
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  margin-top: 4px;
  color: #04122e;
  font-size: 1.15rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  box-shadow: var(--sticker-sm), 0 14px 32px rgba(255, 176, 58, 0.3);
  transition: transform 160ms ease;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.submit-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.submit-icon {
  position: relative;
  width: 30px;
  height: 30px;
  background: #04122e;
  border-radius: 50%;
  flex: 0 0 auto;
}

.submit-icon::after {
  position: absolute;
  left: 9px;
  top: 9px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  transform: rotate(45deg);
}

.form-status {
  min-height: 20px;
  margin: 0;
  text-align: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.mini-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.mini-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mini-trust b {
  color: var(--ink);
}

/* ---------- 상담 폼: 화이트 카드 테마 ---------- */
.consult-card {
  background: #ffffff;
  border-color: rgba(31, 41, 64, 0.1);
  backdrop-filter: none;
  color: #16223c;
}

.consult-card::before {
  border-color: rgba(31, 41, 64, 0.12);
}

.consult-card .consult-head p {
  color: #16223c;
}

.consult-card .consult-head span {
  color: #5b6b86;
}

.consult-card .field-label {
  color: #16223c;
}

.consult-card input[type="text"],
.consult-card input[type="tel"] {
  color: #16223c;
  background: #f4f7fc;
  border-color: #d6deec;
}

.consult-card input::placeholder {
  color: #9aa7bd;
}

.consult-card input:focus {
  border-color: var(--cyan);
}

.consult-card .product-field legend {
  color: #16223c;
}

.consult-card .chip {
  color: #16223c;
  background: #f1f5fb;
  border-color: #d6deec;
}

.consult-card .chip span::before {
  border-color: #b9c4d8;
}

.consult-card .form-callout {
  color: #16223c;
  background: rgba(31, 121, 255, 0.08);
  border-color: rgba(31, 121, 255, 0.4);
}

.consult-card .form-callout b {
  color: #1f79ff;
}

.consult-card .checkbox-row {
  color: #5b6b86;
}

.consult-card .checkbox-row a {
  color: #1f79ff;
}

.consult-card .form-status {
  color: #1d7a3f;
}

.consult-card .mini-trust {
  color: #5b6b86;
}

.consult-card .mini-trust b {
  color: #16223c;
}

/* ---------- PC: 가로형 컴팩트 상담 폼 ---------- */
@media (min-width: 921px) {
  .hero {
    gap: clamp(16px, 2.2vw, 28px);
  }

  .consult-card {
    max-width: 960px;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 12px;
    padding: 20px 26px;
    align-items: start;
  }

  .consult-head,
  .product-field,
  .submit-button,
  .form-status {
    grid-column: 1 / -1;
  }

  .consult-head {
    text-align: left;
  }

  .consult-head p {
    margin-bottom: 3px;
    font-size: 1.3rem;
  }

  .consult-head span {
    font-size: 0.82rem;
  }

  .field {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
  }

  .field-label {
    min-height: 46px;
    font-size: 0.86rem;
  }

  .consult-card input[type="text"],
  .consult-card input[type="tel"] {
    min-height: 46px;
  }

  .product-field {
    margin-top: 2px;
  }

  .product-field legend {
    margin-bottom: 6px;
    font-size: 0.86rem;
  }

  .chip-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
  }

  .chip.featured {
    grid-column: auto;
  }

  .consult-card .chip {
    min-height: 40px;
    padding: 0 6px;
    font-size: 0.78rem;
  }

  .chip span {
    gap: 5px;
  }

  .chip span::before {
    width: 11px;
    height: 11px;
  }

  .checkbox-row {
    align-items: center;
    font-size: 0.78rem;
  }

  .submit-button {
    min-height: 54px;
    margin-top: 6px;
    font-size: 1.08rem;
  }
}

/* ---------- Bundle cards (rend2 시그니처) ---------- */
.section-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.bundle-section {
  padding: 18px 0 30px;
}

.bundle-stage {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr;
  align-items: center;
  gap: 12px;
}

.bundle-card {
  position: relative;
  display: grid;
  min-height: 196px;
  padding: 22px 16px 18px;
  place-items: center;
  overflow: hidden;
  text-align: center;
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: var(--sticker), inset 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.bundle-card::before {
  position: absolute;
  inset: 8px;
  content: "";
  border: 2px dashed rgba(255, 255, 255, 0.28);
  border-radius: 12px;
}

.sim-card {
  background: linear-gradient(145deg, #8558ff, #4b45df);
}

.internet-card {
  background: linear-gradient(145deg, #14d3da, #0780cf);
}

.tv-card {
  background: linear-gradient(145deg, #2f8dff, #1f53dc);
}

.bundle-card h2 {
  position: relative;
  z-index: 1;
  margin: 8px 0 4px;
  color: #ffe56c;
  font-size: 1.5rem;
  font-weight: 900;
}

.bundle-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 800;
}

.plus-mark {
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.product-visual {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 86px;
}

.sim-visual {
  width: 76px;
  height: 92px;
  background: #fff3c0;
  border: 4px solid #1f173f;
  border-radius: 8px;
  box-shadow: inset 0 0 0 6px #ffcf3f, 4px 5px 0 rgba(0, 0, 0, 0.2);
}

.sim-visual span,
.sim-visual::before,
.sim-visual::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(31, 23, 63, 0.45);
}

.sim-visual span {
  inset: 22px 12px 12px;
  border-radius: 4px;
}

.sim-visual::before {
  left: 21px;
  top: 0;
  width: 22px;
  height: 22px;
  border-top: 0;
}

.sim-visual::after {
  left: 12px;
  right: 12px;
  top: 47px;
  border-width: 1px 0 0;
}

.router-visual .antenna {
  position: absolute;
  bottom: 48px;
  width: 8px;
  height: 56px;
  background: #fff8d8;
  border: 3px solid #1f173f;
  border-radius: 8px;
}

.router-visual .antenna.left {
  left: 20px;
  transform: rotate(-4deg);
}

.router-visual .antenna.right {
  right: 20px;
  transform: rotate(4deg);
}

.router-body {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 5px;
  height: 48px;
  background: #fff2cf;
  border: 4px solid #1f173f;
  border-radius: 8px;
  box-shadow: inset 0 -9px 0 #b9dfff, 4px 5px 0 rgba(0, 0, 0, 0.2);
}

.router-body::before,
.router-body::after {
  position: absolute;
  top: 16px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
}

.router-body::before {
  right: 34px;
  background: var(--cyan);
}

.router-body::after {
  right: 14px;
  background: var(--gold);
}

.tv-visual {
  height: 76px;
  margin-top: 8px;
  background: linear-gradient(145deg, #196fff, #54d7ff);
  border: 5px solid #1f173f;
  border-radius: 8px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.24), 5px 6px 0 rgba(0, 0, 0, 0.2);
}

.tv-visual::after {
  position: absolute;
  left: 31px;
  right: 31px;
  bottom: -13px;
  height: 8px;
  content: "";
  background: #1f173f;
  border-radius: 8px;
}

.screen-play {
  position: absolute;
  left: 43px;
  top: 21px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.2));
}

/* ---------- Stats bar (rend2) ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1000px, calc(100% - 64px));
  margin: 6px auto 46px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.stats-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 18px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.stats-bar div + div {
  border-left: 1px solid var(--line);
}

.stat-symbol {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.lightning {
  background: var(--gold);
  clip-path: polygon(45% 0, 92% 0, 58% 42%, 86% 42%, 27% 100%, 42% 58%, 10% 58%);
}

.receiver {
  border: 5px solid var(--cyan);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-42deg);
}

.rocket {
  background: linear-gradient(135deg, #fff 0 55%, var(--gold) 55% 100%);
  clip-path: polygon(50% 0, 76% 18%, 88% 58%, 61% 48%, 52% 88%, 36% 88%, 40% 48%, 12% 58%, 24% 18%);
}

/* ---------- 실시간 LIVE 상담 카운터 ---------- */
.live-stat {
  gap: 6px;
}

.live-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4d4f;
  box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.6);
  animation: livePulse 1.5s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.55);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(255, 77, 79, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 79, 0);
  }
}

.live-tag {
  flex: 0 0 auto;
  padding: 1px 6px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  background: #ff4d4f;
  border-radius: 4px;
}

#liveCount {
  color: var(--cyan);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

#liveCount.tick {
  animation: countTick 0.5s ease;
}

@keyframes countTick {
  0% {
    color: var(--gold);
    transform: translateY(-1px);
  }
  100% {
    color: var(--cyan);
    transform: translateY(0);
  }
}

/* anchor offset for the sticky header */
#process,
#benefits,
#faq {
  scroll-margin-top: 88px;
}

/* ---------- Process strip (rend 내용 + rend2 카드) ---------- */
.process-band {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 23, 48, 0.5);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(16, 34, 64, 0.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--sticker-sm);
}

.process-item .p-num {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #04122e;
  font-weight: 900;
  font-size: 0.9rem;
}

.process-item .p-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(52, 208, 255, 0.08);
}

.process-item .p-icon svg {
  width: 22px;
  height: 22px;
}

.process-item h3 {
  margin: 0;
  font-size: 0.98rem;
}

.process-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* ---------- Benefits + FAQ ---------- */
.benefits {
  padding: 72px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.eyebrow {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #04122e;
  font-size: 0.84rem;
  font-weight: 900;
  background: var(--cyan);
  border-radius: 8px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.18;
  font-weight: 900;
}

.festival-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
}

.festival-img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.festival-row .slider {
  max-width: 360px;
  margin: 0 auto;
}

.festival-row .slider-stage {
  height: 380px;
}

.festival-row .phone {
  width: 184px;
  height: 326px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 34, 64, 0.6);
  box-shadow: var(--sticker-sm);
  text-align: center;
}

.round-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(52, 208, 255, 0.35);
  color: var(--cyan);
  background: rgba(52, 208, 255, 0.06);
}

.round-icon svg {
  width: 30px;
  height: 30px;
}

.benefit-card h3 {
  margin: 16px 0 8px;
  font-size: 1.12rem;
}

.benefit-card p,
.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

/* ---------- 추가 혜택 프로모 카드 ---------- */
.benefit-promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.promo-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 34, 64, 0.6);
  box-shadow: var(--sticker-sm);
}

.promo-card--gold {
  border-color: rgba(255, 176, 58, 0.5);
  background: linear-gradient(180deg, rgba(54, 42, 14, 0.5), rgba(16, 34, 64, 0.62));
  box-shadow: var(--sticker-sm), 0 0 30px rgba(255, 176, 58, 0.18);
}

.promo-num {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
  color: #04122e;
  background: linear-gradient(135deg, var(--cyan), #6fe0ff);
}

.promo-card--gold .promo-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.promo-body {
  display: grid;
  gap: 6px;
}

.promo-tag {
  display: inline-flex;
  align-self: start;
  margin: 0 0 2px;
  padding: 3px 10px;
  color: #04122e;
  font-size: 0.74rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 999px;
}

.promo-body h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 900;
}

.promo-amount {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--ink);
}

.promo-amount strong {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promo-desc {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.promo-desc b {
  color: var(--ink);
}

@media (max-width: 760px) {
  .benefit-promos {
    grid-template-columns: 1fr;
  }
}

.faq {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}

.faq h3 {
  margin: 0 0 6px;
}

details {
  border-top: 1px solid var(--line);
}

summary {
  padding: 15px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
}

details[open] summary::after {
  content: "−";
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(16px, 5vw, 64px) 110px;
  color: var(--muted);
  background: rgba(4, 9, 18, 0.6);
  border-top: 1px solid var(--line);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-org strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--cyan);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 0.84rem;
}

.privacy-link {
  align-self: start;
  border: 0;
  padding: 0;
  color: var(--cyan);
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 13, 26, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.sticky-cta .button {
  flex: 1;
}

/* ---------- Privacy modal ---------- */
.privacy-modal {
  width: min(680px, calc(100% - 32px));
  max-height: 86vh;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.privacy-modal[open] {
  display: flex;
  flex-direction: column;
}

.privacy-modal::backdrop {
  background: rgba(2, 8, 20, 0.7);
  backdrop-filter: blur(2px);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.privacy-body {
  margin-top: 14px;
  overflow-y: auto;
  padding-right: 8px;
}

.privacy-modal p {
  color: var(--muted);
  line-height: 1.65;
}

.privacy-body h3 {
  margin: 22px 0 8px;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
}

.privacy-body ul {
  margin: 0 0 4px;
  padding-left: 18px;
}

.privacy-body li {
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.privacy-body b {
  color: var(--ink);
  font-weight: 800;
}

.privacy-body .muted-note {
  font-size: 0.85rem;
  color: #7d8db0;
}

.icon-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    width: min(640px, calc(100% - 44px));
  }

  .festival-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-tagline {
    border-bottom: 0;
  }

  .consult-card {
    width: 100%;
  }

  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .phone-link {
    display: none;
  }

  .hero {
    width: calc(100vw - 36px);
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .amount-line {
    font-size: 3.2rem;
  }

  .slider-stage {
    height: 200px;
  }

  .phone {
    width: 124px;
    height: 202px;
  }

  .field {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .chip-grid {
    grid-template-columns: 1fr;
  }

  .chip.featured {
    grid-column: auto;
  }

  .bundle-section {
    width: 100%;
  }

  .bundle-stage {
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100vw - 36px);
    margin: 0 auto;
  }

  .plus-mark {
    display: none;
  }

  .bundle-card {
    min-height: 150px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    width: calc(100vw - 36px);
  }

  .stats-bar div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: flex;
  }

  .benefits {
    padding: 52px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-pulse::before,
  .paint-tag .dot,
  .ht-amount {
    animation: none;
  }

  .hero-anim > * {
    opacity: 1;
    animation: none;
  }

  .phone {
    transition: opacity 200ms ease;
  }
}
