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

:root {
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --white: #FFFEF7;
  --cream: #FFF6E8;
  --cream2: #EDE0C8;
  --gold: #8F0000;
  --gold-dark: #6A0000;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.1);

  --font-serif-en: 'Cormorant Garamond', serif;
  --font-serif-kr: 'Noto Serif KR', serif;
  --font-sans: 'Pretendard Variable', 'Pretendard', -apple-system, sans-serif;
  --font-logo: 'Grape Nuts', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* =====================
   GRAIN OVERLAY
   ===================== */
.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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;
}

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}
.logo {
  font-family: var(--font-logo);
  font-size: 22px;
  font-weight: 400;
  color: #8F0000;
  letter-spacing: 1px;
  margin-right: auto;
}
.nav-links {
  display: none;
}
.nav-links a {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.nav.scrolled .nav-links a { color: rgba(255,255,255,0.65); }
.nav.scrolled .nav-links a:hover { color: var(--white); }
.nav-cta {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s;
}
.nav.scrolled .hamburger span { background: var(--white); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  padding: 14px 40px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-cta {
  color: var(--gold) !important;
  margin-top: 8px;
  font-weight: 500;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  background: #FFFEF7;
  display: block;
  padding: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(143,0,0,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: var(--font-serif-kr);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero-title .title-line { display: block; }
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--dark); }

.hero-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.phone-mockup {
  width: 240px;
  height: 480px;
  background: var(--dark2);
  border-radius: 36px;
  border: 1.5px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 8px rgba(255,255,255,0.03);
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
}
.phone-screen {
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
}
.mock-invitation {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0D0D0D 0%, #1A1505 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mock-invitation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(196,168,130,0.15) 0%, transparent 60%);
}
.mock-cover { text-align: center; position: relative; z-index: 1; }
.mock-names { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.mock-kr { color: var(--white); font-family: var(--font-serif-kr); font-size: 15px; font-weight: 300; }
.mock-amp { color: var(--gold); font-family: var(--font-serif-en); font-size: 18px; }
.mock-date { color: rgba(255,255,255,0.4); font-size: 9px; letter-spacing: 2px; font-family: var(--font-serif-en); }
.mock-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-serif-en);
}
.hero-float-card {
  position: absolute;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.card-1 { top: 10%; left: -80px; }
.card-2 { bottom: 12%; left: -70px; }
.fc-icon { font-size: 20px; color: var(--gold); }
.fc-title { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.fc-sub { font-size: 11px; color: rgba(255,255,255,0.4); }

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(0,0,0,0.3);
  font-size: 11px;
  letter-spacing: 2px;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  to { left: 100%; }
}

/* =====================
   HERO CANVAS
   ===================== */
.hero-canvas {
  position: relative;
  width: 100%;
  height: 100%;
}
.flowers-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.art-link {
  position: absolute;
  font-family: 'Caveat', var(--font-logo), cursive;
  font-size: 24px;
  font-weight: 500;
  color: #1e1e1e;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(30,30,30,0.55);
  letter-spacing: 0.2px;
  z-index: 3;
  cursor: pointer;
  transition: color 0.2s, text-decoration-color 0.2s;
  white-space: nowrap;
  pointer-events: auto;
}
.art-link:hover {
  color: #8F0000;
  text-decoration-color: #8F0000;
}
.art-l1 { top: 31%; left: 29%; }
.art-l2 { top: 23%; left: 57%; }
.art-l3 { top: 54%; left: 27%; }
.art-l4 { top: 42%; left: 78%; }

/* =====================
   STATS
   ===================== */
.stats {
  background: var(--cream);
  padding: 40px 40px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.stat-num {
  font-family: var(--font-serif-en);
  font-size: 36px;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream2);
}

/* =====================
   SECTION COMMON
   ===================== */
.section-header {
  text-align: center;
  padding: 100px 40px 60px;
}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag.light { color: var(--gold); }
.section-title {
  font-family: var(--font-serif-kr);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* =====================
   TEMPLATES
   ===================== */
.templates {
  background: var(--white);
  padding-bottom: 100px;
}
.template-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 40px 60px;
}
.tab-btn {
  background: none;
  border: 1.5px solid var(--cream2);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
}
.tab-btn:hover { border-color: var(--text-muted); color: var(--text); }
.tab-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.template-showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.template-info { padding-right: 40px; }
.ti-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.ti-title {
  font-family: var(--font-serif-kr);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
}
.ti-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.ti-features {
  list-style: none;
  margin-bottom: 32px;
}
.ti-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.template-preview { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preview-phone {
  width: 220px;
  height: 420px;
  background: var(--dark);
  border-radius: 30px;
  border: 1.5px solid rgba(0,0,0,0.1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.preview-screen { width: 100%; height: 100%; position: relative; }
.preview-cinematic {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-cinematic.active { opacity: 1; }
.pc-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0A0A0A 0%, #1A1505 100%);
}
.pc-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pc-date { color: rgba(255,255,255,0.3); font-size: 9px; letter-spacing: 2px; margin-bottom: 16px; font-family: var(--font-serif-en); }
.pc-names { color: var(--white); font-family: var(--font-serif-kr); font-size: 18px; font-weight: 300; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pc-and { color: var(--gold); font-family: var(--font-serif-en); font-size: 16px; }
.pc-scroll { color: rgba(255,255,255,0.2); font-size: 8px; letter-spacing: 2px; margin-top: 24px; }

.classic-bg { background: linear-gradient(160deg, #F8F4EE 0%, #EDE4D5 100%); }
.classic-content { color: #2A1F14; }
.classic-deco { color: #6A0000; font-size: 12px; margin-bottom: 12px; }
.classic-title { font-family: var(--font-serif-kr); font-size: 18px; font-weight: 400; color: #2A1F14; margin-bottom: 12px; }
.classic-names { color: #2A1F14 !important; }
.classic-date { font-family: var(--font-serif-kr); font-size: 11px; color: #8A7060; margin-top: 12px; }

.nature-bg { background: linear-gradient(160deg, #F0F4EC 0%, #E0ECD8 100%); }
.nature-content { text-align: center; }
.nature-leaf { font-size: 28px; display: block; margin-bottom: 12px; }
.nature-title { font-family: var(--font-serif-kr); font-size: 14px; font-weight: 300; color: #3A5038; margin-bottom: 10px; }
.nature-names { color: #2A4028 !important; font-size: 16px !important; }
.nature-date { font-family: var(--font-serif-en); font-size: 10px; color: #5A7858; margin-top: 10px; }

.modern-bg { background: #F5F5F5; }
.modern-content { text-align: left; padding: 30px; }
.modern-line { width: 30px; height: 2px; background: #0A0A0A; margin-bottom: 12px; }
.modern-num { font-family: var(--font-serif-en); font-size: 10px; letter-spacing: 3px; color: #999; margin-bottom: 8px; }
.modern-title { font-family: var(--font-serif-en); font-size: 18px; font-weight: 400; line-height: 1.3; color: #0A0A0A; margin-bottom: 12px; }
.modern-names { font-size: 10px; letter-spacing: 4px; color: #666; margin-bottom: 6px; }
.modern-date { font-size: 10px; color: #999; }

.preview-dots {
  display: flex;
  gap: 8px;
}
.pdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pdot.active { background: var(--dark); transform: scale(1.3); }

/* =====================
   DIFFERENT
   ===================== */
.different {
  background: var(--dark);
  padding: 100px 40px;
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.diff-text { margin-bottom: 60px; }
.diff-title {
  font-family: var(--font-serif-kr);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-top: 16px;
}
.diff-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff-card {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
}
.diff-card:hover {
  border-color: rgba(196,168,130,0.2);
  background: rgba(196,168,130,0.03);
}
.dc-number {
  font-family: var(--font-serif-en);
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.diff-card h3 {
  font-family: var(--font-serif-kr);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.diff-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* =====================
   FEATURES
   ===================== */
.features { padding: 100px 40px; background: var(--white); }
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.fc-large { grid-column: span 2; }
.feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gold-dark);
}
.feature-card h3 {
  font-family: var(--font-serif-kr);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.feature-visual {
  border-radius: 8px;
  overflow: hidden;
}
.fv-music {
  background: var(--dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}
.bar {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: musicBar 1.2s ease-in-out infinite;
}
.bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.bar:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.bar:nth-child(5) { height: 70%; animation-delay: 0.4s; }
.bar:nth-child(6) { height: 50%; animation-delay: 0.5s; }
.bar:nth-child(7) { height: 90%; animation-delay: 0.15s; }
.bar:nth-child(8) { height: 45%; animation-delay: 0.25s; }
@keyframes musicBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.3); }
}
.music-title { color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 1px; }

.fv-dday { padding: 0; }
.dday-display {
  display: flex;
  gap: 12px;
  padding: 16px 0 0;
}
.dd-unit { text-align: center; }
.dd-num {
  font-family: var(--font-serif-en);
  font-size: 28px;
  font-weight: 300;
  color: var(--dark);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.dd-label { font-size: 11px; color: var(--text-muted); }

.fv-account { padding: 0; }
.account-card {
  background: var(--dark);
  border-radius: 8px;
  padding: 20px 24px;
  position: relative;
  margin-top: 16px;
}
.ac-label { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.ac-bank { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.ac-holder { font-size: 14px; color: var(--white); font-weight: 500; margin-bottom: 4px; }
.ac-num { font-family: var(--font-serif-en); font-size: 16px; color: var(--gold); letter-spacing: 1px; }
.ac-copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* =====================
   PROCESS
   ===================== */
.process { background: var(--cream); padding: 100px 40px; }
.process-inner { max-width: 900px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.step-num {
  font-family: var(--font-serif-en);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-dark);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}
.step-content h3 {
  font-family: var(--font-serif-kr);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.step-arrow {
  position: absolute;
  right: -16px;
  top: 16px;
  font-size: 20px;
  color: var(--cream2);
}

/* =====================
   PRICING
   ===================== */
.pricing { background: var(--white); padding: 100px 40px; }
.pricing-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--dark);
  box-shadow: 0 0 0 1px var(--dark);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tag { font-size: 11px; letter-spacing: 3px; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.price-name { font-family: var(--font-serif-en); font-size: 24px; font-weight: 300; letter-spacing: 2px; margin-bottom: 20px; }
.price-amount {
  font-family: var(--font-serif-en);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before { font-size: 12px; flex-shrink: 0; }
.price-features li.yes { color: var(--text); }
.price-features li.yes::before { content: '✓'; color: var(--gold-dark); }
.price-features li.no { color: var(--text-light); text-decoration: line-through; }
.price-features li.no::before { content: '–'; color: var(--text-light); }
.price-btn {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 13px 24px;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-primary-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-primary-dark:hover { background: var(--gold-dark); }

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  position: relative;
  background: var(--black);
  padding: 120px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,168,130,0.1) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-tag { font-size: 10px; font-weight: 700; letter-spacing: 5px; color: var(--gold); margin-bottom: 24px; }
.cta-title {
  font-family: var(--font-serif-kr);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.cta-title .italic { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 48px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-primary.large { padding: 16px 36px; font-size: 14px; }
.btn-ghost-light { font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; transition: color 0.2s; }
.btn-ghost-light:hover { color: var(--white); }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--dark2); padding: 60px 40px 30px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: var(--font-logo);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 60px; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-title { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.3); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.fl-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.fl-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .diff-cards { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-large { grid-column: span 1; }
  .hero-visual { display: none; }
  .template-showcase { grid-template-columns: 1fr; gap: 40px; }
  .template-info { padding-right: 0; }
  .template-preview { display: none; }
  .art-link { font-size: 20px; }
}
@media (max-width: 768px) {
  .hero { height: 60vh; min-height: 380px; }
  .art-l1 { top: 28%; left: 26%; }
  .art-l2 { top: 20%; left: 52%; }
  .art-l3 { top: 50%; left: 24%; }
  .art-l4 { top: 38%; left: 68%; }
  .art-link { font-size: 17px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 80px 24px 60px; }
  .section-header { padding: 70px 24px 40px; }
  .templates, .features, .process, .pricing { padding-bottom: 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .diff-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: stretch; }
  .step-arrow { display: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { min-width: 50%; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .template-tabs { flex-wrap: wrap; }
  .diff-inner { padding: 0; }
  .different { padding: 70px 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .cta-title { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer { padding: 40px 24px 24px; }
  .process { padding: 70px 24px; }
  .pricing { padding: 70px 24px; }
  .cta-section { padding: 80px 24px; }
}
