/* ============================================
   프루프앤벨류 - Premium CSS Design System v2
   ============================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ═══════════════════════════════════════
     PROOF & VALUE — Design System v2
     Premium Performance Dashboard
  ═══════════════════════════════════════ */

  /* COLOR — CORE NEUTRALS (Cool Charcoal) */
  --pv-bg:           #161616;
  --pv-bg-elevated:  #1D1D1D;
  --pv-bg-soft:      #242424;
  --pv-bg-card:      #1A1A1A;
  --pv-bg-card-2:    #202020;
  --pv-bg-card-hover:#262626;
  --pv-bg-glass:     rgba(255,255,255,0.03);

  --pv-surface-line:       rgba(255,255,255,0.08);
  --pv-surface-line-strong:rgba(255,255,255,0.12);
  --pv-surface-line-gold:  rgba(169,138,84,0.28);

  /* COLOR — BRAND BRONZE GOLD */
  --pv-gold:           #A98A54;
  --pv-gold-light:     #C5A76E;
  --pv-gold-dark:      #8D7140;
  --pv-gold-deep:      #7A6033;
  --pv-gold-glow:      rgba(169,138,84,0.14);
  --pv-gold-glow-strong:rgba(169,138,84,0.22);
  --pv-gold-tint:      rgba(169,138,84,0.06);

  /* COLOR — TEXT MAX LEVEL CONTRAST (Dark Mode) */
  --pv-text:        #F2F2F2;
  --pv-text-strong: #FFFFFF;
  --pv-text-soft:   #CCCCCC;
  --pv-text-muted:  #A0A0A0;
  --pv-text-faint:  #7A7A7A;
  --pv-text-inverse:#161616;

  /* COLOR — DATA / SEMANTIC */
  --pv-data-before:     #8E3E3E;
  --pv-data-before-soft:rgba(142,62,62,0.12);
  --pv-data-after:      #C8A84B;
  --pv-data-after-soft: rgba(200,168,75,0.14);

  --pv-success: #D5C17A;
  --pv-warning: #D89B52;
  --pv-danger:  #B95C5C;
  --pv-info:    #B9A56B;

  /* GRADIENTS */
  --pv-gradient-dark:   linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  --pv-gradient-card:   linear-gradient(180deg, #171717 0%, #121212 100%);
  --pv-gradient-gold:   linear-gradient(135deg, #A88A30 0%, #DEC06A 45%, #A88A30 100%);
  --pv-gradient-divider:linear-gradient(90deg, transparent 0%, rgba(200,168,75,0.32) 50%, transparent 100%);
  --pv-gradient-hero-overlay:
    radial-gradient(circle at 20% 20%, rgba(200,168,75,0.10), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.04), transparent 30%);

  /* TYPOGRAPHY */
  --pv-font-main:    'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  --pv-font-display: 'Unbounded', 'Pretendard', sans-serif; /* Point Font */

  --pv-fs-hero:    clamp(2.4rem, 6vw, 4.8rem);
  --pv-fs-h1:      clamp(2.0rem, 4.5vw, 3.8rem);
  --pv-fs-h2:      clamp(1.8rem, 3.2vw, 3rem);
  --pv-fs-h3:      clamp(1.25rem, 2vw, 1.8rem);
  --pv-fs-h4:      clamp(1.05rem, 1.4vw, 1.25rem);
  --pv-fs-body-lg: 1.125rem;
  --pv-fs-body:    1rem;
  --pv-fs-body-sm: 0.9375rem;
  --pv-fs-caption: 0.8125rem;
  --pv-fs-overline:0.75rem;

  --pv-lh-tight:   1.05;
  --pv-lh-heading: 1.12;
  --pv-lh-body:    1.72;
  --pv-lh-dense:   1.45;

  --pv-fw-regular:  400;
  --pv-fw-medium:   500;
  --pv-fw-semibold: 600;
  --pv-fw-bold:     700;
  --pv-fw-black:    800;

  /* SPACING */
  --pv-space-4:   0.25rem;
  --pv-space-8:   0.5rem;
  --pv-space-12:  0.75rem;
  --pv-space-16:  1rem;
  --pv-space-20:  1.25rem;
  --pv-space-24:  1.5rem;
  --pv-space-28:  1.75rem;
  --pv-space-32:  2rem;
  --pv-space-40:  2.5rem;
  --pv-space-48:  3rem;
  --pv-space-56:  3.5rem;
  --pv-space-64:  4rem;
  --pv-space-80:  5rem;
  --pv-space-96:  6rem;
  --pv-space-120: 7.5rem;

  /* LAYOUT */
  --pv-container:     1200px;
  --pv-container-wide:1320px;
  --pv-section-y:     clamp(72px, 10vw, 112px);
  --pv-section-y-sm:  clamp(48px, 8vw, 72px);
  --pv-grid-gap:      24px;
  --pv-grid-gap-lg:   32px;

  /* RADIUS */
  --pv-radius-xs:   10px;
  --pv-radius-sm:   14px;
  --pv-radius-md:   18px;
  --pv-radius-lg:   22px;
  --pv-radius-xl:   32px;
  --pv-radius-pill: 9999px;

  /* SHADOW (Refined, wider & lighter) */
  --pv-shadow-sm:   0 10px 40px rgba(0,0,0,0.03);
  --pv-shadow-md:   0 16px 40px rgba(0,0,0,0.06);
  --pv-shadow-lg:   0 24px 60px rgba(0,0,0,0.12);
  --pv-shadow-gold: 0 10px 28px rgba(169,138,84,0.10);

  /* MOTION */
  --pv-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --pv-ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --pv-ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --pv-duration-fast: 160ms;
  --pv-duration-base: 260ms;
  --pv-duration-slow: 420ms;

  /* Z-INDEX */
  --pv-z-nav:     50;
  --pv-z-floating:60;
  --pv-z-modal:   90;
  --pv-z-toast:   100;

  /* ═══════════════════════════════════════
     BACKWARD COMPATIBLE ALIASES
     기존 코드가 깨지지 않도록 alias 유지
  ═══════════════════════════════════════ */
  --bg-primary:    var(--pv-bg);
  --bg-secondary:  var(--pv-bg-elevated);
  --bg-tertiary:   var(--pv-bg-soft);
  --bg-card:       var(--pv-bg-card);
  --bg-card-hover: var(--pv-bg-card-hover);
  --bg-dark:       var(--pv-bg);
  --bg-dark-2:     var(--pv-bg-elevated);
  --bg-dark-card:  var(--pv-bg-glass);

  --gold:             var(--pv-gold);
  --gold-light:       var(--pv-gold-light);
  --gold-dark:        var(--pv-gold-dark);
  --gold-glow:        var(--pv-gold-glow);
  --gold-glow-strong: var(--pv-gold-glow-strong);
  --gradient-gold:    var(--pv-gradient-gold);
  --gradient-dark:    var(--pv-gradient-dark);
  --gradient-hero:    var(--pv-gradient-dark);
  --mesh-bg:
    radial-gradient(ellipse at 20% 30%, rgba(200,168,75,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(200,168,75,0.04) 0%, transparent 50%),
    var(--pv-bg);

  --text-primary:       var(--pv-text);
  --text-secondary:     var(--pv-text-muted);
  --text-muted:         var(--pv-text-faint);
  --text-dark-primary:  var(--pv-text);
  --text-dark-secondary:var(--pv-text-muted);
  --text-dark-muted:    var(--pv-text-faint);

  --border:       var(--pv-surface-line);
  --border-dark:  var(--pv-surface-line);
  --border-gold:  var(--pv-surface-line-gold);
  --border-light: var(--pv-surface-line-strong);

  --font-main:    var(--pv-font-main);
  --font-display: var(--pv-font-display);
  --font-body:    var(--pv-font-main);
  --font-serif:   'Pretendard', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  --radius-pill:     var(--pv-radius-pill);
  --radius-squircle: 20px;
  --radius-card:     var(--pv-radius-md);
  --radius-sm:       var(--pv-radius-xs);

  --section-padding: var(--pv-section-y);
  --container-max:   var(--pv-container);

  --ease-spring:   var(--pv-ease-spring);
  --ease-out:      var(--pv-ease-out);
  --ease-standard: var(--pv-ease-standard);
  --transition:      all 0.25s var(--pv-ease-standard);
  --transition-slow: all 0.5s var(--pv-ease-out);
  --transition-spring: all 0.45s var(--pv-ease-spring);

  /* Deprecated */
  --teal:      var(--pv-gold);
  --slate:     var(--pv-bg-card);
  --blue:      var(--pv-gold);
  --tilt-perspective: 1000px;
  --ev-gold:   var(--pv-gold);
}

/* ===== GLOBAL BASE v2 ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--pv-font-main);
  background-color: var(--pv-bg);
  color: var(--pv-text);
  font-size: var(--pv-fs-body);
  line-height: var(--pv-lh-body);
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

::selection {
  background: rgba(200,168,75,0.18);
  color: #fff;
}

/* 접근성: 모션 감소 선호 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== DARK SECTION (교차 다크 섹션) ===== */
.section--dark {
  background: var(--bg-dark);
  color: var(--text-dark-primary);
}
.section--dark .section-title { color: var(--text-dark-primary); }
.section--dark .section-desc  { color: var(--text-dark-secondary); }
.section--dark .section-label { color: var(--gold-dark); border-color: var(--border-gold); }

/* Hero는 항상 다크 */
.hero { background: var(--gradient-hero); color: var(--text-dark-primary); }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gradient-gold);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--gold-glow-strong);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  border-radius: 2px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION ===== */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 16px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
}

/* Shimmer sweep */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease-out);
}

.btn:hover::before {
  left: 150%;
}

/* Ripple container */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-primary {
  background: var(--bg-dark);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(17,17,17,0.06);
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  min-height: 50px;
  padding: 0 28px;
  border-radius: var(--radius-sm); /* 14px */
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(17,17,17,0.10);
  background: #202020;
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-dark);
  box-shadow: none;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  min-height: 50px;
  padding: 0 28px;
  border-radius: var(--radius-sm); /* 14px */
}

.btn-secondary:hover {
  background: var(--surface-line); /* 면 처리 최소화 */
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(17,17,17,0.06);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(245, 243, 239, 0.92); /* Cool Ivory */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 64px;
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo-proof {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.1em;
}

.logo-amp {
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 2px;
}

.logo-value {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.1em;
}

.logo-kr {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: transparent;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.nav-cta {
  color: #111 !important;
  background: linear-gradient(135deg, #DEC06A, #A88A30) !important;
  padding: 10px 24px !important;
  border-radius: 99px !important;
  font-weight: 700 !important;
  transition: transform 0.25s, filter 0.25s !important;
  margin-left: 12px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  filter: brightness(1.1) !important;
  color: #111 !important;
  transform: translateY(-2px) !important;
  background: linear-gradient(135deg, #DEC06A, #A88A30) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* Aurora orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: auroraDrift 14s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, rgba(118, 75, 162, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: auroraDrift 18s ease-in-out infinite alternate-reverse;
}

@keyframes auroraDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(3%, 4%) scale(1.06);
  }

  100% {
    transform: translate(-2%, 2%) scale(0.97);
  }
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(102, 126, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 126, 234, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle var(--duration, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.4;
  }

  33% {
    transform: translateY(-30px) translateX(15px) scale(1.1);
    opacity: 0.7;
  }

  66% {
    transform: translateY(15px) translateX(-20px) scale(0.9);
    opacity: 0.3;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(32px);
  animation: heroLineIn 0.7s var(--ease-out) forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.15s;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.title-line:nth-child(3) {
  animation-delay: 0.45s;
}

@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 32px rgba(201, 168, 76, 0.3));
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-quick-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  flex-wrap: wrap;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quick-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.qs-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-dark);
  line-height: 1;
}

.qs-unit {
  font-size: 1.2rem;
  font-weight: 700;
}

.qs-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.qs-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.5s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.7s;
}

.fade-in:nth-child(5) {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 3D CARD TILT ===== */
.card-tilt {
  perspective: var(--tilt-perspective);
  transform-style: preserve-3d;
}

.card-tilt-inner {
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
  will-change: transform;
}

/* ===== CUSTOM GLOW CURSOR ===== */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease, width 0.2s ease, height 0.2s ease;
  mix-blend-mode: screen;
}

.cursor-glow.cursor-hover {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.35) 0%, transparent 70%);
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

/* Glow edge on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(102, 126, 234, 0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(102, 126, 234, 0.35);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(102, 126, 234, 0.25);
}

.service-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  border-color: rgba(102, 126, 234, 0.2);
}

.service-card--featured::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-result {
  padding: 12px 20px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg-primary);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  text-align: center;
  line-height: 1.2;
  border: 3px solid rgba(102, 126, 234, 0.3);
  box-shadow: 0 0 40px rgba(102, 126, 234, 0.2);
}

.about-name-block h3 {
  font-size: 1.5rem;
  font-weight: 900;
}

.about-name-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.ab-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
}

.about-card-timeline {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.tl-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.tl-dot--purple {
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

.tl-dot--blue {
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

.tl-content {
  flex: 1;
}

.tl-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.tl-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.tl-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


.about-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-desc strong {
  color: var(--text-primary);
  font-weight: 700;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.highlight-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.hi-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.highlight-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== STATS ===== */
.stats-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.stats-bg-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-spring);
  transform-origin: left;
}

.stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.12);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

/* Counter pop */
.stat-num.pop {
  animation: counterPop 0.4s var(--ease-spring);
}

@keyframes counterPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.3);
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-unit {
  font-size: 1.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== CLIENTS ===== */
.clients-section {
  background: var(--bg-primary);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition-spring);
  will-change: transform;
}

.industry-card:hover {
  border-color: rgba(102, 126, 234, 0.35);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(102, 126, 234, 0.1);
}

.ind-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.client-logos {
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.client-logos-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.logo-item:hover .logo-text {
  color: var(--gold-dark);
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.logo-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--bg-secondary);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(102, 126, 234, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===== WHY US ===== */
.whyus-section {
  background: var(--bg-primary);
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.whyus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: var(--transition);
  position: relative;
}

.whyus-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.wc-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.whyus-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.whyus-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--bg-secondary);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 20px 0 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.cm-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cm-icon--kakao {
  background: rgba(255, 235, 0, 0.12);
  color: #FFE500;
  border: 1px solid rgba(255, 235, 0, 0.2);
}

.cm-icon--phone {
  background: rgba(102, 126, 234, 0.12);
  color: var(--blue);
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-method strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-method span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(102, 126, 234, 0.04);
}

.form-group select option {
  background: #1A1A2E;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
  background: #050509;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(14, 14, 24, 0.96);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 16px 28px;
  font-size: 0.9rem;
  color: var(--gold-dark);
  backdrop-filter: blur(24px);
  z-index: 9999;
  transition: transform 0.45s var(--ease-spring), opacity 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.2);
  opacity: 0;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual .about-card-main {
    max-width: 500px;
    margin: 0 auto;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 12, 0.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    /* Slide-in from right */
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.35s ease;
    display: flex;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s var(--ease-out), color 0.2s ease, background 0.2s ease;
  }

  .nav-link::after {
    display: none; /* 모바일에서는 밑줄 효과 제거 */
  }

  .nav-cta {
    margin-top: 24px;
    margin-left: 0;
    width: auto;
    min-width: 240px;
    text-align: center;
    font-size: 1.1rem !important;
    padding: 16px 24px !important;
  }

  .nav-menu.open .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.open li:nth-child(1) .nav-link {
    transition-delay: 0.05s;
  }

  .nav-menu.open li:nth-child(2) .nav-link {
    transition-delay: 0.10s;
  }

  .nav-menu.open li:nth-child(3) .nav-link {
    transition-delay: 0.15s;
  }

  .nav-menu.open li:nth-child(4) .nav-link {
    transition-delay: 0.20s;
  }

  .nav-menu.open li:nth-child(5) .nav-link {
    transition-delay: 0.25s;
  }

  .nav-menu.open li:nth-child(6) .nav-link {
    transition-delay: 0.30s;
  }

  .nav-menu.open li:nth-child(7) .nav-link {
    transition-delay: 0.35s;
  }

  .nav-menu.open li:nth-child(8) .nav-link {
    transition-delay: 0.40s;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-quick-stats {
    gap: 16px;
    padding: 20px 24px;
  }

  .qs-divider {
    height: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    grid-column: 1;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 32px;
  }

  .logos-strip {
    gap: 24px;
  }

  .logo-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-quick-stats {
    flex-direction: column;
    gap: 12px;
  }

  .qs-divider {
    width: 40px;
    height: 1px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--bg-primary);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: var(--transition-spring);
  will-change: transform;
}

.problem-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(102, 126, 234, 0.08);
}

.prob-card--solution {
  border-color: var(--border-gold);
  background: rgba(201, 168, 76, 0.05);
}

.prob-card--solution:hover {
  background: rgba(201, 168, 76, 0.08);
}

.prob-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.problem-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.prob-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.prob-link:hover {
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DIFFERENCE SECTION ===== */
.difference-section {
  background: var(--bg-secondary);
}

.diff-comparison {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.diff-col {
  flex: 1;
  padding: 36px 32px;
}

.diff-col--bad {
  background: rgba(255, 59, 59, 0.04);
}

.diff-col--good {
  background: rgba(201, 168, 76, 0.06);
}

.diff-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
  background: var(--bg-card);
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.diff-header {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.diff-header--bad {
  color: rgba(255, 100, 100, 0.8);
}

.diff-header--good {
  color: var(--gold);
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.diff-list li::before {
  content: '❌';
  position: absolute;
  left: 0;
  color: rgba(255, 100, 100, 0.7);
  font-weight: 700;
}

.diff-list--good li::before {
  content: '✓';
  color: var(--gold);
}

.diff-list--good li {
  color: var(--text-primary);
}

.diff-list--good li strong {
  color: var(--gold-dark);
}

.diff-image-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.diff-image {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.diff-caption {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.diff-caption strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .diff-comparison {
    flex-direction: column;
  }

  .diff-vs {
    width: 100%;
    height: 40px;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .diff-image-wrap {
    flex-direction: column;
  }

  .diff-image {
    width: 100%;
    height: auto;
  }
}

/* ===== PORTFOLIO / CASES ===== */
.portfolio-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: var(--transition-spring);
  will-change: transform;
}

.case-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.1);
}

.case-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.case-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.case-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.cs-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cs-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-before {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.cs-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.cs-after {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(201, 168, 76, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

.cs-after.cs-highlight {
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.12);
}

.cs-before.cs-full,
.cs-after.cs-full {
  flex: 1;
}

.cs-before.cs-good {
  color: var(--gold-dark);
  border-color: var(--border-gold);
  background: rgba(201, 168, 76, 0.08);
}

.case-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.portfolio-image {
  text-align: center;
}

.portfolio-image img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== INDUSTRY CARD FEATURED ===== */
.industry-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06));
  border-color: rgba(102, 126, 234, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.industry-card--featured .ind-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-bottom: 0;
}

.ind-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .industry-card--featured {
    grid-column: 1;
    flex-direction: column;
  }
}

/* ===== FITNESS FEATURE ===== */
.fitness-feature {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}

.fitness-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.fitness-text h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}

.fitness-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.fitness-text p strong {
  color: var(--gold-dark);
}

.fitness-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fitness-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .fitness-feature {
    flex-direction: column;
  }

  .fitness-img {
    width: 100%;
    height: 200px;
  }
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-gold);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--gold-dark);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-a p {
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-a p strong {
  color: var(--gold-dark);
}

/* ===== FOMO BAR ===== */
.fomo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.15), rgba(102, 126, 234, 0.12), rgba(201, 168, 76, 0.15));
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.fomo-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.fomo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.fomo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.fomo-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.fomo-text strong {
  color: var(--gold-dark);
  font-size: 1rem;
}

.fomo-cta {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0f;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
  white-space: nowrap;
}

.fomo-cta:hover {
  background: var(--gold-light);
}

.fomo-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: var(--transition);
}

.fomo-close:hover {
  color: var(--text-primary);
}

/* Offset navbar when FOMO bar is visible */
body.fomo-active .navbar {
  top: 44px;
}

body.fomo-active .hero {
  padding-top: 220px;
}

/* ===== CLIENT WALL ===== */
.client-wall {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.client-wall-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ctag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.ctag:hover {
  transform: translateY(-2px);
}

.ctag--fitness {
  background: rgba(102, 126, 234, 0.06);
  border-color: rgba(102, 126, 234, 0.2);
  color: rgba(180, 190, 255, 0.9);
}

.ctag--fitness:hover {
  background: rgba(102, 126, 234, 0.1);
}

.ctag--custom {
  background: rgba(255, 200, 100, 0.06);
  border-color: rgba(255, 200, 100, 0.2);
  color: rgba(255, 220, 150, 0.9);
}

.ctag--photo {
  background: rgba(200, 100, 255, 0.06);
  border-color: rgba(200, 100, 255, 0.2);
  color: rgba(220, 150, 255, 0.9);
}

.ctag--web {
  background: rgba(201, 168, 76, 0.06);
  border-color: var(--border-gold);
  color: var(--gold-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.12);
  font-family: Georgia, serif;
}

.testi-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-glow), rgba(102, 126, 234, 0.2));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WEB PORTFOLIO ===== */
.webportfolio-section {
  background: var(--bg-secondary);
}

.webportfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.wp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.wp-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.wp-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.wp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wp-card:hover .wp-img {
  transform: scale(1.05);
}

.wp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wp-card:hover .wp-overlay {
  opacity: 1;
}

.wp-overlay span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.wp-info {
  padding: 20px 24px;
}

.wp-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.wp-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.wp-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.wp-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  padding: 3px 10px;
  border-radius: 100px;
}

.webportfolio-cta {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(201, 168, 76, 0.08));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 32px 40px;
}

.wpcta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wpcta-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.wpcta-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .webportfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .webportfolio-grid {
    grid-template-columns: 1fr;
  }

  .wpcta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== FLOATING CTA — minimal bottom bar ===== */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 32px;
  gap: 10px;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fcta-label {
  font-family: 'Pretendard', sans-serif;
  font-size: .7rem;
  color: rgba(255,255,255,.25);
  margin-right: auto;
  letter-spacing: .02em;
  white-space: nowrap;
}

.fcta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fcta-phone {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55) !important;
  font-family: 'Pretendard', sans-serif;
  font-size: .78rem; font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: border-color .2s, color .2s;
  letter-spacing: .01em;
}

.fcta-phone:hover {
  border-color: rgba(255,255,255,.32);
  color: #EDEDED !important;
}

.fcta-consult {
  padding: 8px 20px;
  background: #EDEDED;
  color: #080808 !important;
  font-family: 'Pretendard', sans-serif;
  font-size: .8rem; font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: background .15s;
  letter-spacing: .01em;
  white-space: nowrap;
}

.fcta-consult:hover { background: #fff; }
.fcta-kakao { display: none; }

/* =====================================================
   WORLD-CLASS V3 ??ROI CALCULATOR
   ===================================================== */
.roi-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.roi-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.roi-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

/* Input panel */
.roi-inputs {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  backdrop-filter: blur(20px);
  position: relative;
}

.roi-inputs::before {
  content: 'INPUTS';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.roi-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.roi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.roi-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  background: linear-gradient(to right,
      var(--gold) var(--pct, 10%),
      rgba(255, 255, 255, 0.08) var(--pct, 10%));
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: height 0.2s ease;
}

.roi-slider:hover {
  height: 7px;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F0D882, #B8922A);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.18), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.roi-slider:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.2), 0 4px 16px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.roi-val {
  min-width: 76px;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-variant-numeric: tabular-nums;
}

/* Result panel ??animated gradient border */
.roi-result {
  position: relative;
  border-radius: 28px;
  padding: 2px;
  background: conic-gradient(from var(--roi-angle, 0deg), #C9A84C, #764BA2, #667EEA, #C9A84C);
  animation: roiBorderSpin 6s linear infinite;
}

@property --roi-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes roiBorderSpin {
  to {
    --roi-angle: 360deg;
  }
}

.roi-result-inner {
  background: #0A0A14;
  border-radius: 26px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  box-sizing: border-box;
}

.roi-result-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.roi-result-header::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.roi-numbers {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.roi-num-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.3s var(--ease-spring);
}

.roi-num-item:hover {
  transform: translateY(-3px);
}

.roi-num-item--highlight {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(118, 75, 162, 0.08) 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.12);
}

.roi-num-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.roi-num-value {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.roi-num-item--highlight .roi-num-value {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.65rem;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
}

.roi-num-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.roi-divider {
  color: rgba(201, 168, 76, 0.5);
  font-size: 1rem;
  align-self: center;
  flex-shrink: 0;
}

/* Visual gauge bar */
.roi-gauge-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roi-gauge-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.roi-gauge-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.roi-gauge-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 4px;
  width: 0%;
  transition: width 0.6s var(--ease-out);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.roi-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.roi-cta {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

/* =====================================================
   WORLD-CLASS V3 ??COMPARISON TABLE
   ===================================================== */
.compare-section {
  background: var(--bg-secondary);
}

.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.compare-table thead tr {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table th {
  padding: 20px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.compare-table td {
  padding: 15px 24px;
  text-align: center;
  font-size: 0.88rem;
}

.compare-th-feature {
  text-align: left !important;
  width: 30%;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Our column ??golden glow */
.compare-th-us {
  background: rgba(201, 168, 76, 0.07);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 2px solid var(--gold);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.compare-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #1A1000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

/* ============================================
   2026 EDITORIAL OVERRIDE — LP & BLOG SYSTEM
   ============================================ */

/* LP Hero : cream editorial */
.lp-hero {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 120px 24px 48px;
  text-align: center;
}
.lp-hero h1 { color: var(--text-primary); }
.lp-hero p  { color: var(--text-secondary); }

/* LP Stats strip */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--bg-dark);
  gap: 0;
}
.lp-stat { padding: 28px 20px; border-right: 1px solid rgba(255,255,255,.06); text-align: center }
.lp-stat:last-child { border-right: none }
.lp-stat-num  { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--gold); letter-spacing: -.03em; line-height: 1; margin-bottom: 6px }
.lp-stat-label { display: block; font-size: .72rem; color: rgba(255,255,255,.5); line-height: 1.4 }

/* LP Section body */
.lp-body    { max-width: 820px; margin: 0 auto; padding: 80px 24px 40px }
.lp-section { margin-bottom: 64px }
.lp-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 900; letter-spacing: -.03em;
  color: var(--text-primary); margin-bottom: 20px; line-height: 1.1;
}
.lp-section p { color: var(--text-secondary); line-height: 1.8; font-family: var(--font-body,var(--font-main)); }

/* LP Case grid */
.lp-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px }
.lp-case-card {
  background: var(--bg-card); border: 1.5px solid rgba(17,17,17,.08);
  border-radius: var(--radius-card); padding: 24px;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.lp-case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17,17,17,.09); border-color: var(--bg-dark) }
.lp-case-badge { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 10px }
.lp-case-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px }
.lp-case-stat { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid rgba(17,17,17,.07) }
.lp-case-stat-label { font-size: .8rem; color: var(--text-secondary) }
.lp-case-stat-value { font-size: .9rem; font-weight: 700; color: var(--text-primary) }

/* LP Reviews */
.lp-reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px }
.lp-review-card {
  background: var(--bg-card); border: 1.5px solid rgba(17,17,17,.08);
  border-radius: var(--radius-card); padding: 24px;
}
.lp-review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px }
.lp-review-text  { font-size: .86rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px }
.lp-review-author { display: flex; align-items: center; gap: 12px }
.lp-review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.lp-review-name { font-size: .85rem; font-weight: 700; color: var(--text-primary) }
.lp-review-job  { font-size: .75rem; color: var(--text-muted) }

/* LP Inline Form */
.lp-inline-form {
  background: var(--bg-dark); border-radius: 24px; padding: 44px;
}
.lp-inline-form h3 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
  color: #fff; letter-spacing: -.03em; margin-bottom: 10px;
}
.lp-form-subtitle { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 28px; line-height: 1.7 }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px }
.lp-form-group { display: flex; flex-direction: column; gap: 6px }
.lp-form-group label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4) }
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 13px 16px;
  font-size: .9rem; color: #fff; font-family: var(--font-body,var(--font-main));
  transition: border-color .2s;
}
.lp-form-group input::placeholder,
.lp-form-group textarea::placeholder { color: rgba(255,255,255,.2) }
.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus { outline: none; border-color: var(--gold) }
.lp-form-group select option { background: #111 }
.lp-form-group textarea { resize: vertical; min-height: 80px }
.lp-form-group--full { grid-column: 1/-1 }

/* LP CTA Row */
.lp-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px }

/* LP badge override */
.lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 20px; border-radius: var(--radius-pill);
  background: rgba(17,17,17,.05); border: 1.5px solid rgba(17,17,17,.12);
  font-size: .76rem; font-weight: 700; color: var(--text-secondary);
  letter-spacing: .06em; margin-bottom: 32px; text-transform: uppercase;
}

/* LP FAQ */
.lp-faq-accordion { margin-top: 24px }
.lp-faq-item { border-top: 1px solid rgba(17,17,17,.08) }
.lp-faq-item:last-child { border-bottom: 1px solid rgba(17,17,17,.08) }
.lp-faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body,var(--font-main)); font-size: .92rem; font-weight: 700;
  color: var(--text-primary); text-align: left; transition: color .2s;
}
.lp-faq-btn:hover { color: var(--gold-dark) }
.lp-faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; color: var(--text-muted) }
.lp-faq-btn[aria-expanded="true"] .lp-faq-icon { transform: rotate(180deg); color: var(--text-primary) }
.lp-faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease }
.lp-faq-answer p { font-size: .87rem; color: var(--text-secondary); line-height: 1.85; padding-bottom: 20px }

/* LP Internal links */
.lp-internal { max-width: 820px; margin: 0 auto; padding: 0 24px 48px }
.lp-internal h3 { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px }
.lp-links { display: flex; flex-wrap: wrap; gap: 8px }
.lp-links a {
  font-size: .78rem; color: var(--text-secondary);
  border: 1px solid rgba(17,17,17,.1); border-radius: var(--radius-pill);
  padding: 5px 16px; text-decoration: none; background: var(--bg-card);
  transition: border-color .2s, color .2s;
}
.lp-links a:hover { border-color: var(--bg-dark); color: var(--text-primary) }

/* LP Floating CTA */
.lp-floating-cta { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 10px; z-index: 999 }
.lp-fcta-phone,.lp-fcta-kakao {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .25s var(--ease-spring), box-shadow .2s;
  box-shadow: 0 4px 20px rgba(17,17,17,.18);
}
.lp-fcta-phone { background: var(--bg-dark); color: #fff }
.lp-fcta-kakao { background: #FEE500; color: #3A1D00 }
.lp-fcta-phone:hover,.lp-fcta-kakao:hover { transform: scale(1.12) translateY(-2px) }

/* Client wall tags */
.client-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px }
.client-tag {
  background: var(--bg-card); border: 1.5px solid rgba(17,17,17,.1);
  border-radius: var(--radius-pill); padding: 8px 18px;
  font-size: .82rem; color: var(--text-secondary); font-weight: 600;
  transition: border-color .2s, color .2s;
}
.client-tag:hover { border-color: var(--bg-dark); color: var(--text-primary) }

/* Compare table */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-card); overflow: hidden; margin-top: 24px }
.compare-table th { padding: 14px 18px; font-size: .85rem; font-weight: 700; text-align: left }
.compare-table td { padding: 14px 18px; font-size: .85rem; border-top: 1px solid var(--border) }
.compare-table .head-bad  { background: rgba(220,38,38,.06); color: #991B1B }
.compare-table .head-good { background: rgba(17,17,17,.05); color: var(--text-primary) }
.compare-table .bad-col  { color: var(--text-muted) }
.compare-table .good-col { font-weight: 600; color: var(--text-primary) }

@media(max-width:768px){
  .lp-stats{ grid-template-columns: 1fr 1fr }
  .lp-case-grid,.lp-reviews,.lp-form-row { grid-template-columns: 1fr }
  .lp-inline-form { padding: 28px 20px }
}
.compare-th-other,
.compare-th-diy {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
}

.compare-table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.compare-feature {
  text-align: left !important;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.compare-us {
  background: rgba(201, 168, 76, 0.04);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--text-primary);
  font-weight: 600;
}

.compare-other {
  color: var(--text-muted);
}

.compare-diy {
  color: var(--text-muted);
}

/* =====================================================
   WORLD-CLASS V3 ??PRICING
   ===================================================== */
.pricing-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  background: radial-gradient(ellipse, rgba(118, 75, 162, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

/* Base card */
.pricing-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-spring);
  position: relative;
  will-change: transform;
  backdrop-filter: blur(12px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* Featured card ??animated shimmer border */
.pricing-card--featured {
  padding: 2px;
  background: conic-gradient(from var(--card-angle, 0deg), #C9A84C 0%, #764BA2 30%, #667EEA 60%, #C9A84C 100%);
  border: none;
  animation: cardBorderSpin 5s linear infinite;
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 80px rgba(201, 168, 76, 0.2);
}

@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes cardBorderSpin {
  to {
    --card-angle: 360deg;
  }
}

.pricing-card--featured:hover {
  transform: translateY(-18px) scale(1.02);
}

.pricing-card--featured .pricing-inner {
  background: #0A0A14;
  border-radius: 26px;
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.pricing-card:not(.pricing-card--featured) .pricing-inner {
  display: contents;
}

.pricing-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #1A1000;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  z-index: 2;
}

.pricing-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-from {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-right: 2px;
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pricing-card--featured .pricing-amount {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.3));
}

.pricing-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Divider line */
.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.pricing-card--featured .pricing-divider {
  background: rgba(201, 168, 76, 0.2);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-feat--dim {
  color: var(--text-muted) !important;
  opacity: 0.45;
}

.pricing-feat--dim::before {
  content: '✗' !important;
  color: var(--text-muted) !important;
}

.pricing-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 28px;
  line-height: 1.6;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .roi-wrap {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

@media (max-width: 540px) {
  .roi-numbers {
    flex-direction: column;
    gap: 8px;
  }

  .roi-divider {
    transform: rotate(90deg);
    align-self: center;
  }

  .roi-num-item {
    width: 100%;
  }

  .roi-inputs,
  .roi-result-inner {
    padding: 28px 20px;
  }
}

/* =====================================================
   WORLD-CLASS V4 — FULL SITE POLISH
   ===================================================== */

/* ── 1. Page load intro curtain ── */
.page-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  pointer-events: none;
}

.page-intro__logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: scale(0.85);
  animation: introLogoIn 0.7s var(--ease-out) 0.2s forwards;
}

@keyframes introLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.page-intro.done {
  animation: introCurtainOut 0.7s var(--ease-out) forwards;
}

@keyframes introCurtainOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
  }
}

/* ── 2. Noise grain texture ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.028;
  mix-blend-mode: overlay;
}

/* ── 3. Magnetic button base ── */
.btn {
  transform-origin: center;
}

.btn--magnetic {
  transition: transform 0.25s var(--ease-spring) !important;
}

/* ── 4. Nav active indicator ── */
.nav-link {
  position: relative;
}

.nav-link.active {
  color: var(--text-primary) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: var(--gradient-gold);
  border-radius: 1px;
  animation: navLineIn 0.3s var(--ease-out) forwards;
}

@keyframes navLineIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ── 5. Section dividers ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(201, 168, 76, 0.15) 30%,
      rgba(201, 168, 76, 0.3) 50%,
      rgba(201, 168, 76, 0.15) 70%,
      transparent 100%);
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

/* ── 6. Hero word-split animation ── */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: wordSlideIn 0.6s var(--ease-out) forwards;
}

@keyframes wordSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 7. Service card — inner glow on hover ── */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

/* ── 8. Premium contact form ── */
.contact-form {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 28px !important;
  backdrop-filter: blur(20px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201, 168, 76, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08), inset 0 0 0 1px rgba(201, 168, 76, 0.25) !important;
  outline: none;
}

/* ── 9. FAQ hover gold line ── */
.faq-item {
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease-out);
  border-radius: 1px;
}

.faq-item:hover::before,
.faq-item.active::before {
  transform: scaleY(1);
}

/* ── 10. Floating CTA pulse ring ── */
.fcta-consult {
  position: relative;
}

.fcta-consult::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(201, 168, 76, 0.4);
  animation: pulsRing 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes pulsRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  80% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* ── 11. Section titles shimmer on hover ── */
.section-title {
  cursor: default;
}

.section-title:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #E8C97A 40%, #FFFFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 1.5s linear infinite;
}

@keyframes titleShimmer {
  to {
    background-position: 200% center;
  }
}

/* ── 12. Stat number — gold on complete ── */
.counter.done {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
}

/* ── Mobile safety ── */
@media (max-width: 768px) {
  .page-intro__logo {
    font-size: 1.1rem;
  }

  .section-divider {
    display: none;
  }
}

/* ============================================
   🔥 APEX UPGRADE — World-Class Enhancement
   ============================================ */

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

body > * { position: relative; z-index: 1; }

/* ── Scroll Reveal — blur + Y 동시 효과 ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out),
              filter 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

/* ── Glassmorphism 2.0 Cards ── */
.service-card,
.stat-card,
.case-card,
.whyus-card,
.industry-card,
.testi-card,
.pricing-card {
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.45s var(--ease-spring),
              box-shadow 0.45s ease,
              border-color 0.3s ease,
              background 0.3s ease;
}

.service-card:hover,
.stat-card:hover,
.case-card:hover,
.whyus-card:hover,
.industry-card:hover,
.testi-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.18),
    0 16px 48px rgba(0,0,0,0.28),
    0 0 40px rgba(201, 168, 76, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── Gold Border Gradient 상단 라인 ── */
.service-card::before,
.whyus-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.6) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 20px 20px 0 0;
}

.service-card:hover::before,
.whyus-card:hover::before,
.pricing-card:hover::before {
  opacity: 1;
}

/* ── Hero 타이틀 Glow 강화 ── */
.hero-title {
  text-shadow: 0 0 80px rgba(201, 168, 76, 0.08);
}

.title-accent {
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.45)) drop-shadow(0 0 80px rgba(201, 168, 76, 0.2));
}

/* ── Hero Aurora 강화 ── */
.hero::before {
  background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.18) 0%, rgba(118, 75, 162, 0.12) 40%, transparent 70%);
  animation: auroraDrift 12s ease-in-out infinite alternate;
}

.hero::after {
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.14) 0%, rgba(118, 75, 162, 0.08) 40%, transparent 70%);
  animation: auroraDrift 16s ease-in-out infinite alternate-reverse;
}

/* ── Testimonials Carousel ── */
.testimonials-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.testi-slide {
  min-width: 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}

.testi-card {
  background: rgba(255, 255, 255, 0.035);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-quote::before { content: '\201C'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.testi-quote::after  { content: '\201D'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-left: 4px; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800;
  color: #1A1000;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--gold);
}

/* Mobile carousel — 1 slide */
@media (max-width: 900px) {
  .testi-slide { min-width: 80%; }
}
@media (max-width: 560px) {
  .testi-slide { min-width: 100%; }
}

/* ── Floating CTA — minimal bottom bar (FINAL OVERRIDE) ── */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 32px;
  gap: 10px;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fcta-phone,
.fcta-kakao {
  width: auto !important;
  height: auto !important;
  border-radius: 4px !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.6) !important;
  padding: 8px 18px;
  font-family: 'Pretendard', sans-serif;
  font-size: .78rem; font-weight: 500;
  text-decoration: none;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  box-shadow: none !important;
  position: static;
  transition: border-color .2s, color .2s;
}

.fcta-phone:hover,
.fcta-kakao:hover {
  border-color: rgba(255,255,255,.35) !important;
  color: #EDEDED !important;
  transform: none !important;
  box-shadow: none !important;
}

.fcta-phone::before,
.fcta-kakao::before {
  display: none !important;
  content: none !important;
  animation: none !important;
}

.fcta-consult {
  background: #EDEDED !important;
  color: #080808 !important;
  font-family: 'Pretendard', sans-serif;
  font-size: .8rem; font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px !important;
  text-decoration: none;
  border: none;
  box-shadow: none !important;
  white-space: nowrap;
  letter-spacing: .01em;
  transition: background .15s;
  display: inline-flex;
  align-items: center;
  position: static;
}

.fcta-consult:hover {
  background: #fff !important;
  transform: none !important;
}

.fcta-consult::before {
  display: none !important;
  content: none !important;
}
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-spring);
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.fcta-phone,
.fcta-kakao {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  position: relative;
}

.fcta-phone {
  background: var(--gradient-gold);
  color: #1A1000;
}

.fcta-kakao {
  background: #FEE500;
  color: #3A1D1D;
  font-size: 1.4rem;
}

.fcta-phone:hover,
.fcta-kakao:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* 펄스 링 애니메이션 */
.fcta-phone::before,
.fcta-kakao::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulsRing 2.4s ease-out infinite;
}

.fcta-phone::before { border-color: var(--gold); animation-delay: 0s; }
.fcta-kakao::before { border-color: #FEE500; animation-delay: 0.8s; }

@keyframes pulsRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}

.fcta-consult {
  background: var(--gradient-main);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
  transition: transform 0.3s var(--ease-spring);
  text-align: center;
}

.fcta-consult:hover {
  transform: scale(1.06);
}

/* ── 모바일 Nav 풀스크린 오버레이 ── */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 7, 13, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    z-index: 998;
    padding: 80px 24px 40px;
    border-left: 1px solid var(--border);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }

  .nav-cta {
    margin-top: 16px;
    font-size: 1.1rem !important;
    padding: 16px 32px !important;
    background: var(--gold-glow) !important;
  }

  .hamburger {
    display: flex;
    z-index: 999;
    position: relative;
  }
}

/* ── Contact Form 개선 ── */
.contact-form select,
.contact-form input,
.contact-form textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  outline: none;
}

/* ── Toast 개선 ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(7, 7, 13, 0.96);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4), 0 0 20px rgba(201, 168, 76, 0.15);
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===================================================
   LP (LANDING PAGE) SHARED STYLES
   공통 LP 스타일 — 모든 lp-*.html 파일에서 공유
   =================================================== */
.lp-hero {
  background: var(--bg-primary);
  padding: 140px 20px 80px;
  text-align: center;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.lp-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.lp-hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.lp-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 20px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.lp-stat {
  text-align: center;
}

.lp-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.lp-stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.lp-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px;
}

.lp-section {
  margin-bottom: 60px;
}

.lp-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.lp-section p {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 14px;
}

.lp-faq {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 36px;
}

.lp-faq h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.lp-q {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.lp-a {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.lp-cta-box {
  background: linear-gradient(135deg, rgba(201, 168, 76, .1), rgba(102, 126, 234, .08));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.lp-cta-box h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.lp-cta-box p {
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.lp-internal {
  padding: 32px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-internal h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.lp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-links a {
  font-size: .82rem;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 14px;
  transition: .2s;
}

.lp-links a:hover {
  background: var(--gold-glow);
}

/* LP 지역 그리드 */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.area-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: .2s;
}

.area-chip:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}

/* LP 강남 지역 카드 */
.lp-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.lp-area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.lp-area-card .area-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.lp-area-card .area-result {
  font-size: .78rem;
  color: var(--gold);
}

/* LP 뷰티 업종 그리드 */
.beauty-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.beauty-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.beauty-emoji {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

.beauty-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* LP 플레이스 단계 그리드 */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.step-item .step-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

.step-item .step-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-item .step-desc {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* LP 공통 모바일 대응 */
@media (max-width: 640px) {
  .lp-hero h1 {
    font-size: 1.7rem;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .beauty-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   APEX UI — HERO GRAPH CARD (스파크라인)
   =================================================== */
.hero-graph-card {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(15, 15, 20, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 24px;
  backdrop-filter: blur(20px);
  min-width: 280px;
  max-width: 340px;
  animation-delay: 1.2s;
  position: relative;
  overflow: hidden;
}

.hero-graph-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hgc-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hgc-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 100px;
  padding: 2px 8px;
  letter-spacing: 0.05em;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hgc-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hgc-chart {
  position: relative;
}

.sparkline {
  width: 100%;
  height: 60px;
  display: block;
  overflow: visible;
}

.hgc-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hgc-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 8px;
}

.hgc-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* 타이핑 커서 */
#heroTypingText {
  color: var(--gold-dark);
  font-weight: 700;
}

#heroTypingText::after {
  content: '|';
  animation: blink 0.8s step-end infinite;
  color: var(--gold);
  margin-left: 1px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* 스파크라인 드로우 애니메이션 */
.sparkline path#sparkLine {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sparkline.drawn path#sparkLine {
  stroke-dashoffset: 0;
}

/* ===================================================
   APEX UI — 실시간 상담 알림 토스트 (좌하단)
   =================================================== */
.live-notify {
  position: fixed;
  left: 24px;
  bottom: 100px;
  background: rgba(15, 15, 20, 0.92);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  max-width: 300px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 9000;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
}

.live-notify.show {
  transform: translateX(0);
  opacity: 1;
}

.live-notify-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.live-notify strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.84rem;
  margin-bottom: 2px;
}

.live-notify span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .hero-graph-card {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
  .live-notify {
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }
}

/* ===================================================
   NEW SECTIONS — 플로우 다이어그램
   =================================================== */
.flow-section { background: var(--bg-dark); }

.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
}

.flow-step {
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  padding: 24px 16px;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
}

.flow-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.flow-step--result {
  background: rgba(184,144,42,0.08);
  border-color: rgba(184,144,42,0.4);
}

.flow-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.flow-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.flow-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark-primary);
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 0.78rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}

.flow-arrow {
  width: 50px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.6;
  padding: 0 4px;
}

.flow-arrow svg {
  width: 100%;
  height: 24px;
}

@media (max-width: 768px) {
  .flow-diagram { flex-direction: column; align-items: stretch; gap: 12px; }
  .flow-arrow { transform: rotate(90deg); width: 24px; margin: 0 auto; }
  .flow-step { max-width: 100%; }
}

/* ===================================================
   NEW SECTIONS — 상담 프로세스 타임라인
   =================================================== */
.process-section { background: var(--bg-primary); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  z-index: 0;
}

.proc-step {
  text-align: center;
  padding: 0 16px 32px;
  position: relative;
  z-index: 1;
}

.proc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px var(--gold-glow);
  background: #fff;
}

.proc-line { display: none; }

.proc-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.proc-step h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.proc-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.proc-time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 3px 12px;
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process-timeline::before { display: none; }
}

@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; }
}

/* ===================================================
   NEW SECTIONS — 성과 보장
   =================================================== */
.guarantee-section { background: var(--bg-dark); }

.guarantee-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 24px;
}

.guarantee-badge {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}

.guarantee-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-dark-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.guarantee-title em {
  color: var(--gold-dark);
  font-style: normal;
}

.guarantee-desc {
  font-size: 1rem;
  color: var(--text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}

.gi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
}

.gi-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(184,144,42,0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===================================================
   LOSS SECTION — 손실회피
   =================================================== */
.loss-section { background: var(--bg-dark); }

.loss-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.loss-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark-primary);
  line-height: 1.25;
  margin: 16px 0 20px;
}

.loss-title em {
  color: #FF6B6B;
  font-style: normal;
}

.loss-desc {
  font-size: 1rem;
  color: var(--text-dark-secondary);
  line-height: 1.8;
}

.loss-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loss-card {
  background: rgba(255,107,107,0.06);
  border: 1px solid rgba(255,107,107,0.25);
  border-radius: 20px;
  padding: 24px;
}

.loss-card--contrast {
  background: rgba(184,144,42,0.08);
  border-color: var(--border-gold);
}

.loss-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.loss-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark-primary);
  margin-bottom: 12px;
}

.loss-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loss-list li {
  font-size: 0.83rem;
  color: var(--text-dark-secondary);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.loss-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255,107,107,0.7);
}

.loss-card--contrast .loss-list li::before {
  color: var(--gold-dark);
}

.loss-card--contrast .loss-list li {
  color: var(--text-dark-secondary);
}

@media (max-width: 900px) {
  .loss-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===================================================
   이중 검수 시스템 카드 (Difference 섹션)
   =================================================== */
.review-system {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(102,126,234,0.05) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 36px 40px 28px;
  position: relative;
  overflow: hidden;
}

.review-system::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 24px 24px 0 0;
}

.rs-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rs-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: space-between;
}

.rs-step {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.rs-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.rs-step--final {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}

.rs-step-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  line-height: 1;
}

.rs-step-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 2px 10px;
  margin-bottom: 10px;
}

.rs-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.rs-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rs-step ul li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.rs-step ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.rs-arrow {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
  padding-top: 52px;
}

.rs-note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-style: italic;
}

.rs-note::before {
  content: '— ';
}

@media (max-width: 860px) {
  .rs-steps {
    flex-direction: column;
    gap: 12px;
  }
  .rs-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    width: auto;
    height: 32px;
  }
  .review-system {
    padding: 28px 20px 20px;
  }
}

/* ===================================================
   무료 경쟁사 분석 CTA 배너
   =================================================== */
.comp-analysis-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(102,126,234,0.07) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 64px 0;
}
.cab-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cab-label {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  color: var(--gold); background: var(--gold-glow);
  border: 1px solid var(--border-gold); border-radius: 100px;
  padding: 4px 14px; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 16px;
}
.cab-title { font-size: 2rem; font-weight: 900; line-height: 1.3; margin-bottom: 16px; }
.cab-title em { color: var(--gold); font-style: normal; }
.cab-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }
.cab-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border-gold); border-radius: 20px; padding: 28px; }
.cab-card-title { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.cab-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cab-list li { font-size: 0.88rem; color: var(--text-secondary); padding-left: 16px; position: relative; line-height: 1.5; }
.cab-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
@media (max-width: 860px) { .cab-inner { grid-template-columns: 1fr; gap: 32px; } .cab-title { font-size: 1.5rem; } }

/* ===================================================
   검수 증거 이미지 섹션 (PROOF)
   =================================================== */
.proof-section { background: var(--bg-dark); }
.proof-images { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.proof-img-wrap { border: 1px solid var(--border-gold); border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.02); }
.proof-img-label { padding: 14px 20px; font-size: 0.78rem; font-weight: 700; color: var(--gold); background: rgba(201,168,76,0.06); border-bottom: 1px solid var(--border-gold); letter-spacing: 0.04em; }
.proof-img { width: 100%; display: block; }
@media (max-width: 860px) { .proof-images { grid-template-columns: 1fr; } }

/* ===================================================
   EXIT-INTENT POPUP
   =================================================== */
.exit-popup {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; pointer-events: none; opacity: 0; transition: opacity 0.35s ease;
}
.exit-popup.show { opacity: 1; pointer-events: all; }
.exit-popup-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); cursor: pointer; }
.exit-popup-box {
  position: relative; background: var(--bg-card);
  border: 1px solid var(--border-gold); border-radius: 24px; padding: 40px 36px 36px;
  max-width: 460px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 40px rgba(201,168,76,0.1);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-popup.show .exit-popup-box { transform: scale(1) translateY(0); }
.exit-popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.exit-popup-close:hover { border-color: var(--border-gold); color: var(--gold); }
.ep-badge { display: inline-block; font-size: 0.72rem; font-weight: 800; color: var(--gold); background: var(--gold-glow); border: 1px solid var(--border-gold); border-radius: 100px; padding: 4px 12px; letter-spacing: 0.08em; margin-bottom: 16px; }
.ep-title { font-size: 1.6rem; font-weight: 900; line-height: 1.3; margin-bottom: 12px; }
.ep-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.ep-desc strong { color: var(--gold-dark); }
.ep-offer { background: rgba(201,168,76,0.06); border: 1px solid var(--border-gold); border-radius: 14px; padding: 16px 18px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.ep-offer-row { font-size: 0.83rem; color: var(--text-secondary); padding-left: 14px; position: relative; }
.ep-offer-row::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.ep-offer-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; border-top: 1px solid var(--border); padding-top: 10px; }
.ep-offer-note::before { display: none; }
.ep-cta { width: 100%; justify-content: center; }
@media (max-width: 480px) { .exit-popup-box { padding: 28px 20px 24px; } .ep-title { font-size: 1.3rem; } }

/* ╔══════════════════════════════════════════════════════╗
   ║  APEX WORLD-CLASS UI/UX — SENSORY UPGRADE PACK       ║
   ╚══════════════════════════════════════════════════════╝ */

/* ── ① OLED 그레인 텍스처 (최상위 레이어) ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9998; pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
}

/* ── ② 유동 타이포그래피 (Fluid Clamp) ── */
.hero-title,
.section-title {
  font-size: clamp(1.9rem, 4vw + 1rem, 3.6rem) !important;
}
.hero .hero-title {
  font-size: clamp(2.8rem, 7vw + 1rem, 5.5rem) !important;
}
.section-desc {
  font-size: clamp(0.92rem, 1vw + 0.6rem, 1.08rem) !important;
}

/* ── ③ CTA 심머 스윕 (시각적 중력) ── */
@keyframes cta-sweep {
  0%   { left: -80%; opacity: 0; }
  10%  { opacity: 1; }
  60%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
  animation: cta-sweep 3.4s ease infinite;
  pointer-events: none;
  border-radius: inherit;
}

/* ── ④ 햅틱 프레스 피드백 ── */
.btn, .btn-primary, .btn-secondary {
  transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.3s ease !important;
}
.btn:active, .btn-primary:active, .btn-secondary:active {
  transform: scale(0.94) translateY(1px) !important;
}

/* ── ⑤ Conic Gradient 애니메이션 보더 (추천 플랜/피처드 카드) ── */
@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes cardBorderSpin {
  to { --card-angle: 360deg; }
}
.service-card--featured,
.pricing-card--featured {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    conic-gradient(from var(--card-angle, 0deg), #B8902A, #667EEA, #764BA2, #B8902A) border-box !important;
  border: 2px solid transparent !important;
  animation: cardBorderSpin 6s linear infinite;
}
.section--dark .service-card--featured,
.section--dark .pricing-card--featured {
  background:
    linear-gradient(#1a2035, #1a2035) padding-box,
    conic-gradient(from var(--card-angle, 0deg), #B8902A, #667EEA, #764BA2, #B8902A) border-box !important;
}

/* ── ⑥ 접근성 포커스 시스템 (브랜드 동기화) ── */
:focus-visible {
  outline: 2px solid rgba(184, 144, 42, 0.75);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ── ⑦ 향상된 카드·섹션 Glow ── */
.service-card:hover,
.stat-card:hover,
.case-card:hover,
.whyus-card:hover {
  box-shadow:
    0 24px 60px rgba(0,0,0,0.18),
    0 0 0 1px var(--border-gold),
    0 0 32px rgba(184,144,42,0.12) !important;
}
.rs-step:hover {
  box-shadow: 0 8px 32px rgba(184,144,42,0.12);
}

/* ── ⑧ 섹션 전환 그라디언트 오버레이 ── */
.section--dark + .section:not(.section--dark)::before,
.section:not(.section--dark) + .section--dark::before {
  content: '';
  display: block;
  height: 64px;
  margin-top: -64px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
}

/* ── ⑨ 통계 숫자 Glow 강화 ── */
.stat-num {
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  text-shadow: 0 0 40px rgba(184,144,42,0.25);
}

/* ── ⑩ 히어로 그라디언트 오브 밀도 강화 ── */
.hero::before {
  opacity: 0.7 !important;
}
.hero::after {
  opacity: 0.5 !important;
}

/* ── ⑪ 골드 shimmer 스켈레톤 (이미지 로딩 중) ── */
@keyframes gold-shimmer {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.proof-img-wrap {
  position: relative;
}
.proof-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translateX(-120%);
  animation: gold-shimmer 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  background: linear-gradient(105deg, transparent 20%, rgba(184,144,42,0.09) 40%, rgba(212,171,78,0.18) 50%, rgba(184,144,42,0.09) 60%, transparent 80%);
  pointer-events: none;
  border-radius: 20px;
}
.proof-img-wrap.loaded::before {
  display: none;
}

/* ── ⑫ 비교표 우리 칸 Glow Column ── */
.compare-us {
  box-shadow: inset 0 0 0 1px rgba(184,144,42,0.3), 0 0 20px rgba(184,144,42,0.06) !important;
}

/* ── ⑬ 스크롤 진행 바 글로우 강화 ── */
.scroll-progress-bar {
  box-shadow: 0 0 12px rgba(184,144,42,0.6), 0 0 24px rgba(184,144,42,0.3) !important;
}

/* ── ⑭ 프리미엄 선택 텍스트 스타일 ── */

/* ─────────────────────────────────────────────
   TOAST — 에러 상태 스타일
──────────────────────────────────────────────── */
.toast--error {
  background: linear-gradient(135deg, #c0392b, #e74c3c) !important;
  border-color: rgba(231, 76, 60, 0.4) !important;
}

/* ─────────────────────────────────────────────
   LP 공통 인라인 폼 스타일
──────────────────────────────────────────────── */
.lp-inline-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  margin: 40px auto;
  max-width: 600px;
}
.lp-inline-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.lp-inline-form .lp-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media(max-width: 520px) {
  .lp-form-row { grid-template-columns: 1fr; }
}
.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.lp-form-group--full {
  grid-column: 1 / -1;
}

/* ─────────────────────────────────────────────
   LP 후기 카드
──────────────────────────────────────────────── */
.lp-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.lp-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.lp-review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.lp-review-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.lp-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1000;
  flex-shrink: 0;
}
.lp-review-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.lp-review-job {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   LP FAQ 아코디언
──────────────────────────────────────────────── */
.lp-faq-accordion .lp-faq-item {
  border-bottom: 1px solid var(--border);
}
.lp-faq-accordion .lp-faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
}
.lp-faq-accordion .lp-faq-btn:hover {
  color: var(--gold);
}
.lp-faq-accordion .lp-faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--text-muted);
}
.lp-faq-accordion .lp-faq-btn[aria-expanded="true"] .lp-faq-icon {
  transform: rotate(180deg);
  color: var(--gold);
}
.lp-faq-accordion .lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.lp-faq-accordion .lp-faq-answer p {
  padding: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────
   LP Floating CTA
──────────────────────────────────────────────── */
.lp-floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9000;
}
.lp-fcta-phone,
.lp-fcta-kakao {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-spring);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.lp-fcta-phone {
  background: var(--gradient-gold);
  color: #1a1000;
}
.lp-fcta-kakao {
  background: #FEE500;
  color: #3A1D1D;
}
.lp-fcta-phone:hover,
.lp-fcta-kakao:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* ─────────────────────────────────────────────
   LP 케이스 스터디 카드
──────────────────────────────────────────────── */
.lp-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.lp-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.lp-case-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.lp-case-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.lp-case-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.lp-case-stat:last-child { border-bottom: none; }
.lp-case-stat-label { color: var(--text-secondary); }
.lp-case-stat-value { font-weight: 700; color: var(--gold); }

/* ============================================
   WORLD-CLASS UTILITY LAYER
   Awwwards + Equiduct + Banch DNA
   ============================================ */

/* ── Glassmorphism cards (Equiduct) ── */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
}
.glass-dark {
  background: rgba(17,24,39,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ── Mesh gradient background (Equiduct) ── */
.mesh-bg {
  background: var(--mesh-bg);
}

/* ── Teal accent colors ── */
.text-teal { color: var(--teal); }
.border-teal { border-color: var(--border-teal); }
.bg-teal { background: var(--teal-glow); }

/* ── Font utilities (Outfit + Playfair) ── */
.font-display {
  font-family: var(--font-display);
}
.font-serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
}

/* ── Pill / Squircle shapes (Banch) ── */
.pill { border-radius: var(--radius-pill) !important; }
.squircle { border-radius: var(--radius-squircle) !important; }
.rounded-card { border-radius: var(--radius-card) !important; }

/* ── Pulse dot — Equiduct live status ── */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  top: -3px; left: -3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(45,212,191,0.3);
  animation: pulseRingAnim 2s ease-out infinite;
}
.pulse-dot--gold {
  background: var(--gold);
}
.pulse-dot--gold::after {
  background: rgba(232,184,75,0.3);
}
@keyframes pulseRingAnim {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ── Gold pulse ring (phone CTA) ── */
.pulse-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring::before {
  content:'';
  position:absolute;
  inset:-6px;
  border-radius:50%;
  border: 2px solid rgba(232,184,75,0.4);
  animation: pulseRingAnim 2.5s ease-out infinite;
}

/* ── Spinning badge (Banch) ── */
@keyframes spinBadge {
  to { transform: rotate(360deg); }
}
.spinning-badge {
  animation: spinBadge 14s linear infinite;
  transform-origin: center;
}

/* ── Teal gradient text ── */
.text-gradient-teal {
  background: linear-gradient(135deg, #2DD4BF, #67E8F9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Display font headline ── */
.headline-display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

/* ── Serif italic accent ── */
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(232,184,75,0.25));
}

/* ── Teal status badge ── */
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(45,212,191,0.08);
  border: 1px solid rgba(45,212,191,0.25);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}



/* =====================================================
   EVIDENCE BOARD — 2026 Editorial Redesign
   (index.html 전용 오버라이드)
   ===================================================== */

/* ── 리셋 & 토큰 ── */
:root {
  --ev-black:   #080808;
  --ev-dark2:   #111111;
  --ev-card:    #161616;
  --ev-cream:   #0F0F0F;
  --ev-offwhite:#131313;
  --ev-gold:    #B8924A;
  --ev-gold2:   #D4AA60;
  --ev-text:    #EDEDED;
  --ev-muted:   #636363;
  --ev-border:  rgba(255,255,255,0.07);
}

/* ── NAV ── */
.ev-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.ev-nav.scrolled { background: rgba(8,8,8,0.97); }
.ev-nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.ev-logo {
  font-family: 'Pretendard', sans-serif;
  font-weight: 900; font-size: 1.1rem; letter-spacing: .06em;
  color: #EDEDED; text-decoration: none;
  display: flex; align-items: center; gap: 2px;
}
.ev-logo-amp { color: var(--ev-gold); margin: 0 1px; }
.ev-nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.ev-nav-links a {
  font-family: 'Pretendard', sans-serif;
  font-size: .83rem; font-weight: 500;
  color: rgba(255,255,255,.42); text-decoration: none; letter-spacing: .01em;
  transition: color .2s;
}
.ev-nav-links a:hover { color: #EDEDED; }
.ev-nav-cta {
  padding: 9px 20px; background: rgba(184,146,74,.15) !important;
  color: var(--ev-gold) !important; border-radius: 4px;
  font-weight: 700 !important; letter-spacing: .02em;
  border: 1px solid rgba(184,146,74,.35) !important;
  transition: background .2s !important;
}
.ev-nav-cta:hover { background: rgba(184,146,74,.25) !important; }

/* ── HERO ── */
.ev-hero {
  min-height: 100vh; background: var(--ev-black);
  display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding-top: 68px;
}
.ev-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,168,67,.06) 0%, transparent 70%);
  pointer-events: none;
}
.ev-hero-content {
  max-width: 1200px; margin: 0 auto; padding: 40px 40px 32px;
  position: relative; z-index: 1;
}
.ev-hero-label {
  font-family: 'Pretendard', sans-serif;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: 36px;
}
.ev-hero-headline {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(4.0rem, 10vw, 8.5rem);
  font-weight: 800; line-height: 1.1; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.05em;
  letter-spacing: -.02em;
}
.ev-h1-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.9);
  text-stroke: 2px rgba(255,255,255,.9);
  display: block; width: 100%;
}
.ev-h1-solid {
  color: var(--ev-gold);
  display: block; width: 100%;
}
.ev-hero-sub {
  display: flex; align-items: baseline; gap: 20px;
  margin-top: 40px;
}
.ev-hero-number {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; color: var(--ev-gold);
  transition: opacity .4s;
}
.ev-hero-sub-text {
  font-family: 'Pretendard', sans-serif;
  font-size: .95rem; color: rgba(255,255,255,.5);
  max-width: 480px; text-align: left; line-height: 1.7;
}
.ev-hero-actions {
  display: flex; gap: 14px; margin-top: 48px; flex-wrap: wrap;
}
.ev-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; background: #EDEDED;
  color: #0A0A0A !important; font-weight: 700;
  font-size: .88rem; letter-spacing: .01em;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 4px; transition: background .2s, transform .2s;
  font-family: 'Pretendard', sans-serif;
}
.ev-btn-primary:hover { background: #fff; transform: translateY(-2px); }
.ev-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  background: transparent; color: rgba(255,255,255,.55) !important;
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 500; font-size: .88rem; letter-spacing: .01em;
  text-decoration: none; border-radius: 4px;
  transition: border-color .2s, color .2s;
  font-family: 'Pretendard', sans-serif;
}
.ev-btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff !important; }

/* Ticker */
.ev-hero-ticker {
  overflow: hidden; border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0; margin-top: auto;
}
.ev-ticker-track {
  display: flex; width: max-content;
  animation: evTick 24s linear infinite;
  font-family: 'Pretendard', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.ev-ticker-track span { padding: 0 28px; white-space: nowrap; }
.ev-tick-dot { color: var(--ev-gold); padding: 0 8px !important; }
@keyframes evTick {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CONTAINER ── */
.ev-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── SECTION COMMONS ── */
.ev-label {
  font-family: 'Pretendard', sans-serif;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.45); display: block; margin-bottom: 16px;
}
.ev-label-light { color: rgba(255,255,255,.42); }
.ev-h2 {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.025em;
  color: #EDEDED; margin: 0 0 24px;
}
.ev-h2 em { color: var(--ev-gold); font-style: normal; }
.ev-h2-light { color: #EDEDED; }
.ev-section-header { margin-bottom: 64px; }

/* ── NUMBERS ── */
.ev-numbers {
  padding: 120px 0; background: var(--ev-black);
}
.ev-numbers-header { margin-bottom: 64px; }
.ev-numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  margin-top: 0;
}
.ev-num-card {
  background: var(--ev-card); padding: 48px 32px;
  border: none; transition: background .2s;
}
.ev-num-card:hover { background: #1C1C1C; }
.ev-num-big {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; color: #EDEDED;
  line-height: 1; margin-bottom: 14px; letter-spacing: -.02em;
}
.ev-num-big span:last-child { font-size: .5em; color: var(--ev-gold); }
.ev-num-label {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700; font-size: .88rem; color: #EDEDED;
  margin-bottom: 6px;
}
.ev-num-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: .75rem; color: rgba(255,255,255,.52);
}

/* ── WHY (DARK) ── */
.ev-why {
  padding: 120px 0; background: var(--ev-black);
}
.ev-why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.ev-why-desc {
  font-family: 'Pretendard', sans-serif;
  color: rgba(255,255,255,.65); line-height: 1.85; font-size: .93rem;
  margin-top: 12px;
}
.ev-step {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  padding: 24px; border-radius: 6px;
}
.ev-step h4 { font-family: 'Pretendard', sans-serif; font-weight: 700; color: #EDEDED; margin: 0 0 6px; }
.ev-step p { font-family: 'Pretendard', sans-serif; font-size: .82rem; color: rgba(255,255,255,.62); margin: 0; line-height: 1.7; }
.ev-step-num {
  font-family: 'Pretendard', sans-serif; font-weight: 800; font-size: 1rem;
  color: rgba(255,255,255,.2); flex-shrink: 0; min-width: 36px;
}
.ev-step-num-gold { color: var(--ev-gold) !important; }
.ev-step-gold { border-color: rgba(212,168,67,.3) !important; }
.ev-step-arrow {
  text-align: center; color: rgba(255,255,255,.2); font-size: 1.4rem;
  padding: 8px 0;
}

/* ── SERVICES (DARK) ── */
.ev-services { padding: 120px 0; background: var(--ev-dark2); }
.ev-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); }
.ev-service-card {
  background: var(--ev-card); padding: 48px 36px;
  transition: background .2s;
}
.ev-service-card:hover { background: #1C1C1C; }
.ev-service-featured { background: #000; }
.ev-service-featured:hover { background: #0A0A0A; }
.ev-service-featured h3, .ev-service-featured p, .ev-service-featured li { color: rgba(255,255,255,.82) !important; }
.ev-service-tag {
  font-family: 'Pretendard', sans-serif; font-size: .6rem;
  letter-spacing: .18em; font-weight: 700; text-transform: uppercase;
  color: var(--ev-gold); margin-bottom: 16px; display: block;
}
.ev-service-card h3 {
  font-family: 'Pretendard', sans-serif; font-size: 1rem;
  font-weight: 700; color: #EDEDED; margin: 0 0 14px; line-height: 1.35;
}
.ev-service-card p {
  font-family: 'Pretendard', sans-serif; font-size: .84rem;
  color: rgba(255,255,255,.42); line-height: 1.75; margin-bottom: 20px;
}
.ev-service-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.ev-service-card ul li {
  font-family: 'Pretendard', sans-serif; font-size: .81rem;
  color: rgba(255,255,255,.42); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ev-service-card ul li::before { content: '→ '; color: var(--ev-gold); }
.ev-service-result {
  font-family: 'Pretendard', sans-serif; font-size: .75rem;
  color: var(--ev-gold); font-weight: 700; letter-spacing: .06em;
}

/* ── GUARANTEE (BLACK) ── */
.ev-guarantee { padding: 120px 0; background: var(--ev-black); text-align: center; }
.ev-guarantee-inner { max-width: 640px; margin: 0 auto; }
.ev-guarantee-badge {
  font-family: 'Pretendard', sans-serif; font-size: .62rem;
  letter-spacing: .2em; border: 1px solid rgba(184,146,74,.4);
  color: var(--ev-gold); display: inline-block;
  padding: 7px 18px; margin-bottom: 32px; border-radius: 3px;
  text-transform: uppercase;
}
.ev-guarantee-desc {
  font-family: 'Pretendard', sans-serif;
  color: rgba(255,255,255,.45); line-height: 1.85; font-size: .93rem;
  margin: 0 auto 36px;
}
.ev-guarantee-items { display: flex; flex-direction: column; gap: 10px; }
.ev-gi {
  font-family: 'Pretendard', sans-serif; font-size: .88rem;
  color: rgba(255,255,255,.55); padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.07); border-radius: 4px;
  text-align: left;
}

/* ── ABOUT (CREAM) ── */
.ev-about { padding: 120px 0; background: var(--ev-cream); }
.ev-about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ev-about-left p { font-family: 'Noto Sans KR', sans-serif; color: var(--ev-muted); line-height: 1.8; }
.ev-about-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.ev-badge {
  font-family: 'Pretendard', sans-serif; font-size: .72rem; font-weight: 600;
  padding: 7px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 40px;
  color: rgba(255,255,255,.55);
}
.ev-quote-card {
  background: var(--ev-black); padding: 36px; border-radius: 4px; margin-bottom: 32px;
}
.ev-quote { font-family: 'Noto Sans KR', sans-serif; color: rgba(255,255,255,.8); line-height: 1.8; font-size: .95rem; margin: 0 0 20px; font-style: italic; }
.ev-quote-author { font-family: 'Unbounded', sans-serif; font-size: .7rem; color: var(--ev-gold); letter-spacing: .06em; }
.ev-about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--ev-border); border: 1px solid var(--ev-border); }
.ev-as-item { background: var(--ev-offwhite); padding: 28px 20px; text-align: center; }
.ev-as-num { font-family: 'Unbounded', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--ev-black); margin-bottom: 6px; }
.ev-as-label { font-family: 'Noto Sans KR', sans-serif; font-size: .75rem; color: var(--ev-muted); }

/* ── REVIEWS (DARK) ── */
.ev-reviews { padding: 120px 0; background: var(--ev-black); }
.ev-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); margin-top: 2px; }
.ev-review-card {
  background: var(--ev-card); padding: 36px;
  border: none; transition: background .2s;
}
.ev-review-card:hover { background: #1C1C1C; }
.ev-review-stars { color: var(--ev-gold); font-size: .95rem; margin-bottom: 14px; }
.ev-review-text { font-family: 'Pretendard', sans-serif; font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.85; margin: 0 0 18px; }
.ev-review-author { font-family: 'Pretendard', sans-serif; font-size: .65rem; font-weight: 700; color: var(--ev-gold); letter-spacing: .08em; }

.ev-faq { padding: 120px 0; background: var(--ev-dark2); }
.ev-faq .ev-section-header { text-align: center; }
.ev-faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 0; margin: 0 auto; }
.ev-faq-list .faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.ev-faq-list .faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none; cursor: pointer;
  font-family: 'Pretendard', sans-serif; font-size: .93rem; font-weight: 600;
  color: #EDEDED; text-align: left; gap: 16px;
}
.ev-faq-list .faq-icon { flex-shrink: 0; transition: transform .3s; color: rgba(255,255,255,.35); }
.ev-faq-list .faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.ev-faq-list .faq-a { display: none; padding: 0 0 22px; }
.ev-faq-list .faq-a[aria-hidden="false"], .ev-faq-list .faq-q[aria-expanded="true"] + .faq-a { display: block; }
.ev-faq-list .faq-a p { font-family: 'Pretendard', sans-serif; font-size: .86rem; color: rgba(255,255,255,.42); line-height: 1.85; margin: 0; }

/* ── CONTACT (DARK) ── */
.ev-contact { padding: 120px 0; background: var(--ev-black); }
.ev-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ev-contact-desc { font-family: 'Pretendard', sans-serif; color: rgba(255,255,255,.46); line-height: 1.85; margin: 12px 0 32px; font-size: .92rem; }
.ev-contact-methods { display: flex; flex-direction: column; gap: 10px; }
.ev-contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 20px; border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65); text-decoration: none;
  font-family: 'Pretendard', sans-serif; font-size: .88rem; font-weight: 500;
  border-radius: 5px; transition: border-color .2s, color .2s;
}
.ev-contact-method:hover { border-color: rgba(184,146,74,.5); color: #EDEDED; }
#kakaoBtn, #kakaoBtn:hover { color: #080808 !important; }
.ev-contact-form-wrap {}
.ev-form {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  padding: 36px; border-radius: 6px;
}
.ev-form h3 { font-family: 'Pretendard', sans-serif; font-size: .88rem; font-weight: 700; color: #EDEDED; margin: 0 0 24px; letter-spacing: .01em; }
.ev-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ev-form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.ev-form-group label { font-family: 'Pretendard', sans-serif; font-size: .77rem; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: .01em; }
.ev-form input, .ev-form select, .ev-form textarea {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: #EDEDED; padding: 12px 15px; font-family: 'Pretendard', sans-serif;
  font-size: .86rem; border-radius: 4px; outline: none;
  transition: border-color .2s;
}
.ev-form input:focus, .ev-form select:focus, .ev-form textarea:focus { border-color: rgba(184,146,74,.5); }
.ev-form select option { background: #181818; color: #EDEDED; }
.ev-form input::placeholder, .ev-form textarea::placeholder { color: rgba(255,255,255,.2); }
.ev-form textarea { resize: vertical; min-height: 90px; }

/* ── FOOTER ── */
.ev-footer { padding: 80px 0 40px; background: #050505; border-top: 1px solid rgba(255,255,255,.05); }
.ev-footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; margin-bottom: 48px; }
.ev-footer-brand p { font-family: 'Pretendard', sans-serif; font-size: .8rem; color: rgba(255,255,255,.32); line-height: 1.85; margin: 0; }
.ev-footer-brand .ev-logo { margin-bottom: 16px; }
.ev-footer-links { display: flex; gap: 60px; }
.ev-footer-links h5 { font-family: 'Pretendard', sans-serif; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.28); margin: 0 0 16px; }
.ev-footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ev-footer-links a { font-family: 'Pretendard', sans-serif; font-size: .8rem; color: rgba(255,255,255,.32); text-decoration: none; transition: color .2s; }
.ev-footer-links a:hover { color: rgba(255,255,255,.7); }
.ev-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.ev-footer-bottom p { font-family: 'Pretendard', sans-serif; font-size: .72rem; color: rgba(255,255,255,.22); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ev-nav-inner { padding: 0 20px; }
  .ev-nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(8,8,8,.97); padding: 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.06); box-shadow: 0 8px 32px rgba(0,0,0,.5); }
  .ev-nav-links.open { display: flex; }
  .ev-hero-content { padding: 60px 24px 40px; }
  .ev-hero-headline { font-size: clamp(3.5rem, 14vw, 6rem); }
  .ev-container { padding: 0 24px; }
  .ev-numbers-grid { grid-template-columns: repeat(2,1fr); }
  .ev-why-inner, .ev-about-inner, .ev-contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .ev-services-grid { grid-template-columns: 1fr; }
  .ev-reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .ev-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .ev-footer-links { flex-wrap: wrap; gap: 32px; }
  .ev-hero-sub { flex-direction: column; gap: 8px; }
  .ev-form-row { grid-template-columns: 1fr; }
  .ev-numbers { padding: 80px 0; }
  .ev-why, .ev-services, .ev-guarantee, .ev-about, .ev-reviews, .ev-faq, .ev-contact { padding: 80px 0; }
  .ev-footer-bottom { flex-direction: column; gap: 4px; }
}

/* hide old .hero section if accidentally rendered */
.hero { display: none !important; }
.fomo-bar { display: none !important; }
.comp-analysis-banner { display: none !important; }


/* =====================================================
   EVIDENCE BOARD — Typography & UX Polish (v2)
   ===================================================== */

/* ── 한글 타이포그래피 세밀 보정 ── */
.ev-hero-content, .ev-numbers, .ev-why, .ev-services,
.ev-guarantee, .ev-about, .ev-reviews, .ev-faq, .ev-contact, .ev-footer {
  font-family: 'Noto Sans KR', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ── 섹션 헤더 정렬 통일 ── */
.ev-section-header { text-align: left; }

.ev-numbers .ev-section-header,
.ev-reviews .ev-section-header,
.ev-faq .ev-section-header { text-align: left; }

.ev-guarantee { text-align: center; }
.ev-guarantee .ev-guarantee-inner { text-align: center; }

/* ── h2 행간 & 자간 ── */
.ev-h2 {
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.ev-h2 br + * { display: block; }

/* ── Label 한글화 대응 ── */
.ev-label {
  font-family: 'Unbounded', sans-serif;
  font-size: .58rem;
  letter-spacing: .22em;
}

/* ── Hero 타이포 정밀 조정 ── */
.ev-hero-label {
  letter-spacing: .22em;
  font-size: .6rem;
}
.ev-hero-headline {
  letter-spacing: -0.04em;
}
.ev-h1-outline {
  line-height: 0.92;
  padding-bottom: 0.04em;
}

/* ── 숫자 카드 타이포 ── */
.ev-num-big {
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.ev-num-label {
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .01em;
}

/* ── 서비스 카드 h3 ── */
.ev-service-card h3 {
  letter-spacing: -0.01em;
  font-size: 1rem;
  line-height: 1.35;
}

/* ── 리뷰 카드 텍스트 ── */
.ev-review-text {
  font-size: .9rem;
  line-height: 1.85;
  letter-spacing: .005em;
}

/* ── About 인용구 ── */
.ev-quote {
  font-style: normal;
  letter-spacing: .01em;
  line-height: 1.85;
}

/* ── CTA 버튼 텍스트 ── */
.ev-btn-primary, .ev-btn-ghost {
  font-size: .88rem;
  letter-spacing: .05em;
}

/* ── 연락처 폼 label ── */
.ev-form-group label {
  letter-spacing: .04em;
  font-size: .78rem;
}

/* ── FAQ 질문 텍스트 ── */
.ev-faq-list .faq-q span {
  font-size: .92rem;
  letter-spacing: .01em;
  line-height: 1.5;
}
.ev-faq-list .faq-a p {
  letter-spacing: .005em;
  line-height: 1.9;
}

/* ── 스텝 박스 h4 ── */
.ev-step h4 {
  letter-spacing: .01em;
  font-size: .9rem;
}

/* ── 보증 아이템 ── */
.ev-gi {
  font-size: .88rem;
  letter-spacing: .01em;
}

/* ── 연락처 방법 ── */
.ev-contact-desc {
  letter-spacing: .005em;
  font-size: .9rem;
}

/* ── 네비게이션 한글 링크 ── */
.ev-nav-links a {
  letter-spacing: .025em;
  font-size: .83rem;
}

/* ── 푸터 ── */
.ev-footer-brand p {
  letter-spacing: .01em;
  line-height: 1.9;
}
.ev-footer-links a {
  letter-spacing: .01em;
}

/* =====================================================
   ROI 계산기 섹션 (Evidence Board 스타일)
   ===================================================== */
.ev-roi {
  padding: 120px 0;
  background: var(--ev-dark2);
}
.ev-roi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 0;
}
.ev-roi-inputs { display: flex; flex-direction: column; gap: 28px; }
.ev-roi-field {}
.ev-roi-field label {
  font-family: 'Pretendard', sans-serif;
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.62); letter-spacing: .02em;
  display: block; margin-bottom: 10px;
}
.ev-roi-slider-wrap {
  display: flex; align-items: center; gap: 16px;
}
.ev-roi-slider {
  -webkit-appearance: none; appearance: none;
  flex: 1; height: 2px; background: rgba(255,255,255,.14); border-radius: 2px; outline: none;
}
.ev-roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  background: var(--ev-gold); border-radius: 50%; cursor: pointer;
  box-shadow: 0 2px 8px rgba(184,146,74,.4);
}
.ev-roi-val {
  font-family: 'Pretendard', sans-serif;
  font-size: .82rem; font-weight: 700; color: #EDEDED;
  min-width: 80px; text-align: right;
}
.ev-roi-result {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  padding: 40px; border-radius: 8px;
  position: sticky; top: 88px;
}
.ev-roi-result-header {
  font-family: 'Pretendard', sans-serif;
  font-size: .62rem; letter-spacing: .2em; color: var(--ev-gold);
  text-transform: uppercase; margin-bottom: 28px; font-weight: 700;
}
.ev-roi-numbers { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.ev-roi-num-item {}
.ev-roi-num-label {
  font-family: 'Pretendard', sans-serif;
  font-size: .75rem; color: rgba(255,255,255,.58); margin-bottom: 4px;
}
.ev-roi-num-value {
  font-family: 'Pretendard', sans-serif;
  font-size: 1.7rem; font-weight: 800; color: #EDEDED;
  letter-spacing: -0.02em;
}
.ev-roi-num-value.highlight { color: var(--ev-gold); font-size: 2.2rem; }
.ev-roi-num-sub {
  font-family: 'Pretendard', sans-serif;
  font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 4px;
}
.ev-roi-separator {
  border: none; border-top: 1px solid rgba(255,255,255,.07);
  margin: 6px 0;
}
.ev-roi-disclaimer {
  font-family: 'Pretendard', sans-serif;
  font-size: .72rem; color: rgba(255,255,255,.38);
  line-height: 1.75; margin-bottom: 22px;
}

@media (max-width: 900px) {
  .ev-roi-wrap { grid-template-columns: 1fr; }
  .ev-roi-result { position: static; }
  .ev-roi { padding: 80px 0; }
}


/* =====================================================
   WHY IT WORKS — 광고 효과 섹션
   ===================================================== */
.ev-effects {
  padding: 120px 0;
  background: var(--ev-black);
}
.ev-effects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0;
}
.ev-effect-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  padding: 40px 36px;
  border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.ev-effect-card:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.ev-effect-num {
  font-family: 'Pretendard', sans-serif;
  font-size: .6rem; font-weight: 700; letter-spacing: .2em;
  color: var(--ev-gold); text-transform: uppercase; margin-bottom: 14px;
  display: block;
}
.ev-effect-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.ev-effect-card h4 {
  font-family: 'Pretendard', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #EDEDED;
  margin: 0 0 10px;
  line-height: 1.4;
  letter-spacing: -.01em;
  word-break: keep-all;
}
.ev-effect-card p {
  font-family: 'Pretendard', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.58);
  line-height: 1.8;
  margin: 0;
  word-break: keep-all;
}

/* About 배지 개선 */
.ev-about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.ev-badge {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  padding: 7px 14px;
  border: 1.5px solid rgba(0,0,0,.18);
  border-radius: 40px;
  color: var(--ev-black);
  letter-spacing: .01em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .ev-effects { padding: 80px 0; }
  .ev-effects-grid { grid-template-columns: 1fr; }
  .ev-effect-card:nth-child(4),
  .ev-effect-card:nth-child(5) { grid-column: auto; margin: 0; }
}

/* =====================================================
   WORLD-CLASS PATCH v3 — 2026-03-19
   히어로 가독성 / 로고 간격 / 폰트 통일 / 모바일
   ===================================================== */

/* ── 로고 간격 패치 ── */
.ev-logo {
  gap: 0 !important;
  letter-spacing: 0.05em;
}
.ev-logo-amp {
  margin: 0 3px !important;
  letter-spacing: 0;
}

/* ── 히어로 제목: outline 제거 → solid white ── */
.ev-h1-line {
  color: #ffffff;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  display: block;
  width: 100%;
  line-height: 0.92;
  padding-bottom: 0.04em;
}
.ev-h1-amp {
  color: var(--ev-gold);
  display: block;
  width: 100%;
  line-height: 0.92;
}

/* ── 섹션 h2: Noto Serif KR으로 교체(가독성 ↑) ── */
.ev-h2 {
  font-family: 'Noto Serif KR', 'Noto Sans KR', serif !important;
  letter-spacing: -0.01em !important;
}

/* ── 히어로 레이블/서브 폰트 정돈 ── */
.ev-hero-label {
  font-family: 'Noto Sans KR', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  font-weight: 500 !important;
}
.ev-hero-headline {
  font-family: 'Noto Sans KR', sans-serif !important;
  letter-spacing: -0.03em !important;
}

/* ── 폼 제출 완료 메시지 ── */
.ev-form-success {
  padding: 20px; border-radius: 6px;
  background: rgba(39,174,96,.15); border: 1px solid rgba(39,174,96,.4);
  color: rgba(255,255,255,.9); font-size: 0.9rem;
  text-align: center; margin-top: 16px;
}

/* ── 모바일 480px 이하 보강 ── */
@media (max-width: 480px) {
  .ev-nav-inner { padding: 0 16px; height: 58px; }
  .ev-hero-content { padding: 32px 16px 24px; }
  .ev-hero-headline { font-size: clamp(2.3rem, 12vw, 3.6rem) !important; }
  .ev-hero-number { font-size: clamp(2rem, 10vw, 3.5rem) !important; }
  .ev-container { padding: 0 16px; }
  .ev-btn-primary, .ev-btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }
  .ev-hero-actions { flex-direction: column; gap: 10px; }
  .ev-num-card { padding: 32px 20px; }
  .ev-num-big { font-size: clamp(2rem, 9vw, 3rem); }
  .ev-why, .ev-services, .ev-guarantee, .ev-about,
  .ev-reviews, .ev-faq, .ev-contact, .ev-numbers { padding: 60px 0; }
  .ev-service-card { padding: 32px 20px; }
  .ev-section-header { margin-bottom: 40px; }
  .ev-form { padding: 24px 16px; }
  .ev-about-inner { gap: 32px; }
  .ev-contact-inner { gap: 32px; }
  .ev-numbers-grid { grid-template-columns: 1fr 1fr; }
  .ev-about-stats { grid-template-columns: repeat(3,1fr); }
  .ev-footer-links { flex-direction: column; gap: 24px; }
  .ev-footer-inner { gap: 32px; }
  .floating-cta { bottom: 14px; right: 14px; }
}

/* ── 모바일 공통: word-break 강화 ── */
@media (max-width: 768px) {
  .ev-h2, .ev-hero-sub-text, .ev-contact-desc,
  .ev-why-desc, .ev-guarantee-desc, .ev-review-text,
  .faq-a p, .ev-service-card p, .ev-about-left p {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.85;
  }
  .ev-hero-label { margin-bottom: 20px !important; }
  .ev-hero-sub { margin-top: 28px; }
  .ev-why-inner, .ev-about-inner, .ev-contact-inner { gap: 36px; }
}

/* ════════════════════════════════════════════════════
   DESIGN SYSTEM v2 — 컴포넌트 클래스
   모든 신규 섹션에 사용할 v2 스타일
════════════════════════════════════════════════════ */

/* --- .reveal v2: is-visible 지원 추가 (기존 .revealed도 유지) --- */
.reveal.is-visible,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- 레이아웃 유틸 --- */
.pv-container {
  width: min(100% - 32px, var(--pv-container));
  margin-inline: auto;
}

.pv-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--pv-grid-gap); }
.pv-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--pv-grid-gap); }
.pv-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--pv-grid-gap); }

/* --- 섹션 라벨 v2 --- */
.pv-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--pv-surface-line-gold);
  border-radius: var(--pv-radius-pill);
  background: var(--pv-gold-tint);
  color: var(--pv-gold-light);
  font-size: var(--pv-fs-overline);
  font-weight: var(--pv-fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ STAT TILE (숫자 타일) ============ */
.stat-tile {
  padding: 20px 18px;
  border-radius: var(--pv-radius-sm);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  text-align: center;
  transition: border-color var(--pv-duration-base) var(--pv-ease-standard);
}
.stat-tile:hover { border-color: var(--pv-surface-line-gold); }

.stat-tile__value {
  display: block;
  margin-bottom: 8px;
  color: var(--pv-gold-light);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: var(--pv-fw-black);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-tile__label {
  color: var(--pv-text-muted);
  font-size: var(--pv-fs-caption);
  line-height: 1.5;
}

/* ============ PROOF CARD (증거 카드) ============ */
.ev-proof-card {
  position: relative;
  padding: 28px;
  border-radius: var(--pv-radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
              var(--pv-gradient-card);
  border: 1px solid var(--pv-surface-line);
  box-shadow: var(--pv-shadow-md);
  overflow: hidden;
  transition: transform var(--pv-duration-base) var(--pv-ease-out),
              border-color var(--pv-duration-base) var(--pv-ease-standard);
}
.ev-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--pv-gradient-divider);
}
.ev-proof-card:hover {
  transform: translateY(-3px);
  border-color: var(--pv-surface-line-gold);
}

.ev-proof-card__label {
  display: block;
  margin-bottom: 12px;
  color: var(--pv-gold-light);
  font-size: var(--pv-fs-overline);
  font-weight: var(--pv-fw-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.ev-proof-card__value {
  color: var(--pv-gold-light);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--pv-fw-black);
  line-height: 1;
  letter-spacing: -0.05em;
}
.ev-proof-card__desc {
  color: var(--pv-text-soft);
  font-size: var(--pv-fs-body-sm);
  line-height: 1.68;
}

/* ============ DATA BAR (Before/After) ============ */
.data-compare { display: grid; gap: 12px; margin-top: 18px; }

.data-row {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 12px;
}
.data-row__label { color: var(--pv-text-muted); font-size: var(--pv-fs-caption); }

.data-bar {
  position: relative;
  height: 10px;
  border-radius: var(--pv-radius-pill);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.data-bar__fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
}
.data-bar__fill--before { background: linear-gradient(90deg, #6D3434, #9A4C4C); }
.data-bar__fill--after  { background: var(--pv-gradient-gold); }
.data-row__value {
  color: var(--pv-text);
  font-size: var(--pv-fs-caption);
  font-weight: var(--pv-fw-semibold);
  white-space: nowrap;
}

/* ============ SINCERITY BOX (진정성 박스) ============ */
.ev-sincerity-box {
  margin-top: 28px;
  padding: 22px 22px 20px;
  border-radius: var(--pv-radius-md);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.ev-sincerity-box__title {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: var(--pv-fw-bold);
  color: var(--pv-text-strong);
  letter-spacing: -0.02em;
}
.ev-sincerity-box__list {
  display: grid;
  gap: 10px;
  margin: 0; padding: 0;
  list-style: none;
}
.ev-sincerity-box__item {
  display: flex;
  gap: 10px;
  color: var(--pv-text-soft);
  font-size: var(--pv-fs-body-sm);
  line-height: 1.7;
}

/* ============ GUARANTEE GRID (보증 조건) ============ */
.ev-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
}
.ev-guarantee-item {
  padding: 18px 20px;
  border-radius: var(--pv-radius-sm);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
}
.ev-guarantee-item__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--pv-gold-light);
  font-size: var(--pv-fs-overline);
  font-weight: var(--pv-fw-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.ev-guarantee-item__desc {
  color: var(--pv-text-soft);
  font-size: var(--pv-fs-body-sm);
  line-height: 1.66;
}
.ev-guarantee-note {
  margin-top: 14px;
  color: var(--pv-text-muted);
  font-size: var(--pv-fs-caption);
  line-height: 1.6;
}

/* ============ REVIEW CARD v2 ============ */
.ev-review-card-v2 {
  padding: 28px;
  border-radius: var(--pv-radius-md);
  background: var(--pv-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--pv-duration-base) var(--pv-ease-standard);
}
.ev-review-card-v2:hover { border-color: var(--pv-surface-line-gold); }

.ev-review-card-v2__stars {
  margin-bottom: 14px;
  color: var(--pv-gold-light);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.ev-review-card-v2__quote {
  margin: 0 0 20px;
  color: var(--pv-text-soft);
  font-size: 0.97rem;
  line-height: 1.9;
}
.ev-review-card-v2__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ev-review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: var(--pv-radius-pill);
  background: rgba(255,255,255,0.04);
  color: var(--pv-text-muted);
  font-size: var(--pv-fs-caption);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ============ BUTTON v2 확장 ============ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--pv-radius-pill);
  background: var(--pv-gradient-gold);
  color: #111;
  font-weight: var(--pv-fw-bold);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  box-shadow: var(--pv-shadow-gold);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--pv-duration-base) var(--pv-ease-out),
              filter var(--pv-duration-base) var(--pv-ease-standard);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-gold:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--pv-radius-pill);
  background: rgba(255,255,255,0.03);
  color: var(--pv-text);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: var(--pv-fw-medium);
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--pv-duration-base) var(--pv-ease-standard),
              border-color var(--pv-duration-base) var(--pv-ease-standard),
              transform var(--pv-duration-base) var(--pv-ease-out);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--pv-surface-line-gold);
  transform: translateY(-2px);
}

.btn-note {
  display: block;
  margin-top: 10px;
  color: var(--pv-text-muted);
  font-size: var(--pv-fs-caption);
  line-height: 1.6;
  text-align: center;
}

/* ============ FORM SYSTEM v2 ============ */
.ev-form-card {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, #181818 0%, #121212 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--pv-shadow-md);
}
.ev-form-card__title {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: var(--pv-fw-black);
  letter-spacing: -0.03em;
  color: var(--pv-text-strong);
}
.ev-form-card__desc {
  margin-bottom: 20px;
  color: var(--pv-text-soft);
  font-size: var(--pv-fs-body-sm);
  line-height: 1.7;
}

.ev-form-benefits {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.ev-form-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--pv-text-soft);
  font-size: var(--pv-fs-body-sm);
  line-height: 1.65;
}
.ev-form-benefit__icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.ev-field { display: grid; gap: 7px; }
.ev-field__label {
  color: var(--pv-text-soft);
  font-size: var(--pv-fs-caption);
  font-weight: var(--pv-fw-medium);
}
.ev-field__input,
.ev-field__select,
.ev-field__textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: var(--pv-text);
  outline: none;
  transition: border-color var(--pv-duration-base) var(--pv-ease-standard),
              background var(--pv-duration-base) var(--pv-ease-standard);
}
.ev-field__textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}
.ev-field__input:focus,
.ev-field__select:focus,
.ev-field__textarea:focus {
  border-color: var(--pv-surface-line-gold);
  background: rgba(255,255,255,0.04);
}

/* ============ FAQ v2 ============ */
.ev-faq-v2 { display: grid; gap: 12px; }
.ev-faq-v2-item {
  border-radius: var(--pv-radius-md);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.ev-faq-v2-question {
  width: 100%;
  min-height: 68px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  color: var(--pv-text);
  border: 0;
  cursor: pointer;
  text-align: left;
}
.ev-faq-v2-question__text {
  font-weight: var(--pv-fw-semibold);
  font-size: 0.97rem;
  line-height: 1.5;
}
.ev-faq-v2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--pv-duration-slow) var(--pv-ease-out);
}
.ev-faq-v2-item.open .ev-faq-v2-answer { max-height: 360px; }
.ev-faq-v2-answer__inner {
  padding: 0 22px 22px;
  color: var(--pv-text-soft);
  font-size: var(--pv-fs-body-sm);
  line-height: 1.8;
}

/* ============ 플로팅 CTA v2 ============ */
.floating-cta-v2 {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: var(--pv-z-floating);
  width: min(calc(100% - 24px), 760px);
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(17,17,17,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--pv-shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--pv-duration-base) var(--pv-ease-out),
              transform var(--pv-duration-base) var(--pv-ease-out);
  translate: -50% 0;
}
.floating-cta-v2.visible {
  opacity: 1;
  pointer-events: auto;
}
.floating-cta-v2__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.floating-cta-v2__text {
  color: var(--pv-text-soft);
  font-size: var(--pv-fs-body-sm);
  line-height: 1.5;
}

/* ============ 반응형 v2 ============ */
@media (max-width: 1200px) {
  .pv-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 1024px) {
  .pv-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ev-guarantee-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --pv-section-y: 72px;
    --pv-grid-gap: 16px;
  }
  .pv-grid-2,
  .pv-grid-3,
  .pv-grid-4 { grid-template-columns: 1fr; }
  .ev-guarantee-grid { grid-template-columns: 1fr; }
  .btn-gold,
  .btn-ghost { width: 100%; justify-content: center; }
  .ev-form-card { padding: 24px 20px; }
  .floating-cta-v2 { bottom: 12px; width: calc(100% - 16px); }
  .floating-cta-v2__inner { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .ev-proof-card { padding: 22px 18px; border-radius: 18px; }
  .ev-review-card-v2 { padding: 20px; }
  .pv-section-label { min-height: 32px; padding: 0 12px; font-size: 0.68rem; }
  .data-row { grid-template-columns: 52px 1fr auto; }
}

/* ══════════════════════════════════════════
   QA 수정 패치 — 7가지 체크포인트
══════════════════════════════════════════ */

/* 체크1: 섹션 연결감 — quick-proof 바 마진/패딩 일관성 */
#quick-proof {
  margin-top: 0;
  border-top: 1px solid rgba(200,168,75,0.10);
  border-bottom: 1px solid rgba(200,168,75,0.10);
}

/* 체크3: PROOF OF RESULTS 카드 높이 통일 */
#proof-cards > div > div[style*="display:grid"] {
  align-items: stretch;
}
#proof-cards > div > div > div[style*="background:#161616"] {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

/* 체크7: 폼 input/select/textarea 가독성 강화 */
.ev-form input,
.ev-form select,
.ev-form textarea {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: var(--pv-text) !important;
  height: 52px !important;
  border-radius: var(--radius-sm) !important;
}
.ev-form textarea {
  height: auto !important;
  min-height: 120px !important;
}
.ev-form input::placeholder,
.ev-form textarea::placeholder {
  color: var(--text-faint) !important;
  font-size: 0.875rem !important;
}
.ev-form input:focus,
.ev-form select:focus,
.ev-form textarea:focus {
  border-color: rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.05) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05) !important;
}
/* select 기본 화살표 가시성 */
.ev-form select {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  background-image: none !important;
}
.ev-form label {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
}

/* 체크2: 골드 과다 방지 — 본문 설명에 골드 제거 */
.ev-proof-card__desc,
.ev-guarantee-item__desc,
.ev-sincerity-box__item {
  color: var(--pv-text-soft) !important;
}
/* 카드 보더는 hover 시에만 강조 */
.ev-proof-card { border-color: rgba(255,255,255,0.07) !important; }
.ev-proof-card:hover { border-color: rgba(200,168,75,0.22) !important; }

/* 체크5: 모바일 혜택 카드 문구 길이 제한 */
@media (max-width: 768px) {
  .ev-form-benefit {
    padding: 12px 14px;
    font-size: 0.82rem;
    line-height: 1.6;
  }
  .ev-form-benefits {
    margin-bottom: 18px !important;
    margin-top: 14px !important;
  }
  /* P1 fix: PROOF OF RESULTS 카드 모바일 1열 강제 */
  .ev-proof-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   PHASE 3: B2B EDITORIAL TRUST ROW
   ============================================ */
.pv-trust-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.pv-trust-row span {
  display: inline-flex;
  align-items: center;
}
.pv-trust-row .divider {
  width: 1px;
  height: 10px;
  background: var(--border-light);
}
@media (max-width: 600px) {
  .pv-trust-row {
    font-size: 0.7rem;
    gap: 8px;
  }
}



/* ============================================
   PROOF & VALUE - TEXT ARCHITECTURE (GUIDE V2)
   ============================================ */

/* 1. Pull Quote (거대 인용구) */
.guide-arch-quote {
  position: relative;
  padding: 40px 32px 40px 80px;
  background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, rgba(200,168,75,0.02) 100%);
  border-left: 4px solid var(--pv-gold);
  border-radius: 0 16px 16px 0;
  margin: 48px 0;
  font-family: var(--pv-font-main);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--pv-text-strong);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.guide-arch-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(200,168,75,0.2);
  font-family: serif;
  line-height: 1;
}
.guide-arch-quote .qa-author {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--pv-gold-light);
  font-family: var(--pv-font-main);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 2. Metric Box (핵심 지표 시각화 영역) */
.guide-arch-metric-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.guide-arch-metric {
  background: var(--pv-bg-card);
  border: 1px solid var(--pv-surface-line);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.guide-arch-metric:hover {
  transform: translateY(-4px);
  box-shadow: var(--pv-shadow-gold);
  border-color: rgba(200,168,75,0.4);
}
.guide-arch-metric::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--pv-gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.guide-arch-metric:hover::after {
  transform: scaleX(1);
}
.guide-arch-metric .m-val {
  font-family: var(--pv-font-main);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  background: var(--pv-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.guide-arch-metric .m-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 3. Logic Block (코드/데이터 세팅 가이드) */
.guide-arch-logic {
  background: #0A0A0A;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  border: 1px solid #222;
  position: relative;
}
.guide-arch-logic::before {
  content: 'SYSTEM LOGIC';
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--pv-gold-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}
.guide-arch-logic pre {
  margin: 0;
  font-family: var(--pv-font-mono, monospace);
  font-size: 0.9rem;
  color: #A0A0A0;
  line-height: 1.6;
  overflow-x: auto;
}
.guide-arch-logic pre strong {
  color: #fff;
  font-weight: 700;
}
.guide-arch-logic pre .hl {
  color: var(--pv-gold-light);
}

/* 4. Editorial Layout Specs */
.gs-bd p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}
.gs-bd h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 3rem 0 1.5rem;
  border-left: 4px solid var(--pv-gold);
  padding-left: 14px;
  letter-spacing: -0.01em;
}
.gs-bd ul, .gs-bd ol {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  padding-left: 24px;
}
.gs-bd li { margin-bottom: 0.8rem; }
.gs-c {
  padding: 40px 32px;
}

/* 업종별 헤더 강조 (B2B, Hospital 등) */
.guide-arch-special {
  background: linear-gradient(135deg, rgba(200,168,75,0.15) 0%, rgba(200,168,75,0.05) 100%);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
}
.guide-arch-special h5 {
  color: var(--pv-gold-light);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
/* LIGHT MODE BANNED FOR MAXIMUM OLED CONTRAST */ 
