@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  --font-title: 'Outfit', 'Pretendard', sans-serif;

  /* HSL Colors */
  --hue-primary: 174; /* Teal / Mint base (꿈터GO 브랜드) */
  --hue-accent: 38;   /* Amber base (CTA 강조) */
  --hue-navy: 212;    /* Navy base (헤드라인) */

  --color-primary: hsl(var(--hue-primary), 78%, 32%);
  --color-primary-light: hsl(var(--hue-primary), 68%, 44%);
  --color-primary-hover: hsl(var(--hue-primary), 82%, 26%);
  --color-primary-alpha: hsla(var(--hue-primary), 78%, 32%, 0.08);

  --color-accent: hsl(var(--hue-accent), 92%, 48%);
  --color-accent-hover: hsl(var(--hue-accent), 95%, 42%);
  --color-accent-alpha: hsla(var(--hue-accent), 92%, 48%, 0.12);

  --color-navy: hsl(var(--hue-navy), 62%, 26%);
  --color-navy-light: hsl(var(--hue-navy), 55%, 40%);
  --color-navy-alpha: hsla(var(--hue-navy), 62%, 26%, 0.08);

  --color-bg-base: #f4f9fa;
  --color-bg-card: rgba(255, 255, 255, 0.85);
  --color-bg-gradient: linear-gradient(150deg, #eef7f8 0%, #f7fbfc 45%, #f4f8fd 100%);

  --color-text-primary: #0f2233;
  --color-text-secondary: #47606f;
  --color-text-light: #6b8290;
  --color-text-white: #ffffff;

  --border-light: hsla(var(--hue-primary), 60%, 40%, 0.14);
  --border-glass: rgba(255, 255, 255, 0.45);

  --shadow-sm: 0 2px 8px rgba(15, 34, 51, 0.05);
  --shadow-md: 0 8px 20px rgba(15, 34, 51, 0.07);
  --shadow-lg: 0 16px 36px rgba(15, 34, 51, 0.10);
  --shadow-glow: 0 10px 30px hsla(var(--hue-primary), 78%, 32%, 0.28);
  --shadow-accent: 0 10px 30px hsla(var(--hue-accent), 92%, 48%, 0.28);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg-base);
  background-image: var(--color-bg-gradient);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* --- BADGES & BUTTONS --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--color-primary-alpha);
  border: 1px solid var(--border-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.badge.accent {
  background-color: var(--color-accent-alpha);
  color: hsl(var(--hue-accent), 92%, 36%);
  border-color: rgba(245, 158, 11, 0.2);
}

.badge.navy {
  background-color: var(--color-navy-alpha);
  color: var(--color-navy);
  border-color: hsla(var(--hue-navy), 62%, 26%, 0.16);
}

/* 이미지 상단의 리본 형태 파트너 배지 */
.partner-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-primary) 140%);
  color: var(--color-text-white);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}

.partner-ribbon .divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px hsla(var(--hue-primary), 78%, 32%, 0.38);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-white);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px hsla(var(--hue-accent), 92%, 48%, 0.38);
}

.btn-secondary {
  background-color: var(--color-text-white);
  color: var(--color-text-primary);
  border: 1px solid rgba(15, 34, 51, 0.08);
}

.btn-secondary:hover {
  background-color: #eef4f6;
  transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(244, 249, 250, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid hsla(var(--hue-primary), 60%, 40%, 0.07);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .header-container {
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-title);
  letter-spacing: -0.5px;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-primary);
}

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

.header-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 160px 0 100px 0;
  overflow: hidden;
}

.hero-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  opacity: 0.4;
  animation: float-slow 12s infinite alternate ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, rgba(255,255,255,0) 70%);
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--color-navy-light) 0%, rgba(255,255,255,0) 70%);
  bottom: -50px;
  left: -100px;
  animation-delay: -4s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--color-navy);
  margin-bottom: 22px;
}

.hero-content h1 .highlight {
  background: linear-gradient(120deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-tagline {
  display: inline-block;
  background: linear-gradient(120deg, var(--color-navy) 0%, hsl(var(--hue-navy), 52%, 34%) 100%);
  color: var(--color-text-white);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.hero-content p {
  font-size: 1.12rem;
  color: var(--color-text-secondary);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-content p .em {
  color: var(--color-accent-hover);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(15, 34, 51, 0.07);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(15, 34, 51, 0.08);
  padding-left: 30px;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* --- HERO PHONE MOCKUP --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 300px;
  background: #101c26;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(15, 34, 51, 0.18);
  position: relative;
}

.phone-screen {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 560px;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 6px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.phone-appbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 18px 12px 18px;
}

.phone-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.phone-appbar-icons {
  display: flex;
  gap: 10px;
  color: var(--color-text-light);
}

.phone-search {
  margin: 0 18px 14px 18px;
  background: #eef4f6;
  border-radius: var(--radius-full);
  padding: 9px 14px;
  font-size: 0.72rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding: 0 12px 14px 12px;
  border-bottom: 1px solid rgba(15, 34, 51, 0.06);
}

.phone-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-align: center;
}

.phone-category .cat-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary-alpha);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-body {
  flex: 1;
  padding: 14px 18px;
  overflow: hidden;
}

.phone-section-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.phone-hero-card {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, hsl(var(--hue-navy), 45%, 32%) 0%, var(--color-primary) 100%);
  color: white;
  padding: 14px;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.phone-hero-card::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  top: -50px;
  right: -30px;
}

.phone-hero-card .pc-title {
  font-size: 0.82rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.phone-hero-card .pc-meta {
  font-size: 0.65rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.phone-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.phone-mini-card {
  border-radius: var(--radius-sm);
  background: #eef4f6;
  height: 60px;
  display: flex;
  align-items: flex-end;
  padding: 6px;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  border: 1px solid rgba(15, 34, 51, 0.04);
}

.phone-notice {
  background: var(--color-accent-alpha);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.phone-notice-text {
  font-size: 0.62rem;
  font-weight: 700;
  color: hsl(var(--hue-accent), 92%, 32%);
  line-height: 1.45;
}

.phone-tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(15, 34, 51, 0.07);
  padding: 8px 0 12px 0;
}

.phone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.phone-tab.active {
  color: var(--color-primary);
}

/* Floating badges around the phone */
.floating-badge {
  position: absolute;
  background-color: var(--color-text-white);
  border: 1px solid var(--border-light);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float-slow 6s infinite alternate ease-in-out;
  z-index: 3;
}

.floating-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.badge-top-left {
  top: 50px;
  left: -10px;
  animation-delay: -2s;
}

.badge-bottom-right {
  bottom: 60px;
  right: -10px;
}

.icon-box {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.icon-box.green { background-color: var(--color-primary); }
.icon-box.orange { background-color: var(--color-accent); }

/* --- INTRO SECTION --- */
.intro {
  background-color: #ffffff;
  border-top: 1px solid rgba(15, 34, 51, 0.03);
  border-bottom: 1px solid rgba(15, 34, 51, 0.03);
}

.intro-content {
  max-width: 860px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
  color: var(--color-navy);
}

.section-title .highlight {
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 50px;
}

.org-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background: var(--color-bg-base);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  border: 1px solid rgba(15, 34, 51, 0.04);
  align-items: center;
}

.org-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(15, 34, 51, 0.08);
  padding-right: 40px;
}

.org-logo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
  margin-bottom: 16px;
}

.org-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.org-role {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.org-desc h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.org-desc p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

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

.org-bullets li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.org-bullets li svg {
  color: var(--color-primary-light);
  flex-shrink: 0;
}

/* --- BENEFITS (입점하면 좋은 점) --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--color-primary-alpha);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
  background-color: var(--color-primary);
  color: white;
  transform: scale(1.06);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  line-height: 1.45;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* --- 협력 구조 (flow) --- */
.flow-section {
  background-color: #ffffff;
  border-top: 1px solid rgba(15, 34, 51, 0.03);
}

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

.flow-node {
  background: var(--color-bg-base);
  border: 1px solid rgba(15, 34, 51, 0.06);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  min-width: 150px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.flow-node:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light);
}

.flow-node.emphasis {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.flow-node.emphasis .flow-icon {
  background-color: rgba(255, 255, 255, 0.18);
  color: white;
}

.flow-node.emphasis .flow-label,
.flow-node.emphasis .flow-desc {
  color: white;
}

.flow-node.emphasis .flow-desc {
  opacity: 0.85;
}

.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-alpha);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}

.flow-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.flow-desc {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.flow-connector {
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.flow-caption {
  margin-top: 30px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 초기 입점 특별 혜택 --- */
.perk-panel {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 50px;
  margin-top: 40px;
  border: 1px solid rgba(15, 34, 51, 0.02);
  position: relative;
  overflow: hidden;
}

.perk-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.perk-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.perk-gift-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-alpha);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.5px;
}

.perk-header p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

.perk-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-bg-base);
  border: 1px solid rgba(15, 34, 51, 0.05);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.perk-check {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk-item-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.perk-item-desc {
  font-size: 0.86rem;
  color: var(--color-text-secondary);
}

.perk-footnote {
  margin-top: 26px;
  padding: 20px 24px;
  background: linear-gradient(120deg, var(--color-primary-alpha) 0%, var(--color-accent-alpha) 100%);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.perk-footnote svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.perk-footnote p {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-navy);
}

.perk-footnote p .em {
  color: var(--color-primary);
}

/* --- INTERACTIVE SURVEY SIMULATOR --- */
.interactive-section {
  background-color: #ffffff;
}

.interactive-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-bg-base);
  border: 1px solid rgba(15, 34, 51, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.interactive-header {
  background: var(--color-primary);
  color: white;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.interactive-header-title h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.interactive-header-title p {
  font-size: 0.8rem;
  opacity: 0.85;
}

.progress-bar-container {
  width: 100px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  width: 33.33%;
  height: 100%;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.interactive-body {
  padding: 36px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quiz-slide {
  display: none;
  animation: fade-in-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.quiz-slide.active {
  display: block;
}

.quiz-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.option-card {
  background: white;
  border: 1px solid rgba(15, 34, 51, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
}

.option-card:hover {
  background-color: var(--color-primary-alpha);
  border-color: var(--border-light);
}

.option-card.selected {
  background-color: var(--color-primary-alpha);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.option-checkbox {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 2px solid #c3d3da;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.option-card.selected .option-checkbox {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.option-card.selected .option-checkbox::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: white;
}

.option-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.interactive-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(15, 34, 51, 0.05);
  padding-top: 24px;
  margin-top: 24px;
}

.quiz-finished {
  text-align: center;
  padding: 20px 0;
  animation: scale-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.finished-icon {
  width: 68px;
  height: 68px;
  background-color: var(--color-primary-alpha);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.finished-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.finished-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  max-width: 460px;
  margin: 0 auto 30px auto;
}

/* --- CALL TO ACTION (CTA) SECTION --- */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary-hover) 100%);
  color: white;
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}

.cta-section .shape-1 {
  background: radial-gradient(circle, var(--color-accent) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.25;
  top: -200px;
  left: 20%;
}

.cta-section .shape-2 {
  background: radial-gradient(circle, var(--color-primary-light) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.32;
  bottom: -200px;
  right: 15%;
}

.cta-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.qr-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
}

.qr-image-wrapper {
  background: white;
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 164px;
  height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 14px;
  opacity: 0.95;
}

.qr-sublabel {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 2px;
}

/* --- CONTACT STRIP --- */
.contact-strip {
  background-color: #ffffff;
  padding: 50px 0;
  border-top: 1px solid rgba(15, 34, 51, 0.03);
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-bg-base);
  border: 1px solid rgba(15, 34, 51, 0.05);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-alpha);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.contact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  word-break: break-all;
}

/* --- FOOTER SECTION --- */
footer {
  background-color: #0f2233;
  color: #93a9b6;
  padding: 60px 0 30px 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-about .footer-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.footer-about p {
  max-width: 480px;
  line-height: 1.6;
}

.footer-contact h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-list svg {
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.8rem;
}

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

.footer-links a {
  cursor: pointer;
}

.footer-links a:hover {
  color: white;
}

/* --- ANIMATIONS & SCROLL TRIGGERING --- */
@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-up {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .org-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .org-visual {
    border-right: none;
    border-bottom: 1px solid rgba(15, 34, 51, 0.08);
    padding-right: 0;
    padding-bottom: 30px;
  }

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

  .flow-connector {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-tagline {
    font-size: 0.92rem;
    padding: 11px 20px;
  }

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

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

  .perk-panel {
    padding: 30px 20px;
  }

  .perk-list {
    grid-template-columns: 1fr;
  }

  .perk-header {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .flow-diagram {
    flex-direction: column;
  }

  .flow-node {
    width: 100%;
    max-width: 280px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .interactive-body {
    padding: 24px;
  }

  .interactive-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-section h2 {
    font-size: 1.9rem;
  }

  /* 모바일에서 플로팅 배지가 본문/목업을 가리므로 숨김 */
  .floating-badge {
    display: none;
  }
}
