:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --bg-card: #ffffff;
  --line: #e0e0e0;
  --gold: #a51a0a;
  --gold-bright: #c8321f;
  --gold-deep: #6e1008;
  --red: #a51a0a;
  --red-bright: #c8321f;
  --cream: #ffffff;
  --text: #1a1a1a;
  --text-dim: #555555;
  --text-mute: #999999;
  --display: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', 'Segoe UI', sans-serif;
  --serif: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', 'Segoe UI', sans-serif;
  --body: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', 'Segoe UI', sans-serif;
  --num: 'Bebas Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.logo, .hero h1, .section-title, .compare-card .price, .compare-vs,
.marquee-card .name, .revenue-callout-headline, .stat .num, .comp-card .num,
.comp-card h3, .urgency h2, .menu-card h4, .review-stat .v,
.modal h3, .contact-aside h2 {
  font-weight: 800;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 그레인 텍스처 오버레이 — 라이트 테마에서 비활성 */

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
nav.scrolled { border-bottom-color: var(--line); }
nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--red); }
.nav-links .nav-cta {
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 2px;
  font-weight: 700;
  border: 1px solid var(--red-bright);
  transition: all .2s;
}
.nav-links .nav-cta:hover {
  background: var(--red-bright);
  color: #fff;
  transform: translateY(-1px);
}
.menu-toggle { display: none; font-size: 1.5rem; color: var(--text); }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px;
    border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.7) 100%),
    url('images/optimized/menu/three-set.webp') center/cover no-repeat;
  z-index: -1;
}
.hero .container { position: relative; z-index: 2; color: #fff; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #ffd700;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: #ffd700;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 28px;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--red-bright); }
.hero h1 .red { color: var(--red-bright); }
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 16px;
  line-height: 1.85;
  font-weight: 400;
}
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 44px;
}
.hero-main-cta {
  padding: 14px 52px;
  font-size: 1.1rem;
  border-radius: 8px;
}
.btn-primary {
  padding: 16px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
  border: 1px solid var(--red-bright);
  box-shadow: 0 4px 20px rgba(200, 50, 31, 0.3);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 50, 31, 0.45);
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: var(--num);
  font-size: 2.4rem;
  color: #ffd700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-meta-unit {
  font-size: 0.5em;
  color: rgba(255,255,255,0.7);
}
.hero-meta-item .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ============ SECTION COMMON ============ */
section { padding: 120px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--num);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-family: var(--serif);
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-head { margin-bottom: 70px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============ COST COMPARISON ============ */
.compare {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 50px;
}
.compare-card {
  padding: 50px 40px;
  border-radius: 8px;
  position: relative;
  text-align: center;
}
.compare-card.bad {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text-mute);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.compare-card.good {
  background: linear-gradient(140deg, #fff5f5, #fff0f0);
  border: 1px solid var(--red);
  box-shadow: 0 12px 40px rgba(200, 50, 31, 0.1);
}
.compare-card .label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.compare-card.good .label { color: var(--gold); }
.compare-card .price {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  margin-bottom: 12px;
}
.price-unit { font-size: 0.5em; }
.compare-card.bad .price { color: var(--text-mute); text-decoration: line-through; text-decoration-color: var(--red); }
.compare-card.good .price { color: var(--red); }
.compare-card .desc { font-size: 0.95rem; }
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--red-bright);
}
.compare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.compare-tag {
  padding: 8px 16px;
  border: 1px solid var(--gold-deep);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(200, 50, 31, 0.04);
  font-weight: 500;
}
@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { padding: 10px 0; }
}

/* ============ MENU MARQUEE ============ */
.marquee {
  padding: 60px 0;
  background: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-card {
  width: 320px;
  height: 220px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.marquee-card:hover img {
  transform: scale(1.06);
}
.marquee-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  pointer-events: none;
}
.marquee-card .name {
  font-family: var(--display);
  font-size: 1.15rem;
  color: #fff;
}
.marquee-card .tag {
  font-size: 0.75rem;
  color: #ffd700;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.marquee-track.reverse {
  animation-direction: reverse;
  margin-top: 20px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ REVENUE / DATA ============ */
.revenue { background: var(--bg); padding-bottom: 0; }
.revenue-callout {
  background: #fff;
  border-radius: 0;
  padding: 0 0 60px;
  margin-bottom: 0;
  text-align: center;
  position: relative;
}
.revenue-callout-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.revenue-callout-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 48px;
  line-height: 1.3;
}
.revenue-ba {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}
.revenue-ba-block {
  background: var(--bg-soft);
  border-radius: 0;
  padding: 40px 48px;
  flex: 1;
  min-width: 240px;
}
.revenue-ba-block.before {
  background: #1a1a1a;
  border-radius: 16px 0 0 16px;
}
.revenue-ba-block.before .ba-label { color: rgba(255,255,255,0.5); }
.revenue-ba-block.after {
  background: #fff0f0;
  border: 2.5px solid var(--red);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 8px 32px rgba(165,26,10,0.15);
  transform: scale(1.2);
}
.revenue-ba-block .ba-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.revenue-ba-block.after .ba-label { color: var(--red); font-size: 0.9rem; font-weight: 900; }
.revenue-ba-block .ba-num {
  font-family: var(--num);
  font-size: clamp(3rem, 6vw, 4.2rem);
  letter-spacing: 0.03em;
  font-weight: 900;
}
.revenue-ba-block .ba-num span {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.revenue-ba-block.before .ba-num { color: rgba(255,255,255,0.4); }
.revenue-ba-block.after .ba-num { color: var(--red); }
.revenue-note {
  color: var(--text-dim);
  margin-top: 36px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.revenue-note strong {
  color: var(--red);
  font-weight: 700;
}
.revenue-ba-arrow {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--red);
  margin: 0 calc(-50vw + 50%);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.stats-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px
  );
  pointer-events: none;
}
.stat {
  background: transparent;
  border: none;
  padding: 40px 32px;
  border-radius: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: none; }
.stat:hover { transform: none; box-shadow: none; }
.stat::before { display: none; }
.stat::after { display: none; }
.stat .num {
  font-family: var(--num);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.stat .num .unit { font-size: 0.4em; color: rgba(255,255,255,0.7); margin-left: 4px; }
.stat .stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.stat .stat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; margin: 0 -24px; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 36px 32px; }
  .stat:last-child { border-bottom: none; }
  .revenue-ba-block.before { border-radius: 16px 16px 0 0; }
  .revenue-ba-block.after { border-radius: 0 0 16px 16px; }
  .revenue-ba { flex-direction: column; }
  .revenue-ba-arrow { position: static; transform: none; margin: -26px auto; }
}

/* ============ TONGDOLI VIDEO ============ */
.tongdoli {
  background: #111;
  overflow: hidden;
}
.tongdoli-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.tongdoli-video {
  position: relative;
  overflow: hidden;
}
.tongdoli-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tongdoli-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  color: #fff;
}
.tongdoli-content .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.tongdoli-content h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 24px;
}
.tongdoli-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 32px;
}
.tongdoli-content p strong { color: #fff; }
.tongdoli-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tongdoli-tags span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 800px) {
  .tongdoli-wrap { grid-template-columns: 1fr; }
  .tongdoli-video { min-height: 300px; }
  .tongdoli-content { padding: 40px 24px; }
}

/* ============ STARTUP TYPES ============ */
.startup-types { background: var(--bg-soft); }
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.type-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.type-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(200,50,31,0.12);
}
.type-card .type-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.type-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
}
.type-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.type-card .type-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
@media (max-width: 700px) { .type-grid { grid-template-columns: 1fr; } }

/* ============ COMPETITIVENESS ============ */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.comp-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  transition: all .3s;
}
.comp-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
}
.comp-card .num {
  font-family: var(--num);
  font-size: 2.5rem;
  color: var(--red-bright);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  line-height: 1;
}
.comp-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 8px;
}
.comp-card .highlight {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(200, 50, 31, 0.06);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.comp-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; font-weight: 400; }
@media (max-width: 768px) { .comp-grid { grid-template-columns: 1fr; } }

/* ============ URGENCY BANNER ============ */
.urgency {
  background: linear-gradient(135deg, var(--red), #8a1f10);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0,0,0,0.06) 12px, rgba(0,0,0,0.06) 13px);
  pointer-events: none;
}
.urgency .container { position: relative; z-index: 1; }
.urgency-flag {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-weight: 900;
  padding: 8px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  border-radius: 30px;
}
.urgency h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.2;
}
.urgency-list {
  display: inline-flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}
.urgency-list li {
  list-style: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}
.urgency-list li::before {
  content: '✓';
  font-family: var(--display);
  color: #ffd700;
  font-size: 1.2rem;
}
.urgency-cta {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 18px 44px;
  border-radius: 8px;
  transition: all .25s;
  letter-spacing: 0.02em;
}
.urgency-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
@media (max-width: 600px) { .urgency-list { grid-template-columns: 1fr; } }

/* ============ MENU CARDS ============ */
.menu-section { background: var(--bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.menu-card {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
  position: relative;
}
.menu-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
}
.menu-card .img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.menu-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.menu-card:hover .img img {
  transform: scale(1.08);
}
.menu-card .body { padding: 22px; }
.menu-card .badge {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--red-bright);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 700;
}
.menu-card h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--text);
}
@media (max-width: 900px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .menu-grid { grid-template-columns: 1fr; } }

/* ============ REVIEWS / SOCIAL PROOF ============ */
.reviews { background: var(--bg-soft); }
.review-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-deep);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}
.review-stat { text-align: center; padding: 0 10px; }
.review-stat-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 26px;
  margin-bottom: 18px;
  border: 1px solid rgba(165, 26, 10, 0.26);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(165, 26, 10, 0.04);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.review-stat .v {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-bright);
  line-height: 1;
}
.review-stat .l {
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 6px;
  font-weight: 700;
}
.review-stat .d {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 4px;
}
@media (max-width: 600px) { .review-stats { grid-template-columns: 1fr; gap: 32px; } }

/* review screenshot marquee */
.review-screenshots {
  margin-bottom: 50px;
  padding: 6px 0;
  overflow: hidden;
}
.review-screenshots .marquee-track {
  animation-duration: 60s;
}
.review-screenshot {
  width: 320px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--line);
  transition: all .3s;
  background: #fff;
}
.review-screenshot:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
}
.review-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) { .review-screenshot { width: 300px; height: 450px; } }

/* full spread banner */
.menu-hero {
  margin-bottom: 60px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.menu-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.menu-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.menu-hero .overlay h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
}
@media (max-width: 600px) { .menu-hero img { height: 260px; } }


/* ============ WORRY CARDS ============ */
.diagnose {
  background: var(--bg-soft);
}
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.worry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: all .3s;
  cursor: default;
}
.worry-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(200,50,31,0.1);
  transform: translateY(-4px);
}
.worry-card .worry-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.worry-card .worry-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.worry-card .worry-answer {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
}
@media (max-width: 700px) { .worry-grid { grid-template-columns: 1fr; } }
.worry-bottom {
  margin-top: 50px;
  text-align: center;
}
.worry-bottom p {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.7;
}
.worry-bottom strong { color: var(--red); font-weight: 800; }

/* ============ CONTACT FORM ============ */
.contact { background: var(--bg); }
.contact-quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.contact-quick-links a {
  min-width: 150px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  transition: border-color .2s, color .2s, transform .2s;
}
.contact-quick-links a:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-aside {
  position: sticky;
  top: 100px;
}
.contact-aside h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-aside p {
  font-family: var(--serif);
  color: var(--text-dim);
  margin-bottom: 30px;
  line-height: 1.9;
}
.contact-aside .quote {
  padding: 32px;
  background: var(--bg-soft);
  border-left: 4px solid var(--red);
  font-family: var(--serif);
  color: var(--text);
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 2;
  border-radius: 0 8px 8px 0;
}
.contact-aside .quote em {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.contact-form {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 44px 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.form-decoy {
  position: absolute;
  left: -9999px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.field label .req { color: var(--red-bright); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .2s, box-shadow .2s;
}
.region-picker {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: 10px;
  color: var(--text-mute);
  font-family: inherit;
  font-size: 0.95rem;
  text-align: left;
  transition: border-color .2s, box-shadow .2s;
}
.region-picker.has-value {
  color: var(--text);
  font-weight: 600;
}
.region-picker:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(165,26,10,0.08);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(165,26,10,0.08);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-hint {
  margin-top: 6px;
  color: var(--text-mute);
  font-size: 0.78rem;
  line-height: 1.5;
}
.char-count { text-align: right; font-size: 0.75rem; color: var(--text-mute); margin-top: 4px; }
.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.consent input { width: 16px; height: 16px; accent-color: var(--red); }
.consent a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-trust {
  display: grid;
  gap: 6px;
  margin: -4px 0 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.5;
}
.form-trust p {
  position: relative;
  padding-left: 14px;
}
.form-trust p::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-submit:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(165,26,10,0.2);
}
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
}
@media (max-width: 520px) {
  .contact-quick-links { gap: 8px; }
  .contact-quick-links a {
    width: 100%;
    min-width: 0;
  }
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg-soft);
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
}
footer .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
footer .logo { margin-bottom: 16px; }
.footer-logo-img { height: 48px; }
.footer-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 380px;
}
footer .biz-info {
  font-size: 0.85rem;
  color: var(--text-mute);
  line-height: 1.9;
}
footer .biz-info strong { color: var(--text-dim); }
footer .copyright {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}
@media (max-width: 700px) { footer .container { grid-template-columns: 1fr; } }

/* ============ FLOATING CTA ============ */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  padding: 16px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 32px rgba(200, 50, 31, 0.45);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--red-bright);
  transition: all .3s;
}
.float-cta:hover {
  transform: scale(1.05);
  background: var(--red-bright);
}
.float-cta .pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
@media (max-width: 600px) {
  .float-cta {
    bottom: calc(42px + env(safe-area-inset-bottom));
    right: 16px;
    max-width: calc(100vw - 32px);
    min-height: 52px;
    padding: 13px 20px;
    font-size: 0.9rem;
    line-height: 1.2;
  }
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 50px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal .check-ic {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--display);
}
.modal h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 14px;
}
.modal p {
  color: var(--text-dim);
  font-family: var(--serif);
  margin-bottom: 30px;
  line-height: 1.8;
}
.modal-close {
  background: var(--gold);
  color: var(--bg);
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 2px;
}
.search-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.terms-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.region-modal {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: min(92vw, 520px);
  height: min(78vh, 620px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
.region-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.region-modal-head h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--text);
}
.region-modal-sub {
  color: var(--text-mute);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: -6px 0 16px;
}
.region-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
}
.region-search-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 14px;
}
.region-search-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(165,26,10,0.08);
}
.region-results {
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  padding-right: 4px;
  flex: 1;
  min-height: 0;
}
.region-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  text-align: left;
}
.region-option:hover,
.region-option:focus {
  background: #fff0f0;
  color: var(--red);
  outline: none;
}
.region-option .region-sido {
  color: var(--text-mute);
  font-size: 0.82rem;
  font-weight: 700;
}
.region-empty {
  padding: 28px 14px;
  color: var(--text-mute);
  text-align: center;
  background: var(--bg-soft);
  border-radius: 10px;
}
.terms-modal {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 560px;
  width: min(92vw, 560px);
  max-height: min(82vh, 680px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
.terms-content {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
  color: var(--text-dim);
  line-height: 1.55;
}
.terms-content section {
  padding: 0 0 10px;
  position: static;
  border-bottom: 1px solid var(--line);
}
.terms-content section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.terms-content h4 {
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.terms-content p {
  font-size: 0.92rem;
}
.terms-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.terms-decline,
.terms-agree {
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.92rem;
}
.terms-decline {
  background: var(--bg-soft);
  color: var(--text-dim);
}
.terms-agree {
  background: var(--red);
  color: #fff;
}
@media (max-width: 480px) {
  .terms-actions {
    flex-direction: column;
  }
  .terms-decline,
  .terms-agree {
    width: 100%;
  }
}

/* ============ FADE IN ON SCROLL ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
