/* ==============================
   CSS Variables & Reset
================================= */
:root {
  --primary: #e84c3d;
  --primary-dark: #c0392b;
  --primary-light: #ff6b5b;
  --secondary: #2c3e50;
  --accent: #f39c12;
  --bg-dark: #1a1a2e;
  --bg-dark2: #16213e;
  --bg-gray: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 70px;
  --font: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ==============================
   Utility Classes
================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(232,76,61,0.35);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,76,61,0.45);
}
.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 44px; font-size: 1.1rem; }
.btn--full { width: 100%; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(232,76,61,0.08);
  border-radius: 50px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header--light .section-title,
.section-header--light .section-sub { color: var(--white); }
.section-header--light .section-label {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title em {
  color: var(--primary);
  font-style: normal;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
}

/* ==============================
   Header
================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(26,26,46,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(26,26,46,0.98);
  box-shadow: var(--shadow-md);
}
.header--white {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header--white .nav__link { color: var(--text-dark) !important; }
.header--white .nav__link:hover { color: var(--primary) !important; }
.header--white .logo__text { color: var(--text-dark); }
.header--white .logo__text strong { color: var(--text-dark); }
.header--white .hamburger span { background: var(--text-dark); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
}
.logo__icon { font-size: 1.6rem; }
.logo__text { color: var(--white); }
.logo__text strong { color: var(--white); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 700;
}
.nav__cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.nav__cta.active { background: var(--primary-dark) !important; }

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

/* ==============================
   Float Button
================================= */
.float-btn {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(232,76,61,0.5);
  transition: var(--transition);
  text-align: center;
  animation: float-pulse 2s infinite;
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 32px rgba(232,76,61,0.6);
}
.float-btn--call { background: #27ae60; box-shadow: 0 4px 24px rgba(39,174,96,0.5); }
.float-btn--call:hover { box-shadow: 0 8px 32px rgba(39,174,96,0.6); }
.float-btn__icon { font-size: 1.4rem; line-height: 1; }
.float-btn__text { font-size: 0.6rem; font-weight: 700; line-height: 1.3; margin-top: 2px; }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(232,76,61,0.5), 0 0 0 0 rgba(232,76,61,0.4); }
  50% { box-shadow: 0 4px 24px rgba(232,76,61,0.5), 0 0 0 12px rgba(232,76,61,0); }
}

/* ==============================
   Hero Section
================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f3460 40%, #16213e 70%, #1a1a2e 100%);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,76,61,0.2) 0%, transparent 70%);
  animation: hero-glow 4s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(243,156,18,0.1) 0%, transparent 70%);
}
@keyframes hero-glow {
  from { transform: scale(1); opacity: 0.6; }
  to { transform: scale(1.2); opacity: 1; }
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-block;
  background: rgba(232,76,61,0.2);
  border: 1px solid rgba(232,76,61,0.4);
  color: #ff8c7a;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease-out;
}
.hero__title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero__title em {
  color: var(--primary-light);
  font-style: normal;
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
}
.hero__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.check { font-size: 1.2rem; }
.hero__subtitle {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero__subtitle strong {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}
.hero__cta {
  animation: fadeInUp 0.6s ease-out 0.4s both;
  font-size: 1.15rem;
}
.hero__note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  animation: fadeInUp 0.6s ease-out 0.5s both;
}
.hero__scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-down span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  margin: 0 auto;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(0.5); opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   Trust Bar
================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 0;
}
.trust-item__icon { font-size: 1.2rem; }

/* ==============================
   Why Section
================================= */
.why {
  padding: 100px 0;
  background: var(--bg-gray);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,76,61,0.2);
}
.why-card:hover::before { opacity: 1; }
.why-card__step {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(232,76,61,0.08);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.why-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.why-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.why-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}
.why__cta { text-align: center; }

/* ==============================
   Safe Section
================================= */
.safe {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f3460 100%);
}
.safe__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.safe__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}
.safe__title em { color: var(--primary-light); font-style: normal; }
.safe__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
}
.safe__badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.safe-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.safe-badge__icon { font-size: 1.8rem; }
.safe-badge div { display: flex; flex-direction: column; gap: 2px; }
.safe-badge strong { color: var(--white); font-size: 0.95rem; }
.safe-badge span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

.safe__card {
  display: flex;
  justify-content: center;
}
.safe__card-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}
.safe__cert-icon { font-size: 3rem; margin-bottom: 12px; }
.safe__card-inner h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.safe__cert-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.cert-line {
  display: flex;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.cert-line:last-child { border-bottom: none; }
.cert-line span:first-child {
  background: #f8f9fa;
  color: var(--text-mid);
  font-weight: 600;
  padding: 10px 16px;
  min-width: 80px;
  border-right: 1px solid var(--border);
}
.cert-line span:last-child {
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 500;
}
.safe__cert-stamp {
  display: inline-block;
  border: 3px solid var(--primary);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 900;
  padding: 8px 20px;
  border-radius: 8px;
  transform: rotate(-8deg);
  letter-spacing: 0.1em;
}

/* ==============================
   Stats Section
================================= */
.stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #e84c3d 50%, #c0392b 100%);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.stat-card--featured {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.05);
}
.stat-card--featured:hover { transform: scale(1.05) translateY(-4px); }
.stat-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.stat-card__num {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-card__unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  display: inline;
}
.stat-card__label {
  margin-top: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ==============================
   Reviews Section
================================= */
.reviews {
  padding: 100px 0;
  background: var(--bg-gray);
}
/* ── Reviews: PC 3열 그리드 / 모바일 슬라이더 ── */
.reviews__slider-wrap { position: relative; }

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

/* 슬라이더 컨트롤 (PC에서는 숨김) */
.slider-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  font-size: 1.1rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.slider-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,76,61,0.2);
}
.review-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
}
.review-card__name { font-size: 0.95rem; font-weight: 800; color: var(--text-dark); }
.review-card__info { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.review-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.review-card__tags span {
  font-size: 0.72rem;
  background: rgba(232,76,61,0.08);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}
.review-card__amount {
  margin-left: auto;
  text-align: right;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1.4;
}
.review-card__amount small { font-size: 0.75rem; opacity: 0.9; }
.review-card__quote {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  background: rgba(232,76,61,0.04);
  border-left: 3px solid var(--primary);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.review-card__text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.review-card__stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }

/* ==============================
   Process Section
================================= */
.process {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark2) 0%, var(--bg-dark) 100%);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,76,61,0.5);
  transform: translateY(-4px);
}
.process-step__num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.process-step__icon { font-size: 2rem; margin-bottom: 14px; }
.process-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.process-step__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.process-step__arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  z-index: 1;
}

/* ==============================
   CTA Final Section
================================= */
.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
}
.cta-final__title em {
  font-style: normal;
  position: relative;
}
.cta-final__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.5);
}
.cta-final__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.cta-final__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 28px;
}
.cta-final__features span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ==============================
   Footer
================================= */
.footer {
  background: #0f0f1a;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer__logo .logo__text { color: rgba(255,255,255,0.8); }
.footer__info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer__copy {
  text-align: right;
}
.footer__copy p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.footer__links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }

/* ==============================
   Contact Page
================================= */
.contact-page { background: var(--bg-gray); }

.contact-main {
  padding: calc(var(--header-h) + 60px) 0 80px;
  min-height: 100vh;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}
.contact-info__title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
  margin-top: 12px;
}
.contact-info__title em { color: var(--primary); font-style: normal; }
.contact-info__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.contact-promise {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.contact-promise__icon { font-size: 1.6rem; }
.contact-promise div { display: flex; flex-direction: column; gap: 2px; }
.contact-promise strong { font-size: 0.95rem; color: var(--text-dark); }
.contact-promise span { font-size: 0.82rem; color: var(--text-light); }
.contact-stats {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-stat {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  background: var(--white);
  border-right: 1px solid var(--border);
}
.contact-stat:last-child { border-right: none; }
.contact-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.contact-stat span { font-size: 0.75rem; color: var(--text-light); }

/* Form Styles */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-form__sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.form-group {
  margin-bottom: 22px;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.required { color: var(--primary); }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,76,61,0.1);
}
.form-control.error {
  border-color: var(--primary);
  background: rgba(232,76,61,0.02);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23718096'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-error {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 5px;
  min-height: 16px;
}
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.form-radio input[type="radio"] { display: none; }
.form-radio span {
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
}
.form-radio input:checked + span {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.form-radio span:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.form-agree { margin-bottom: 24px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-check input[type="checkbox"] { display: none; }
.form-check__box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-check input:checked + .form-check__box {
  background: var(--primary);
  border-color: var(--primary);
}
.form-check input:checked + .form-check__box::after {
  content: '✓';
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}
.form-check__text { font-size: 0.9rem; color: var(--text-mid); }
.link { color: var(--primary); text-decoration: underline; }

.contact-form__note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success__icon { font-size: 4rem; margin-bottom: 20px; animation: bounce 0.5s ease-out; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.form-success p { font-size: 1rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ==============================
   Scroll Animation
================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   Responsive Design
================================= */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process-step__arrow { display: none; }
  .safe__inner { gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__copy { grid-column: 1 / -1; text-align: left; }
  .footer__links { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(26,26,46,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }
  .header--white .nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .hero__list { align-items: flex-start; padding: 0 20px; }
  .hero__list li { justify-content: flex-start; }

  /* Why: 모바일에서 2열 유지 */
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-card { padding: 22px 16px; }
  .why-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
  .why-card__title { font-size: 0.92rem; }
  .why-card__desc { font-size: 0.8rem; }

  .stats__grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-card--featured { transform: none; }
  .stat-card--featured:hover { transform: translateY(-4px); }

  /* Reviews: 슬라이더 모드 */
  .reviews__slider-wrap { overflow: hidden; }
  .reviews__grid {
    display: flex;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .reviews__grid .review-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    border-radius: var(--radius-md);
    box-sizing: border-box;
  }
  .slider-controls { display: flex; }

  .safe__inner { grid-template-columns: 1fr; gap: 48px; }
  .safe__card { display: none; }

  /* Process: 모바일에서 2열 */
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .process-step { padding: 22px 16px; }
  .process-step__num { font-size: 2rem; }
  .process-step__icon { font-size: 1.6rem; margin-bottom: 10px; }
  .process-step__title { font-size: 0.88rem; }
  .process-step__desc { font-size: 0.78rem; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .contact-form-wrap { padding: 32px 24px; }

  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__copy { grid-column: auto; }

  .trust-bar__inner { gap: 4px 16px; }
  .cta-final__features { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn--lg { padding: 16px 28px; font-size: 1rem; }
  .hero { padding: calc(var(--header-h) + 40px) 0 60px; }
  .why, .safe, .stats, .reviews, .process, .cta-final { padding: 70px 0; }
  .contact-main { padding: calc(var(--header-h) + 40px) 0 60px; }
  .float-btn { right: 16px; bottom: 20px; width: 60px; height: 60px; }
  .contact-stats { flex-direction: column; }
  .contact-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-stat:last-child { border-bottom: none; }
}
