/* ============================================================
   펫바비야 — 정기구독 유도 랜딩 페이지 CSS
   컬러 시스템
   --gd  : #1a3d28  딥 그린
   --g   : #2d6a3f  프라이머리
   --gm  : #3a8050  미드
   --gl  : #4a9d60  라이트
   --y   : #f0b429  골드 (강조 · CTA)
   --yd  : #d49a1f  골드 다크
   --k   : #111111
   --k2  : #333
   --mid : #666
   --bg  : #f7f6f3  오프화이트
   --bdr : #e4e3de
============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ══════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════ */
.loading-screen {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(145deg, #0a1c0f 0%, #1a3d28 45%, #2d6a3f 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loading-screen.hide {
  opacity: 0; visibility: hidden; pointer-events: none;
}

.ld-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  user-select: none;
}

/* ── 로고 ── */
.ld-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 28px; font-weight: 900;
  color: #fff; margin-bottom: 36px; letter-spacing: -0.5px;
}
.ld-logo-pet  { color: #fff; }
.ld-logo-rest { color: #f0b429; }
.ld-logo-paw  { font-size: 22px; margin-left: 5px; }

/* ══ 씬 전체 ══ */
.ld-scene {
  position: relative;
  width: 260px; height: 200px;
  margin-bottom: 28px;
}

/* ══ 강아지 ══ */
.ld-dog {
  position: absolute;
  bottom: 28px; left: 16px;
  animation: dogEat 0.5s ease-in-out infinite alternate;
}
@keyframes dogEat {
  0%   { transform: translateY(0) rotate(-3deg); }
  100% { transform: translateY(-6px) rotate(3deg); }
}

/* 귀 */
.ld-ear {
  position: absolute; top: 4px;
  width: 32px; height: 36px;
  background: #c8803a; border-radius: 50% 50% 46% 46%;
}
.ld-ear-l { left: -6px; transform: rotate(-18deg); transform-origin: bottom center; }
.ld-ear-r { right: -6px; transform: rotate(18deg); transform-origin: bottom center; }

/* 귀 흔들기 */
.ld-ear-l { animation: earWagL 0.5s ease-in-out infinite alternate; }
.ld-ear-r { animation: earWagR 0.5s ease-in-out infinite alternate; }
@keyframes earWagL {
  0%   { transform: rotate(-18deg); }
  100% { transform: rotate(-32deg); }
}
@keyframes earWagR {
  0%   { transform: rotate(18deg); }
  100% { transform: rotate(30deg); }
}

/* 머리 */
.ld-head {
  position: relative;
  width: 80px; height: 72px;
  background: #e09040; border-radius: 46% 46% 44% 44%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

/* 눈 */
.ld-eyes {
  display: flex; gap: 16px; margin-top: 8px;
}
.ld-eye {
  width: 14px; height: 14px;
  background: #1a0a00; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px #fff2;
  animation: eyeBlink 2.4s ease-in-out infinite;
}
@keyframes eyeBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95%            { transform: scaleY(0.08); }
}
.ld-pupil {
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  margin: -3px -3px 0 0;
  animation: eyeLook 0.5s ease-in-out infinite alternate;
}
@keyframes eyeLook {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(0, 3px); } /* 밥그릇 내려다보기 */
}

/* 코 */
.ld-nose {
  width: 20px; height: 12px;
  background: #5a1a00; border-radius: 50%;
  position: relative;
}
.ld-nose::after {
  content: '';
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #5a1a00;
}

/* 입 + 혀 */
.ld-mouth {
  width: 40px; height: 16px;
  display: flex; align-items: flex-start; justify-content: center;
  overflow: visible;
}
.ld-tongue {
  width: 22px; height: 22px;
  background: #e8506a; border-radius: 50% 50% 48% 48%;
  margin-top: 2px;
  animation: tongueEat 0.5s ease-in-out infinite alternate;
  box-shadow: inset 0 -3px 5px rgba(0,0,0,.12);
  position: relative;
}
.ld-tongue::after {
  content: '';
  position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 10px;
  background: rgba(0,0,0,.12); border-radius: 2px;
}
@keyframes tongueEat {
  0%   { transform: scaleY(1) translateY(0); }
  100% { transform: scaleY(0.6) translateY(4px); }
}

/* 몸 */
.ld-body {
  position: relative;
  width: 88px; height: 54px;
  background: #d88030; border-radius: 44% 44% 42% 42%;
  margin-top: -8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}

/* 꼬리 */
.ld-tail {
  position: absolute;
  right: -24px; top: -4px;
  width: 28px; height: 16px;
  background: #c87020; border-radius: 50%;
  transform-origin: left center;
  animation: tailWag 0.28s ease-in-out infinite alternate;
}
@keyframes tailWag {
  0%   { transform: rotate(-30deg) scaleX(1); }
  100% { transform: rotate(30deg) scaleX(1.1); }
}
.ld-tail::after {
  content: '';
  position: absolute; right: -10px; top: -2px;
  width: 16px; height: 16px;
  background: #c87020; border-radius: 50%;
}

/* 앞발 */
.ld-paw {
  position: absolute; bottom: -12px;
  width: 22px; height: 16px;
  background: #c87020; border-radius: 50% 50% 40% 40%;
}
.ld-paw-l { left: 14px; }
.ld-paw-r { left: 46px; }
.ld-paw-l::after, .ld-paw-r::after {
  content: '';
  position: absolute; bottom: -6px; left: 2px;
  width: 18px; height: 12px;
  background: #be6818; border-radius: 40%;
}

/* ══ 밥그릇 ══ */
.ld-bowl {
  position: absolute;
  bottom: 20px; right: 10px;
}

/* 그릇 테두리 */
.ld-bowl-rim {
  width: 94px; height: 38px;
  background: #e8e4dc; border-radius: 50%;
  border: 3px solid #d0ccc4;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,.18), inset 0 2px 6px rgba(0,0,0,.08);
  overflow: hidden;
}

/* 화식 음식 */
.ld-bowl-food {
  position: absolute; inset: 4px;
  background: radial-gradient(ellipse, #c8682a 30%, #a84e1a 100%);
  border-radius: 50%;
  overflow: hidden;
}
.ld-food-particle {
  position: absolute;
  border-radius: 50%;
  animation: foodBounce 0.5s ease-in-out infinite alternate;
}
.f1 { width: 8px; height: 8px; background: #7cba3a; top: 5px; left: 8px; animation-delay: 0s; }
.f2 { width: 6px; height: 6px; background: #f0a020; top: 8px; right: 10px; animation-delay: .12s; }
.f3 { width: 7px; height: 7px; background: #e84848; top: 14px; left: 18px; animation-delay: .08s; }
.f4 { width: 5px; height: 5px; background: #f5d020; bottom: 5px; left: 12px; animation-delay: .2s; }
.f5 { width: 6px; height: 6px; background: #38a878; bottom: 6px; right: 8px; animation-delay: .15s; }
@keyframes foodBounce {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-3px) scale(1.1); }
}

/* 그릇 아래 받침 */
.ld-bowl::after {
  content: '';
  display: block;
  width: 100px; height: 22px;
  background: #d8d4cc;
  border-radius: 50% 50% 44% 44%;
  margin-top: -4px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* ══ 스팀 (김) ══ */
.ld-steam {
  position: absolute;
  bottom: 56px; right: 28px;
  width: 6px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  filter: blur(2px);
  animation: steamRise 1.2s ease-in-out infinite;
}
.s1 { right: 26px; animation-delay: 0s; }
.s2 { right: 38px; height: 26px; animation-delay: .35s; }
.s3 { right: 50px; height: 18px; animation-delay: .65s; }
@keyframes steamRise {
  0%   { transform: translateY(0) scaleX(1); opacity: 0.5; }
  60%  { transform: translateY(-22px) scaleX(1.4); opacity: 0.3; }
  100% { transform: translateY(-36px) scaleX(0.6); opacity: 0; }
}

/* ══ 바닥 그림자 ══ */
.ld-shadow {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 14px;
  background: rgba(0,0,0,.22);
  border-radius: 50%;
  filter: blur(5px);
  animation: shadowPulse 0.5s ease-in-out infinite alternate;
}
@keyframes shadowPulse {
  0%   { transform: translateX(-50%) scaleX(1); opacity: .22; }
  100% { transform: translateX(-50%) scaleX(.88); opacity: .14; }
}

/* ══ 문구 ══ */
.ld-msg {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px; font-weight: 700; color: #fff;
  margin-bottom: 6px; letter-spacing: -.2px;
}
.ld-msg-main { margin-right: 2px; }
.ld-msg-dot {
  color: #f0b429; font-size: 22px; font-weight: 900;
  animation: dotBounce 0.9s ease-in-out infinite;
  display: inline-block;
}
.dot1 { animation-delay: 0s; }
.dot2 { animation-delay: .2s; }
.dot3 { animation-delay: .4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 1; }
  40%           { transform: translateY(-6px); opacity: .6; }
}

.ld-sub {
  font-size: 11.5px; color: rgba(255,255,255,.38);
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 28px; font-weight: 500;
}

/* ══ 진행 바 ══ */
.ld-bar-wrap { width: 220px; }
.ld-bar-track {
  width: 100%; height: 4px;
  background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden;
}
.ld-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #2d6a3f, #f0b429);
  border-radius: 4px;
  transition: width .25s ease;
  box-shadow: 0 0 10px rgba(240,180,41,.5);
}
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── VARIABLES ── */
:root {
  --gd: #1a3d28; --g: #2d6a3f; --gm: #3a8050; --gl: #4a9d60;
  --y: #f0b429;  --yd: #d49a1f;
  --k: #111; --k2: #333; --mid: #666;
  --bg: #f7f6f3; --bdr: #e4e3de;
  --r: 14px; --rs: 10px;
  --sh:  0 2px 14px rgba(0,0,0,.07);
  --shm: 0 8px 36px rgba(0,0,0,.12);
  --tr: all .22s ease;
}

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ── 공통 섹션 레이블 ── */
.sec-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--g); background: rgba(45,106,63,.1);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.sec-label.light { color: rgba(255,255,255,.88); background: rgba(255,255,255,.14); }

/* ── 공통 제목 ── */
.sec-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 900; line-height: 1.24; color: var(--k); margin-bottom: 12px;
}
.sec-title em  { font-style: normal; color: var(--g); }
.sec-title.white { color: #fff; }
.sec-title.white em { color: var(--y); }

.sec-desc { font-size: 15px; color: var(--mid); line-height: 1.82; max-width: 500px; }
.sec-desc.white { color: rgba(255,255,255,.68); }

.sec-header { text-align: center; margin-bottom: 52px; }
.sec-header .sec-label { display: inline-flex; margin-bottom: 12px; }
.sec-header .sec-title { margin-bottom: 12px; }
.sec-header .sec-desc  { margin: 0 auto; }

/* ── 버튼 ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: var(--tr); border: 2px solid transparent; white-space: nowrap;
}
.btn-yellow {
  background: var(--y); color: var(--k);
}
.btn-yellow:hover {
  background: var(--yd); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,180,41,.38);
}
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--tr);
}
.navbar.scrolled {
  background: #fff; box-shadow: 0 1px 18px rgba(0,0,0,.08); padding: 10px 0;
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}

/* 로고 */
.nav-logo { display: flex; align-items: center; }
.logo-svg { height: 34px; width: auto; transition: var(--tr); }
.logo-dark { display: none; }
.navbar.scrolled .logo-light { display: none; }
.navbar.scrolled .logo-dark  { display: block; }

/* 링크 */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.88);
  padding: 6px 13px; border-radius: 50px; transition: var(--tr);
}
.nav-links a:hover { background: rgba(255,255,255,.12); }
.navbar.scrolled .nav-links a { color: var(--k2); }
.navbar.scrolled .nav-links a:hover { color: var(--g); background: rgba(45,106,63,.07); }

.nav-cta {
  background: var(--y) !important; color: var(--k) !important;
  font-weight: 700 !important; margin-left: 6px;
}
.nav-cta:hover { background: var(--yd) !important; }
.navbar.scrolled .nav-cta { color: var(--k) !important; }

/* 햄버거 */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 23px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--tr);
}
.navbar.scrolled .nav-toggle span { background: var(--k); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* 배경 이미지 — 활짝 웃는 골든 리트리버 사진 */
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../images/happy-dog-hero.jpg');
  background-size: cover;
  background-position: 65% 28%;
  background-repeat: no-repeat;
  filter: brightness(0.85) saturate(1.05);
}

/* 이미지 위 딥 그린 오버레이 — 좌측 텍스트 가독성 + 우측 강아지 노출 */
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8, 24, 14, 0.92) 0%,
    rgba(15, 40, 22, 0.85) 30%,
    rgba(20, 55, 30, 0.65) 52%,
    rgba(12, 34, 20, 0.40) 70%,
    rgba(8, 22, 14, 0.55) 100%
  );
}

.hero-dots {
  position: absolute; inset: 0; opacity: .015;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}

/* 하단 페이드 — 히어로 바와 자연스럽게 연결 */
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: center; gap: 56px;
  max-width: 1120px; margin: 0 auto; padding: 128px 32px 56px; width: 100%;
}

/* 히어로 텍스트 */
.hero-text { flex: 1; color: #fff; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--y); background: rgba(240,180,41,.12);
  padding: 6px 15px; border-radius: 50px; margin-bottom: 20px;
  border: 1px solid rgba(240,180,41,.24);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--y);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:.35; }
}

.hero-headline {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 900; line-height: 1.2; color: #fff; margin-bottom: 18px;
}
.hero-headline em { font-style: normal; color: var(--y); }

.hero-desc {
  font-size: clamp(13.5px, 1.3vw, 16px);
  line-height: 1.9; color: rgba(255,255,255,.68); margin-bottom: 22px;
}
.hero-desc strong { color: rgba(255,255,255,.95); font-weight: 700; }

/* 체크 포인트 */
.hero-points { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.hp-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: rgba(255,255,255,.82); font-weight: 500;
}
.hp-item .fa-circle-check { color: var(--y); font-size: 15px; flex-shrink: 0; }

.hero-btns { display: flex; gap: 11px; flex-wrap: wrap; }

/* 히어로 카드 */
.hero-visual { flex: 0 0 340px; }
.hero-card-wrap { position: relative; padding-bottom: 28px; }

.hero-card {
  background: rgba(8, 24, 14, 0.55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 26px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.hero-card-header {
  display: flex; align-items: center; gap: 13px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hch-emoji {
  font-size: 34px; width: 50px; height: 50px;
  background: rgba(255,255,255,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Font Awesome 아이콘 박스 (이모지 대체 — 크로스브라우저 안전) */
.hch-icon-box {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, var(--gm), var(--gl));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.25);
}
.hch-icon-box i {
  font-size: 22px; color: #fff;
}
.hero-card-header strong {
  font-family: 'Noto Serif KR', serif; font-size: 19px; font-weight: 900;
  color: #fff; display: block;
}
.hero-card-header span { font-size: 11px; color: rgba(255,255,255,.48); margin-top: 2px; display: block; }

/* 스탯 그리드 */
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 16px;
}
.hero-stats li {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  border-radius: 11px; padding: 12px 13px;
  display: flex; flex-direction: column; gap: 3px;
}
.hero-stats b {
  font-family: 'Noto Serif KR', serif; font-size: 21px; font-weight: 900;
  color: var(--y); line-height: 1;
}
.hero-stats b small { font-size: 12px; }
.hero-stats span { font-size: 10.5px; color: rgba(255,255,255,.48); line-height: 1.4; }

/* 칩 */
.hero-card-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.hero-card-chips span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.78); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11); padding: 5px 11px; border-radius: 50px;
}
.hero-card-chips i { color: var(--y); font-size: 9px; }

/* 플로팅 배지 */
.hero-float-badge {
  position: absolute; background: #fff; color: var(--k);
  font-size: 11.5px; font-weight: 700; padding: 8px 14px;
  border-radius: 50px; box-shadow: 0 4px 16px rgba(0,0,0,.18); white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.hero-float-badge .fa-award { color: #f0b429; }
.hero-float-badge .fa-motorcycle { color: var(--g); }
.f-top { top: -14px; right: -8px; animation: floatY 3.2s ease-in-out infinite; }
.f-bot { bottom: -18px; left: -16px; animation: floatY 3.2s ease-in-out infinite 1.6s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* 히어로 바 */
.hero-bar {
  position: relative; z-index: 2;
  background: rgba(5, 16, 9, 0.70); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center; padding: 18px 32px;
  flex-wrap: wrap; gap: 0;
}
.hbar-item { display: flex; flex-direction: column; align-items: center; padding: 0 36px; }
.hbar-item strong {
  font-family: 'Noto Serif KR', serif; font-size: 18px; font-weight: 900;
  color: var(--y); line-height: 1.2;
}
.hbar-item span { font-size: 10.5px; color: rgba(255,255,255,.48); margin-top: 3px; }
.hbar-div { width: 1px; height: 28px; background: rgba(255,255,255,.13); flex-shrink: 0; }

/* ══════════════════════════════════════
   LIVE FEED (실시간 상담 알림 — 카드형)
══════════════════════════════════════ */
.live-feed {
  background: #f7f6f3;
  border-top: 3px solid #2d6a3f;
  border-bottom: 1px solid #e4e3de;
  padding: 20px 0 24px;
}

/* 헤더 */
.lf-header {
  max-width: 1120px; margin: 0 auto 18px;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.lf-header-left {
  display: flex; align-items: center; gap: 10px;
}
.lf-live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #e84848; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(232,72,72,.5);
  animation: livePulse 1.4s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,72,72,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(232,72,72,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,72,72,0); }
}
.lf-label {
  font-size: 14px; font-weight: 800; color: #111; letter-spacing: .2px;
}
.lf-label-sub {
  font-size: 13px; color: #999; font-weight: 400;
}

/* 슬라이더 래퍼 — 세 장 카드 보이기 */
.lf-slider-wrap {
  max-width: 1120px; margin: 0 auto;
  padding: 0 32px;
  overflow: hidden;
  /* 양끝 페이드 */
  mask-image: linear-gradient(to right, transparent 0px, #000 40px, #000 calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0px, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

/* 슬라이더 트랙 — 가로 스크롤 */
.lf-slider {
  display: flex; gap: 14px;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* 카드 — JS CARD_W(354) = width(340) + gap(14) */
.lf-card {
  flex-shrink: 0;
  width: 340px;
  background: #fff;
  border: 1.5px solid #e4e3de;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow .2s, border-color .2s;
}
.lf-card:hover {
  border-color: #4a9d60;
  box-shadow: 0 4px 18px rgba(45,106,63,.12);
}

/* 카드 상단 */
.lf-card-top {
  display: flex; align-items: center; gap: 11px;
}
.lf-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #1a3d28, #3a8050);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  box-shadow: 0 2px 8px rgba(45,106,63,.22);
}
.lf-card-meta { flex: 1; min-width: 0; }
.lf-card-name {
  font-size: 13px; font-weight: 700; color: #111;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lf-card-dog {
  font-size: 12px; color: #888; margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lf-badge {
  flex-shrink: 0;
  font-size: 10.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}
.lf-badge.sub  { background: rgba(45,106,63,.1);  color: #2d6a3f; }
.lf-badge.custom { background: rgba(240,180,41,.13); color: #b07800; }
.lf-badge.order  { background: rgba(232,72,72,.1);  color: #c0392b; }

/* 카드 본문 */
.lf-card-body {
  font-size: 13.5px; color: #444; line-height: 1.65;
}
.lf-card-body em {
  font-style: normal; font-weight: 700; color: #2d6a3f;
}

/* 카드 하단 */
.lf-card-bottom {
  display: flex; align-items: center; justify-content: flex-end;
  border-top: 1px solid #f0ede8; padding-top: 9px;
}
.lf-card-cta {
  font-size: 12px; font-weight: 700; color: #2d6a3f;
  display: flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.lf-card-cta:hover { gap: 8px; }

/* 모바일 */
@media (max-width: 768px) {
  .lf-header { padding: 0 16px; }
  .lf-slider-wrap { padding: 0 16px; }
  .lf-card { width: 280px; }
  .lf-label { font-size: 13px; }
}
@media (max-width: 480px) {
  .lf-card { width: 240px; padding: 13px 14px; }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker { background: var(--g); overflow: hidden; padding: 10px 0; }
.ticker-track {
  display: flex; gap: 40px; white-space: nowrap; width: max-content;
  animation: tickerAnim 30s linear infinite;
}
.t-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.84);
}
.t-item i { color: var(--y); font-size: 10px; }
@keyframes tickerAnim { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   WHY 화식
══════════════════════════════════════ */
.why-sec { padding: 96px 0; background: #fff; }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center;
  margin-bottom: 64px;
}

/* ── WHY 비주얼 카드 (이미지 대체) ── */
.why-visual-card {
  background: var(--bg); border: 1.5px solid var(--bdr);
  border-radius: 18px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--sh);
}
.wvc-top {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; border-bottom: 1px solid var(--bdr);
}
.wvc-icon-wrap {
  font-size: 32px; width: 52px; height: 52px;
  background: rgba(45,106,63,.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wvc-title-wrap strong { font-size: 16px; font-weight: 700; color: var(--k); display: block; }
.wvc-title-wrap span   { font-size: 12px; color: var(--mid); margin-top: 3px; display: block; }

.wvc-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.wvc-col {
  border-radius: 12px; padding: 16px 14px;
}
.wvc-col.bad  { background: #fff5f5; border: 1.5px solid #fecaca; }
.wvc-col.good { background: rgba(45,106,63,.06); border: 1.5px solid rgba(45,106,63,.2); }
.wvc-col-head {
  font-size: 12px; font-weight: 800; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.wvc-col.bad  .wvc-col-head { color: #dc2626; }
.wvc-col.good .wvc-col-head { color: var(--g); }
.wvc-col.bad  .wvc-col-head i { color: #dc2626; }
.wvc-col.good .wvc-col-head i { color: var(--g); }
.wvc-col ul { display: flex; flex-direction: column; gap: 6px; }
.wvc-col li { font-size: 12.5px; color: var(--k2); }
.wvc-col.bad  li { color: #7f1d1d; }
.wvc-col.good li { color: var(--gd); font-weight: 600; }

.wvc-badge {
  display: inline-block; background: var(--g); color: #fff;
  font-size: 12px; font-weight: 700; padding: 8px 18px;
  border-radius: 50px; text-align: center;
}

/* 텍스트 */
.why-body { font-size: 15px; color: var(--mid); line-height: 1.9; margin-bottom: 13px; }
.why-body strong { color: var(--g); font-weight: 700; }

/* Pill 4개 */
.why-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 26px; }
.wpill {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1.5px solid var(--bdr);
  border-radius: 12px; padding: 13px 15px; transition: var(--tr);
}
.wpill:hover { border-color: var(--gl); transform: translateY(-2px); }
.wpill span { font-size: 22px; flex-shrink: 0; }
.wpill div { display: flex; flex-direction: column; }
.wpill strong { font-size: 13px; font-weight: 700; color: var(--k); }
.wpill em { font-size: 11px; font-style: normal; color: var(--mid); margin-top: 1px; }

/* 3단계 스텝 */
.how-steps {
  display: flex; align-items: center; gap: 0;
  background: var(--bg); border: 1.5px solid var(--bdr);
  border-radius: 18px; padding: 36px 40px;
}
.step-item {
  flex: 1; text-align: center; padding: 0 20px; position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--g); color: #fff; font-size: 11px; font-weight: 800;
  margin-bottom: 10px;
}
.step-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.step-item h3 { font-size: 14px; font-weight: 700; color: var(--k); margin-bottom: 6px; }
.step-item p  { font-size: 12.5px; color: var(--mid); line-height: 1.65; }
.step-arrow { color: var(--bdr); font-size: 18px; flex-shrink: 0; padding: 0 4px; }

/* ══════════════════════════════════════
   TARGET
══════════════════════════════════════ */
.target {
  padding: 96px 0;
  background: linear-gradient(140deg, #1a3d28 0%, #2d6a3f 55%, #3a8050 100%);
}

.target-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px;
}
.tg-card {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 15px; padding: 26px 20px; transition: var(--tr);
}
.tg-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.tgc-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.tg-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.tg-card p  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 12px; }
.tgc-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--y); background: rgba(240,180,41,.14);
  border: 1px solid rgba(240,180,41,.26); padding: 3px 10px; border-radius: 50px;
}

/* 타깃 인라인 CTA */
.target-cta {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px; padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.target-cta p { font-size: 15px; color: rgba(255,255,255,.82); }
.target-cta strong { color: #fff; }

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products { padding: 96px 0; background: var(--bg); }

/* 메뉴판 */
.menu-board {
  max-width: 560px; margin: 0 auto 52px;
  border-radius: 14px; overflow: hidden; box-shadow: var(--shm);
}
.menu-board img { width: 100%; display: block; }

/* 6종 그리드 */
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 44px;
}
.prod-card {
  background: #fff; border: 1.5px solid var(--bdr);
  border-radius: 14px; padding: 22px 18px; transition: var(--tr);
}
.prod-card:hover { border-color: var(--gl); transform: translateY(-4px); box-shadow: var(--shm); }
.pc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.pc-emoji { font-size: 34px; }
.pc-badge {
  font-size: 10px; font-weight: 800; letter-spacing: .6px;
  padding: 3px 9px; border-radius: 50px;
}
.pc-badge.best { background: #e74c3c; color: #fff; }
.pc-badge.newb { background: var(--y); color: var(--k); }
.pc-badge.hot  { background: #ff6b35; color: #fff; }
.pc-badge.rec  { background: var(--g); color: #fff; }
.prod-card h3 { font-size: 16px; font-weight: 700; color: var(--k); margin-bottom: 5px; }
.prod-card p  { font-size: 12.5px; color: var(--mid); line-height: 1.6; margin-bottom: 10px; }
.pc-price { font-size: 12px; color: var(--mid); margin-bottom: 10px; }
.pc-price strong { font-size: 16px; font-weight: 800; color: var(--g); }
.pc-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.pc-tags span {
  font-size: 11px; font-weight: 600;
  background: rgba(45,106,63,.07); color: var(--g);
  padding: 3px 8px; border-radius: 50px;
}

/* 구매 CTA */
.buy-cta {
  background: var(--g); border-radius: 14px; padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.buy-cta-left strong { font-size: 17px; color: #fff; font-weight: 700; display: block; margin-bottom: 4px; }
.buy-cta-left p  { font-size: 13px; color: rgba(255,255,255,.62); }
.buy-cta-right   { display: flex; gap: 9px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   SUBSCRIBE BANNER (핵심 CTA 섹션)
══════════════════════════════════════ */
.sub-banner {
  padding: 80px 0;
  background: linear-gradient(140deg, #0d2618 0%, #1a3d28 45%, #2d6a3f 100%);
}
.sub-banner-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}

.sub-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--y); background: rgba(240,180,41,.14);
  border: 1px solid rgba(240,180,41,.26); padding: 5px 14px;
  border-radius: 50px; margin-bottom: 16px;
}
.sub-banner-left h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 900; color: #fff; line-height: 1.24; margin-bottom: 16px;
}
.sub-banner-left h2 em { font-style: normal; color: var(--y); }
.sub-banner-left p {
  font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 22px;
}
.sub-banner-left p strong { color: var(--y); font-weight: 700; }

.sub-benefits { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.sub-benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.82); font-weight: 500;
}
.sub-benefits .fa-check { color: var(--y); font-size: 11px; flex-shrink: 0; }

.sub-cta-btn { font-size: 15px; padding: 14px 30px; }

/* 오른쪽 이미지 */
.sub-banner-right { position: relative; }
.sub-banner-right img {
  width: 100%; border-radius: 16px; box-shadow: var(--shm); display: block;
}
.sub-img-card {
  position: absolute; bottom: -14px; left: -14px;
  background: #fff; border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--sh);
}
.sic-emoji { font-size: 26px; }
.sub-img-card strong { font-size: 14px; font-weight: 700; color: var(--k); display: block; }
.sub-img-card span   { font-size: 12px; color: var(--mid); }

/* ══════════════════════════════════════
   HOW (제조 방식)
══════════════════════════════════════ */
.how-sec { padding: 96px 0; background: #fff; }

/* 이미지+목록 스플릿 */
.how-split {
  display: grid; grid-template-columns: 5fr 6fr; gap: 60px;
  align-items: start; margin-bottom: 60px;
}

/* ── HOW 비주얼 카드 (이미지 대체) ── */
.how-visual-card {
  background: var(--bg); border: 1.5px solid var(--bdr);
  border-radius: 16px; overflow: hidden;
}
.hvc-header {
  background: var(--g); padding: 20px 22px;
  display: flex; align-items: center; gap: 13px;
}
.hvc-emoji {
  font-size: 30px; width: 46px; height: 46px;
  background: rgba(255,255,255,.12); border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hvc-header strong { font-family: 'Noto Serif KR',serif; font-size: 17px; font-weight: 900; color: #fff; display: block; }
.hvc-header span   { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; display: block; }

.hvc-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 22px 16px; flex-wrap: nowrap;
}
.hvc-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1; text-align: center;
}
.hvc-step-num {
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.6);
  background: var(--g); border-radius: 50%;
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
}
.hvc-step-icon { font-size: 26px; }
.hvc-step p { font-size: 11.5px; color: var(--k2); line-height: 1.5; }
.hvc-arrow { color: var(--bdr); font-size: 14px; flex-shrink: 0; }

.hvc-stats {
  display: flex; justify-content: space-around;
  padding: 16px; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
}
.hvc-stats div { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.hvc-stats strong {
  font-family: 'Noto Serif KR',serif; font-size: 18px; font-weight: 900; color: var(--g);
}
.hvc-stats span { font-size: 11px; color: var(--mid); }

.hvc-tech-img { overflow: hidden; }
.hvc-tech-img img { width: 100%; display: block; height: 200px; object-fit: cover; object-position: center; }

/* 피처 아이템 */
.how-feat-list { display: flex; flex-direction: column; }
.hf-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--bdr); transition: var(--tr);
}
.hf-item:last-child { border-bottom: none; }
.hf-item:hover { padding-left: 5px; }
.hf-num {
  font-family: 'Noto Serif KR', serif; font-size: 11px; font-weight: 900;
  color: var(--bdr); flex-shrink: 0; width: 22px; padding-top: 3px;
}
.hf-body h3 { font-size: 14.5px; font-weight: 700; color: var(--k); margin-bottom: 5px; }
.hf-body h3 em { font-style: normal; color: var(--g); }
.hf-body p  { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ── 식재료 쇼케이스 ── */
.ingr-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1.5px solid var(--bdr); border-radius: 16px; overflow: hidden;
  align-items: stretch;
}
.ingr-img-side {
  overflow: hidden; min-height: 320px;
  display: flex; align-items: stretch;
}
.ingr-img-side img {
  width: 100%; height: 100%;
  object-fit: contain;        /* 이미지 전체가 잘리지 않고 표시 */
  object-position: center;
  background: #f8f7f4;        /* 여백 배경색 */
  display: block;
  padding: 20px;              /* 이미지 사방 여백 */
}
.ingr-text-side { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.ingr-text-side h3 {
  font-family: 'Noto Serif KR', serif; font-size: 22px; font-weight: 900;
  color: var(--k); margin: 10px 0 12px; line-height: 1.3;
}
.ingr-text-side h3 em { font-style: normal; color: var(--g); }
.ingr-text-side p { font-size: 13.5px; color: var(--mid); line-height: 1.8; margin-bottom: 18px; }
.tech-list { display: flex; flex-direction: column; gap: 8px; }
.tech-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--k2);
}
.tech-list .fa-check { color: var(--g); font-size: 11px; flex-shrink: 0; }

/* ══════════════════════════════════════
   VEGAN COOKIE
══════════════════════════════════════ */
.vegan-sec {
  padding: 96px 0;
  background: linear-gradient(140deg, #0d1a10 0%, #1a3d28 50%, #2d5a38 100%);
}
.vegan-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 68px; align-items: center;
}
.vegan-desc { font-size: 14.5px; color: rgba(255,255,255,.62); line-height: 1.9; margin-bottom: 20px; }

/* 재료 4x3 그리드 */
.vegan-ingr {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 22px;
}
.vegan-ingr li {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px; padding: 7px 5px;
  font-size: 11.5px; color: rgba(255,255,255,.72); text-align: center;
}

.vegan-checks { display: flex; flex-direction: column; gap: 8px; }
.vegan-checks p {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: rgba(255,255,255,.8); font-weight: 500;
}
.vegan-checks .fa-check { color: var(--y); font-size: 10px; flex-shrink: 0; }

.vegan-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shm); }
.vegan-img img { width: 100%; display: block; }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews { padding: 96px 0; background: var(--bg); }

.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px;
}
.rv-card {
  background: #fff; border: 1.5px solid var(--bdr); border-radius: 14px;
  padding: 24px; display: flex; flex-direction: column; gap: 13px; transition: var(--tr);
}
.rv-card:hover { border-color: var(--gl); transform: translateY(-3px); box-shadow: var(--shm); }
.rv-stars { color: #f0a500; font-size: 14px; letter-spacing: 2px; }
.rv-text { font-size: 13.5px; color: var(--k2); line-height: 1.8; flex: 1; }
.rv-bottom {
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid var(--bdr); padding-top: 13px;
}
.rv-avatar {
  font-size: 22px; width: 38px; height: 38px;
  background: rgba(45,106,63,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rv-info { flex: 1; }
.rv-info strong { font-size: 13px; font-weight: 700; color: var(--k); display: block; }
.rv-info span   { font-size: 11px; color: var(--mid); }
.rv-tag {
  font-size: 10.5px; font-weight: 700; color: var(--g);
  background: rgba(45,106,63,.1); padding: 3px 9px; border-radius: 50px; white-space: nowrap;
}

/* 리뷰 하단 CTA */
.review-cta { margin-top: 8px; }
.rcta-inner {
  background: linear-gradient(135deg, var(--gd) 0%, var(--g) 100%);
  border-radius: 16px; padding: 30px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.rcta-text strong { font-size: 18px; color: #fff; font-weight: 700; display: block; margin-bottom: 4px; }
.rcta-text p { font-size: 13px; color: rgba(255,255,255,.62); }

/* ══════════════════════════════════════
   TRUST
══════════════════════════════════════ */
.trust { padding: 96px 0; background: #fff; }

.trust-vet {
  max-width: 800px; margin: 0 auto 40px;
  border-radius: 16px; overflow: hidden; box-shadow: var(--shm);
}
.trust-vet img { width: 100%; display: block; }

.trust-certs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 800px; margin: 0 auto;
}
.cert-item {
  background: var(--bg); border: 1.5px solid var(--bdr);
  border-radius: 13px; overflow: hidden; transition: var(--tr);
}
.cert-item:hover { transform: translateY(-3px); box-shadow: var(--shm); border-color: var(--gl); }
.cert-item img { width: 100%; height: 200px; object-fit: cover; display: block; }
.cert-label { padding: 15px 18px; }
.cert-label h4 { font-size: 14px; font-weight: 700; color: var(--k); margin-bottom: 3px; }
.cert-label p  { font-size: 12.5px; color: var(--mid); }

/* ══════════════════════════════════════
   CONTACT (구독 상담 폼)
══════════════════════════════════════ */
.contact {
  padding: 96px 0;
  background: linear-gradient(140deg, #1a3d28 0%, #2d6a3f 55%, #3a8050 100%);
}

/* 헤드라인 */
.contact-headline {
  text-align: center; margin-bottom: 56px;
}
.contact-headline .sec-label { display: inline-flex; margin-bottom: 12px; }
.contact-headline .sec-title { margin-bottom: 12px; }
.contact-headline .sec-desc  { margin: 0 auto; }

/* 레이아웃 */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start;
}

/* 전문가 카드 */
.ct-expert-card {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px; padding: 24px; display: flex; gap: 15px; margin-bottom: 16px;
}
.ct-expert-avatar { font-size: 42px; flex-shrink: 0; }
.ct-expert-body { flex: 1; }
.ct-expert-role {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.48); margin-bottom: 4px;
}
.ct-expert-name {
  font-family: 'Noto Serif KR', serif; font-size: 21px; font-weight: 900;
  color: #fff; margin-bottom: 12px;
}
.ct-phone-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--y); color: var(--k);
  font-size: 15px; font-weight: 800; padding: 8px 18px;
  border-radius: 50px; margin-bottom: 9px; transition: var(--tr);
}
.ct-phone-btn:hover { background: var(--yd); transform: scale(1.02); }
.ct-hours {
  font-size: 12.5px; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 6px;
}

/* 상담 준비 체크리스트 */
.ct-what-to-tell {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px; padding: 18px 20px; margin-bottom: 14px;
}
.ct-what-to-tell h4 { font-size: 13px; font-weight: 700; color: var(--y); margin-bottom: 11px; }
.ct-what-to-tell li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.75); padding: 4px 0;
}
.ct-what-to-tell .fa-check { color: var(--y); font-size: 10px; flex-shrink: 0; }

/* 구독 요약 박스 */
.ct-sub-summary {
  background: rgba(240,180,41,.1); border: 1px solid rgba(240,180,41,.24);
  border-radius: 13px; padding: 18px 20px;
}
.ct-sub-summary h4 {
  font-size: 13px; font-weight: 700; color: var(--y); margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
}
.ct-sub-summary ul { display: flex; flex-direction: column; gap: 7px; }
.ct-sub-summary li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.ct-sub-summary li:last-child { border-bottom: none; }
.ct-sub-summary span { color: rgba(255,255,255,.55); }
.ct-sub-summary strong { color: #fff; font-weight: 700; }

/* 폼 래퍼 */
.ct-form-wrap {
  background: #fff; border-radius: 18px; padding: 34px 32px; box-shadow: var(--shm);
}
.ct-form-wrap h3 { font-size: 18px; font-weight: 700; color: var(--k); margin-bottom: 4px; }
.form-free-badge {
  display: inline-block; background: var(--y); color: var(--k);
  font-size: 10.5px; font-weight: 800; padding: 2px 9px; border-radius: 50px;
  margin-left: 8px; vertical-align: middle;
}
.form-sub-desc { font-size: 12.5px; color: var(--mid); margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.form-group { margin-bottom: 13px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700; color: var(--k2); margin-bottom: 5px;
}
.req { color: var(--g); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--bdr); border-radius: var(--rs);
  font-family: 'Noto Sans KR', sans-serif; font-size: 14px; color: var(--k);
  background: #fff; outline: none; transition: var(--tr); -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--g); box-shadow: 0 0 0 3px rgba(45,106,63,.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--g); color: #fff;
  font-size: 15px; font-weight: 700; padding: 15px;
  border-radius: var(--rs); transition: var(--tr); border: none; cursor: pointer;
}
.form-submit-btn:hover { background: var(--gd); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,106,63,.3); }

.form-done { display: none; text-align: center; padding: 48px 20px; }
.form-done.show { display: block; }
.fd-icon { font-size: 52px; margin-bottom: 12px; }
.form-done h3 { font-size: 20px; font-weight: 700; color: var(--g); margin-bottom: 8px; }
.form-done p  { font-size: 14px; color: var(--mid); line-height: 1.75; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: #0a1a0d; color: rgba(255,255,255,.58); padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-logo {
  font-family: 'Noto Serif KR', serif; font-size: 24px; font-weight: 900;
  color: #fff; margin-bottom: 10px; display: block;
}
.ft-logo em { font-style: normal; color: var(--y); }
.ft-slogan { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.72); margin-bottom: 5px; }
.ft-sub    { font-size: 12px; color: rgba(255,255,255,.36); line-height: 1.7; }
.ft-kw h5, .ft-contact h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 12px;
}
.ft-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ft-tags span {
  font-size: 11.5px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.52);
  padding: 3px 10px; border-radius: 50px; transition: var(--tr);
}
.ft-tags span:hover { color: #fff; background: rgba(255,255,255,.12); }
.ft-contact p {
  font-size: 12.5px; margin-bottom: 7px; display: flex; align-items: center; gap: 8px;
}
.ft-contact i { color: var(--y); width: 14px; flex-shrink: 0; }
.ft-contact a { color: var(--y); font-weight: 700; }
.ft-contact a:hover { color: #fff; }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: 11px; color: rgba(255,255,255,.24);
}

/* ══════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════ */
.floating-cta {
  position: fixed; bottom: 24px; right: 22px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 999; opacity: 0; transform: translateY(12px);
  transition: var(--tr); pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.fcta-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 17px; border-radius: 50px;
  font-size: 13px; font-weight: 700; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: var(--tr); white-space: nowrap;
}
.fcta-btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.fcta-call { background: var(--g); }
.fcta-sub  { background: var(--y); color: var(--k); }

/* ══════════════════════════════════════
   RESPONSIVE — 태블릿 (≤1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* 히어로 */
  .hero-visual { flex: 0 0 290px; }
  .hero-inner  { gap: 40px; padding: 110px 32px 48px; }
  .hbar-item   { padding: 0 20px; }

  /* 레이아웃 그리드 전환 */
  .why-grid         { grid-template-columns: 1fr; gap: 36px; }
  .vegan-inner      { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout   { grid-template-columns: 1fr; gap: 36px; }
  .sub-banner-inner { grid-template-columns: 1fr; gap: 36px; }
  .how-split        { grid-template-columns: 1fr; gap: 36px; }
  .ingr-showcase    { grid-template-columns: 1fr; }
  .ingr-img-side    { min-height: auto; }
  .ingr-img-side img { height: auto; min-height: 260px; padding: 16px; }

  /* 비교 카드 */
  .wvc-compare { grid-template-columns: 1fr 1fr; }

  /* 그리드 2열 */
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid   { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }

  /* 푸터 */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* 라이브 피드 카드 */
  .lf-card { width: 300px; }

  /* how-steps 줄바꿈 허용 */
  .how-steps { gap: 0; padding: 28px 24px; flex-wrap: wrap; justify-content: center; }
  .step-item { min-width: 140px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 모바일 (≤768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── 네비 ── */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(10,26,13,.97);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 8px; z-index: 1099;
  }
  .nav-links.open { display: flex; }
  .nav-links a    { font-size: 17px; color: #fff !important; padding: 11px 22px; }
  .nav-cta        { background: var(--y) !important; color: var(--k) !important; border-radius: 50px !important; }

  /* ── 히어로 ── */
  .hero-bg-img { background-position: 60% 25%; }
  .hero-gradient {
    background: linear-gradient(
      180deg,
      rgba(8, 24, 14, 0.95) 0%,
      rgba(10, 30, 18, 0.90) 55%,
      rgba(8, 22, 14, 0.82) 100%
    );
  }
  .hero-inner   { flex-direction: column; gap: 28px; padding: 90px 20px 36px; }
  .hero-visual  { flex: none; width: 100%; max-width: 380px; margin: 0 auto; }
  .hero-btns    { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-bar     { flex-wrap: wrap; gap: 8px; padding: 12px 16px; justify-content: center; }
  .hbar-item    { padding: 4px 14px; }
  .hbar-div     { display: none; }
  .f-top        { top: -10px; right: 0; }
  .f-bot        { bottom: -16px; left: 0; font-size: 10.5px; }
  .hero-float-badge { font-size: 10.5px; padding: 6px 11px; }

  /* ── 라이브 피드 ── */
  .lf-header  { padding: 0 16px; margin-bottom: 12px; }
  .lf-label   { font-size: 13px; }
  .lf-label-sub { display: none; }
  .lf-slider-wrap { padding: 0 16px; }
  .lf-card    { width: 260px; padding: 14px 15px; }
  .lf-card-body { font-size: 13px; }

  /* ── 섹션 공통 ── */
  section { padding: 56px 0; }
  .sec-header { margin-bottom: 32px; }
  .sec-title  { font-size: clamp(22px, 6vw, 32px); }

  /* ── WHY 화식 ── */
  .why-grid   { gap: 28px; }
  .wvc-compare { grid-template-columns: 1fr 1fr; }
  .why-pills  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .how-steps  { flex-direction: column; padding: 20px; gap: 0; }
  .step-arrow { transform: rotate(90deg); margin: 4px auto; }
  .step-item  { width: 100%; padding: 12px 0; }

  /* ── 추천 대상 ── */
  .target-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .target-cta  { flex-direction: column; text-align: center; gap: 14px; }

  /* ── 메뉴 ── */
  .prod-grid  { grid-template-columns: 1fr 1fr; gap: 10px; }
  .menu-board { max-width: 100%; }

  /* ── 구독 배너 ── */
  .sub-banner { padding: 48px 0; }
  .sub-img-card { left: 0; bottom: -10px; }
  .sub-banner-right img { border-radius: 12px; }

  /* ── 제조 방식 ── */
  .hvc-flow   { flex-wrap: wrap; gap: 8px; padding: 16px 12px; }
  .hvc-step   { min-width: 60px; }
  .hvc-arrow  { display: none; }

  /* ── 비건쿠키 ── */
  .vegan-inner { gap: 28px; }
  .vegan-img   { max-width: 100%; }

  /* ── 후기 ── */
  .review-grid { grid-template-columns: 1fr; gap: 12px; }
  .rcta-inner  { flex-direction: column; text-align: center; gap: 16px; padding: 24px 20px; }
  .rcta-text strong { font-size: 16px; }

  /* ── 인증 ── */
  .trust-certs { grid-template-columns: 1fr; max-width: 420px; }

  /* ── 상담 폼 ── */
  .contact-layout { gap: 28px; }
  .ct-form-wrap   { padding: 22px 16px; }
  .ct-expert-card { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .ct-hours       { justify-content: center; }

  /* ── 구매 CTA ── */
  .buy-cta        { flex-direction: column; text-align: center; padding: 22px 16px; gap: 14px; }
  .buy-cta-right  { justify-content: center; flex-direction: column; width: 100%; }
  .buy-cta-right .btn { width: 100%; justify-content: center; }

  /* ── 폼 ── */
  .form-row { grid-template-columns: 1fr; }

  /* ── 푸터 ── */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .ft-bottom   { flex-direction: column; gap: 4px; text-align: center; }

  /* ── 플로팅 CTA ── */
  .floating-cta { bottom: 16px; right: 14px; gap: 6px; }
  .fcta-btn span { display: none; }
  .fcta-btn      { padding: 15px; border-radius: 50%; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 소형 (≤480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  /* 공통 */
  .container { padding: 0 14px; }
  .btn       { font-size: 13.5px; padding: 12px 20px; }

  /* 히어로 */
  .hero-inner  { padding: 84px 14px 30px; gap: 24px; }
  .hero-eyebrow { font-size: 10px; padding: 5px 12px; }
  .hero-stats  { grid-template-columns: 1fr 1fr; gap: 7px; }
  .hero-stats b { font-size: 18px; }
  .hero-bar    { padding: 10px 14px; }
  .hbar-item strong { font-size: 15px; }
  .hero-card   { padding: 18px 16px; }
  .hero-card-header strong { font-size: 16px; }

  /* WHY */
  .why-pills   { grid-template-columns: 1fr; gap: 7px; }
  .wpill       { padding: 11px 13px; }

  /* 추천 대상 */
  .target-grid { grid-template-columns: 1fr; gap: 10px; }
  .tg-card     { padding: 20px 16px; }

  /* 메뉴 */
  .prod-grid   { grid-template-columns: 1fr; }
  .prod-card   { padding: 18px 15px; }

  /* 비건 재료 */
  .vegan-ingr  { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .vegan-ingr li { font-size: 11px; padding: 6px 4px; }

  /* 후기 */
  .rv-card     { padding: 18px 16px; }
  .rv-text     { font-size: 13px; }

  /* 라이브 피드 */
  .lf-card     { width: 230px; padding: 12px 13px; }
  .lf-card-body { font-size: 12.5px; }
  .lf-card-name { font-size: 12px; }
  .lf-card-dog  { font-size: 11px; }

  /* 로딩 */
  .ld-logo     { font-size: 22px; }
  .ld-msg      { font-size: 15px; }
  .ld-sub      { font-size: 10px; }
  .ld-bar-wrap { width: 180px; }
}
