/* =========================================================
   Personal Brand Retreat with 미민지 — 디자인 시스템 (Creator Retreat ver2)
   무드보드: Warm Sand / Lavender / Hot Pink / Lime — studio-manual 스타일 팔레트
   8pt 그리드, max-width 1140px (BDC 랜딩 컴포넌트 패턴 재사용)
   ========================================================= */

:root {
  --page: #EDE4D2;
  --bg: #FFFFFF;
  --surface: #F4EEE0;
  --surface-2: #EBE0C8;
  --border: #E2D6B8;
  --border-strong: #D2C09A;

  --text-primary: #1C1810;
  --text-secondary: #6B6152;
  --text-muted: #A79A80;

  /* primary accent — lavender/퍼플 (기존 --green 자리를 대체) */
  --green: #6E5FE0;
  --green-dark: #4F3FC4;
  --green-light: #E6E1FB;

  /* secondary accent — 핫핑크 (기존 --orange 자리를 대체) */
  --orange: #F1408A;
  --orange-dark: #C91F68;
  --orange-light: #FCE0EE;

  /* 포인트 컬러 — 라임 (칩/태그 등 짧은 포인트에만 사용) */
  --lime: #D9F24C;
  --lime-dark: #4B5A12;
  --lime-light: #F1FAC9;

  --sand: #DCCBA0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--page);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* 모바일 sticky CTA 공간 */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

section { padding: clamp(48px, 8vw, 104px) 0; }
section.tight { padding: clamp(32px, 5vw, 64px) 0; }
.section-alt { background: var(--surface); }

/* ═══ 타이포 ═══ */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--green); text-transform: uppercase; margin-bottom: 16px; }
.eyebrow.orange { color: var(--orange); }
h1, h2, h3 { letter-spacing: -0.02em; font-weight: 800; }
.sec-headline { font-size: clamp(24px, 4vw, 38px); line-height: 1.35; margin-bottom: 14px; }
.sec-headline .accent { color: var(--green); }
.sec-headline .accent-orange { color: var(--orange); }
.sec-body { font-size: clamp(14px, 1.7vw, 16px); color: var(--text-secondary); line-height: 1.85; max-width: 640px; }
.sec-body p + p { margin-top: 14px; }
.sec-body.center { margin-left: auto; margin-right: auto; text-align: center; }
.center { text-align: center; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; }

.highlight-quote { border-left: 3px solid var(--green); padding: 4px 0 4px 20px; margin-top: 28px; font-size: clamp(15px, 2vw, 19px); font-weight: 700; line-height: 1.6; color: var(--text-primary); }
.highlight-quote.center { border-left: none; border-top: 3px solid var(--orange); padding: 20px 0 0; text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ═══ 버튼 ═══ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; font-size: 15px; font-weight: 700; padding: 15px 26px; border-radius: 100px; border: none; cursor: pointer; transition: transform 150ms ease, background 150ms ease; min-height: 48px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-strong); }
.btn-secondary:hover { background: var(--surface); }
.btn-block { width: 100%; }
.cta-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }

/* ═══ 네비 ═══ */
.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(251,245,234,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.site-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.site-nav .brand { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; }
.site-nav .nav-cta { font-size: 13px; font-weight: 700; background: var(--green); color: #fff; padding: 10px 18px; border-radius: 100px; }

/* ═══ 히어로 ═══ */
.hero { position: relative; overflow: hidden; text-align: center; padding: clamp(56px, 9vw, 108px) 0 clamp(40px, 6vw, 72px);
  background:
    radial-gradient(640px 340px at 50% -60px, var(--surface-2) 0%, rgba(241,228,204,0) 70%),
    radial-gradient(520px 340px at 90% 20%, rgba(47,110,78,0.10), transparent 62%),
    radial-gradient(480px 320px at 6% 82%, rgba(226,112,58,0.10), transparent 62%);
}
.hero .container { position: relative; }
.hero h1 { font-size: clamp(30px, 5.4vw, 56px); line-height: 1.28; margin-bottom: 18px; }
.hero h1 .line-orange { color: var(--orange); }
.hero .desc { font-size: clamp(14px, 1.8vw, 17px); color: var(--text-secondary); max-width: 560px; margin: 0 auto 34px; line-height: 1.8; }
.hero .desc strong { color: var(--text-primary); font-weight: 700; }
.hero-cta { display: flex; justify-content: center; margin-bottom: 16px; }

/* 떠다니는 장식 카드 + 별 (bdc_site 히어로 패턴 재사용) */
.float-obj { position: absolute; background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 10px 30px rgba(107,93,75,0.14); padding: 13px 16px; font-size: 12px; text-align: left;
  line-height: 1.5; display: none; animation: cr-floaty 6s ease-in-out infinite; z-index: 1; }
@media (min-width: 960px) { .float-obj { display: block; } }
.float-obj b { font-size: 13px; font-weight: 700; display: block; }
.float-obj .sub { color: var(--text-muted); font-size: 11px; }
.fo-1 { --r: -6deg; left: 1%; top: 14%; }
.fo-2 { --r: 5deg; right: 1%; top: 12%; animation-delay: 1.3s; max-width: 190px; }
.fo-3 { --r: -4deg; right: 3%; bottom: 8%; animation-delay: 2.4s; }
.fo-4 { --r: 4deg; left: 3%; bottom: 12%; animation-delay: 0.7s; }
@keyframes cr-floaty { 0%, 100% { transform: rotate(var(--r)) translateY(0); } 50% { transform: rotate(var(--r)) translateY(-12px); } }
.star-doodle { position: absolute; z-index: 0; opacity: 0.9; animation: cr-floaty 7s ease-in-out infinite; display: none; }
@media (min-width: 768px) { .star-doodle { display: block; } }
.star-doodle svg { width: 24px; height: 24px; }
.sd-1 { --r: -12deg; left: 13%; top: 10%; }
.sd-2 { --r: 18deg; right: 15%; top: 54%; animation-delay: 1.8s; }
.sd-2 svg { width: 17px; height: 17px; }
.sd-3 { --r: 8deg; left: 24%; bottom: 6%; animation-delay: 3s; }
.sd-3 svg { width: 15px; height: 15px; }
@media (prefers-reduced-motion: reduce) { .float-obj, .star-doodle { animation: none; } }

.hero-stats { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 820px; margin: 44px auto 0; text-align: left; }
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(3, 1fr); } }
.hero-stat { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 20px; overflow: hidden; }
.hero-stat-illust { width: 100%; height: 96px; object-fit: contain; object-position: bottom; margin-bottom: 10px; }
.hero-stat b { display: block; font-size: 13px; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.hero-stat span { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ═══ 참가자 후기 마퀴 ═══ */
.testi-sec { padding: clamp(28px, 5vw, 56px) 0 clamp(36px, 6vw, 72px); }
.testi-head { text-align: center; max-width: 640px; margin: 0 auto clamp(28px, 4vw, 44px); }
.testi-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 14px; }
.testi-orn { width: 16px; height: 16px; flex-shrink: 0; }
.testi-title { font-size: clamp(22px, 3.6vw, 34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.35; }
.testi-title-accent { color: var(--green); }

.testi-carousel-wrap { overflow: hidden; min-height: 176px; -webkit-mask-image: linear-gradient(90deg, transparent, black 60px, black calc(100% - 60px), transparent); mask-image: linear-gradient(90deg, transparent, black 60px, black calc(100% - 60px), transparent); }
.testi-track { display: flex; gap: 16px; width: max-content; padding: 4px 2px 6px; animation: testi-roll 32s linear infinite; will-change: transform; transform: translateZ(0); backface-visibility: hidden; }
.testi-carousel-wrap:hover .testi-track { animation-play-state: paused; }
@keyframes testi-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card { flex: 0 0 auto; width: 240px; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 768px) { .testi-card { width: 250px; } }
.testi-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.testi-person { display: flex; align-items: center; gap: 8px; }
.testi-avatar { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; object-fit: cover; border: 1px solid var(--border); }
.testi-top b { font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--text-primary); }
.testi-quote-mark { font-size: 30px; line-height: 0.6; color: var(--green-light); font-weight: 800; }
.testi-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
@media (prefers-reduced-motion: reduce) { .testi-track { animation: none; overflow-x: auto; } }

/* ═══ 발리 포토 콜라주 ═══ */
.bali-photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 36px 0; }
.bali-photo-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 16px; }
.bali-photo-grid img:first-child { grid-column: span 2; height: 260px; }
@media (min-width: 768px) { .bali-photo-grid { grid-template-columns: repeat(5, 1fr); } .bali-photo-grid img,
  .bali-photo-grid img:first-child { height: 240px; grid-column: span 1; } }

/* ═══ 페르소나 카드 ═══ */
.persona-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .persona-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.persona-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: clamp(24px, 3vw, 34px); }
.persona-card .num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); font-size: 13px; font-weight: 800; margin-bottom: 16px; }
.persona-card h3 { font-size: 19px; margin-bottom: 8px; }
.persona-card > p { font-size: 14px; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.7; }
.persona-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.persona-card li { font-size: 13px; color: var(--text-secondary); line-height: 1.6; padding-left: 20px; position: relative; }
.persona-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.persona-help { margin-top: 20px; background: var(--surface); border-radius: 14px; padding: 16px 18px; }
.persona-help b { display: block; font-size: 12.5px; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.persona-help p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin: 0; }

.free-note { display: flex; gap: 10px; align-items: flex-start; background: var(--orange-light); border-radius: 14px; padding: 16px 18px; margin-top: 24px; }
.free-note span.emoji { font-size: 16px; flex-shrink: 0; }
.free-note p { font-size: 13px; color: var(--orange-dark); line-height: 1.7; font-weight: 600; margin: 0; }

/* ═══ 콜아웃 배너 ═══ */
.callout-banner { display: flex; gap: 16px; align-items: center; background: var(--green); border-radius: 18px; padding: 22px 26px; margin-top: 28px; }
.callout-banner .emoji { font-size: 24px; flex-shrink: 0; }
.callout-banner b { display: block; font-size: 14.5px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.callout-banner p { font-size: 13.5px; color: rgba(255,255,255,0.88); line-height: 1.7; margin: 0; }
@media (max-width: 480px) { .callout-banner { flex-direction: column; align-items: flex-start; } }

/* ═══ 프로그램 카드 (Program at a Glance) ═══ */
.program-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .program-grid { grid-template-columns: repeat(3, 1fr); } }
.program-card { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 22px; }
.program-card .tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--lime-dark); background: var(--lime); padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.program-card h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.program-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ═══ 8주 여정 타임라인 (phase cards) ═══ */
.phase-list { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--border-strong); margin-left: 10px; }
.phase-item { position: relative; padding: 0 0 32px 30px; }
.phase-item:last-child { padding-bottom: 0; }
.phase-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 3px solid var(--page); }
.phase-item .phase-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; color: var(--green); text-transform: uppercase; margin-bottom: 6px; }
.phase-item h3 { font-size: 17px; margin-bottom: 6px; }
.phase-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ═══ 리스트 카드 (피드백 항목, 현장 항목, 로드맵 항목 등) ═══ */
.item-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
@media (min-width: 640px) { .item-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .item-grid { grid-template-columns: repeat(3, 1fr); } }
.item-chip { display: flex; align-items: flex-start; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.item-chip .dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-top: 7px; }

/* ═══ 일정 타임라인 (세로형) ═══ */
.schedule-timeline { display: flex; flex-direction: column; gap: 0; }
.schedule-row { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.schedule-row:last-child { border-bottom: none; }
.schedule-row .date { flex: 0 0 auto; width: 128px; font-size: 13px; font-weight: 700; color: var(--text-primary); }
.schedule-row .program { font-size: 14px; color: var(--text-secondary); }
.schedule-row.milestone .program { color: var(--green-dark); font-weight: 700; }
.schedule-row.bali { background: var(--green-light); margin: 4px -16px; padding: 16px; border-radius: 14px; border-bottom: none; }
.schedule-row.bali .date, .schedule-row.bali .program { color: var(--green-dark); font-weight: 800; }

/* ═══ 넘버 리스트 (What You'll Get) ═══ */
.numbered-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .numbered-list { grid-template-columns: repeat(2, 1fr); } }
.numbered-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; }
.numbered-item .n { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--text-primary); color: var(--page); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.numbered-item p { font-size: 14px; color: var(--text-primary); line-height: 1.6; padding-top: 3px; }

/* ═══ Who / Not For ═══ */
.fit-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 30px; }
@media (min-width: 768px) { .fit-grid { grid-template-columns: repeat(2, 1fr); } }
.fit-item { display: flex; gap: 10px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; align-items: flex-start; }
.fit-item::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.not-for-box { background: var(--surface-2); border-radius: 16px; padding: 24px; }
.not-for-box b { display: block; font-size: 14px; margin-bottom: 8px; color: var(--text-primary); }
.not-for-box p { font-size: 13px; color: var(--text-secondary); line-height: 1.8; }
.not-for-box p + p { margin-top: 8px; }

/* ═══ 호스트 소개 ═══ */
.host-wrap { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 768px) { .host-wrap { grid-template-columns: 200px 1fr; gap: 40px; } }
.host-avatar { width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(155deg, var(--green-light), var(--orange-light)); display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 40px; font-weight: 800; color: var(--green-dark); margin: 0 auto; border: 4px solid var(--bg); box-shadow: 0 8px 28px rgba(47,110,78,0.14); }
.host-avatar img { width: 68%; height: 68%; object-fit: contain; }
@media (min-width: 768px) { .host-avatar { width: 200px; height: 200px; font-size: 56px; } }
.host-copy p { font-size: 14px; color: var(--text-secondary); line-height: 1.85; }
.host-copy p + p { margin-top: 14px; }

.host-social { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.host-social a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg); border: 1px solid var(--border); color: var(--green-dark); transition: transform 150ms ease, background 150ms ease; }
.host-social a:hover { background: var(--green-light); transform: translateY(-2px); }
.host-social svg { width: 17px; height: 17px; }

/* ═══ 상담 문의 폼 ═══ */
.contact-form { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--text-secondary); }
.contact-form input, .contact-form textarea { font-family: inherit; font-size: 14px; font-weight: 400; color: var(--text-primary); background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); }
.contact-form-msg { text-align: center; font-size: 14px; font-weight: 700; color: var(--green-dark); }
.contact-form-msg.is-error { color: var(--orange-dark); }

/* ═══ 신청 절차 (4 steps) ═══ */
.step-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .step-grid { grid-template-columns: repeat(4, 1fr); } }
.step-box { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 20px; position: relative; }
.step-box .step-n { font-size: 11px; font-weight: 800; color: var(--orange); letter-spacing: 0.04em; margin-bottom: 10px; display: block; }
.step-box h3 { font-size: 15px; margin-bottom: 8px; line-height: 1.4; }
.step-box p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; }
.step-box a { color: var(--green-dark); font-weight: 700; word-break: break-all; }

/* ═══ 요약 테이블 ═══ */
.summary-table { width: 100%; border-collapse: collapse; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.summary-table tr { border-bottom: 1px solid var(--border); }
.summary-table tr:last-child { border-bottom: none; }
.summary-table th, .summary-table td { text-align: left; padding: 14px 18px; font-size: 13.5px; vertical-align: top; }
.summary-table th { color: var(--text-muted); font-weight: 600; width: 120px; white-space: nowrap; }
.summary-table td { color: var(--text-primary); font-weight: 500; line-height: 1.6; }
@media (min-width: 640px) { .summary-table th, .summary-table td { padding: 16px 24px; } }

/* ═══ FAQ 아코디언 ═══ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; background: none; border: none; text-align: left; font-size: 14.5px; font-weight: 700; color: var(--text-primary); cursor: pointer; }
.faq-q .icon { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; color: var(--green); transition: transform 200ms ease; }
.faq-item.on .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 250ms ease; }
.faq-a-inner { padding: 0 20px 18px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.75; }

/* ═══ Final CTA ═══ */
.final-cta { background: var(--text-primary); color: var(--page); text-align: center; border-radius: 28px; padding: clamp(36px, 6vw, 64px) clamp(20px, 5vw, 48px); }
.final-cta .sec-headline { color: #fff; }
.final-cta .sec-body { color: rgba(251,245,234,0.75); margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { background: var(--orange); }
.final-cta .btn-primary:hover { background: var(--orange-dark); }
.final-cta .cta-note { color: rgba(251,245,234,0.5); }

/* ═══ 모바일 sticky CTA ═══ */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--bg); border-top: 1px solid var(--border); padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.06); }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ═══ 푸터 ═══ */
.site-footer { border-top: 1px solid var(--border); padding: 28px 0; }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--text-muted); }

.keywords-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 22px 0; }
.keywords-row span { font-size: 13px; font-weight: 700; color: var(--green-dark); background: var(--green-light); padding: 8px 16px; border-radius: 100px; }
