* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dirty-pink: #d96f83;
  --dirty-pink-dark: #bd5369;
  --navy: #182033;
  --gray: #666b78;
  --light-gray: #f6f7fb;
  --border: #e8ebf2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #171717;
  background: #fff;
  word-break: keep-all;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 82px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #edf0f5;
}

.header-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: var(--dirty-pink);
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 15px;
  font-weight: 800;
}

.nav2 {
  display: none;
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--dirty-pink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.side-fixed {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-fixed a {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: var(--dirty-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(217, 111, 131, 0.32);
}

.section {
  padding: 120px 32px;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--dirty-pink);
  font-size: 15px;
  font-weight: 900;
}

.eyebrow.center {
  display: block;
  text-align: center;
}

.section-title {
  font-size: 46px;
  line-height: 1.25;
  letter-spacing: -2px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 22px;
}

.section-title span {
  color: var(--dirty-pink);
}

.section-title.left {
  text-align: left;
}

.section-desc {
  text-align: center;
  color: var(--gray);
  font-size: 19px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 68px;
}

.section-desc.left {
  text-align: left;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 30px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 900;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--dirty-pink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(217, 111, 131, 0.32);
}

.btn-primary:hover {
  background: var(--dirty-pink-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
}

.hover_event_bg_wh:hover {
  background: #fff;
}

.btn-kakao {
  background: #fee500;
  color: #171717;
}

.btn-form {
  background: var(--dirty-pink);
  color: #fff;
}

footer {
  padding: 56px 32px;
  background: #182033;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 48px;
}

.footer-brand {
  font-weight: 900;
  color: #fff;
}

.footer-meta strong {
  color: #fff;
}

.footer-copy {
  margin-top: 6px;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .nav2 {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 36px rgba(24, 32, 51, 0.18);
  }

  .nav2 a {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 4px;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .header {
    height: 70px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .logo {
    font-size: 22px;
  }

  .header-cta {
    font-size: 12px;
    padding: 10px 12px;
  }

  .section {
    padding: 84px 20px;
  }

  footer {
    padding: 44px 20px 112px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .eyebrow {
    display: block;
    text-align: center;
  }
}
