/* Landing v2 — white + blue, clean, trust-forward
   Brand orange (from logo) used sparingly as accent */
@import url('colors_and_type.css');

:root {
  --brand-orange: #ea6a1f;   /* matches logo */
  --brand-orange-700: #c04f0a;
  --brand-orange-600: #d85a0e;
  --brand-orange-500: #ea6a1f;
  --brand-orange-400: #ff8a3d;
  --brand-orange-100: #fff1e6;
  --brand-orange-50:  #fff7f0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--fg-1);
  padding-bottom: max(84px, calc(72px + env(safe-area-inset-bottom, 0px)));
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.container { max-width: 560px; margin: 0 auto; padding: 0 20px; position: relative; }
.container-md { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.container-lg { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  min-height: 104px;
  height: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px max(16px, env(safe-area-inset-right, 0px)) 10px max(16px, env(safe-area-inset-left, 0px));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border-1);
}
.brand-lockup { display: inline-flex; align-items: center; gap: 0; }
.brand-lockup__logo,
.brand-lockup img {
  height: 84px;
  width: auto;
  max-width: min(78vw, 320px);
  display: block;
  object-fit: contain;
}
.site-header .phone-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--brand-orange-500); color: #fff;
  font-weight: 800; font-size: 13px;
  box-shadow: 0 4px 12px rgba(234,106,31,0.28);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

/* ---------- HERO (white + blue) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--brand-orange-50) 0%, transparent 70%),
    var(--white);
  padding: 56px 0 72px;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--border-1);
}
.hero-inner { text-align: center; position: relative; z-index: 1; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--brand-orange-100); color: var(--brand-orange-700);
  border: 1px solid rgba(234,106,31,0.25);
  font-weight: 800; font-size: 12px; letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--brand-orange-500); animation: pulseDot 1.4s infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--navy-900);
}
.hero h1 .blue { color: var(--brand-orange-500); }
.hero h1 .orange { color: var(--brand-orange-500); }
.hero h1 .stamp {
  display: inline-block;
  background: var(--brand-orange-500); color: #fff;
  padding: 2px 14px; border-radius: 10px;
  line-height: 1.15;
  box-shadow: 0 6px 18px rgba(234,106,31,0.35);
}
.hero-sub {
  font-size: 16px; color: var(--fg-2); line-height: 1.55;
  margin: 0 auto 22px; max-width: 440px;
  font-weight: 500;
}
.hero-chips { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-chips .chip {
  padding: 6px 12px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--border-1);
  font-size: 12.5px; font-weight: 700; color: var(--fg-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-chips .chip::before {
  content: '✓'; color: var(--brand-orange-500); font-weight: 900;
}
.hero-slam {
  display: inline-block; margin: 10px auto 22px;
  padding: 12px 18px; border-radius: 12px;
  background: #fff3eb; color: var(--brand-orange-700);
  border: 1.5px dashed var(--brand-orange-400);
  font-weight: 800; font-size: 14.5px; line-height: 1.4;
}
.hero-slam .big { font-size: 18px; color: var(--brand-orange-700); font-weight: 900; }
.hero-cta-row {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 22px; font-weight: 800; font-size: 15px; border-radius: 12px;
  line-height: 1; transition: all 0.15s ease; border: 0; cursor: pointer;
  font-family: var(--font-sans); text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary {
  background: var(--brand-orange-500); color: #fff;
  box-shadow: 0 10px 26px rgba(234,106,31,0.38);
}
.btn--primary:hover { background: var(--brand-orange-600); }
.btn--primary:active { background: var(--brand-orange-700); }
.btn--ghost {
  background: var(--white); color: var(--navy-900);
  border: 1.5px solid var(--border-2);
}
.btn--ghost:hover { border-color: var(--navy-900); }
.btn--block { width: 100%; }
.btn--xl { padding: 18px 26px; font-size: 16px; border-radius: 14px; }

/* ---------- TRUST BAR (light) ---------- */
.trust-light {
  background: var(--gray-50);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 28px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center;
}
.trust-light .num {
  font-family: var(--font-display); font-weight: 800;
  color: var(--brand-orange-600);
  font-size: clamp(24px, 6.5vw, 32px); line-height: 1; letter-spacing: -0.02em;
}
.trust-light .unit { color: var(--fg-2); font-size: 13px; font-weight: 700; margin-left: 2px; }
.trust-light .label { font-size: 12px; color: var(--fg-3); margin-top: 6px; font-weight: 500; }
.trust-divider {
  display: none;
}
@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(5, auto); justify-content: center; gap: 48px; }
}

/* ---------- SECTIONS ---------- */
section { padding: 72px 0; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; color: var(--brand-orange-600);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-kicker::before { content: ''; width: 22px; height: 2px; background: currentColor; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(24px, 5.2vw, 32px);
  line-height: 1.3; letter-spacing: -0.02em; margin: 0 0 10px;
  color: var(--navy-900);
}
.section-title .hl { color: var(--brand-orange-500); }
.section-title .stamp {
  display: inline-block; background: var(--brand-orange-500); color: #fff;
  padding: 0 10px; border-radius: 8px;
}
.section-sub { color: var(--fg-2); font-size: 15px; line-height: 1.55; margin: 0 0 28px; max-width: 560px; }

/* Subtle section alternator */
.bg-tint { background: var(--brand-orange-50); }
.bg-subtle { background: var(--gray-50); }

/* ---------- BRAND GRID ---------- */
.brand-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.brand-grid.four-col { grid-template-columns: repeat(2, 1fr); }
.brand-card {
  background: #fff; border: 1px solid var(--border-1); border-radius: 14px;
  aspect-ratio: 1.15;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.15s ease;
  position: relative;
  padding: 14px 10px;
}
.brand-card:hover { border-color: var(--brand-orange-500); box-shadow: 0 8px 20px rgba(234,106,31,0.15); transform: translateY(-2px); }
.brand-card .logo-slot {
  height: 36px; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.brand-card .logo-slot img { max-height: 100%; max-width: 88%; object-fit: contain; }
.brand-card .type {
  font-size: 11.5px; color: var(--fg-2); font-weight: 700; margin-top: 2px;
  text-align: center; line-height: 1.3;
}
.brand-card .deal {
  font-size: 11px; color: var(--brand-orange-600); font-weight: 800;
  background: var(--brand-orange-50); padding: 3px 8px; border-radius: 999px;
  display: inline-block;
}
.brand-card .ribbon {
  position: absolute; top: 8px; right: 8px;
  background: var(--brand-orange-500); color: #fff;
  padding: 3px 9px; border-radius: 999px; font-size: 10px; font-weight: 800;
  box-shadow: 0 4px 10px rgba(234,106,31,0.32);
}

/* ---------- BENEFITS (clean cards) ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.benefit-card {
  background: #fff; border: 1px solid var(--border-1); border-radius: 14px;
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.benefit-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-orange-100); color: var(--brand-orange-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900;
}
.benefit-card.hot {
  background: var(--brand-orange-500); color: #fff;
  border-color: var(--brand-orange-500);
  box-shadow: 0 12px 32px rgba(234,106,31,0.30);
}
.benefit-card.hot .icon { background: rgba(255,255,255,0.2); color: #fff; }
.benefit-card.hot .ttl { color: #fff; }
.benefit-card.hot .desc { color: #fff3eb; }
.benefit-card .ttl { font-weight: 800; font-size: 15px; color: var(--navy-900); line-height: 1.3; }
.benefit-card .desc { font-size: 13px; color: var(--fg-2); line-height: 1.45; }

/* ---------- COMPARE ---------- */
/* 비교표: 좁은 화면에서 가로 스크롤 */
.compare-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin: 0 -2px;
  padding: 0 2px 8px;
}

.compare-table {
  width: 100%; background: #fff; border: 1px solid var(--border-1); border-radius: 14px;
  overflow: hidden; border-collapse: separate; border-spacing: 0;
  box-shadow: 0 4px 12px rgba(10,19,48,0.05);
}
.compare-table thead th {
  background: var(--gray-50); font-size: 12px; font-weight: 700; color: var(--fg-2);
  padding: 14px 10px; text-align: center;
  border-bottom: 1px solid var(--border-1);
}
.compare-table thead th.us {
  background: var(--brand-orange-500); color: #fff;
}
.compare-table thead th.us .sub { display: block; font-size: 10.5px; opacity: 0.85; margin-top: 2px; font-weight: 600; }
.compare-table tbody td {
  padding: 14px 10px; font-size: 13.5px; text-align: center;
  border-bottom: 1px solid var(--border-1);
  color: var(--fg-2);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table td.row-label { text-align: left; font-weight: 700; color: var(--fg-1); background: var(--gray-50); }
.compare-table td.us-cell { background: var(--brand-orange-50); color: var(--navy-900); font-weight: 700; }
.compare-table .o { color: var(--brand-orange-600); font-weight: 900; margin-right: 3px; }
.compare-table .x { color: var(--gray-400); font-weight: 800; margin-right: 3px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff; border: 1px solid var(--border-1); border-radius: 12px;
  padding: 0; overflow: hidden; transition: border-color 0.15s ease;
}
.faq-item.open { border-color: var(--brand-orange-500); box-shadow: 0 4px 12px rgba(234,106,31,0.10); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; cursor: pointer;
  font-weight: 700; font-size: 14.5px; color: var(--navy-900);
  line-height: 1.4;
}
.faq-q .q-icon {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 999px;
  background: var(--brand-orange-100); color: var(--brand-orange-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; transition: transform 0.2s ease;
}
.faq-item.open .q-icon { transform: rotate(45deg); background: var(--brand-orange-500); color: #fff; }
.faq-a {
  padding: 0 20px 18px; font-size: 14px; color: var(--fg-2); line-height: 1.6;
  border-top: 1px dashed var(--border-1); padding-top: 16px; margin-top: -4px;
}

/* ---------- FORM ---------- */
.form-card {
  background: #fff; border: 1px solid var(--border-1); border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 18px 40px rgba(10,19,48,0.08);
}
.form-card .form-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 6px;
}
.form-card .form-header img { width: 40px; height: 40px; }
.form-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  margin: 0; color: var(--navy-900); letter-spacing: -0.02em;
}
.form-card .sub { color: var(--fg-2); font-size: 14px; margin: 0 0 20px; }
.form-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--brand-orange-500); color: #fff;
  font-size: 11.5px; font-weight: 800; margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(234,106,31,0.30);
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field > .lbl { font-size: 13px; font-weight: 700; color: var(--fg-1); }
.field > .lbl .req { color: var(--brand-orange-500); margin-left: 3px; }
.field > .hint { font-size: 11.5px; color: var(--fg-3); }
.inp {
  padding: 14px; border: 1.5px solid var(--border-2); border-radius: 10px;
  font-size: 16px; color: var(--fg-1); background: #fff;
  font-family: var(--font-sans); outline: none; transition: all 0.15s ease;
  min-height: 48px;
  box-sizing: border-box;
}
.inp::placeholder { color: var(--fg-3); }
.inp:focus { border-color: var(--brand-orange-500); box-shadow: 0 0 0 4px rgba(234,106,31,0.14); }
.pill-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.pill-group.cols-4 { grid-template-columns: repeat(2, 1fr); }
.pill-group.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pill {
  padding: 14px 10px; text-align: center; border: 1.5px solid var(--border-2);
  border-radius: 10px; font-size: 14px; font-weight: 700; color: var(--fg-2); cursor: pointer;
  background: #fff; transition: all 0.15s ease;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.pill:hover { border-color: var(--navy-900); }
.pill.on {
  background: var(--brand-orange-500); color: #fff; border-color: var(--brand-orange-500);
  box-shadow: 0 4px 12px rgba(234,106,31,0.26);
}
.subform {
  margin-top: 14px; padding: 18px; background: var(--brand-orange-50); border-radius: 12px;
  border: 1px solid rgba(234,106,31,0.15);
  display: flex; flex-direction: column; gap: 14px;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.consent {
  margin-top: 10px;
  font-size: 12px; color: var(--fg-3); line-height: 1.5;
  display: flex; gap: 8px; align-items: flex-start;
}
.consent input { margin-top: 3px; flex-shrink: 0; }
.form-success {
  background: var(--brand-orange-50); color: var(--brand-orange-700);
  padding: 20px; border-radius: 12px; text-align: center; font-weight: 700;
  border: 1px solid rgba(234,106,31,0.2); font-size: 15px;
}
.form-trust {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding-top: 14px; margin-top: 14px; border-top: 1px dashed var(--border-1);
  font-size: 11.5px; color: var(--fg-3);
}
.form-trust span { display: inline-flex; align-items: center; gap: 4px; }
.form-trust span::before { content: '✓'; color: var(--brand-orange-500); font-weight: 900; }

/* ---------- LIVE FEED ---------- */
.live-feed {
  background: #fff; border: 1px solid var(--border-1); border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(10,19,48,0.05);
}
.live-feed-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(180deg, #fff 0%, var(--brand-orange-50) 100%);
  border-bottom: 1px solid var(--border-1);
}
.live-feed-header .left { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; color: var(--navy-900); }
.live-dot {
  width: 8px; height: 8px; border-radius: 999px; background: #e23636;
  box-shadow: 0 0 0 0 rgba(226,54,54,0.6);
  animation: liveDot 1.4s infinite;
}
@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(226,54,54,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(226,54,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,54,54,0); }
}
.live-feed-header .count {
  font-size: 12px; color: var(--brand-orange-700); font-weight: 800;
  background: var(--brand-orange-100); padding: 4px 10px; border-radius: 999px;
}
.live-feed-list {
  max-height: 280px; overflow: hidden; position: relative;
  padding: 6px 0;
}
.live-feed-list::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40px;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}
.live-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px dashed var(--border-1);
  animation: liveIn 0.45s cubic-bezier(0.2,0.8,0.2,1);
}
.live-row:last-child { border-bottom: 0; }
@keyframes liveIn {
  from { opacity: 0; transform: translateY(-8px); background: var(--brand-orange-50); }
  to { opacity: 1; transform: translateY(0); background: transparent; }
}
.live-row .avatar {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--brand-orange-100); color: var(--brand-orange-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.live-row .body { flex: 1; min-width: 0; }
.live-row .line1 { font-size: 13.5px; color: var(--fg-1); font-weight: 600; line-height: 1.35; }
.live-row .line1 strong { color: var(--navy-900); font-weight: 800; }
.live-row .line1 .brand { color: var(--brand-orange-600); font-weight: 800; }
.live-row .line2 { font-size: 11.5px; color: var(--fg-3); margin-top: 2px; }
.live-row .status {
  font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 999px;
  flex-shrink: 0;
}
.live-row .status.applied { background: var(--brand-orange-100); color: var(--brand-orange-700); }
.live-row .status.done    { background: #e7f6ec; color: #1e8a4b; }

/* ---------- REVIEWS ---------- */
.review {
  background: #fff; border: 1px solid var(--border-1); border-radius: 14px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.review .stars { color: #f2b233; font-size: 14px; letter-spacing: 2px; }
.review .txt { font-size: 14px; color: var(--fg-1); line-height: 1.55; }
.review .meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--fg-3);
}
.review .meta strong { color: var(--fg-2); font-weight: 700; }
.review .tag {
  padding: 3px 9px; font-size: 11px;
  background: var(--brand-orange-100); color: var(--brand-orange-700);
  border-radius: 999px; font-weight: 700; white-space: nowrap;
}

/* 후기: PC 캐러셀(3열) / 모바일 세로 슬라이드 */
.reviews-desktop-only { display: none; }
.reviews-mobile-only { display: block; }

.review-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.review-carousel-track {
  display: flex;
  flex-direction: row;
  width: 100%;
  will-change: transform;
}
.review-carousel-page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  box-sizing: border-box;
  align-items: stretch;
}
.review-carousel-page .review {
  min-height: 168px;
  height: 100%;
}

.review-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.review-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--border-2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
}
.review-carousel-dot.is-active {
  background: var(--brand-orange-500);
  transform: scale(1.15);
}

.review-mobile-viewport {
  position: relative;
  min-height: 220px;
  max-height: 320px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 420px;
}
.review--slide-up {
  animation: reviewSlideUpMobile 0.55s cubic-bezier(0.25, 0.82, 0.25, 1) both;
}
.review--no-motion.review--slide-up {
  animation: none;
}
@keyframes reviewSlideUpMobile {
  from {
    transform: translateY(108%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ---------- PROCESS ---------- */
.process-steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
  counter-reset: step;
  background: #fff; border: 1px solid var(--border-1); border-radius: 16px; overflow: hidden;
}
.step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 20px;
  border-bottom: 1px solid var(--border-1);
}
.step:last-child { border-bottom: 0; }
.step .n {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--brand-orange-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(234,106,31,0.28);
}
.step .body { display: flex; flex-direction: column; gap: 4px; }
.step .ttl { font-weight: 800; font-size: 15.5px; color: var(--navy-900); }
.step .desc { font-size: 13px; color: var(--fg-2); line-height: 1.5; }

/* ---------- FAQ section padding like others ---------- */

/* ---------- FOOTER CTA ---------- */
.footer-cta {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, var(--brand-orange-100) 0%, transparent 70%),
    #fff;
  color: var(--navy-900);
  padding: 80px 0 40px;
  text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-1);
}
.footer-cta-inner { position: relative; z-index: 1; }
.footer-cta .logo-disc {
  width: 72px; height: 72px; margin: 0 auto 18px;
  background: #fff; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(234,106,31,0.25);
  border: 1px solid var(--brand-orange-100);
}
.footer-cta .logo-disc img { width: 52px; height: 52px; }
.footer-cta .urgency-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--brand-orange-500); color: #fff;
  font-weight: 800; font-size: 12.5px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(234,106,31,0.30);
}
.footer-cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 6vw, 34px); line-height: 1.3; margin: 0 0 12px;
  letter-spacing: -0.02em; color: var(--navy-900);
}
.footer-cta h2 .hl { color: var(--brand-orange-500); }
.footer-cta p.lead { color: var(--fg-2); margin: 0 0 24px; font-size: 15px; line-height: 1.5; }

.footer-meta {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--border-1);
  font-size: 12px; color: var(--fg-3); line-height: 1.7;
}
.footer-meta a { color: var(--fg-2); text-decoration: underline; }
.footer-links { display: flex; gap: 16px; justify-content: center; margin-top: 8px; }

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: #fff;
  border-top: 1px solid var(--border-1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex; gap: 10px; align-items: center;
  box-shadow: 0 -8px 24px rgba(10,19,48,0.10);
}
.sticky-cta .phone-btn {
  width: 52px; height: 52px; min-width: 48px; min-height: 48px; border-radius: 14px;
  background: var(--brand-orange-100); color: var(--brand-orange-700);
  border: 1px solid rgba(234,106,31,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.sticky-cta .btn { flex: 1; min-height: 48px; }

/* 신청 폼: 이름·연락처 — 모바일 1열 */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ---------- 모바일 우선 보강 ---------- */
@media (max-width: 719px) {
  section { padding: 52px 0; }
  .container,
  .container-md,
  .container-lg {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .site-header {
    height: auto;
    min-height: 92px;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .brand-lockup__logo,
  .brand-lockup img {
    height: 64px;
    max-width: min(78vw, 280px);
  }
  .hero { padding: 40px 0 56px; }
  .hero-slam { font-size: 13px; padding: 10px 14px; }
  .trust-light { padding: 22px 0; }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .trust-light .num { font-size: clamp(20px, 5.5vw, 28px); }
  .compare-scroll .compare-table { min-width: 520px; }
  .compare-table tbody td,
  .compare-table thead th { padding: 12px 8px; font-size: 12.5px; }
  .live-feed-list { max-height: 260px; }
  .live-row { padding: 10px 14px; flex-wrap: wrap; }
  .form-row-2 { grid-template-columns: 1fr; }
  .pill-group.cols-3 { grid-template-columns: 1fr; }
  .btn--xl { min-height: 52px; font-size: 15px; }
  .faq-q { padding: 16px 16px; font-size: 14px; }
  .footer-cta { padding: 56px 0 32px; }
  .review-mobile-viewport {
    min-height: 200px;
    max-height: 300px;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 720px) {
  .reviews-desktop-only { display: block; }
  .reviews-mobile-only { display: none; }

  .container { max-width: 720px; }
  .brand-grid.four-col { grid-template-columns: repeat(4, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .pill-group.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .step { border-bottom: 0; border-right: 1px solid var(--border-1); }
  .step:last-child { border-right: 0; }
  section { padding: 96px 0; }
}
