/* =========================================================
   한끼어때 — 데모 정적 페이지 스타일
   ========================================================= */

:root {
  --purple: #7c3aed;
  --purple-strong: #6d28d9;
  --purple-soft: #ede9fe;
  --mint: #3ee6a8;
  --mint-soft: #d9fbee;
  --teal: #2b7f96;
  --ink: #14121f;
  --ink-soft: #55516b;
  --line: #e7e4f0;
  --bg: #ffffff;
  --bg-soft: #f7f6fb;
  --dark: #171226;
  --dark-2: #1f1933;
  --radius: 18px;
  --header-h: 68px;
  --container: 1180px;
  --shadow: 0 16px 40px rgba(23, 18, 38, 0.10);
  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
em { font-style: normal; }
.nowrap { white-space: nowrap; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* 앵커 이동 시 고정 헤더만큼 여백 확보 */
section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.accent { color: var(--purple); }

/* ---------- 공통: 배지 / 버튼 / 섹션 ---------- */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.badge--outline { color: #fff; border: 1px solid rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(4px); }
.badge--purple { color: var(--purple-strong); background: var(--purple-soft); }
.badge--dark { color: #eafff5; background: rgba(20, 18, 31, 0.85); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; border-radius: 10px; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--purple); color: #fff; box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35); }
.btn--primary:hover { background: var(--purple-strong); }
.btn--outline { color: #fff; border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.06); }
.btn--outline:hover { background: rgba(255, 255, 255, 0.14); }
.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--dark-ghost { border-color: rgba(20, 18, 31, 0.5); color: var(--dark); }
.btn--dark-ghost:hover { background: rgba(20, 18, 31, 0.08); }

.section { padding: 110px 0; }
.section__head { margin-bottom: 48px; }
.section__head--center { text-align: center; }
.section__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.02em;
}
.section__desc { margin-top: 16px; color: var(--ink-soft); max-width: 560px; }
.section__head--center .section__desc { margin-inline: auto; }

/* ---------- 스크롤 리빌 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 이미지 플레이스홀더 ---------- */
.img-placeholder { position: relative; }
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(20, 18, 31, 0.45);
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  background: linear-gradient(180deg, rgba(10, 8, 20, 0.55), rgba(10, 8, 20, 0));
}
.header.is-scrolled {
  background: rgba(16, 12, 30, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.header__inner { height: 100%; display: flex; align-items: center; gap: 32px; }

.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.12rem; }
.logo__mark {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--purple);
  border-radius: 9px;
  font-size: 1rem;
}
.logo__img {
  width: 34px; height: 34px;
  border-radius: 9px;
  object-fit: cover;
  background: #eaf4fb; /* 로고 원본의 연한 하늘색 배경 */
}

.gnb { display: flex; gap: 4px; margin-inline: auto; }
.gnb__link {
  padding: 8px 13px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.15s ease, color 0.15s ease;
}
.gnb__link:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.gnb__link.is-active { color: #fff; background: rgba(124, 58, 237, 0.55); }

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

.header__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.header__burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 70px) 0 90px;
  color: #fff;
  overflow: hidden;
}
/* 저녁 골목 사진 대체 그라디언트 (이미지 영역) */
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(520px 320px at 82% 18%, rgba(255, 170, 70, 0.28), transparent 65%),
    radial-gradient(380px 260px at 12% 62%, rgba(124, 58, 237, 0.35), transparent 70%),
    radial-gradient(300px 220px at 60% 80%, rgba(255, 120, 60, 0.18), transparent 70%),
    linear-gradient(200deg, #241d3d 0%, #17122a 45%, #0d0a18 100%);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  /* 오버레이: 중앙에서 방사형으로 어둡게, 가장자리는 밝게 / 마지막: 배경 사진 */
  background-image:
    radial-gradient(ellipse 75% 70% at 50% 45%, rgba(13, 10, 24, 0.78) 0%, rgba(13, 10, 24, 0.55) 55%, rgba(13, 10, 24, 0.12) 100%),
    url("../img/hero_bg.jpg");
  background-size: cover;      /* 비율 유지한 채 영역을 가득 채움 */
  background-position: center; /* 중앙 정렬 */
  background-repeat: no-repeat;
}

.hero__inner {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero__desc { margin-top: 22px; color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; }
.hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; list-style: none; margin-top: 30px; font-size: 0.87rem; color: rgba(255, 255, 255, 0.75); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.65rem; letter-spacing: 0.25em; color: rgba(255, 255, 255, 0.6);
}
.hero__scroll i {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, #fff, transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  background: var(--purple);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(0.001deg);
}
.marquee__track {
  display: flex;
  gap: 34px;
  width: max-content;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.92rem;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Features
   ========================================================= */
.features { background: var(--bg); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  padding: 30px 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card__no { position: absolute; top: 22px; right: 24px; font-weight: 800; font-size: 0.8rem; opacity: 0.4; }
.feature-card__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 1.25rem;
  margin-bottom: 40px;
}
.feature-card h3 { font-size: 1.06rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.feature-card p { font-size: 0.87rem; color: var(--ink-soft); }
.feature-card__link { display: inline-block; margin-top: 18px; font-size: 0.8rem; font-weight: 700; opacity: 0.75; }

.feature-card--purple { background: var(--purple); border-color: var(--purple); color: #fff; }
.feature-card--purple p { color: rgba(255, 255, 255, 0.82); }
.feature-card--purple .feature-card__icon { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.25); }
.feature-card--mint { background: var(--mint); border-color: var(--mint); color: var(--dark); }
.feature-card--mint p { color: rgba(20, 18, 31, 0.72); }
.feature-card--mint .feature-card__icon { background: rgba(255, 255, 255, 0.5); border-color: transparent; }

/* =========================================================
   Order / App
   ========================================================= */
.order { background: var(--bg-soft); }
.order__tabs { display: flex; gap: 8px; margin-top: 22px; }
.pill {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: all 0.15s ease;
}
.pill.is-active { background: var(--dark); border-color: var(--dark); color: #fff; }

.order__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.order__subtitle { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.order__desc { margin-top: 10px; color: var(--ink-soft); }

.checklist { list-style: none; margin-top: 26px; display: grid; gap: 10px; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}
.checklist li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.order__stores { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}
.store-btn:hover { transform: translateY(-2px); background: #000; }
.store-btn--ghost { background: transparent; color: var(--dark); border: 1.5px solid rgba(20, 18, 31, 0.35); }
.store-btn--ghost:hover { background: rgba(20, 18, 31, 0.06); }

/* 폰 목업 (이미지 영역) */
.phone-stage {
  position: relative;
  border-radius: 26px;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(340px 240px at 75% 25%, rgba(255, 255, 255, 0.5), transparent 70%),
    linear-gradient(140deg, #f2d9b8 0%, #e8c49a 55%, #d9ad82 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone {
  /* 앱 홈 화면 스크린샷 비율(1080×2360 ≈ 1:2.19)에 맞춘 프레임:
     화면 영역 180×393 + 패딩 20 */
  width: 200px; height: 413px;
  background: #0e0c18;
  border-radius: 30px;
  padding: 10px;
  transform: rotate(8deg) translateY(14px);
  box-shadow: 0 30px 60px rgba(60, 35, 10, 0.35);
}
.phone__notch { width: 70px; height: 8px; background: #0e0c18; border-radius: 0 0 8px 8px; margin: 0 auto; position: relative; z-index: 2; }
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 22px;
  margin-top: -8px;
  padding: 18px 12px;
  background: linear-gradient(180deg, #f6f4fc 0%, #eceafb 100%);
  display: grid; gap: 10px; align-content: start;
  overflow: hidden;
}
/* 실제 앱 홈 화면 스크린샷 — 비율 유지(cover), 상단 기준으로 표시 */
.phone__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
  z-index: 1;
}
.phone__bar { height: 34px; border-radius: 10px; background: var(--purple); opacity: 0.9; }
.phone__card { height: 92px; border-radius: 12px; background: #fff; box-shadow: 0 6px 16px rgba(23, 18, 38, 0.08); }
.phone__card--sm { height: 64px; }

.float-tag {
  position: absolute;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.45;
  animation: floatY 4s ease-in-out infinite;
}
.float-tag b { color: var(--ink); font-size: 0.83rem; }
.float-tag--tr { top: 26px; right: 26px; background: #2ea3c4; color: rgba(255,255,255,0.85); }
.float-tag--tr b { color: #fff; }
.float-tag--bl { left: 26px; bottom: 30px; animation-delay: -2s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* =========================================================
   Impact
   ========================================================= */
.impact {
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(255, 255, 255, 0.35), transparent 60%),
    linear-gradient(135deg, #49efb4 0%, #3ee6a8 45%, #2fd99b 100%);
  color: var(--dark);
}
.impact__grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.impact__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 900; line-height: 1.3; letter-spacing: -0.03em; }
.impact__desc { margin-top: 16px; color: rgba(20, 18, 31, 0.72); max-width: 480px; margin-inline: auto; }
.impact__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }

.impact__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.impact-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 26px 24px;
  backdrop-filter: blur(4px);
}
.impact-card__icon { font-size: 1.3rem; }
.impact-card__num { display: block; margin-top: 14px; font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 900; letter-spacing: -0.02em; }
.impact-card__label { display: block; margin-top: 2px; font-size: 0.82rem; color: rgba(20, 18, 31, 0.65); font-weight: 600; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews { background: var(--bg); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: #fff;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-card__quote { font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--purple); font-family: Georgia, serif; }
.review-card blockquote { margin-top: 10px; font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.review-card__who { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.review-card__who b { display: block; font-size: 0.92rem; }
.review-card__who small { color: var(--ink-soft); font-size: 0.76rem; }
.avatar {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple-strong);
  font-weight: 800;
  font-size: 0.9rem;
}
.review-card--highlight { background: var(--teal); border-color: var(--teal); color: #fff; }
.review-card--highlight .review-card__quote { color: rgba(255, 255, 255, 0.85); }
.review-card--highlight blockquote { color: rgba(255, 255, 255, 0.88); }
.review-card--highlight .review-card__who small { color: rgba(255, 255, 255, 0.65); }
.review-card--highlight .avatar { background: rgba(255, 255, 255, 0.2); color: #fff; }

/* =========================================================
   Partner
   ========================================================= */
.partner { background: var(--bg-soft); }
.partner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.partner__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.benefit__icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple-strong);
  font-weight: 800;
  margin-bottom: 16px;
}
.benefit h3 { font-size: 0.98rem; font-weight: 800; margin-bottom: 8px; }
.benefit p { font-size: 0.83rem; color: var(--ink-soft); }

/* 신청 폼 (다크 카드) */
.partner-form {
  background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 70%);
  color: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 30px 60px rgba(23, 18, 38, 0.35);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.partner-form__title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.partner-form__desc { margin: 8px 0 26px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }
.partner-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { display: block; margin-bottom: 14px; }
.field span { display: block; font-size: 0.78rem; font-weight: 700; color: rgba(255, 255, 255, 0.75); margin-bottom: 7px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.field select { appearance: none; }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.14);
}
.field input.is-error, .field select.is-error { border-color: #ff7a7a; }

.agree { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); margin: 6px 0 22px; cursor: pointer; }
.agree input { accent-color: var(--purple); width: 16px; height: 16px; }

.form-message { margin-top: 14px; font-size: 0.84rem; font-weight: 700; }
.form-message--ok { color: var(--mint); }
.form-message--error { color: #ff9c9c; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.chip-mail {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.faq__list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq-item[open] { border-color: var(--purple); background: #fff; }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__toggle {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  position: relative;
  border-radius: 50%;
  background: var(--purple-soft);
}
.faq-item__toggle::before, .faq-item__toggle::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 10px; height: 2px;
  background: var(--purple-strong);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.faq-item__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item__body { padding: 0 22px 20px; font-size: 0.9rem; color: var(--ink-soft); }

/* =========================================================
   Bottom CTA
   ========================================================= */
.cta {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: 26px;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto 110px;
  padding: 110px 0;
  text-align: left;
}
/* 저녁 골목 사진 대체 그라디언트 (이미지 영역) */
.cta__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(480px 300px at 85% 25%, rgba(255, 180, 90, 0.3), transparent 65%),
    radial-gradient(360px 240px at 15% 75%, rgba(124, 58, 237, 0.4), transparent 70%),
    linear-gradient(210deg, #2a2247 0%, #191330 50%, #0e0a1c 100%);
}
.cta__inner {
  position: relative; z-index: 1;
  width: calc(100% - 120px);
  text-align: center;
}
.cta__title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.cta__desc { margin-top: 18px; color: rgba(255, 255, 255, 0.8); max-width: 480px; margin-inline: auto; }
.cta__desc b { color: var(--mint); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.7); padding: 70px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand p { margin-top: 18px; font-size: 0.85rem; max-width: 320px; }
.footer__brand .logo { color: #fff; }
.footer__sns { display: flex; gap: 10px; margin-top: 22px; }
.footer__sns a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.15s ease;
}
.footer__sns a:hover { background: rgba(255, 255, 255, 0.12); }

.footer__col { display: grid; gap: 10px; align-content: start; font-size: 0.87rem; }
.footer__col h4 { color: #fff; font-size: 0.92rem; margin-bottom: 6px; }
.footer__col a:hover { color: #fff; }
.footer__info p { line-height: 1.9; font-size: 0.83rem; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 26px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .order__grid, .impact__grid, .partner__grid, .faq__grid { grid-template-columns: 1fr; gap: 44px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .partner-form { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

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

  .gnb {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    padding: 16px 24px 22px;
    background: rgba(16, 12, 30, 0.97);
    backdrop-filter: blur(10px);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .gnb.is-open { transform: none; opacity: 1; visibility: visible; }
  .gnb__link { padding: 13px 12px; font-size: 1rem; }
  .header__burger { display: flex; }
  .header__actions .btn--ghost { display: none; }

  .hero { min-height: auto; }
  .hero__scroll { display: none; }

  .features__grid, .partner__benefits, .partner-form__row { grid-template-columns: 1fr; }
  .cta__inner { width: calc(100% - 56px); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
