/* ============================================================
   TripLog – Main CSS
   Colors: Navy #0D1B3E | Gold #C9A84C | White #FFFFFF
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0D1B3E;
  --navy-mid:    #162448;
  --navy-light:  #1E3264;
  --gold:        #C9A84C;
  --gold-light:  #E5C97B;
  --gold-dark:   #A8822E;
  --white:       #FFFFFF;
  --off-white:   #F8F7F3;
  --gray:        #8A92A9;
  --gray-light:  #E8EAF0;
  --text-dark:   #1A1A2E;
  --text-mid:    #3D4566;

  --font-ko: 'Noto Sans KR', sans-serif;
  --font-en: 'Playfair Display', serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(13,27,62,.08);
  --shadow-md:  0 8px 32px rgba(13,27,62,.14);
  --shadow-lg:  0 20px 60px rgba(13,27,62,.22);

  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ko);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold       { color: var(--gold); }
.gold-text  { color: var(--gold); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
  letter-spacing: .02em;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,168,76,.55);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
  color: var(--gold);
}

.pulse-btn {
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 8px 24px rgba(201,168,76,.4); }
  50%  { box-shadow: 0 8px 36px rgba(201,168,76,.7), 0 0 0 10px rgba(201,168,76,.1); }
  100% { box-shadow: 0 8px 24px rgba(201,168,76,.4); }
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(13,27,62,.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  padding: 12px 0;
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: .95rem;
  color: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: .88rem !important;
}
.btn-nav:hover { transform: translateY(-2px); }
.btn-nav::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,62,.88) 0%,
    rgba(13,27,62,.6) 50%,
    rgba(13,27,62,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.5);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: .08em;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-ko);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.12rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-sub strong { color: var(--gold-light); }
.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 18px 32px;
  backdrop-filter: blur(10px);
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-arrow { font-size: 1rem; }

/* ===========================
   SECTIONS – Common
   =========================== */
.section {
  padding: 100px 0;
}
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}
.section-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 56px;
}

/* ===========================
   WHY / SERVICE VALUE
   =========================== */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1.5px solid transparent;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card.featured {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-color: var(--gold);
}
.why-card.featured::before { transform: scaleX(1); }
.why-card.featured h3,
.why-card.featured p { color: var(--white); }
.why-card.featured .why-tag { border-color: rgba(201,168,76,.4); color: var(--gold-light); }
.why-badge-top {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.why-icon-wrap { margin-bottom: 24px; }
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card.featured .why-icon {
  background: rgba(201,168,76,.2);
  border-color: rgba(201,168,76,.5);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: transparent;
  transform: rotate(-5deg) scale(1.1);
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.why-tag {
  display: inline-block;
  font-size: .75rem;
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}

/* ===========================
   GLOBAL COVERAGE – D3 WORLD MAP
   =========================== */
.coverage-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.coverage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(201,168,76,.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(30,50,100,.45) 0%, transparent 70%);
  pointer-events: none;
}
.coverage-section .section-label { color: var(--gold-light); }
.coverage-section .section-title  { color: var(--white); }
.coverage-section .section-desc   { color: rgba(255,255,255,.6); margin-bottom: 28px; }

/* ── Region Filter Tabs ── */
.map-region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.map-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-ko);
}
.map-tab:hover {
  border-color: rgba(201,168,76,.5);
  color: var(--gold-light);
  background: rgba(201,168,76,.08);
}
.map-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}

/* ── World Map Wrapper ── */
.world-map-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
#d3MapWrap { display: block; line-height: 0; }
#worldMapSvg { display: block; width: 100%; height: auto; }

/* ── D3 Tooltip ── */
.map-d3-tooltip {
  position: absolute;
  pointer-events: none;
  z-index: 200;
  background: rgba(8,18,42,.96);
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  transition: opacity .18s ease;
  backdrop-filter: blur(10px);
}
.map-d3-tooltip .tt-emoji {
  font-size: 1.6rem;
  margin-bottom: 6px;
  line-height: 1;
}
.map-d3-tooltip .tt-name {
  font-size: .98rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
  font-family: var(--font-ko);
}
.map-d3-tooltip .tt-info {
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  margin-bottom: 8px;
}
.map-d3-tooltip .tt-cta {
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ── Map Legend ── */
.map-legend {
  position: absolute;
  bottom: 16px; right: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 30;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  background: rgba(8,18,42,.82);
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.08);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4fa3e8;
  border: 2px solid #fff;
  display: inline-block;
  flex-shrink: 0;
}
.legend-dot.special {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 0 7px rgba(201,168,76,.7);
}

/* ── City Strip (scrollable chips) ── */
.city-info-strip {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.strip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.strip-chip {
  padding: 7px 15px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.strip-chip.japan-chip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: transparent;
  font-weight: 700;
}
.strip-chip:not(.japan-chip):hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── Coverage Note ── */
.coverage-note {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light);
  font-size: .88rem;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* D3 SVG country styling via CSS */
.country { cursor: default; }
.japan-country { cursor: pointer; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .world-map-container { border-radius: var(--radius-md); }
  .map-legend { bottom: 8px; right: 8px; }
  .legend-item { font-size: .64rem; padding: 4px 8px; }
  .map-tab { padding: 7px 14px; font-size: .78rem; }
  .map-d3-tooltip { display: none; }
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio-section { background: var(--off-white); }
.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  color: var(--gray);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-ko);
}
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(13,27,62,.25);
}

.city-panel { display: none; }
.city-panel.active { display: block; animation: fadeSlideUp .4s ease; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.city-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.city-img {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
}
.tokyo-img    { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%); }
.osaka-img    { background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%); }
.kyoto-img    { background: linear-gradient(135deg, #2d3561 0%, #c05c7e 100%); }
.fukuoka-img  { background: linear-gradient(135deg, #1a1a2e 0%, #e94560 100%); }
.hokkaido-img { background: linear-gradient(135deg, #0f3460 0%, #53d8fb 100%); }

.city-img-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.25);
}
.city-emoji {
  font-size: 7rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
  animation: floatEmoji 3s ease-in-out infinite;
}
@keyframes floatEmoji {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.city-info {
  background: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.city-flag {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.city-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -.03em;
}
.city-name span {
  font-family: var(--font-en);
  font-size: .9rem;
  color: var(--gray);
  font-weight: 400;
  margin-left: 8px;
}
.city-desc {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.city-tags span {
  padding: 5px 13px;
  background: var(--off-white);
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--gray-light);
}
.city-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.highlight {
  font-size: .84rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.highlight i { color: var(--gold); font-size: .85rem; width: 16px; }
.btn-city {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  width: fit-content;
}
.btn-city:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  transform: translateX(4px);
}

/* ===========================
   PROCESS
   =========================== */
.process-section { background: var(--white); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto 60px;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 60px; bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light), transparent);
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding: 32px 32px 32px 0;
}
.step-icon-wrap {
  position: relative;
  flex-shrink: 0;
}
.step-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
  border: 2px solid rgba(201,168,76,.4);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--gold);
  z-index: 1;
  position: relative;
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}
.step-icon.gold-step {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(13,27,62,.3);
}
.process-step:hover .step-icon.gold-step {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 900;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
}
.step-content { flex: 1; padding-top: 12px; }
.step-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-content p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.step-detail { display: flex; flex-direction: column; gap: 6px; }
.step-detail li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray);
}
.step-detail li i { color: var(--gold); font-size: .75rem; }
.step-arrow {
  position: absolute;
  left: 38px; bottom: -10px;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  background: var(--gold-light);
  color: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .65rem;
  z-index: 2;
}
.process-cta { text-align: center; }

/* ===========================
   OPTION 1: 설계 결과물 미리보기
   =========================== */
.deliverable-section {
  background: var(--off-white);
  padding: 96px 0;
}
.deliverable-section .section-label { color: var(--gold-dark); }
.deliverable-section .section-title { color: var(--navy); }
.deliverable-section .section-desc  { color: var(--gray); margin-bottom: 64px; }

.deliverable-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-bottom: 64px;
}

/* 결과물 카드 */
.deliv-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.deliv-card.reverse { direction: rtl; }
.deliv-card.reverse > * { direction: ltr; }

/* 브라우저 목업 */
.deliv-mockup { width: 100%; }
.mockup-browser {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,27,62,.15);
  border: 1.5px solid var(--gray-light);
}
.browser-bar {
  background: #f0f0f0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #ddd;
}
.browser-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #ddd;
}
.browser-dot:nth-child(1) { background: #ff6058; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .78rem;
  color: #666;
  margin-left: 8px;
}
.mockup-screen {
  background: #fff;
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

/* 지도 목업 */
.map-screen {
  background: linear-gradient(145deg, #e8f4ea 0%, #d4e8f4 50%, #e8eaf4 100%);
  min-height: 280px;
}
.map-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin-demo {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  animation: pinBounce 2.5s ease-in-out infinite;
}
.map-pin-demo:nth-child(2) { animation-delay: .4s; }
.map-pin-demo:nth-child(3) { animation-delay: .8s; }
.map-pin-demo:nth-child(4) { animation-delay: 1.2s; }
.map-pin-demo:nth-child(5) { animation-delay: 1.6s; }
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  flex-shrink: 0;
}
.pin-red   { background: #e74c3c; }
.pin-gold  { background: var(--gold); }
.pin-blue  { background: #3498db; }
.pin-green { background: #2ecc71; }
.pin-label {
  background: rgba(255,255,255,.95);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.map-route-line {
  position: absolute; inset: 0;
  background: none;
  z-index: 1;
}

/* 일정표 목업 */
.schedule-screen { padding: 16px; }
.sched-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sched-item:last-child { border-bottom: none; }
.sched-time {
  font-size: .72rem;
  color: var(--gray);
  font-weight: 700;
  white-space: nowrap;
  padding-top: 2px;
  width: 38px;
}
.sched-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.sched-dot.morning     { background: #f39c12; }
.sched-dot.sightseeing { background: #3498db; }
.sched-dot.food        { background: var(--gold); }
.sched-content strong { font-size: .82rem; color: var(--navy); display: block; }
.sched-content small  { font-size: .7rem; color: var(--gray); }

/* 맛집 목업 */
.food-screen { padding: 16px; }
.food-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.food-item:last-child { border-bottom: none; }
.food-rank {
  font-size: .75rem;
  font-weight: 900;
  color: var(--gold);
  width: 22px;
  flex-shrink: 0;
}
.food-info { flex: 1; }
.food-info strong { font-size: .8rem; color: var(--navy); display: block; font-weight: 700; }
.food-info small  { font-size: .68rem; color: var(--gray); }
.food-tag {
  font-size: .65rem;
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  border-radius: 4px;
  padding: 3px 7px;
  white-space: nowrap;
  font-weight: 600;
}

/* 결과물 정보 */
.deliv-info { }
.deliv-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.deliv-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.deliv-info p {
  font-size: .95rem;
  color: #4a4f6a;
  line-height: 1.85;
  margin-bottom: 20px;
}
.deliv-info p strong { color: var(--navy); }
.deliv-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.deliv-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: #4a4f6a;
}
.deliv-features li i { color: var(--gold); font-size: .9rem; }

/* 샘플 CTA 박스 */
.deliv-sample-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(13,27,62,.2);
}
.sample-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.sample-badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  color: var(--gold-light);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.sample-cta-text h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
}
.sample-cta-text p {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
}
.sample-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.btn-sample-view {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
}
.btn-sample-view:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn-sample-consult {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
}
.btn-sample-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}

/* ===========================
   OPTION 2: 숫자 통계 섹션
   =========================== */
.stats-section {
  background: linear-gradient(145deg, var(--navy) 0%, #0a1f4a 50%, #0d2255 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .25s, background .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.04) 0%, transparent 60%);
  border-radius: inherit;
}
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.09);
  border-color: rgba(201,168,76,.35);
}
.stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .9;
}
.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: inline;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: -.01em;
}
.stat-decimal {
  font-size: 2.8rem;
}
.stat-suffix {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: inline;
}
.stat-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 12px;
}
.stat-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
}

/* 바 차트 */
.stats-bar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.sbar-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px 28px;
}
.sbar-label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.sbar-label i { margin-right: 7px; }
.sbar-bars { display: flex; flex-direction: column; gap: 12px; }
.sbar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sbar-row span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  width: 70px;
  flex-shrink: 0;
}
.sbar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
}
.sbar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 8px;
  font-size: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.sbar-fill.animated { width: var(--w); }

/* ===========================
   OPTION 3: 이런 분들이 찾아요
   =========================== */
.target-section {
  background: var(--off-white);
  padding: 96px 0;
}
.target-section .section-label { color: var(--gold-dark); }
.target-section .section-title { color: var(--navy); }
.target-section .section-desc  { color: var(--gray); margin-bottom: 56px; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.target-card {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.target-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: opacity .25s;
}
.target-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,27,62,.12);
  border-color: rgba(201,168,76,.3);
}
.target-card:hover::before { opacity: 1; }

.target-card-cta {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
}
.target-card-cta h3 { color: rgba(255,255,255,.9) !important; }
.target-card-cta p  { color: rgba(255,255,255,.6) !important; }
.target-card-cta .target-emoji { filter: brightness(1.2); }
.target-card-cta:hover { border-color: rgba(201,168,76,.4); }

.target-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 14px;
}
.target-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.target-card-cta .target-tag {
  background: rgba(201,168,76,.2);
  color: var(--gold-light);
}
.target-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 14px;
}
.target-card p {
  font-size: .88rem;
  color: #5a6080;
  line-height: 1.8;
  margin-bottom: 18px;
}
.target-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.target-examples span {
  font-size: .72rem;
  background: var(--off-white);
  color: var(--navy);
  border-radius: 50px;
  padding: 4px 10px;
  font-weight: 600;
  border: 1px solid var(--gray-light);
}
.btn-target-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  margin-top: 4px;
  transition: transform .2s, box-shadow .2s;
}
.btn-target-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}

/* 모바일 대응 */
@media (max-width: 900px) {
  .deliv-card        { grid-template-columns: 1fr; gap: 36px; }
  .deliv-card.reverse { direction: ltr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-row     { grid-template-columns: 1fr; }
  .target-grid       { grid-template-columns: repeat(2, 1fr); }
  .sample-cta-inner  { flex-direction: column; text-align: center; }
  .sample-cta-btns   { flex-direction: row; }
}
@media (max-width: 600px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card   { padding: 24px 16px; }
  .stat-num    { font-size: 2.2rem; }
  .target-grid { grid-template-columns: 1fr; }
  .sample-cta-btns { flex-direction: column; width: 100%; }
  .btn-sample-view, .btn-sample-consult { width: 100%; justify-content: center; }
  .deliv-sample-cta { padding: 32px 24px; }
}

/* ===========================
   TESTIMONIALS
   =========================== */
/* ===========================
   TESTIMONIALS – GRID VERSION
   =========================== */
.testimonial-section { background: var(--off-white); }
.section-desc-light {
  font-size: .95rem;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ── 필터 탭 ── */
.review-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.review-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  color: var(--gray);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-ko);
}
.review-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.review-tab.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,27,62,.25);
}

/* ── 후기 그리드 ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card-new {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.review-card-new::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: rgba(201,168,76,.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-card-new:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.4);
}
.review-card-new.hidden { display: none; }

/* ── 카드 헤더 ── */
.rc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.rc-country-badge {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.rc-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: 1px;
}

/* ── 후기 본문 ── */
.rc-text {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 22px;
  flex: 1;
  /* 3줄 클램프, 펼치기 가능 */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height .4s ease;
}
.review-card-new.expanded .rc-text {
  display: block;
  overflow: visible;
}

/* ── 카드 푸터 ── */
.rc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}
.rc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.rc-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.rc-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.rc-meta { font-size: .74rem; color: var(--gray); }
.rc-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: #22c55e;
  white-space: nowrap;
  flex-shrink: 0;
}
.rc-verified i { font-size: .78rem; }

/* ── 더보기 버튼 ── */
.review-more-wrap { text-align: center; margin-bottom: 56px; }
.btn-review-more {
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-ko);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-review-more:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-review-more.all-shown { display: none; }

/* ── 종합 평점 ── */
.rating-summary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.rating-big { display: flex; align-items: baseline; gap: 4px; }
.rating-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.04em;
}
.rating-max { font-size: 1.2rem; color: rgba(255,255,255,.5); }
.rating-stars-big {
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 4px;
}
.rating-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.rating-bars {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
}
.rating-bar-row span:first-child { width: 50px; text-align: right; flex-shrink: 0; }
.rating-bar-row span:last-child  { width: 32px; flex-shrink: 0; }
.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: barGrow .8s ease forwards;
  transform-origin: left;
}
@keyframes barGrow {
  from { width: 0 !important; }
}

@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
  .rating-summary { padding: 28px 24px; gap: 24px; flex-direction: column; align-items: flex-start; }
  .rating-num { font-size: 3rem; }
}

/* ===========================
   FINAL CTA
   =========================== */
.cta-section {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
}
.cta-bg-decor {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-badge {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .06em;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.cta-desc {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 44px;
}
.cta-desc strong { color: var(--gold-light); }

/* ── 네이버폼 카드 ── */
.cta-bg-decor2 {
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.naver-form-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

/* 3단계 안내 */
.nform-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 8px;
}
.nform-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.nform-step-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1.5px solid rgba(201,168,76,.4);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--gold);
}
.nform-step-text {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-align: center;
  line-height: 1.4;
}
.nform-step-text small {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  font-weight: 400;
}
.nform-arrow {
  color: rgba(255,255,255,.25);
  font-size: 1rem;
  padding: 0 16px;
  margin-bottom: 24px;
}

/* 네이버폼 버튼 */
.btn-naver-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 32px;
  border-radius: 50px;
  background: #03C75A;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-ko);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(3,199,90,.4);
  letter-spacing: .01em;
}
.btn-naver-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(3,199,90,.6);
  background: #02b050;
  color: #fff;
}
.naver-logo {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.nform-hint {
  margin-top: 16px;
  font-size: .76rem;
  color: rgba(255,255,255,.38);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nform-hint i { color: rgba(201,168,76,.5); }
.cta-assurance {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.assurance-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.assurance-item i { color: var(--gold); font-size: .8rem; }

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
  background: var(--off-white);
  padding: 96px 0;
}
.faq-section .section-label {
  color: var(--gold-dark);
}
.faq-section .section-title {
  color: var(--navy);
}
.faq-section .section-desc {
  color: var(--gray);
  margin-bottom: 56px;
}

/* FAQ List */
.faq-list {
  max-width: 820px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,27,62,.06);
  transition: box-shadow .25s, border-color .25s;
}
.faq-item:hover {
  box-shadow: 0 6px 28px rgba(13,27,62,.11);
  border-color: rgba(201,168,76,.35);
}
.faq-item.open {
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 6px 28px rgba(201,168,76,.12);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover {
  background: rgba(201,168,76,.04);
}
.faq-item.open .faq-question {
  background: rgba(201,168,76,.06);
}

/* FAQ Icon (question category icon) */
.faq-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  transition: transform .25s;
}
.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--navy);
  transform: scale(1.07);
}

/* FAQ Question Text */
.faq-q-text {
  flex: 1;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

/* FAQ Toggle (+/−) */
.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: .85rem;
  transition: background .25s, transform .35s, color .25s;
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .35s;
  padding: 0 28px 0 86px; /* 28(left) + 42(icon) + 16(gap) = 86 */
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 86px;
}
.faq-answer p {
  font-size: .95rem;
  color: #4a4f6a;
  line-height: 1.9;
}
.faq-answer p strong {
  color: var(--navy);
  font-weight: 700;
}

/* FAQ Bottom CTA */
.faq-cta-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.faq-cta-text {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}
.faq-cta-text i {
  color: var(--gold);
  margin-right: 6px;
}
.btn-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold-light);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 0 6px 24px rgba(13,27,62,.25);
  transition: transform .22s, box-shadow .22s, background .22s;
}
.btn-faq-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(13,27,62,.35);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--navy);
}
.btn-faq-cta i {
  font-size: 1.1rem;
}

/* Mobile FAQ */
@media (max-width: 768px) {
  .faq-section { padding: 72px 0; }
  .faq-question { padding: 18px 20px; gap: 12px; }
  .faq-icon { width: 36px; height: 36px; font-size: .88rem; border-radius: 10px; }
  .faq-q-text { font-size: .92rem; }
  .faq-answer { padding: 0 20px 0 68px; }
  .faq-item.open .faq-answer { padding: 0 20px 18px 68px; }
  .faq-answer p { font-size: .88rem; }
  .btn-faq-cta { padding: 14px 28px; font-size: .92rem; }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--text-dark);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin: 16px 0 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.footer-social-id {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-top: 10px;
  letter-spacing: .04em;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-biz-info {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 2;
  margin-bottom: 10px;
}
.footer-biz-info .sep {
  margin: 0 6px;
  opacity: .4;
}
.footer-br { display: none; }
.footer-copy {
  font-size: .72rem;
  color: rgba(255,255,255,.2);
}
@media (max-width: 768px) {
  .footer-biz-info .sep { display: none; }
  .footer-biz-info span { display: block; }
  .footer-br { display: block; }
}

/* ===========================
   DOC MODAL (개인정보/이용약관)
   =========================== */
.doc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.doc-modal.open {
  display: flex;
}
.doc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 35, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.doc-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  overflow: hidden;
  animation: modalFadeIn .28s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.doc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  flex-shrink: 0;
}
.doc-modal-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.doc-modal-header h2 i { color: var(--gold); }
.doc-modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.doc-modal-close:hover {
  background: rgba(255,255,255,.25);
  color: #fff;
}
.doc-modal-body {
  overflow-y: auto;
  padding: 32px 32px 40px;
  flex: 1;
}
.doc-modal-body h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin: 28px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-light);
}
.doc-modal-body h3:first-of-type { margin-top: 8px; }
.doc-modal-body p {
  font-size: .88rem;
  color: #4a4f6a;
  line-height: 1.9;
  margin-bottom: 8px;
}
.doc-updated {
  font-size: .78rem !important;
  color: var(--gray) !important;
  background: var(--off-white);
  border-radius: 8px;
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 20px !important;
}
.doc-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.doc-list li {
  font-size: .87rem;
  color: #4a4f6a;
  padding-left: 16px;
  position: relative;
  line-height: 1.75;
}
.doc-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 900;
}
.doc-table-wrap {
  overflow-x: auto;
  margin: 12px 0;
}
.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}
.doc-table th {
  background: var(--navy);
  color: var(--gold-light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.doc-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--gray-light);
  color: #4a4f6a;
  line-height: 1.6;
}
.doc-table tr:nth-child(even) td { background: var(--off-white); }
.doc-info-box {
  background: linear-gradient(135deg, rgba(13,27,62,.05), rgba(13,27,62,.02));
  border: 1.5px solid rgba(13,27,62,.1);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}
.doc-info-box p {
  font-size: .85rem !important;
  color: var(--navy) !important;
  margin-bottom: 4px !important;
}
.doc-info-box p strong { font-weight: 800; }

/* 모바일 */
@media (max-width: 600px) {
  .doc-modal { padding: 12px; }
  .doc-modal-box { max-height: 92vh; border-radius: 16px; }
  .doc-modal-body { padding: 24px 20px 32px; }
  .doc-modal-header { padding: 18px 20px; }
}

/* ===========================
   FLOATING CTA
   =========================== */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(201,168,76,.5);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,.65);
}

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  z-index: 2000;
  transition: all .4s ease;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast i { color: var(--gold); }

/* ===========================
   MOBILE NAV
   =========================== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100dvh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px 32px;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,.35);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links a::after { display: none; }
  .btn-nav {
    margin-top: 12px;
    text-align: center;
    padding: 14px 24px !important;
  }
  .hamburger { display: flex; }

  .hero-content { padding-top: 130px; }
  .hero-title   { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-stats   { padding: 14px 18px; }
  .stat         { padding: 0 12px; }
  .stat-num     { font-size: 1.3rem; }

  .section { padding: 70px 0; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card.featured { order: -1; }

  .region-tags { grid-template-columns: 1fr; }

  .city-card { grid-template-columns: 1fr; }
  .city-img  { min-height: 240px; }
  .city-info { padding: 32px 24px; }
  .city-name { font-size: 1.5rem; }

  .process-steps::before { left: 30px; }
  .step-icon { width: 60px; height: 60px; font-size: 1.2rem; }

  .review-card { min-width: calc(85vw - 24px); }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-cta-wrap { flex-direction: column; align-items: flex-start; }
  .hero-stats {
    width: 100%;
    justify-content: space-around;
    padding: 14px 10px;
  }
  .stat { padding: 0 4px; }
  .stat-label { font-size: .68rem; }

  .portfolio-tabs { gap: 6px; }
  .tab-btn { padding: 8px 16px; font-size: .8rem; }

  .footer-links { grid-template-columns: 1fr; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 16px; border-radius: 50%; }
}

/* ===========================
   SCROLL ANIMATION
   =========================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="150"] { transition-delay: .15s !important; }
[data-delay="300"] { transition-delay: .30s !important; }
[data-delay="450"] { transition-delay: .45s !important; }
