/* ===== 기본 리셋 & 변수 ===== */
/* 기본 스타일 = 모바일 디자인 기준. 모든 화면(500px 이상 포함)에서 모바일 디자인 유지 */
:root {
  --color-primary: #0077B6;
  --color-primary-dark: #005f8f;
  --color-bg-light: #f0f7fa;
  --color-footer: #1a3a4a;
  --color-overlay: rgba(0, 119, 182, 0.8);
  --font-sans: 'Roboto', sans-serif;
  --max-w: 80rem;
  --max-w-wide: 72rem;
  --max-w-narrow: 64rem;
  --max-w-faq: 56rem;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background: #fff;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== 공통 레이아웃 ===== */
.page {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100vh;
}

.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container--wide {
  max-width: var(--max-w-wide);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.container--faq {
  max-width: var(--max-w-faq);
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.section__title--white {
  color: #fff;
}

.section__desc {
  color: #4b5563;
  font-size: 0.875rem;
  margin: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  line-height: 1.6;
}

.text-accent {
  color: var(--color-primary);
}

.badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.badge--blue {
  background: rgba(0, 119, 182, 0.1);
  color: var(--color-primary);
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.section-cta__note {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0.75rem 0 0;
}

.section-cta__note--white {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
}

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

.hide-mobile {
  display: none;
}

.required {
  color: #ef4444;
}

/* ===== 버튼 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
}

.btn--lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
}

.btn--white:hover {
  background: #f3f4f6;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== TopBanner ===== */
.top-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-size: 0.75rem;
}

.top-banner__line {
  display: block;
}

.top-banner__strong {
  display: block;
  margin-top: 0.25rem;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__brand {
  display: flex;
  flex-direction: column;
}

.header__title {
  font-size: 1.125rem;
  font-weight: 700;
}

.header__title-accent {
  color: var(--color-primary);
}

.header__tagline {
  font-size: 10px;
  color: #4b5563;
  margin-top: 0.125rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  color: #fff;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero__title-line {
  display: block;
  margin-bottom: 0.5rem;
}

.hero__title-accent {
  display: inline-block;
  background: var(--color-primary);
  padding: 0.375rem 1rem;
  font-size: 1.5rem;
}

.hero__desc {
  font-size: 1rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__badge-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.75rem;
}

.hero__badge-item i {
  margin-right: 0.25rem;
}

.hero__cta:hover {
  transform: scale(1.05);
}

.hero__cta i {
  margin-left: 0.5rem;
}

.hero__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 0;
  padding: 0 0.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(0.5rem);
  }
}

/* ===== Consult Section ===== */
.section--consult {
  background: linear-gradient(to bottom, var(--color-bg-light), #fff);
}

.consult-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.consult-intro__desc {
  color: #4b5563;
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.consult-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.consult-channel {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.consult-channel__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 119, 182, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.consult-channel__title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.125rem;
}

.consult-channel__desc {
  color: #4b5563;
  font-size: 0.75rem;
  margin: 0;
}

.consult-assure {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0, 119, 182, 0.05);
  border: 1px solid rgba(0, 119, 182, 0.2);
  border-radius: 0.75rem;
}

.consult-assure__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.consult-assure p {
  color: #4b5563;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.5;
}

/* 스크롤 이동 시 고정 헤더에 가리지 않도록 여백 */
#consult-form {
  scroll-margin-top: 5rem;
}

.consult-form-box {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  padding: 1.25rem;
}

.consult-form-box__header {
  text-align: center;
  margin-bottom: 1rem;
}

.consult-form-box__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
}

.consult-form-box__sub {
  color: #4b5563;
  font-size: 0.75rem;
  margin: 0;
}

.consult-form .form-group {
  margin-bottom: 0.75rem;
}

.form-group--agree {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}

.form-agree {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
}

.form-agree input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-agree__text {
  user-select: none;
}

.form-agree__link {
  font-size: 0.75rem;
  color: var(--color-primary);
  text-decoration: none;
}

.form-agree__link:hover {
  text-decoration: underline;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.2);
}

.form-select {
  cursor: pointer;
  appearance: auto;
}

.form-textarea {
  resize: none;
  min-height: 4.5rem;
}

.form-char-count {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0.25rem 0 0;
  text-align: right;
}

.consult-form__privacy {
  font-size: 10px;
  color: #6b7280;
  text-align: center;
  margin: 0.75rem 0 0;
}

.consult-form-success {
  text-align: center;
  padding: 1rem 0;
}

.consult-form-success__icon {
  width: 4rem;
  height: 4rem;
  background: rgba(0, 119, 182, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-primary);
  font-size: 1.875rem;
}

.consult-form-success__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.consult-form-success__desc {
  color: #4b5563;
  font-size: 0.875rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.consult-form-success__again {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.consult-form-success__again:hover {
  text-decoration: underline;
}

/* ===== Image Sections ===== */
.img-section {
  position: relative;
  height: 24rem;
}

.img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-overlay), rgba(45, 90, 61, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-section__content {
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.img-section__content h3 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.img-section__content p {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== Stats ===== */
.section--stats {
  background: linear-gradient(to bottom, var(--color-bg-light), #fff);
}

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

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat__label {
  font-weight: 500;
  color: #374151;
  font-size: 0.75rem;
}

/* ===== Target Section ===== */
.section--white {
  background: #fff;
}

.target-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.target-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.target-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.target-card__icon {
  width: 60px;
  margin: 0px 0px 20px 0px;
}

.target-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.target-card__tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.target-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.5;
  white-space: pre-line;
}

.target-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.target-card__list li {
  display: flex;
  align-items: flex-start;
  color: #374151;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.target-card__list li::before {
  content: '•';
  color: var(--color-primary);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

/* ===== Differentiation ===== */
.section--diff {
  background: linear-gradient(to bottom, #fff, var(--color-bg-light));
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.diff-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.2s;
}

.diff-card:hover {
  box-shadow: var(--shadow-2xl);
}

.diff-card__tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.diff-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.5;
  white-space: pre-line;
}

.diff-card__desc {
  color: #4b5563;
  font-size: 0.75rem;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.diff-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diff-card__list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.75rem;
  color: #374151;
  margin-bottom: 0.375rem;
}

.diff-card__list li::before {
  content: '✓';
  color: var(--color-primary);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

/* ===== System Guide ===== */
.system-grid {
  display: grid;
  gap: 1rem;
}

.system-card {
  background: linear-gradient(to bottom right, var(--color-bg-light), #fff);
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.system-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.system-card__icon {
  width: 80px;
  margin: 0px 0px 20px 0px;
}

.system-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.system-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.system-card__list li {
  display: flex;
  align-items: flex-start;
  color: #374151;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.system-card__list li::before {
  content: '•';
  color: var(--color-primary);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

/* ===== Process ===== */
.section--process {
  background: linear-gradient(to bottom, var(--color-bg-light), #fff);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 0.75rem;
}

.process-step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.process-step__body {
  flex: 1;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.process-step__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.process-step__body p {
  color: #4b5563;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== Review ===== */
.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: var(--color-bg-light);
  border-radius: 0.75rem;
  padding: 1.25rem;
  position: relative;
}

.review-card__quote {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 1.2rem;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
}

.review-card__quote i {
  display: block;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.review-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.875rem;
}

.review-card__meta {
  font-size: 0.75rem;
  color: #4b5563;
}

.review-card__stars {
  color: #f59e0b;
  font-size: 0.75rem;
}

.review-card__text {
  color: #374151;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ===== FAQ ===== */
.section--faq {
  background: linear-gradient(to bottom, var(--color-bg-light), #fff);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-item__q:hover {
  background: var(--color-bg-light);
}

.faq-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease-out;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

/* 아코디언: 실제 내용 높이만큼만 열리고 닫히도록 grid 사용 */
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out;
}

.faq-item__a>* {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
  padding: 0.75rem 1rem;
  background: var(--color-bg-light);
  border-top: 1px solid #e5e7eb;
  transition: grid-template-rows 0.35s ease-out, padding 0.2s ease-out;
}

.faq-item__a p {
  color: #374151;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== Philosophy ===== */
.philosophy-quote {
  background: var(--color-bg-light);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.philosophy-quote p {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.philosophy-value {
  text-align: center;
  padding: 0.75rem;
}

.philosophy-value__icon {
  width: 60px;
  margin: 0px auto 8px auto;
}

.philosophy-value__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-value h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.philosophy-value p {
  color: #4b5563;
  font-size: 10px;
  margin: 0;
}

/* ===== Final CTA ===== */
.section--cta {
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-dark));
  color: #fff;
}

.section-cta__lead {
  font-size: 1rem;
  margin: 0 0 1.5rem;
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 40;
}

.floating-cta__btn {
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-2xl);
}

.floating-cta__btn:hover {
  transform: scale(1.05);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-footer);
  color: #fff;
  padding: 2rem 0;
}

.footer .container {
  max-width: var(--max-w);
}

.footer__brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.footer__desc {
  color: #d1d5db;
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.footer__bottom {
  border-top: 1px solid #4b5563;
  padding-top: 1.5rem;
  text-align: center;
}

.footer__copy {
  color: #9ca3af;
  font-size: 10px;
  margin: 0 0 0.5rem;
}

.footer__link {
  color: #6b7280;
  font-size: 10px;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}


/* ===== 스크롤 애니메이션 ===== */
[data-scroll-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

[data-scroll-animate].scroll-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   미디어 쿼리
   ======================================== */

/* ----- 499px 이하 (모바일만 적용) ----- */
@media (max-width: 499px) {
  .header__tagline {
    display: none;
  }
}

/* ----- 500px 이상: 웹에서도 모바일 디자인 유지 (확장 스타일 없음) ----- */
@media (min-width: 500px) {
  /* 모든 화면에서 모바일 디자인 유지 (500px 이상에서도 확장 스타일 없음) */
}