/* ════════════════════════════════════════════
   WHY PAGE — why.php
════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.why-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.why-bc {
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-bc a {
  font-size: 13px;
  color: var(--gray2);
  text-decoration: none;
  transition: color var(--transition);
}
.why-bc a:hover { color: var(--gold); }
.why-bc span {
  font-size: 13px;
  color: var(--gray2);
}
.why-bc-current { color: var(--white) !important; }

/* ── Hero ── */
.why-hero { padding: 72px 0 80px; }

/* page-hero-grid: 1fr 1fr from pages.css — used as-is */
.why-hero-left {}  /* uses .page-title, .page-desc, .btn-primary from pages.css */

.why-hero-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Featured big stat card */
.why-stat-featured {
  background: var(--black3);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.why-stat-featured::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.wsf-number {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.wsf-number span { font-size: 38px; opacity: 0.8; }
.wsf-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.wsf-sub {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* 2×2 mini stat grid */
.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.why-stat-mini {
  background: var(--black2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px 22px;
  transition: border-color var(--transition);
}
.why-stat-mini:hover { border-color: rgba(201,168,76,0.25); }
.wsm-number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.wsm-number span { font-size: 24px; }
.wsm-label {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── Why Different (카드형) ── */
.why-section {
  padding: 80px 24px;
  background: #ffffff;
}
.why-section .why-inner { max-width: 1100px; margin: 0 auto; }
.why-section .why-header { text-align: center; margin-bottom: 52px; }
.why-section .why-eyebrow {
  font-size: 12px;
  color: #c9a94e;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why-section .why-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 12px;
}
.why-section .why-subtitle { font-size: 15px; color: #666; }
.why-section .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.why-section .why-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-section .why-card:hover { border-color: #d0d0d0; transform: translateY(-2px); }
.why-section .card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.why-section .card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-section .card-icon svg { width: 20px; height: 20px; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.why-section .icon-blue { background: #EBF4FF; }
.why-section .icon-blue svg { stroke: #2563EB; }
.why-section .icon-green { background: #EDFAF3; }
.why-section .icon-green svg { stroke: #16A34A; }
.why-section .icon-amber { background: #FFF8EB; }
.why-section .icon-amber svg { stroke: #D97706; }
.why-section .card-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.why-section .badge-blue { background: #EBF4FF; color: #1D4ED8; }
.why-section .badge-green { background: #EDFAF3; color: #15803D; }
.why-section .badge-amber { background: #FFF8EB; color: #B45309; }
.why-section .card-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 6px; }
.why-section .card-desc { font-size: 13px; color: #666; line-height: 1.75; }
.why-section .why-cta {
  background: rgba(201,169,78,0.06);
  border: 1px solid rgba(201,169,78,0.3);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
}
.why-section .why-cta-title { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 8px; }
.why-section .why-cta-desc { font-size: 14px; color: #666; margin-bottom: 24px; }
.why-section .why-cta-btn {
  display: inline-block;
  background: #c9a94e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.3px;
}
.why-section .why-cta-btn:hover { background: #d4b55e; transform: translateY(-1px); }
@media (max-width: 900px) {
  .why-section .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section .why-title { font-size: 24px; }
}
@media (max-width: 540px) {
  .why-section .why-grid { grid-template-columns: 1fr; }
  .why-section { padding: 60px 16px; }
  .why-section .why-title { font-size: 22px; }
}

/* ── USP Grid ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.usp-card {
  background: var(--black2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.usp-card:hover { border-color: rgba(201,168,76,0.3); }

.usp-featured {
  background: var(--black3);
  border-color: rgba(201,168,76,0.2);
}
.usp-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}
.usp-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 3px 10px;
  border-radius: 1px;
  margin-bottom: 20px;
}
.usp-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.usp-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.usp-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
}
.usp-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: rgba(201,168,76,0.35);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Comparison Table ── */
.why-compare-section {
  background: var(--black);
  padding-top: 0;
}
.compare-note {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.7;
}
.compare-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.compare-table thead tr {
  background: var(--black3);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.compare-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ct-col-label { color: var(--gray2); width: 28%; }
.ct-col-us    { color: var(--gold); }
.ct-col-them  { color: var(--gray2); }

.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover      { background: rgba(255,255,255,0.02); }

.compare-table td { padding: 15px 24px; }
.ct-row-label {
  font-size: 13px;
  color: var(--gray);
}
.ct-yes {
  font-size: 14px;
  color: var(--white);
}
.ct-no {
  font-size: 14px;
  color: var(--gray2);
}
.ct-check {
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}
.ct-cross {
  color: rgba(255,255,255,0.18);
  margin-right: 8px;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .why-stat-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .compare-table th,
  .compare-table td { padding: 12px 16px; }
}

/* ══════════════════════════════════════════════════
   SECTION-LIGHT OVERRIDES — why.php
══════════════════════════════════════════════════ */
/* Comparison table */
.section-light .compare-note  { color: #6e6e73; }
.section-light .compare-wrap  { border-color: rgba(0,0,0,0.1); }
.section-light .compare-table thead tr { background: #e8e8ea; border-bottom-color: rgba(0,0,0,0.12); }
.section-light .ct-col-label  { color: #6e6e73; }
.section-light .ct-col-them   { color: #6e6e73; }
.section-light .compare-table tbody tr { border-bottom-color: rgba(0,0,0,0.05); }
.section-light .compare-table tbody tr:hover { background: rgba(0,0,0,0.02); }
.section-light .ct-row-label  { color: #6e6e73; }
.section-light .ct-yes        { color: #1d1d1f; }
.section-light .ct-no         { color: #6e6e73; }
.section-light .ct-cross      { color: rgba(0,0,0,0.2); }
