/* ============================================================
   리퍼그라운드 — Design Tokens & Global Styles
   ============================================================ */
:root {
  /* Background */
  --bg-primary: #0D1117;
  --bg-secondary: #161B22;
  --bg-card: #21262D;
  --bg-input: #0D1117;

  /* Accent */
  --accent: #2F81F7;
  --accent-light: #58A6FF;
  --accent-gradient: linear-gradient(135deg, #1158C7, #2F81F7);
  --mint: #3FB950;
  --orange: #F0883E;
  --kakao: #FEE500;

  /* Text */
  --text-primary: #F0F6FC;
  --text-secondary: #8B949E;
  --text-muted: #484F58;
  --border: #30363D;

  /* Footer (theme-aware) */
  --footer-bg: #21262D;
  --footer-text: #F0F6FC;
  --footer-text-secondary: #8B949E;
  --footer-text-muted: #484F58;
  --footer-border: #30363D;
}

/* ============================================================
   THEME: LIGHT
   ============================================================ */
.theme-light {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FB;
  --bg-card: #FFFFFF;
  --bg-input: #F8F9FB;

  --accent: #2F81F7;
  --accent-light: #1F6FE0;

  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --border: #E5E7EB;

  /* Footer stays dark for contrast */
  --footer-bg: #0F172A;
  --footer-text: #F0F6FC;
  --footer-text-secondary: #94A3B8;
  --footer-text-muted: #64748B;
  --footer-border: #1E293B;
}
.theme-light body {
  background: var(--bg-primary);
  color: var(--text-primary);
}
/* Light theme: card shadows instead of borders */
.theme-light .card,
.theme-light .service-card,
.theme-light .promise-card,
.theme-light .feature-card,
.theme-light .crew-card,
.theme-light .review-card,
.theme-light .contact-card,
.theme-light .security-card,
.theme-light .b2b-step,
.theme-light .b2b-stat,
.theme-light .location-card,
.theme-light .support-form-card,
.theme-light .q-form-card,
.theme-light .q-inquiry-item,
.theme-light .q-case-card,
.theme-light .q-review-chip,
.theme-light .hours-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);
}
.theme-light .card:hover,
.theme-light .service-card:hover,
.theme-light .promise-card:hover,
.theme-light .feature-card:hover,
.theme-light .crew-card:hover,
.theme-light .contact-card:hover,
.theme-light .security-card:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06), 0 16px 40px rgba(47, 129, 247, 0.1);
}
/* Light theme: section backgrounds — keep clear contrast */
.theme-light .section--dark { background: #FFFFFF; }
.theme-light .section--mid { background: #F1F5F9; }
.theme-light .section--card { background: #E2E8F0; }
/* Light theme: nav */
.theme-light .nav {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 16px 48px rgba(47, 129, 247, 0.14), 0 4px 16px rgba(15, 23, 42, 0.08);
}
.theme-light .nav__logo { color: #0F172A; }
.theme-light .nav__link { color: #64748B; }
.theme-light .nav__link:hover,
.theme-light .nav__link--active { color: #0F172A; }
.theme-light .nav__link--cta { color: #FFFFFF !important; }
.theme-light .nav__sub {
  background: #FFFFFF;
  border-color: #E5E7EB;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.theme-light .nav__sub a { color: #64748B; }
.theme-light .nav__sub a:hover {
  color: #0F172A;
  background: #F8F9FB;
}
.theme-light .nav__toggle span { background: #0F172A; }
.theme-light .nav__mobile-menu {
  background: rgba(255, 255, 255, 0.98);
}
.theme-light .nav__mobile-menu a {
  color: #64748B;
  border-bottom-color: #E5E7EB;
}
.theme-light .nav__mobile-menu a:hover { color: #0F172A; }
/* Disabled state in light theme */
.theme-light .nav__link--disabled {
  color: #CBD5E1 !important;
}
.theme-light .nav__mobile-menu a.nav__link--disabled {
  color: #CBD5E1 !important;
}
/* Light theme: form inputs */
.theme-light .form-input,
.theme-light .form-textarea,
.theme-light .form-select {
  background: #F8F9FB;
  border-color: #E5E7EB;
  color: #0F172A;
}
.theme-light .form-input::placeholder,
.theme-light .form-textarea::placeholder { color: #94A3B8; }
.theme-light .form-label { color: #0F172A; }
/* Light theme: comparison table */
.theme-light .compare-wrap {
  background: #F1F5F9;
  border-color: #E2E8F0;
}
.theme-light .compare-table tbody td {
  background: #FFFFFF;
  color: #64748B;
  border-bottom-color: #E5E7EB;
}
.theme-light .compare-table tbody td:first-child { color: #0F172A; }
/* Light theme: status table */
.theme-light .status-table tbody td {
  background: #FFFFFF;
  color: #64748B;
}
.theme-light .status-table thead th {
  background: #F8F9FB;
  color: #64748B;
}
/* Light theme: keyword banner */
.theme-light .keyword-banner {
  background: #F8F9FB;
  border-color: #E5E7EB;
}
/* Light theme: hero badge */
.theme-light .hero__badge {
  background: rgba(47, 129, 247, 0.08);
  border-color: rgba(47, 129, 247, 0.2);
}
/* Light theme: hero gradient */
.theme-light .hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}
.theme-light .q-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}
.theme-light .q-form-section {
  background: #FFFFFF;
}
.theme-light .q-social {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}
.theme-light .q-why { background: #FFFFFF; }
/* Sell-personal page: hero gradient + section overrides */
.theme-light .sell-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  padding: 120px 0 80px;
}
/* Sell-personal: process step left-right split */
.theme-light .process__step-title { color: #0F172A; }
.theme-light .process__step-desc { color: #64748B; }
.theme-light .process__list { background: #F5F5F5; border-color: #E5E7EB; }
.theme-light .process__step { border-bottom-color: rgba(15, 23, 42, 0.08); }
/* Sell-personal: tag-cloud */
.theme-light .tag-cloud__item {
  background: rgba(47, 129, 247, 0.06);
  border-color: rgba(47, 129, 247, 0.2);
  color: #2F81F7;
}
.theme-light .tag-cloud__item--use {
  background: rgba(63, 185, 80, 0.06);
  border-color: rgba(63, 185, 80, 0.2);
  color: #16A34A;
}
.theme-light .tag-cloud__note { color: #64748B; }
/* Sell-personal: tabs */
.theme-light .tabs__nav { border-bottom-color: #E5E7EB; }
.theme-light .tabs__btn { color: #64748B; }
.theme-light .tabs__btn:hover { color: #0F172A; }
.theme-light .tabs__btn--active { color: #2F81F7; }
.theme-light .tabs__btn--active::after { background: #2F81F7; }
.theme-light .tab-content__title { color: #0F172A; }
.theme-light .tab-content__badge {
  background: rgba(47, 129, 247, 0.08);
  color: #2F81F7;
}
.theme-light .tab-info__item {
  background: #FFFFFF;
  border-color: #E5E7EB;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.theme-light .tab-info__label { color: #64748B; }
.theme-light .tab-info__value { color: #0F172A; }
/* Sell-personal: notice */
.theme-light .notice {
  background: rgba(240, 136, 62, 0.06);
  border-color: rgba(240, 136, 62, 0.25);
}
.theme-light .notice__item { color: #64748B; }
/* Sell-personal: cta-banner */
.theme-light .cta-banner__title { color: #FFFFFF; }
/* Sell-personal: hero title color */
.theme-light .sell-hero__title { color: #0F172A; }
.theme-light .sell-hero__desc { color: #64748B; }
/* Section header text override */
.theme-light .section__header .heading-section { color: #0F172A; }
.theme-light .section__header .text-sub { color: #64748B; }
/* Heading defaults in light */
.theme-light .heading-hero,
.theme-light .heading-section,
.theme-light .heading-sub { color: #0F172A; }
.theme-light .text-sub { color: #64748B; }
.theme-light .text-body { color: #64748B; }
.theme-light .tag-cloud__item {
  background: rgba(47, 129, 247, 0.06);
  border-color: rgba(47, 129, 247, 0.2);
  color: #2F81F7;
}
.theme-light .tag-cloud__item--use {
  background: rgba(63, 185, 80, 0.06);
  border-color: rgba(63, 185, 80, 0.2);
  color: #16A34A;
}
.theme-light .tag-cloud__group-label { color: #64748B; }
/* Light theme: brand logos */
.theme-light .q-brands__item { color: #94A3B8; }
.theme-light .q-brands__item:hover { color: #64748B; }
/* Light theme: process step number circle */
.theme-light .process-step__num {
  background: #FFFFFF;
}
/* Light theme: tabs */
.theme-light .tabs { background: #F1F5F9; }
.theme-light .tab-btn { color: #64748B; }
.theme-light .tab-btn:hover:not(.active) {
  color: #0F172A;
  background: rgba(15, 23, 42, 0.04);
}
.theme-light .tab-panel {
  background: #FFFFFF;
  border-color: #E5E7EB;
}
/* Light theme: floating CTA */
.theme-light .q-floating {
  background: rgba(255, 255, 255, 0.95);
  border-top-color: #E5E7EB;
}
/* Light theme: keyword banner */
.theme-light .keyword-banner {
  background: #F8F9FB;
  border-top-color: #E5E7EB;
  border-bottom-color: #E5E7EB;
}
.theme-light .keyword-banner__tag {
  background: rgba(47,129,247,0.06);
  border-color: rgba(47,129,247,0.18);
  color: #2F81F7;
}
/* Light theme: hero badge text */
.theme-light .hero__badge { color: #2F81F7; }
/* Light theme: partner logos */
.theme-light .partners-track img {
  filter: grayscale(1) brightness(0.4);
  opacity: 0.5;
}
.theme-light .partners-track img:hover {
  filter: none;
  opacity: 1;
}
/* Light theme: hero stat values stay dark */
.theme-light .hero__stat-value { color: #0F172A; }
.theme-light .crew-card__avatar {
  background: rgba(47,129,247,0.08);
}
.theme-light .promise-card__num,
.theme-light .service-card__label,
.theme-light .feature-card__icon { color: #2F81F7; }
.theme-light .feature-card__icon { background: rgba(47,129,247,0.08); }
.theme-light .service-card__label { background: rgba(47,129,247,0.08); }
.theme-light .service-card__item {
  background: #F1F5F9; color: #64748B;
}
/* Light theme: q-hero slider text */
.theme-light .q-hero__slider-text { color: #0F172A; }
/* Light theme: q-reason num bg */
.theme-light .q-reason__num { background: rgba(47,129,247,0.08); }
/* Light theme: review card stars stay orange */
.theme-light .review-card__stars { color: #F0883E; }
.theme-light .q-review-chip__stars { color: #F0883E; }
/* Light theme: status badge backgrounds */
.theme-light .status-badge--done {
  background: rgba(63,185,80,0.12); color: #16A34A;
}
.theme-light .status-badge--progress {
  background: rgba(47,129,247,0.12); color: #2F81F7;
}
.theme-light .status-badge--received {
  background: rgba(240,136,62,0.12); color: #EA7A1F;
}
/* Light theme: section accent stays as is (CTA banner) */
/* Light theme: notice box */
.theme-light .notice-box {
  background: rgba(240,136,62,0.06);
  border-color: rgba(240,136,62,0.25);
}
.theme-light .notice-card {
  background: rgba(240,136,62,0.06);
  border-color: rgba(240,136,62,0.25);
}
/* Light theme: contact-card icon */
.theme-light .contact-card__icon { background: rgba(47,129,247,0.08); }
/* Light theme: security card icon */
.theme-light .security-card__icon { background: rgba(63,185,80,0.08); }
/* Light theme: b2b stat */
.theme-light .b2b-stat__value { color: #2F81F7; }
.theme-light .b2b-step__num { color: rgba(47,129,247,0.18); }
/* Light theme: ptag */
.theme-light .ptag {
  background: #FFFFFF;
}
.theme-light .product-tag {
  background: #FFFFFF;
}
/* Light theme: ceo quote */
.theme-light .ceo-quote { color: #0F172A; }
/* Light theme: location card title */
.theme-light .location-card__title { color: #2F81F7; }
.theme-light .location-card__value { color: #0F172A; }
/* Light theme: tab feature check */
.theme-light .tab-feature__check { color: #16A34A; }
.theme-light .tab-feature { color: #0F172A; }
/* Light theme: q-case-card price */
.theme-light .q-case-card__price { color: #0F172A; }
.theme-light .q-case-card__product { color: #0F172A; }
/* Light theme: q-inquiry-item text */
.theme-light .q-inquiry-item__text { color: #0F172A; }
/* Light theme: q-review-chip text */
.theme-light .q-review-chip__text { color: #0F172A; }
/* Light theme: review-card text */
.theme-light .review-card__text { color: #0F172A; }
/* Light theme: q-bar-label__value override */
.theme-light .q-bar--us .q-bar__fill { background: #2F81F7; }

:root {
  /* Font */
  --font: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing */
  --section-pad-pc: 120px;
  --section-pad-tablet: 80px;
  --section-pad-mobile: 60px;
  --container: 1200px;
  --container-narrow: 800px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font);
}
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: -0.02em;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* 상속이 끊기는 요소까지 Pretendard 강제 */
button, input, textarea, select, optgroup,
pre, code, kbd, samp, tt, var,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
}
::placeholder { font-family: var(--font); }
svg text, svg tspan { font-family: var(--font); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; }
input, textarea, select { outline: none; border: none; }
ul, ol { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
  margin: -1px; padding: 0; border: 0;
}
.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
}
.container--narrow {
  max-width: var(--container-narrow);
}
.text-accent { color: var(--accent); }
.text-mint { color: var(--mint); }
.text-orange { color: var(--orange); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: var(--text-primary); }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.heading-hero {
  font-size: 64px; font-weight: 900; line-height: 1.2;
  letter-spacing: -0.04em;
}
.heading-section {
  font-size: 48px; font-weight: 700; line-height: 1.3;
  letter-spacing: -0.03em;
}
.heading-sub {
  font-size: 32px; font-weight: 700; line-height: 1.4;
  letter-spacing: -0.02em;
}
.text-body {
  font-size: 18px; font-weight: 400; line-height: 1.7;
}
.text-sub {
  font-size: 20px; font-weight: 400; line-height: 1.6;
  letter-spacing: -0.01em;
}
.text-caption {
  font-size: 14px; color: var(--text-secondary); line-height: 1.5;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 32px; border-radius: 12px;
  font-size: 18px; font-weight: 700; line-height: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap; cursor: pointer; border: none;
}
.btn--primary {
  background: var(--accent); color: #fff;
}
.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 129, 247, 0.35);
}
.btn--outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.btn--kakao {
  background: var(--kakao); color: #191600;
}
.btn--kakao:hover {
  background: #ffe033;
  transform: translateY(-2px);
}
.btn--white {
  background: #fff; color: var(--accent);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}
.btn--lg {
  padding: 20px 40px; font-size: 22px; border-radius: 14px;
}
.btn--full {
  width: 100%;
}
.btn--icon svg {
  width: 20px; height: 20px;
}

/* ============================================================
   NAV — Pill Floating GNB
   Source: b2c_푸드트럭닷컴_gnb_pill-floating
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1480px;
  height: 68px;
  background: rgba(22, 27, 34, 0.88);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(48, 54, 61, 0.6);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(47, 129, 247, 0.16), 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}
.nav--hidden {
  transform: translateX(-50%) translateY(calc(-100% - 24px));
  opacity: 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 14px 0 30px;
  max-width: none;
}
.nav__logo {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--text-primary);
}
.nav__menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  display: block;
  padding: 12px 20px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
  border-radius: 999px;
}
.nav__link:hover {
  color: var(--text-primary);
}
.nav__link--active {
  color: var(--text-primary);
  font-weight: 700;
}
.nav__link--cta {
  flex-shrink: 0;
  margin: 0;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav__link--cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(47, 129, 247, 0.35);
}
/* Disabled menu (visible but inaccessible) */
.nav__link--disabled {
  color: var(--text-muted) !important;
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.45;
}
.nav__item--disabled .nav__sub { display: none; }
/* Dropdown */
.nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav__sub {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 180px;
  background: rgba(33, 38, 45, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.nav__item:hover .nav__sub {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__sub a {
  display: block; font-size: 14px;
  color: var(--text-secondary); padding: 10px 20px;
  transition: color 0.15s, background 0.15s;
}
.nav__sub a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
/* Mobile toggle */
.nav__toggle {
  display: none; width: 32px; height: 32px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; margin-left: auto; cursor: pointer;
  background: none; border: none; padding: 0;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* Mobile menu overlay */
.nav__mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; width: 100%; height: calc(100vh - 64px);
  background: rgba(13, 17, 23, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  flex-direction: column; gap: 4px;
  z-index: 999;
}
.nav__mobile-menu.active { display: flex; }
.nav__mobile-menu a {
  display: block; padding: 16px 0;
  font-size: 18px; font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(48, 54, 61, 0.3);
  transition: color 0.2s;
}
.nav__mobile-menu a:hover { color: var(--text-primary); }
.nav__mobile-menu a.nav__link--disabled {
  color: var(--text-muted) !important;
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.45;
}
.nav__mobile-menu .nav__link--cta {
  margin: 16px 0 0; text-align: center;
  border-bottom: none;
}
/* Mobile nav hierarchy (부모-자식 위계) */
.nav__mobile-group {
  display: flex; flex-direction: column;
  border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}
.nav__mobile-heading {
  display: block;
  padding: 16px 0;
  font-size: 18px; font-weight: 500;
  color: var(--text-secondary);
}
.nav__mobile-menu a.nav__mobile-sub {
  position: relative;
  padding: 10px 0 10px 18px;
  font-size: 14px; font-weight: 400;
  color: var(--text-muted);
  border-bottom: none;
}
.nav__mobile-menu a.nav__mobile-sub:first-of-type { padding-top: 2px; }
.nav__mobile-menu a.nav__mobile-sub:last-of-type { padding-bottom: 14px; }
.nav__mobile-menu a.nav__mobile-sub::before {
  content: ""; position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--text-muted);
  transform: translateY(-50%);
}
.theme-light .nav__mobile-heading { color: #64748B; }
.theme-light .nav__mobile-menu a.nav__mobile-sub { color: #94A3B8; }
.theme-light .nav__mobile-menu a.nav__mobile-sub::before { background: #CBD5E1; }
.theme-light .nav__mobile-group { border-bottom-color: #E5E7EB; }

/* ============================================================
   FOOTER (wd-footer — clone of b2c_프코치_footer_blue-cs-info)
   - 비비드 블루 풀폭, 우측 절대배치 CS 센터, 중앙 로고,
     개인정보 모달, 우하단 고정 스크롤탑
   ============================================================ */
.wd-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 80px 6vw 56px;
  background-color: #0a0a0a;
  color: #fff;
  overflow: hidden;
}

/* CS Center (데스크탑 우측 절대배치) */
.wd-footer__cs {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
}
.wd-footer__cs-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 24px;
}
.wd-footer__cs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}
.wd-footer__cs-icon:hover { opacity: 0.7; }
.wd-footer__cs-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.wd-footer__cs-divider {
  display: inline-flex;
  margin: 0 14px;
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.4);
}
.wd-footer__cs-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
.wd-footer__cs-tel {
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 6px 0;
}
.wd-footer__cs-tel a {
  color: inherit;
  text-decoration: none;
}
.wd-footer__cs-hours {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Top — Logo (좌측 정렬) */
.wd-footer__top {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.wd-footer__logo {
  display: inline-block;
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* Mid — Privacy link */
.wd-footer__mid {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.wd-footer__privacy-btn {
  margin-top: 4px;
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.wd-footer__privacy-btn:hover { opacity: 0.8; color: rgba(255, 255, 255, 0.85); }

/* Bottom — 회사 정보 + copyright */
.wd-footer__bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-weight: 300;
  padding: 0;
}
.wd-footer__biz-pc {
  color: #fff;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}
.wd-footer__biz-mobile { display: none; }
.wd-footer__label { font-weight: 600; }
.wd-footer__copyright,
.wd-footer__designed-by {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.4;
}
.wd-footer__copyright { margin-top: 24px; }
.wd-footer__designed-by {
  margin-top: 4px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.wd-footer__designed-by:hover { opacity: 0.8; }

/* Scroll to top — 우하단 고정 */
.wd-footer__totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s, color 0.2s;
}
.wd-footer__totop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.wd-footer__totop.is-near-footer {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(8px) !important;
}
.wd-footer__totop:hover {
  border-color: #d1d5db;
  color: #374151;
}
.wd-footer__totop svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Privacy Policy Modal */
.wd-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 10000;
  padding: 24px;
}
.wd-modal[hidden] { display: none; }
.wd-modal__content {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 80vh;
  background-color: #fff;
  color: #191919;
  border-radius: 24px;
  padding: 0 36px 32px;
  display: flex;
  flex-direction: column;
}
.wd-modal__close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.wd-modal__close:hover { color: #191919; }
.wd-modal__title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
}
.wd-modal__title h2 {
  font-weight: 800;
  font-size: 22px;
  color: #191919;
  margin: 0;
}
.wd-modal__body {
  background: #fff;
  border-radius: 8px;
  padding: 16px 0 8px;
  overflow: hidden;
}
.wd-modal__body p {
  overflow-y: auto;
  max-height: 50vh;
  padding-right: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #191919;
  text-align: justify;
  margin: 0;
}

/* Responsive — Tablet (≤ 1080px) */
@media (max-width: 1080px) {
  .wd-footer { padding: 64px 4vw 80px; }
  .wd-footer__cs {
    position: static;
    transform: none;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    order: -1;
  }
  .wd-footer__cs-socials { justify-content: center; }
  .wd-footer__biz-pc { display: none; }
  .wd-footer__biz-mobile {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .wd-footer__biz-mobile p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    width: 100%;
    margin: 0;
  }
  .wd-footer__bottom {
    align-items: flex-start;
    text-align: left;
  }
  .wd-footer__copyright,
  .wd-footer__privacy-btn {
    text-align: left;
    width: 100%;
  }
}

/* Responsive — Mobile (≤ 480px) */
@media (max-width: 480px) {
  .wd-footer { padding: 56px 5vw 96px; }
  .wd-footer__cs-icon { width: 24px; height: 24px; }
  .wd-footer__cs-divider { margin: 0 16px; height: 18px; }
  .wd-footer__cs-tel { font-size: 32px; }
  .wd-footer__cs-label,
  .wd-footer__cs-hours { font-size: 14px; }
  .wd-footer__logo { font-size: 26px; }
  .wd-footer__biz-mobile p { font-size: 13px; }
  .wd-footer__copyright,
  .wd-footer__privacy-btn { font-size: 12px; }
  .wd-footer__totop {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
  .wd-modal__content {
    padding: 0 20px 20px;
    border-radius: 16px;
  }
  .wd-modal__title { height: 56px; }
  .wd-modal__title h2 { font-size: 18px; }
  .wd-modal__body p { font-size: 13px; max-height: 56vh; }
}

/* ============================================================
   FOOTER FLOATING CTA BAND
   - 푸터 상단에 절반 걸치는 알약형 CTA (모든 페이지 공통)
   - clone of webdot-blueprints / b_inpeople_cta_newsletter-subscribe
   ============================================================ */
.wd-footer-cta__outer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 100;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  pointer-events: none;
  transform: translateY(calc(100% + 48px));
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
.wd-footer-cta__outer.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.wd-footer-cta {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  height: 96px;
  padding: 0 32px 0 40px;
  border-radius: 48px;
  background: var(--accent-gradient);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45), 0 8px 24px rgba(47, 129, 247, 0.3);
}
.wd-footer-cta__left {
  display: flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}
.wd-footer-cta__stats {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.wd-footer-cta__stats strong {
  font-weight: 700;
  color: #fff;
}
.wd-footer-cta__stats-sep {
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}
.wd-footer-cta__right {
  display: flex;
  align-items: center;
  justify-self: end;
  flex-shrink: 0;
}
.wd-footer-cta__text {
  margin: 0;
  justify-self: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
}
.wd-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 200px;
  height: 56px;
  padding: 0 22px 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.wd-footer-cta__btn:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-1px);
}
.wd-footer-cta__btn-icon {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s ease;
}
.wd-footer-cta__btn:hover .wd-footer-cta__btn-icon { color: var(--accent); }

/* 푸터 하단 패딩 — fixed CTA가 마지막 컨텐츠를 가리지 않도록 푸터 자체를 늘림 */
.wd-footer { padding-bottom: 100px; }

/* Scroll-to-top 버튼을 CTA 밴드 세로 중앙선에 맞춤 */
.wd-footer__totop { bottom: 48px; }

/* Tablet (≤ 1080px) — 밴드를 세로 스택으로 전환 */
@media (max-width: 1080px) {
  .wd-footer-cta__outer { bottom: 16px; }
  .wd-footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    height: auto;
    padding: 20px 28px;
    border-radius: 28px;
    text-align: center;
  }
  .wd-footer-cta__left,
  .wd-footer-cta__right { justify-self: auto; }
  .wd-footer-cta__stats { font-size: 13px; white-space: normal; }
  .wd-footer-cta__stats-sep { margin: 0 8px; }
  .wd-footer-cta__text { font-size: 17px; }
  .wd-footer { padding-bottom: 180px; }
  .wd-footer__totop { bottom: calc(96px + env(safe-area-inset-bottom)); }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  .wd-footer-cta__outer { padding: 0 12px; bottom: 12px; }
  .wd-footer-cta {
    padding: 18px 18px;
    border-radius: 22px;
    gap: 12px;
  }
  .wd-footer-cta__text { font-size: 15px; }
  .wd-footer-cta__btn {
    min-width: 170px;
    height: 48px;
    font-size: 14px;
    padding: 0 18px 0 22px;
  }
  .wd-footer { padding-bottom: 200px; }
  .wd-footer__totop { bottom: calc(96px + env(safe-area-inset-bottom)); right: 16px; }
}

/* Mobile (≤ 768px) — 페이지별 sticky CTA와 겹치므로 글로벌 floating CTA 숨김
   탑 버튼은 하단 플로팅 퀵 서포트 바 위로 올림 */
@media (max-width: 768px) {
  .wd-footer-cta__outer { display: none !important; }
  .wd-footer { padding-bottom: 0; }
  .wd-footer__totop { bottom: calc(96px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 60px;
  background: var(--bg-primary);
  text-align: center;
}
.page-hero__title {
  font-size: 48px; font-weight: 900;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.page-hero__desc {
  font-size: 18px; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto;
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
  padding: var(--section-pad-pc) 0;
}
.section--dark { background: var(--bg-primary); }
.section--mid { background: var(--bg-secondary); }
.section--card { background: var(--bg-card); }
.section--accent {
  background: linear-gradient(135deg, #1158C7, #2F81F7);
}
.section__header {
  text-align: center; margin-bottom: 64px;
}
.section__header .heading-section {
  margin-bottom: 16px;
}
.section__header .text-sub {
  color: var(--text-secondary);
  max-width: 640px; margin: 0 auto;
}

/* ============================================================
   CARD
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(47, 129, 247, 0.1);
}
.card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(47, 129, 247, 0.1);
  border-radius: 14px; margin-bottom: 20px;
  color: var(--accent); font-size: 24px;
}
.card__title {
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.card__desc {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 8px; color: var(--text-primary);
}
.form-label .required {
  color: var(--accent); margin-left: 4px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%; padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px; color: var(--text-primary);
  font-size: 16px; transition: border-color 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 129, 247, 0.15);
}
.form-textarea {
  resize: vertical; min-height: 120px;
}
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B949E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--accent);
}
.form-check-label {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE — Tablet (768px)
   ============================================================ */
@media (max-width: 1024px) {
  .heading-hero { font-size: 48px; }
  .heading-section { font-size: 36px; }
  .heading-sub { font-size: 26px; }
  .section { padding: var(--section-pad-tablet) 0; }
  .page-hero { padding: 120px 0 48px; }
  .page-hero__title { font-size: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1180px) {
  /* Pill nav: tighter spacing */
  .nav { height: 64px; padding: 0; }
  .nav__inner { padding: 0 12px 0 24px; }
  .nav__logo { font-size: 22px; }
  .nav__menu { gap: 6px; }
  .nav__link { padding: 10px 14px; font-size: 15px; }
  .nav__link--cta { padding: 10px 18px; font-size: 14px; }
}

@media (max-width: 768px) {
  .heading-hero { font-size: 36px; }
  .heading-section { font-size: 28px; }
  .heading-sub { font-size: 22px; }
  .text-sub { font-size: 16px; }
  .text-body { font-size: 15px; }
  .section { padding: var(--section-pad-mobile) 0; }
  .page-hero { padding: 100px 0 40px; }
  .page-hero__title { font-size: 28px; }
  .page-hero__desc { font-size: 15px; }

  /* Nav mobile — full width, attached to top */
  .nav {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 64px;
    transform: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(48, 54, 61, 0.5);
    box-shadow: none;
  }
  .nav--hidden { transform: translateY(-100%); opacity: 1; }
  .nav__inner { padding: 0 20px; }
  .nav__menu { display: none !important; }
  .nav__link--cta { display: none !important; }
  .nav__toggle { display: flex !important; margin-left: auto; z-index: 2; }
  .nav__mobile-menu { top: 64px; height: calc(100vh - 64px); }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  .btn--lg { padding: 16px 32px; font-size: 18px; }
}

/* Light theme: pill nav mobile — restore solid bottom border */
.theme-light .nav {
  /* see base — already has light box-shadow */
}
@media (max-width: 768px) {
  .theme-light .nav {
    border: none;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: none;
  }
}

/* ============================================================
   FLOATING QUICK SUPPORT — 우측 세로 카드형 (desktop-only)
   clone of webdot-blueprints / a2_daouoffice_floating-ui_quick-support
   ============================================================ */
.wd-floating-quick {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: 92px;
  background-color: #fff;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wd-floating-quick.is-near-footer {
  opacity: 0;
  pointer-events: none;
}
.wd-floating-quick__list {
  list-style: none;
  margin: 0;
  padding: 22px 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wd-floating-quick__item { margin-top: 18px; }
.wd-floating-quick__item:first-child { margin-top: 0; }

.wd-floating-quick__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s;
}
.wd-floating-quick__link:hover { transform: translateY(-2px); }

.wd-floating-quick__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F1F3F6;
  margin-bottom: 8px;
}
.wd-floating-quick__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 6px;
  padding: 4px;
  box-sizing: border-box;
}
.wd-floating-quick__icon--chat svg { background-color: #FEE500; }
.wd-floating-quick__icon--book svg { background-color: #3FB950; }
.wd-floating-quick__icon--estimate svg { background-color: #F0883E; }

.wd-floating-quick__label {
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
  letter-spacing: -0.2px;
}

.wd-floating-quick__item--cta { margin-top: 20px; }
.wd-floating-quick__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: #2F81F7;
  border-radius: 9px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.wd-floating-quick__cta:hover { background-color: #1F6FE0; }

.wd-floating-quick__cta-text {
  display: inline-block;
  text-align: center;
  line-height: 1.25;
}
.wd-floating-quick__cta-line {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}
.wd-floating-quick__cta-line--accent {
  color: #FEE500;
  font-weight: 700;
  margin-bottom: 0;
}

@media screen and (max-width: 1080px) {
  .wd-floating-quick {
    top: auto;
    bottom: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14), 0 2px 6px rgba(15, 23, 42, 0.06);
  }
  .wd-floating-quick__list {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 10px 8px 14px;
    gap: 10px;
  }
  .wd-floating-quick__item { margin-top: 0; flex-shrink: 0; }
  .wd-floating-quick__link {
    flex-direction: column;
    gap: 2px;
  }
  .wd-floating-quick__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    background-color: #F1F5F9;
  }
  .wd-floating-quick__icon svg {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    padding: 3px;
  }
  .wd-floating-quick__label {
    font-size: 10.5px;
    font-weight: 600;
    color: #475569;
    letter-spacing: -0.3px;
  }
  .wd-floating-quick__item--cta {
    margin-top: 0;
    flex: 1;
    min-width: 0;
    margin-left: 4px;
  }
  .wd-floating-quick__cta {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2F81F7 0%, #1158C7 100%);
    box-shadow: 0 6px 16px rgba(47, 129, 247, 0.38);
    gap: 8px;
  }
  .wd-floating-quick__cta:hover,
  .wd-floating-quick__cta:active {
    background: linear-gradient(135deg, #1F6FE0 0%, #0E4AAD 100%);
  }
  .wd-floating-quick__cta::after {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") no-repeat center / contain;
  }
  .wd-floating-quick__cta-text {
    line-height: 1.2;
    white-space: nowrap;
  }
  .wd-floating-quick__cta-line {
    display: inline;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
  }
  .wd-floating-quick__cta-line--accent {
    margin-left: 4px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }
}

/* ============================================================
   SUB-VISUAL: Gradient CTA + Bubble
   cloned from webdot-blueprints/a2_daouoffice_subvisual_gradient-cta-bubble
   ============================================================ */
.wd-subvisual {
  position: relative;
  padding: 220px 20px 120px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}
.wd-subvisual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(47,129,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.wd-subvisual__inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.wd-subvisual__title-wrap { margin-bottom: 58px; }
.wd-subvisual__title {
  font-size: 58px;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 0;
  color: var(--text-primary);
}
.wd-subvisual__title-accent {
  display: block;
  margin-top: 24px;
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.15;
}
.wd-subvisual__desc {
  margin: 28px auto 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.wd-subvisual__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.wd-subvisual__cta-group {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.wd-subvisual__bubble {
  position: absolute;
  bottom: 68%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: #FFFFFF;
  color: #5D5D5D;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(47, 129, 247, 0.25);
  white-space: nowrap;
  z-index: 5;
  animation: wd-subvisual-bounce 2s ease-in-out infinite;
}
.wd-subvisual__bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #FFFFFF;
}
.wd-subvisual__bubble-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.wd-subvisual__bubble-accent {
  background: linear-gradient(90deg, #2F81F7 0%, #1158C7 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
@keyframes wd-subvisual-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-3px); }
}
.wd-subvisual__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 50px;
  min-width: 200px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}
.wd-subvisual__btn--primary {
  color: #FFFFFF;
  background: linear-gradient(90deg, #58D7FF 0%, #2F81F7 55%, #1158C7 100%);
  box-shadow: 0 18px 30px rgba(47, 129, 247, 0.25);
  border: 0;
}
.wd-subvisual__btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.wd-subvisual__btn--ghost {
  color: #191600;
  background: #FEE500;
  border: 2px solid #FEE500;
}
.wd-subvisual__btn--ghost:hover {
  transform: translateY(-1px);
  background: #F5DC00;
  border-color: #F5DC00;
}
@media (max-width: 1440px) {
  .wd-subvisual { padding: 190px 20px 100px; }
  .wd-subvisual__title { font-size: 48px; }
  .wd-subvisual__title-accent { font-size: 62px; }
  .wd-subvisual__title-wrap { margin-bottom: 50px; }
  .wd-subvisual__desc { font-size: 17px; }
}
@media (max-width: 1024px) {
  .wd-subvisual { padding: 170px 20px 80px; }
  .wd-subvisual__title { font-size: 42px; }
  .wd-subvisual__title-accent { font-size: 56px; }
  .wd-subvisual__title-wrap { margin-bottom: 44px; }
}
@media (max-width: 768px) {
  .wd-subvisual { padding: 140px 20px 64px; }
  .wd-subvisual__title { font-size: 26px; letter-spacing: -0.04em; }
  .wd-subvisual__title-accent { font-size: 36px; font-weight: 800; letter-spacing: -0.04em; }
  .wd-subvisual__title-wrap { margin-bottom: 32px; }
  .wd-subvisual__desc { font-size: 15px; margin-top: 20px; }
  .wd-subvisual__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .wd-subvisual__btn { width: 100%; min-width: 0; padding: 14px 24px; font-size: 17px; }
}

/* ============================================================
   PAGE HERO (서브페이지 공용 히어로)
   기준: 사업소개(.content_head/.h1) 타이포그래피
   point 20px · title 56px/600 · sub 56px/300 · desc 18px
   ============================================================ */
.wd-pagehero {
  padding: 160px 20px 80px;
  text-align: center;
  background: var(--bg-primary);
}
.wd-pagehero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.wd-pagehero__point {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  color: #1EC6DF;
  letter-spacing: -0.02em;
  margin: 0;
}
.wd-pagehero__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #333;
  margin: 0;
}
.wd-pagehero__title .sub {
  display: block;
  font-size: 56px;
  font-weight: 300;
  color: #333;
}
.wd-pagehero__desc {
  margin: 4px auto 0;
  max-width: 620px;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  color: #6B6B6B;
}
@media (max-width: 1024px) {
  .wd-pagehero { padding: 140px 20px 64px; }
  .wd-pagehero__title,
  .wd-pagehero__title .sub { font-size: 42px; }
}
@media (max-width: 768px) {
  .wd-pagehero { padding: 120px 20px 60px; }
  .wd-pagehero__point { font-size: 16px; }
  .wd-pagehero__title,
  .wd-pagehero__title .sub { font-size: 30px; }
  .wd-pagehero__desc { font-size: 15px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
