/* 밝은내일 음향몰 — 메인 전용 프리미엄 커머스 (딥네이비 · 화이트 · 차콜) */

:root {
  --home-navy-950: #060d18;
  --home-navy-900: #0a1628;
  --home-navy-800: #0f2744;
  --home-navy-700: #14365a;
  --home-blue: #1e6bb8;
  --home-blue-bright: #2b8ef2;
  --home-charcoal: #1c2430;
  --home-text: #0f1419;
  --home-text-muted: #5c6570;
  --home-border: #e2e6ed;
  --home-surface: #ffffff;
  --home-surface-sub: #f4f6f9;
  --home-cta: #c45c1a;
  --home-cta-hover: #a74d15;
  --home-max: 1320px;
}

.page-home {
  --text: var(--home-text);
  --muted: var(--home-text-muted);
  background: var(--home-surface-sub);
  color: var(--home-text);
}

.page-home .skip-link:focus {
  color: #111;
}

.home-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container-wide {
  width: min(var(--home-max), calc(100% - 48px));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— 유틸 바 —— */
.util-bar {
  background: var(--home-navy-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.util-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
}

.util-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 18px;
}

.util-nav a {
  color: inherit;
  text-decoration: none;
  padding: 6px 0;
}

.util-nav a:hover {
  color: #fff;
}

.util-nav-end {
  justify-content: flex-end;
}

.util-muted {
  opacity: 0.55;
}

/* —— 메인 헤더 —— */
.commerce-header {
  background: var(--home-surface);
  border-bottom: 1px solid var(--home-border);
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.04);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--home-navy-900);
}

.header-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--home-navy-800), var(--home-blue));
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.25);
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.header-logo-name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.header-logo-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--home-text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-search {
  display: flex;
  align-items: stretch;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid var(--home-navy-800);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}

.header-search input {
  flex: 1;
  border: 0;
  border-radius: 0;
  padding: 14px 18px;
  font-size: 15px;
  background: #fff;
  color: var(--home-text);
  min-width: 0;
}

.header-search input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(43, 142, 242, 0.25);
}

.header-search input::placeholder {
  color: #8b939e;
}

.header-search-btn {
  cursor: pointer;
  border: 0;
  padding: 0 22px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(180deg, var(--home-blue-bright), var(--home-blue));
}

.header-search-btn:hover {
  filter: brightness(1.05);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.icon-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 52px;
  padding: 8px 6px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--home-charcoal);
  font-size: 11px;
  font-weight: 700;
  border: 1px solid transparent;
}

.icon-pill:hover {
  background: var(--home-surface-sub);
  border-color: var(--home-border);
  color: var(--home-navy-900);
}

.icon-pill--ghost {
  opacity: 0.65;
}

.icon-pill-glyph {
  font-size: 18px;
  line-height: 1;
  opacity: 0.85;
}

/* —— 프라이머리 내비 + 메가메뉴 —— */
.nav-primary-wrap {
  background: var(--home-navy-800);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-primary-inner {
  position: relative;
}

.nav-primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.nav-primary__item {
  position: static;
}

.nav-primary__item--mega {
  position: static;
}

.nav-primary__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-primary__link:hover,
.nav-primary__link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-primary__link--accent {
  color: #fff;
  background: rgba(43, 142, 242, 0.22);
}

.nav-primary__link--accent:hover {
  background: rgba(43, 142, 242, 0.32);
}

.nav-primary__trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid var(--home-border);
  border-top: 0;
  box-shadow: 0 24px 48px rgba(6, 13, 24, 0.14);
  z-index: 90;
}

.mega-panel[hidden] {
  display: none !important;
}

.mega-panel-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 24px 20px 28px;
}

.mega-col {
  padding: 0 16px;
  border-right: 1px solid var(--home-border);
}

.mega-col:last-child {
  border-right: 0;
}

.mega-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-navy-800);
  margin-bottom: 12px;
}

.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mega-list a {
  color: var(--home-text-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mega-list a:hover {
  color: var(--home-blue);
}

/* —— 히어로 —— 풀블리드 · 대형 (좌 카피 · 우 실사진) */
.hero-commerce {
  background: #0a1628;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-commerce-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #060d18;
  min-height: min(82vh, 780px);
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.hero-slides {
  position: relative;
  min-height: min(82vh, 780px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.2fr);
  min-height: min(82vh, 780px);
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-slide-copy {
  padding: clamp(36px, 5vw, 72px) clamp(32px, 4vw, 56px) clamp(52px, 7vh, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #03060c 0%, #0a1628 38%, #122a4a 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  min-width: 0;
}

.hero-slide-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
}

/* 관리자 숨김 진입: 시각 효과 없음, 연타 시 텍스트 선택만 줄임 */
.hero-slide-eyebrow[data-admin-ingress] {
  cursor: default;
  user-select: none;
  display: inline-block;
  padding: 2px 6px;
  margin-left: -6px;
  margin-top: -2px;
  border-radius: 6px;
}

.hero-slide-title {
  margin: 18px 0 0;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.12;
  color: #fff;
}

.hero-slide-strong {
  margin: 18px 0 0;
  font-size: clamp(17px, 1.75vw, 22px);
  font-weight: 800;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.95);
  max-width: 36ch;
}

.hero-slide-desc {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 46ch;
}

.hero-slide-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-slide-media {
  position: relative;
  min-height: min(82vh, 780px);
  background: #0a1628;
  min-width: 0;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  min-height: min(82vh, 780px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 10, 18, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.hero-nav:hover {
  background: rgba(43, 142, 242, 0.35);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-nav:focus-visible {
  outline: 2px solid var(--home-blue-bright);
  outline-offset: 3px;
}

.hero-nav--prev {
  left: calc(12px + env(safe-area-inset-left, 0px));
}

.hero-nav--next {
  right: calc(12px + env(safe-area-inset-right, 0px));
}

.hero-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 10, 18, 0.55) 0%, transparent 38%),
    linear-gradient(180deg, transparent 55%, rgba(5, 10, 18, 0.35) 100%);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  background: var(--home-cta);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(196, 92, 26, 0.35);
}

.btn-cta:hover {
  background: var(--home-cta-hover);
  color: #fff !important;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: transparent;
}

.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.hero-slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.5);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

/* —— 섹션 공통 —— */
.section-block {
  padding: 64px 0 72px;
}

.section-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-heading {
  margin: 0;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--home-navy-900);
}

.section-heading-btn{
  appearance:none;
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
  text-align:left;
}
.section-heading-btn:focus{outline:none}

.section-link-all {
  font-size: 14px;
  font-weight: 700;
  color: var(--home-blue);
  text-decoration: none;
}

.section-link-all:hover {
  text-decoration: underline;
}

.section-lead {
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--home-text-muted);
  max-width: 58ch;
  line-height: 1.6;
}

.section-quick {
  background: var(--home-surface);
  border-bottom: 1px solid var(--home-border);
}

.section-promo {
  background: var(--home-surface-sub);
}

.section-bestseller {
  background: var(--home-surface);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.section-brands {
  background: var(--home-surface-sub);
}

.section-use {
  background: var(--home-surface);
}

.section-trust {
  padding: 40px 0 48px;
  background: linear-gradient(180deg, #0a1628 0%, #060d18 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-dual {
  background: var(--home-surface-sub);
  border-top: 1px solid var(--home-border);
}

.section-about {
  background: linear-gradient(180deg, var(--home-navy-800), var(--home-navy-900));
  color: #fff;
  padding: 72px 0 80px;
}

.section-quote {
  background: var(--home-surface);
  border-top: 1px solid var(--home-border);
}

/* 퀵 카테고리 — 실사진 카드 */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.quick-card--photo {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  text-decoration: none;
  color: var(--home-charcoal);
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--home-border);
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

.quick-card--photo:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 22px 48px rgba(10, 22, 40, 0.14);
  border-color: rgba(43, 142, 242, 0.4);
}

.quick-card-photo {
  height: 132px;
  width: 100%;
  /* 외부 이미지 로딩 실패 대비: 항상 보이는 로컬 SVG 썸네일 */
  background-size: cover;
  background-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-card--photo:hover .quick-card-photo {
  transform: scale(1.08);
}

.quick-card-photo--spk {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='68%25'%20cy='32%25'%20r='70%25'%3E%3Cstop%20offset='0%25'%20stop-color='%232b8ef2'%20stop-opacity='.55'/%3E%3Cstop%20offset='55%25'%20stop-color='%230f2744'%20stop-opacity='.9'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M286%20136h228a34%2034%200%200%201%2034%2034v180a34%2034%200%200%201-34%2034H286a34%2034%200%200%201-34-34V170a34%2034%200%200%201%2034-34z'%20fill='rgba(255,255,255,.12)'%20stroke='rgba(255,255,255,.22)'%20stroke-width='4'/%3E%3Ccircle%20cx='400'%20cy='260'%20r='74'%20fill='rgba(255,255,255,.14)'%20stroke='rgba(255,255,255,.28)'%20stroke-width='4'/%3E%3Ccircle%20cx='400'%20cy='260'%20r='30'%20fill='rgba(255,255,255,.18)'/%3E%3Cpath%20d='M332%20382h136'%20stroke='rgba(255,255,255,.42)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3C/svg%3E");
}
.quick-card-photo--dm {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='60%25'%20cy='30%25'%20r='75%25'%3E%3Cstop%20offset='0%25'%20stop-color='%23c45c1a'%20stop-opacity='.55'/%3E%3Cstop%20offset='55%25'%20stop-color='%230f2744'%20stop-opacity='.92'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M206%20184h388a34%2034%200%200%201%2034%2034v132a34%2034%200%200%201-34%2034H206a34%2034%200%200%201-34-34V218a34%2034%200%200%201%2034-34z'%20fill='rgba(255,255,255,.12)'%20stroke='rgba(255,255,255,.22)'%20stroke-width='4'/%3E%3Cpath%20d='M244%20236h312'%20stroke='rgba(255,255,255,.35)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Cpath%20d='M244%20276h312'%20stroke='rgba(255,255,255,.26)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Cpath%20d='M244%20316h210'%20stroke='rgba(255,255,255,.22)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Ccircle%20cx='564'%20cy='316'%20r='20'%20fill='rgba(255,255,255,.22)'/%3E%3C/svg%3E");
}
.quick-card-photo--am {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='62%25'%20cy='30%25'%20r='80%25'%3E%3Cstop%20offset='0%25'%20stop-color='%239b5cff'%20stop-opacity='.55'/%3E%3Cstop%20offset='55%25'%20stop-color='%2314365a'%20stop-opacity='.92'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M206%20170h388a34%2034%200%200%201%2034%2034v160a34%2034%200%200%201-34%2034H206a34%2034%200%200%201-34-34V204a34%2034%200%200%201%2034-34z'%20fill='rgba(255,255,255,.12)'%20stroke='rgba(255,255,255,.22)'%20stroke-width='4'/%3E%3Cpath%20d='M246%20240v120'%20stroke='rgba(255,255,255,.34)'%20stroke-width='12'%20stroke-linecap='round'/%3E%3Cpath%20d='M306%20260v100'%20stroke='rgba(255,255,255,.28)'%20stroke-width='12'%20stroke-linecap='round'/%3E%3Cpath%20d='M366%20220v140'%20stroke='rgba(255,255,255,.38)'%20stroke-width='12'%20stroke-linecap='round'/%3E%3Cpath%20d='M426%20275v85'%20stroke='rgba(255,255,255,.22)'%20stroke-width='12'%20stroke-linecap='round'/%3E%3Cpath%20d='M486%20245v115'%20stroke='rgba(255,255,255,.30)'%20stroke-width='12'%20stroke-linecap='round'/%3E%3C/svg%3E");
}
.quick-card-photo--pm {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='60%25'%20cy='30%25'%20r='80%25'%3E%3Cstop%20offset='0%25'%20stop-color='%2300c2a8'%20stop-opacity='.55'/%3E%3Cstop%20offset='55%25'%20stop-color='%230f2744'%20stop-opacity='.92'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M230%20164h340a34%2034%200%200%201%2034%2034v176a34%2034%200%200%201-34%2034H230a34%2034%200%200%201-34-34V198a34%2034%200%200%201%2034-34z'%20fill='rgba(255,255,255,.12)'%20stroke='rgba(255,255,255,.22)'%20stroke-width='4'/%3E%3Cpath%20d='M278%20244h244'%20stroke='rgba(255,255,255,.34)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Cpath%20d='M278%20284h244'%20stroke='rgba(255,255,255,.24)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Ccircle%20cx='292'%20cy='332'%20r='18'%20fill='rgba(255,255,255,.22)'/%3E%3Ccircle%20cx='348'%20cy='332'%20r='18'%20fill='rgba(255,255,255,.22)'/%3E%3Ccircle%20cx='404'%20cy='332'%20r='18'%20fill='rgba(255,255,255,.22)'/%3E%3C/svg%3E");
}
.quick-card-photo--amp {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='60%25'%20cy='30%25'%20r='80%25'%3E%3Cstop%20offset='0%25'%20stop-color='%23ff2b6a'%20stop-opacity='.50'/%3E%3Cstop%20offset='55%25'%20stop-color='%2314365a'%20stop-opacity='.92'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M190%20208h420a34%2034%200%200%201%2034%2034v60a34%2034%200%200%201-34%2034H190a34%2034%200%200%201-34-34v-60a34%2034%200%200%201%2034-34z'%20fill='rgba(255,255,255,.12)'%20stroke='rgba(255,255,255,.22)'%20stroke-width='4'/%3E%3Ccircle%20cx='252'%20cy='272'%20r='22'%20fill='rgba(255,255,255,.22)'/%3E%3Cpath%20d='M320%20272h260'%20stroke='rgba(255,255,255,.34)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3C/svg%3E");
}
.quick-card-photo--mic {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='62%25'%20cy='30%25'%20r='80%25'%3E%3Cstop%20offset='0%25'%20stop-color='%23ffd24a'%20stop-opacity='.55'/%3E%3Cstop%20offset='55%25'%20stop-color='%230f2744'%20stop-opacity='.92'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M408%20158a54%2054%200%200%201%2054%2054v110a54%2054%200%200%201-108%200V212a54%2054%200%200%201%2054-54z'%20fill='rgba(255,255,255,.14)'%20stroke='rgba(255,255,255,.24)'%20stroke-width='4'/%3E%3Cpath%20d='M352%20306c0%2040%2032%2072%2072%2072s72-32%2072-72'%20fill='none'%20stroke='rgba(255,255,255,.34)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Cpath%20d='M424%20378v40'%20stroke='rgba(255,255,255,.34)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Cpath%20d='M386%20418h76'%20stroke='rgba(255,255,255,.34)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3C/svg%3E");
}
.quick-card-photo--wmic {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='62%25'%20cy='30%25'%20r='80%25'%3E%3Cstop%20offset='0%25'%20stop-color='%23a6ff4d'%20stop-opacity='.50'/%3E%3Cstop%20offset='55%25'%20stop-color='%2314365a'%20stop-opacity='.92'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M318%20190h164a40%2040%200%200%201%2040%2040v60a40%2040%200%200%201-40%2040H318a40%2040%200%200%201-40-40v-60a40%2040%200%200%201%2040-40z'%20fill='rgba(255,255,255,.12)'%20stroke='rgba(255,255,255,.22)'%20stroke-width='4'/%3E%3Cpath%20d='M538%20230c44%2028%2044%2084%200%20112'%20fill='none'%20stroke='rgba(255,255,255,.32)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Cpath%20d='M262%20230c-44%2028-44%2084%200%20112'%20fill='none'%20stroke='rgba(255,255,255,.22)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3C/svg%3E");
}
.quick-card-photo--set {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='62%25'%20cy='30%25'%20r='80%25'%3E%3Cstop%20offset='0%25'%20stop-color='%232b8ef2'%20stop-opacity='.40'/%3E%3Cstop%20offset='55%25'%20stop-color='%230a1628'%20stop-opacity='.95'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M248%20188h142a28%2028%200%200%201%2028%2028v76a28%2028%200%200%201-28%2028H248a28%2028%200%200%201-28-28v-76a28%2028%200%200%201%2028-28z'%20fill='rgba(255,255,255,.12)'%20stroke='rgba(255,255,255,.22)'%20stroke-width='4'/%3E%3Cpath%20d='M430%20188h122a28%2028%200%200%201%2028%2028v76a28%2028%200%200%201-28%2028H430a28%2028%200%200%201-28-28v-76a28%2028%200%200%201%2028-28z'%20fill='rgba(255,255,255,.10)'%20stroke='rgba(255,255,255,.18)'%20stroke-width='4'/%3E%3Cpath%20d='M248%20320h304'%20stroke='rgba(255,255,255,.32)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Cpath%20d='M248%20358h224'%20stroke='rgba(255,255,255,.22)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3C/svg%3E");
}
.quick-card-photo--brand {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='800'%20height='520'%20viewBox='0%200%20800%20520'%3E%3Cdefs%3E%3CradialGradient%20id='g'%20cx='60%25'%20cy='30%25'%20r='80%25'%3E%3Cstop%20offset='0%25'%20stop-color='%23c45c1a'%20stop-opacity='.45'/%3E%3Cstop%20offset='55%25'%20stop-color='%230f2744'%20stop-opacity='.92'/%3E%3Cstop%20offset='100%25'%20stop-color='%23060d18'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width='800'%20height='520'%20rx='36'%20fill='url(%23g)'/%3E%3Cpath%20d='M260%20208h280a34%2034%200%200%201%2034%2034v52a34%2034%200%200%1-34%2034H260a34%2034%200%200%1-34-34v-52a34%2034%200%200%1%2034-34z'%20fill='rgba(255,255,255,.12)'%20stroke='rgba(255,255,255,.22)'%20stroke-width='4'/%3E%3Cpath%20d='M296%20264h96'%20stroke='rgba(255,255,255,.34)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Cpath%20d='M296%20308h208'%20stroke='rgba(255,255,255,.24)'%20stroke-width='10'%20stroke-linecap='round'/%3E%3Ccircle%20cx='524'%20cy='308'%20r='18'%20fill='rgba(255,255,255,.20)'/%3E%3C/svg%3E");
}

.quick-card-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 12px 8px 14px;
}

/* 프로모션 그리드 */
.promo-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.promo-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-tile {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-tile--xl {
  min-height: 340px;
}

.promo-tile--md {
  flex: 1;
  min-height: 162px;
}

.promo-tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-tile-bg--dyn {
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.15) 0%, transparent 45%),
    url("https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1600&q=82") center / cover no-repeat,
    linear-gradient(125deg, #020810 0%, #0f2744 55%, #1e6bb8 100%);
}
.promo-tile-bg--yam {
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.55) 0%, rgba(120, 0, 0, 0.35) 100%),
    url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1400&q=82") 60% 40% / cover no-repeat,
    linear-gradient(135deg, #5c0000 0%, #e02020 38%, #0d0d0d 100%);
}
.promo-tile-bg--nexo {
  background:
    linear-gradient(200deg, rgba(0, 20, 40, 0.5) 0%, transparent 50%),
    url("https://images.unsplash.com/photo-1541984096-99e220811735?auto=format&fit=crop&w=1400&q=82") center / cover no-repeat,
    linear-gradient(135deg, #020a14 0%, #0f2744 40%, #2b8ef2 100%);
}
.promo-tile-bg--church {
  background: linear-gradient(160deg, #1a2838, #3d5a73);
}
.promo-tile-bg--event {
  background: linear-gradient(160deg, #0f2744, #c45c1a);
}
.promo-tile-bg--starter {
  background: linear-gradient(160deg, #1c2430, #5c6570);
}

.promo-tile-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.promo-tile-scrim--dense {
  background: linear-gradient(205deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.promo-tile-body {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.promo-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--home-cta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 92, 26, 0.45);
}

.promo-badge--yam {
  background: #fff;
  color: #b00000 !important;
  letter-spacing: 0.18em;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.promo-badge--nexo {
  background: linear-gradient(135deg, #2b8ef2, #0a4a8c);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 22px rgba(20, 80, 160, 0.45);
}

.promo-title {
  margin: 14px 0 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.promo-desc {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
  line-height: 1.55;
}

.promo-desc--compact {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.promo-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  background: #fff;
  color: var(--home-navy-900) !important;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.promo-btn--accent {
  background: linear-gradient(180deg, #ff8c42, var(--home-cta));
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 32px rgba(196, 92, 26, 0.5);
}

.promo-tile:hover .promo-btn {
  transform: translateY(-1px);
}

.promo-tile:hover .promo-btn--accent {
  box-shadow: 0 14px 40px rgba(196, 92, 26, 0.55);
}

.promo-row3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.promo-tile--sm {
  min-height: 140px;
}

.promo-title-sm {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.promo-btn-ghost {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 베스트 그리드 상품 카드 */
.product-grid--commerce {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.page-home .product-card--commerce {
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.25s ease;
}

.page-home .product-card--commerce:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(10, 22, 40, 0.14);
  border-color: rgba(43, 142, 242, 0.42);
}

.page-home .product-pill-new {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(196, 92, 26, 0.12);
  color: #a74d15;
  border: 1px solid rgba(196, 92, 26, 0.28);
}

.page-home .product-card--commerce .product-brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-text-muted);
}

.page-home .product-card--commerce .product-title {
  color: var(--home-navy-900);
  font-size: 17px;
  margin-top: 6px;
}

.page-home .product-card--commerce .product-tagline {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--home-text-muted);
}

.page-home .product-card--commerce .product-body {
  padding: 16px 18px 18px;
}

.page-home .product-card--commerce .product-bottom {
  margin-top: 14px;
  align-items: center;
}

.page-home .product-card--commerce .price {
  color: var(--home-navy-900);
  font-size: 18px;
  font-weight: 900;
}

.page-home .product-card--commerce .product-media {
  overflow: hidden;
}

.page-home .product-card--commerce .media-ph {
  height: 196px;
  border-radius: 0;
  border: 0;
  background-color: #e8ecf2;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home .product-card--commerce:hover .media-ph {
  transform: scale(1.04);
}

.page-home .product-card--commerce .actions--commerce {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.page-home .product-card--commerce .badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--home-navy-800);
  border-color: var(--home-border);
}

.page-home .product-card--commerce .badge-muted {
  color: var(--home-text-muted);
}

.page-home .product-card--commerce .badge-accent {
  background: rgba(43, 142, 242, 0.12);
  color: var(--home-blue);
  border-color: rgba(43, 142, 242, 0.25);
}

.page-home .product-card--commerce .btn-mini {
  border-color: var(--home-border);
  background: #fff;
  color: var(--home-charcoal);
}

.page-home .product-card--commerce .btn-mini:hover {
  border-color: var(--home-blue);
  color: var(--home-blue);
}

.page-home .btn-cta-mini {
  background: var(--home-navy-800) !important;
  border-color: var(--home-navy-800) !important;
  color: #fff !important;
}

.page-home .btn-cta-mini:hover {
  background: var(--home-navy-700) !important;
}

.page-home .btn-compare {
  font-weight: 800;
}

/* 브랜드 포커스 — 로고형 카드 */
.brand-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.brand-focus-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--home-border);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.25s ease;
}

.brand-focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(10, 22, 40, 0.1);
  border-color: rgba(43, 142, 242, 0.35);
}

.brand-focus-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.18);
}

.brand-focus-card[data-brand-key="dynacord"] .brand-focus-logo {
  background: linear-gradient(135deg, #003d7a, #0066cc);
}
.brand-focus-card[data-brand-key="yamaha"] .brand-focus-logo {
  background: linear-gradient(135deg, #8b0000, #e31837);
  font-size: 22px;
  font-weight: 950;
}
.brand-focus-card[data-brand-key="soundcraft"] .brand-focus-logo {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  font-size: 11px;
}
.brand-focus-card[data-brand-key="ah"] .brand-focus-logo {
  background: linear-gradient(135deg, #263238, #546e7a);
  font-size: 11px;
}
.brand-focus-card[data-brand-key="behringer"] .brand-focus-logo {
  background: linear-gradient(135deg, #e65100, #ff9800);
  font-size: 20px;
}
.brand-focus-card[data-brand-key="midas"] .brand-focus-logo {
  background: linear-gradient(135deg, #1a1a1a, #424242);
  font-size: 20px;
}
.brand-focus-card[data-brand-key="jbl"] .brand-focus-logo {
  background: linear-gradient(135deg, #ff6d00, #ff9100);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.brand-focus-card[data-brand-key="nexo"] .brand-focus-logo {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  font-size: 11px;
}

.brand-focus-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--home-navy-900);
}

.brand-focus-range {
  font-size: 13px;
  color: var(--home-blue);
  font-weight: 800;
  line-height: 1.35;
}

.brand-focus-desc {
  font-size: 13px;
  color: var(--home-text-muted);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 2px;
}

/* 용도별 — 현장 사진 + 큰 클릭 영역 */
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.use-card {
  position: relative;
  min-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px 26px;
  box-shadow: 0 16px 40px rgba(6, 13, 24, 0.12);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

.use-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 56px rgba(6, 13, 24, 0.2);
  border-color: rgba(255, 255, 255, 0.28);
}

.use-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.use-card:hover .use-card-bg {
  transform: scale(1.06);
}

.use-card-bg--1 {
  background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.75), rgba(30, 50, 70, 0.55)),
    url("https://images.unsplash.com/photo-1438232992991-995b7528c3b1?auto=format&fit=crop&w=1200&q=82");
}
.use-card-bg--2 {
  background-image: linear-gradient(135deg, rgba(5, 12, 24, 0.8), rgba(20, 60, 100, 0.5)),
    url("https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?auto=format&fit=crop&w=1200&q=82");
}
.use-card-bg--3 {
  background-image: linear-gradient(135deg, rgba(40, 15, 0, 0.75), rgba(80, 30, 0, 0.45)),
    url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=1200&q=82");
}
.use-card-bg--4 {
  background-image: linear-gradient(135deg, rgba(20, 18, 16, 0.82), rgba(60, 55, 50, 0.5)),
    url("https://images.unsplash.com/photo-1445116572660-236099ec97a0?auto=format&fit=crop&w=1200&q=82");
}
.use-card-bg--5 {
  background-image: linear-gradient(135deg, rgba(8, 16, 32, 0.82), rgba(40, 70, 100, 0.5)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1200&q=82");
}
.use-card-bg--6 {
  background-image: linear-gradient(135deg, rgba(5, 14, 28, 0.78), rgba(30, 90, 150, 0.45)),
    url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1200&q=82");
}

.use-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(4, 8, 14, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.use-card-title,
.use-card-sub {
  position: relative;
  z-index: 2;
}

.use-card-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.use-card-sub {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  line-height: 1.45;
}

/* 신뢰 — 아이콘형 4항목 */
.trust-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(43, 142, 242, 0.15);
  color: #7ec8ff;
}

.trust-badge__icon svg {
  display: block;
}

.trust-badge__label {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.trust-badge__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 600;
  line-height: 1.35;
}

/* 듀얼 카드 그리드 */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.card-grid-featured {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.page-home .card-grid-featured .card {
  border-radius: 8px;
  border: 1px solid var(--home-border);
  background: #fff;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.04);
}

.page-home .card-grid-featured .card .title {
  color: var(--home-navy-900);
}

.page-home .card-grid-featured .card .desc {
  color: var(--home-text-muted);
}

.page-home .card-grid-featured a.card:hover {
  border-color: rgba(43, 142, 242, 0.35);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.08);
}

/* 소개 패널 */
.about-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.about-title {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.about-lead {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
}

.about-visual {
  min-height: 200px;
  border-radius: 8px;
  background:
    radial-gradient(ellipse 80% 70% at 60% 40%, rgba(43, 142, 242, 0.35), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* 견적 */
.quote-commerce {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
  padding: 8px 0 16px;
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.quote-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(43, 142, 242, 0.16), transparent 55%);
  border: 1px solid rgba(10, 22, 40, 0.12);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.quote-step .n {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, var(--home-blue-bright), var(--home-blue));
  box-shadow: 0 10px 18px rgba(43, 142, 242, 0.25);
}

.quote-step .t {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--home-navy-900);
}

.quote-step .s {
  font-size: 12px;
  margin-top: 2px;
  color: var(--home-text-muted);
}

.quote-commerce-lead {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--home-text-muted);
  line-height: 1.65;
}

.quote-auto-hint {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(43, 142, 242, 0.1);
  border: 1px solid rgba(43, 142, 242, 0.22);
  font-size: 14px;
  font-weight: 750;
  color: var(--home-blue);
  line-height: 1.5;
}

.form-actions--quote {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.btn-cta-quote {
  min-width: 0;
  padding: 14px 18px !important;
  font-size: 15px !important;
  box-shadow: 0 16px 36px rgba(196, 92, 26, 0.35);
}

/* 홈 상담폼 버튼 톤 통일 */
.page-home .quote-form--commerce .form-actions--quote .btn {
  width: 100%;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-home .quote-form--commerce .form-actions--quote .btn-primary {
  border: 1px solid rgba(43, 142, 242, 0.28);
  background: linear-gradient(180deg, #2b8ef2, #1e6bb8);
  color: #fff;
  box-shadow: 0 18px 44px rgba(30, 107, 184, 0.25);
}

.page-home .quote-form--commerce .form-actions--quote .btn-primary:hover {
  filter: brightness(1.05);
}

.page-home .quote-form--commerce .form-actions--quote .btn-cta {
  border: 1px solid rgba(196, 92, 26, 0.28);
  background: linear-gradient(180deg, #d06a23, #c45c1a);
  color: #fff;
}

.page-home .quote-form--commerce .form-actions--quote .btn-cta:hover {
  filter: brightness(1.05);
}

.page-home .quote-form--commerce .form-actions--quote .btn-ghost-light {
  border: 1px solid rgba(10, 22, 40, 0.12);
  background: rgba(10, 22, 40, 0.04);
  color: var(--home-navy-900);
}

.page-home .quote-form--commerce .form-actions--quote .btn-ghost-light:hover {
  border-color: rgba(43, 142, 242, 0.35);
  background: rgba(43, 142, 242, 0.08);
  color: var(--home-blue);
}

@media (max-width: 720px) {
  .form-actions--quote {
    grid-template-columns: 1fr;
  }
}

.section-admin-banners {
  padding-top: 48px;
  padding-bottom: 8px;
}

.admin-banner-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.admin-banner-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-soft, 0 8px 24px rgba(15, 23, 42, 0.08));
}

.admin-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 10, 18, 0.75) 100%);
  pointer-events: none;
}

.admin-banner-card__body {
  position: relative;
  z-index: 1;
}

.admin-banner-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.admin-banner-card__sub {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.45;
}

.quote-commerce-bullets {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--home-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.quote-form--commerce {
  background:
    radial-gradient(ellipse 70% 55% at 75% 10%, rgba(43, 142, 242, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 16px;
  padding: 22px;
  box-shadow:
    0 24px 70px rgba(5, 10, 18, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.page-home .quote-form--commerce input,
.page-home .quote-form--commerce select,
.page-home .quote-form--commerce textarea {
  background: #fff;
  border-color: var(--home-border);
  color: var(--home-text);
}

.page-home .quote-form--commerce .check {
  color: var(--home-text);
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(10, 22, 40, 0.04);
  border: 1px solid rgba(10, 22, 40, 0.1);
}

.page-home .quote-form--commerce .check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--home-blue);
}

.page-home .quote-form--commerce .check .muted {
  color: var(--home-text-muted);
}

.page-home .quote-form--commerce input:focus,
.page-home .quote-form--commerce select:focus,
.page-home .quote-form--commerce textarea:focus {
  border-color: var(--home-blue);
  box-shadow: 0 0 0 3px rgba(43, 142, 242, 0.15);
}

.btn-ghost-light {
  border: 1px solid var(--home-border);
  background: #fff;
  color: var(--home-charcoal);
  border-radius: 4px;
  padding: 11px 16px;
  font-weight: 700;
  cursor: pointer;
}

.btn-ghost-light:hover {
  border-color: var(--home-blue);
  color: var(--home-blue);
}

/* 장점 섹션 */
.section-advantages {
  padding-top: 52px;
  padding-bottom: 18px;
}

.why-shell {
  border-radius: 18px;
  background:
    radial-gradient(ellipse 80% 75% at 65% 30%, rgba(43, 142, 242, 0.22), transparent 55%),
    linear-gradient(145deg, rgba(6, 13, 24, 0.95), rgba(10, 22, 40, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(5, 10, 18, 0.22);
  padding: 34px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.why-title {
  margin: 10px 0 0;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.25;
  color: #fff;
}

.why-lead {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
  max-width: 62ch;
}

.why-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.why-pill b {
  color: #fff;
}

.why-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-actions .btn {
  border-radius: 999px;
  padding: 12px 18px;
}

.why-right {
  display: grid;
  gap: 12px;
}

.why-card {
  border-radius: 14px;
  padding: 16px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-card-k {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #fff;
}

.why-card-ico {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(43, 142, 242, 0.18);
  border: 1px solid rgba(43, 142, 242, 0.26);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
}

.why-card-desc {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .quote-steps {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .quote-commerce {
    grid-template-columns: 1fr;
  }
  .why-shell {
    padding: 22px;
  }
}

/* 푸터 */
.footer-commerce {
  background: var(--home-navy-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-commerce-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-commerce-logo {
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-commerce-muted {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-commerce-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.footer-commerce-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.footer-commerce-links a:hover {
  color: #fff;
}

/* 비교 바 — 라이트 톤 위에 다크 바 */
.compare-bar--commerce {
  background: linear-gradient(180deg, var(--home-navy-900), var(--home-navy-950));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-bar--commerce .compare-title {
  color: #fff;
}

.compare-bar--commerce .compare-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
}

.compare-bar--commerce .compare-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.compare-bar--commerce .btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

.compare-bar--commerce .btn-ghost-light:hover {
  border-color: #fff;
  color: #fff;
}

/* Hide legacy home rules */
.page-home .site-header,
.page-home .hero,
.page-home .hero-bg,
.page-home .hero-trust,
.page-home .hero-panel {
  display: none;
}

/* 반응형 */
@media (max-width: 1200px) {
  .quick-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .product-grid--commerce {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .brand-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .header-search {
    max-width: none;
    order: 3;
    grid-column: 1 / -1;
  }
  .header-icons {
    justify-content: flex-start;
  }
  .hero-commerce-inner {
    width: 100%;
  }
  .hero-slider,
  .hero-slides {
    min-height: min(70vh, 620px);
  }
  .hero-slide-grid {
    grid-template-columns: 1fr;
    min-height: min(70vh, 620px);
    max-width: none;
  }
  .hero-slide-media {
    order: -1;
    min-height: 42vh;
  }
  .hero-slide-img {
    min-height: 42vh;
  }
  .hero-nav {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .hero-nav--prev {
    left: 8px;
  }
  .hero-nav--next {
    right: 8px;
  }
  .hero-slide-copy {
    padding: 28px 22px 36px;
  }
  .hero-slides {
    min-height: auto;
  }
  .hero-slide {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }
  .hero-slide.is-active {
    display: block;
  }
  .hero-slider {
    min-height: 0;
  }
  .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-panel-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-col {
    border-right: 0;
    border-bottom: 1px solid var(--home-border);
    padding-bottom: 16px;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-row3 {
    grid-template-columns: 1fr;
  }
  .product-grid--commerce {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dual-grid {
    grid-template-columns: 1fr;
  }
  .about-panel {
    grid-template-columns: 1fr;
  }
  .quote-commerce {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container-wide {
    width: calc(100% - 28px);
  }
  .nav-primary {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .nav-primary__link {
    white-space: nowrap;
  }
  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-grid--commerce {
    grid-template-columns: 1fr;
  }
  .brand-focus-grid {
    grid-template-columns: 1fr;
  }
  .use-grid {
    grid-template-columns: 1fr;
  }
  .trust-badges {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mega-panel-inner {
    grid-template-columns: 1fr;
  }
}
