/* ==============================================
   에프페시아 가이드 — style.css
   플로팅 캡슐 내비 + 벤토 그리드 (밝고 둥근 컨슈머 앱 스타일)
   ============================================== */

/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* jsdelivr의 pretendard.css는 font-display:swap이라 늦게 로드되면 레이아웃이 흔들려 CLS를 유발함.
   동일 URL로 재선언해 font-display:optional로 덮어써서, 늦게 도착하면 그냥 폴백 폰트로 유지되게 함. */
@font-face {
  font-family: 'Pretendard';
  font-weight: 900;
  font-display: optional;
  src: local('Pretendard Black'), url(https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-Black.woff2) format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 800;
  font-display: optional;
  src: local('Pretendard ExtraBold'), url(https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-ExtraBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  font-display: optional;
  src: local('Pretendard Bold'), url(https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  font-display: optional;
  src: local('Pretendard SemiBold'), url(https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-SemiBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-display: optional;
  src: local('Pretendard Regular'), url(https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-Regular.woff2) format('woff2');
}

/* 2. Tokens */
:root {
  --primary:       #0e6b5c;
  --primary-light: #e3f2ef;
  --primary-hover: #0b5449;
  --bg:            #ffffff;
  --bg-alt:        #f5f9f8;
  --text:          #111111;
  --text-sub:      #57615d;
  --border:        #dbe6e2;
  --radius:        22px;
  --max-w:         1100px;
  --sec-pad:       80px;
  --hdr:           64px;
}

/* 3. Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

/* 4. Section typography */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 44px;
}
.accent { color: var(--primary); }

/* 5. Buttons — 완전한 필 형태 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(.97); }
.btn-lg { font-size: 16px; padding: 16px 34px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: #eef7f5; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* 6. Header — 상단에 떠 있는 캡슐형 내비 */
.top-sticky { position: sticky; top: 14px; z-index: 200; }
.site-header { height: auto; background: transparent; border: none; }
.hdr-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 9px 10px 9px 26px; height: auto;
  display: flex; align-items: center; gap: 28px;
  background: #fff; border-radius: 100px;
  box-shadow: 0 10px 34px rgba(14,60,52,.12), 0 1px 3px rgba(0,0,0,.05);
}
.hdr-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; text-decoration: none; }
.hdr-logo img { height: 26px; width: auto; }
.hdr-logo .logo-text { font-size: 16px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.hdr-nav { display: flex; align-items: center; gap: 8px; flex: 1; }
.hdr-nav a { font-size: 14px; font-weight: 600; color: var(--text-sub); transition: background .2s, color .2s; white-space: nowrap; padding: 8px 14px; border-radius: 100px; }
.hdr-nav a:hover { color: var(--text); background: var(--bg-alt); }
.hdr-nav a.active { color: var(--primary); background: var(--primary-light); }
.hdr-cta {
  margin-left: auto; flex-shrink: 0; display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: #fff; background: var(--primary);
  padding: 10px 20px; border-radius: 100px; transition: background .2s; white-space: nowrap;
}
.hdr-cta:hover { background: var(--primary-hover); }
.nav-toggle { display: none; margin-left: auto; background: none; border: none; padding: 6px; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* 7. Mobile nav */
.site-nav-mobile { display: none; position: fixed; top: 96px; left: 16px; right: 16px; background: #fff; border-radius: 24px; box-shadow: 0 14px 40px rgba(14,60,52,.16); z-index: 199; flex-direction: column; overflow: hidden; }
.site-nav-mobile.open { display: flex; }
.site-nav-mobile a { display: flex; align-items: center; gap: 6px; padding: 15px 22px; font-size: 15px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.site-nav-mobile a:last-child { border-bottom: none; }
.site-nav-mobile a:hover { color: var(--primary); background: var(--bg-alt); }

/* 7-1. Mobile bottom shop bar — 모바일에서 항상 보이는 쇼핑몰 이동 버튼 */
.mobile-shop-bar { display: none; }

/* 8. Info banner — 최상단 얇은 유틸리티 스트립 */
.info-banner { background: var(--primary-light); text-align: center; padding: 8px 24px; font-size: 12px; color: #2e463f; line-height: 1.5; }

/* 9. Hero — 좌우 분할형 */
.hero-split { padding: 44px 0 80px; }
.hero-split-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-light); padding: 5px 16px; border-radius: 100px; margin-bottom: 20px;
}
.hero-split h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 900; line-height: 1.18; letter-spacing: -0.04em; color: var(--text); margin-bottom: 18px; }
.hero-split h1 .hl { background: var(--primary-light); padding: 0 8px; border-radius: 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-split .hero-sub { font-size: clamp(14px, 1.8vw, 16px); color: var(--text-sub); line-height: 1.75; margin-bottom: 30px; max-width: 460px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* 히어로 비교 카드 — 비대칭 라운드(유기적 형태) */
.hero-visual {
  background: var(--primary-light); border: none; border-radius: 32px 32px 32px 8px; padding: 28px;
}
.hero-visual-title { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.hero-compare { width: 100%; table-layout: fixed; border-collapse: collapse; font-size: 13px; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 6px 20px rgba(14,60,52,.08); }
.hero-compare th { background: var(--primary); color: #fff; padding: 11px 12px; font-weight: 700; text-align: left; overflow-wrap: break-word; }
.hero-compare td { padding: 11px 12px; border-top: 1px solid var(--border); color: var(--text); overflow-wrap: break-word; }
.hero-compare tr td:first-child, .hero-compare tr th:first-child { color: var(--text-sub); width: 64px; }

/* 10. Cards section — 벤토(비대칭) 그리드 */
.cards-section { background: var(--bg-alt); padding: var(--sec-pad) 0; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 16px; }
.info-card {
  background: #fff; border: none; border-radius: var(--radius); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 10px; transition: box-shadow .2s, transform .2s;
}
.info-card:hover { box-shadow: 0 10px 30px rgba(14,107,92,.12); transform: translateY(-3px); }
/* 첫 카드 = 피처드(2x2) 벤토 타일 */
.info-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; background: var(--primary); color: #fff; justify-content: flex-end; padding: 30px 26px; }
.info-card:nth-child(1) .card-icon { background: rgba(255,255,255,.18); }
.info-card:nth-child(1) .card-icon svg { stroke: #fff; }
.info-card:nth-child(1) h3 { color: #fff; font-size: 20px; }
.info-card:nth-child(1) p { color: rgba(255,255,255,.8); }
.info-card:nth-child(1) .card-link { color: #fff; }
.info-card:nth-child(1) .card-link svg { stroke: #fff; }
.info-card:nth-child(2) { grid-column: 3 / 5; grid-row: 1 / 2; }
.info-card:nth-child(3) { grid-column: 3 / 4; grid-row: 2 / 3; }
.info-card:nth-child(4) { grid-column: 4 / 5; grid-row: 2 / 3; }
.card-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-card h3 { font-size: 16px; font-weight: 800; color: var(--text); line-height: 1.3; }
.info-card p { font-size: 13px; color: var(--text-sub); line-height: 1.65; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 3px; font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 6px; transition: gap .2s; }
.card-link:hover { gap: 6px; }
.card-link svg { width: 13px; height: 13px; stroke: var(--primary); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* 10-1. Checklist grid — 균등한 카드형 목록 (홈 벤토 그리드와 별개) */
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.checklist-card { background: var(--bg-alt); border-radius: var(--radius); padding: 24px; }
.checklist-card h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.checklist-card p { font-size: 13px; color: var(--text-sub); line-height: 1.7; }
@media (max-width: 700px) {
  .checklist-grid { grid-template-columns: 1fr; }
}

/* 11. Overview table */
.overview-section { padding: var(--sec-pad) 0; }
.table-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.overview-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.overview-table th { width: 150px; background: var(--bg-alt); font-weight: 600; color: var(--text-sub); padding: 14px 18px; border-bottom: 1px solid var(--border); vertical-align: top; text-align: left; white-space: nowrap; }
.overview-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text); line-height: 1.65; }
.overview-table tr:last-child th, .overview-table tr:last-child td { border-bottom: none; }

/* 12. Mechanism — 둥근 원형 스텝 + 점선 연결 */
.mechanism-section { padding: var(--sec-pad) 0; }
.mech-flow { display: flex; align-items: flex-start; justify-content: center; margin-top: 0; }
.mech-step { flex: 1; max-width: 240px; background: var(--bg-alt); border: none; border-radius: var(--radius); padding: 30px 20px; text-align: center; }
.mech-step .step-num { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 14px; }
.mech-icon { width: 56px; height: 56px; background: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 0 4px 14px rgba(14,107,92,.1); }
.mech-icon svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mech-step h4 { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.35; }
.mech-step p { font-size: 12px; color: var(--text-sub); line-height: 1.65; }
.mech-arrow { flex-shrink: 0; width: 40px; display: flex; align-items: center; justify-content: center; padding-top: 60px; }
.mech-arrow svg { width: 20px; height: 20px; stroke: var(--border); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 2 4; }
.mech-footnote { margin-top: 32px; text-align: center; font-size: 13px; color: var(--text-sub); }
.mech-footnote strong { color: var(--text); font-weight: 700; }

/* 13. Bottom CTA */
.bottom-cta { background: var(--primary); padding: var(--sec-pad) 0; text-align: center; color: #fff; border-radius: 40px 40px 0 0; margin: 0 12px; }
.bottom-cta h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; line-height: 1.24; letter-spacing: -0.03em; margin-bottom: 12px; }
.bottom-cta .sub { font-size: 15px; opacity: .82; margin-bottom: 32px; line-height: 1.65; }
.bottom-cta .notice { margin-top: 18px; font-size: 12px; opacity: .55; }

/* 14. Footer */
.site-footer { background: #10201c; padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 16px; }
.footer-brand { font-size: 15px; font-weight: 700; color: #fff; }
.footer-disclaimer { font-size: 12px; line-height: 1.85; color: #8a9c96; max-width: 700px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: #7c8e88; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: #566862; }

/* 15. Breadcrumb */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--text-sub); display: flex; align-items: center; gap: 5px; }
.breadcrumb a { color: var(--text-sub); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }

/* 16. Page hero (서브페이지) */
.page-hero { background: var(--bg-alt); padding: 40px 0 42px; border-radius: 0 0 32px 32px; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(25px, 4vw, 40px); font-weight: 800; line-height: 1.2; letter-spacing: -0.035em; color: var(--text); margin-bottom: 12px; }
.page-hero .lead { font-size: 15px; color: var(--text-sub); line-height: 1.75; max-width: 600px; }

/* 17. Content sections */
.content-sec { padding: 54px 0; }
.content-sec.bg-alt { background: var(--bg-alt); }
.content-h2 { font-size: clamp(20px, 2.5vw, 25px); font-weight: 800; line-height: 1.28; letter-spacing: -0.03em; color: var(--text); margin-bottom: 20px; }
.content-body { font-size: 15px; color: var(--text-sub); line-height: 1.85; }
.content-body p + p { margin-top: 14px; }
.content-body strong { color: var(--text); font-weight: 600; }

/* 18. Data table */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 24px; border-radius: 14px; overflow: hidden; }
.data-table thead th { background: var(--primary); color: #fff; font-weight: 600; padding: 12px 16px; text-align: left; font-size: 13px; }
.data-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text); line-height: 1.65; vertical-align: top; }
.data-table tbody tr:nth-child(even) td { background: var(--bg-alt); }
.data-table tbody tr:last-child td { border-bottom: none; }
.tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-right: 4px; white-space: nowrap; }
.tag-warn { background: #fdf0d5; color: #8a5a12; }
.tag-info { background: var(--primary-light); color: var(--primary); }
.tag-stop { background: #fbe2df; color: #a3372a; }

/* 19. Highlight / Disclaimer boxes */
.highlight-box { background: var(--primary-light); border-radius: var(--radius); padding: 20px 24px; font-size: 14px; color: var(--text); line-height: 1.8; margin-top: 24px; }
.highlight-box strong { color: var(--primary); }
.disclaimer-box { background: #fbf8ef; border: none; border-radius: var(--radius); padding: 18px 24px; font-size: 13px; color: #5f4f1d; line-height: 1.85; margin-top: 24px; }
.caution-box { background: #fbeeec; border: none; border-radius: var(--radius); padding: 18px 24px; font-size: 13px; color: #7a2e24; line-height: 1.85; margin-top: 24px; }

/* 20. Steps */
.step-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-badge { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.step-content h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-sub); line-height: 1.7; }

/* 21. Timeline */
.timeline-list { display: flex; flex-direction: column; margin-top: 32px; }
.tl-item { display: flex; gap: 20px; padding-bottom: 32px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-aside { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 42px; }
.tl-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tl-line { flex: 1; width: 2px; background: var(--border); margin-top: 8px; }
.tl-item:last-child .tl-line { display: none; }
.tl-body { padding-top: 7px; }
.tl-body h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.tl-body p { font-size: 14px; color: var(--text-sub); line-height: 1.75; }
.tl-badge { display: inline-block; font-size: 11px; font-weight: 700; color: var(--primary); background: var(--primary-light); padding: 2px 10px; border-radius: 100px; margin-bottom: 6px; }

/* 22. FAQ accordion */
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-size: 15px; font-weight: 600; color: var(--text); background: none; border: none; cursor: pointer; text-align: left; line-height: 1.5; }
.faq-q svg { flex-shrink: 0; stroke: var(--text-sub); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; width: 18px; height: 18px; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; font-size: 14px; color: var(--text-sub); line-height: 1.85; }
.faq-a-inner { padding-bottom: 18px; }
.faq-item.open .faq-a { max-height: 800px; }

/* 23. CTA card */
.cta-card { background: var(--bg-alt); border: none; border-radius: 28px; padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; }
.cta-card-text h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.cta-card-text p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }
.cta-notice { font-size: 12px; color: var(--text-sub); margin-top: 8px; line-height: 1.5; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* 24. 가로 스크롤 테이블 래퍼 */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); margin-top: 24px; }
.table-scroll .data-table { margin-top: 0; min-width: 560px; }

/* 25. 쇼핑몰 CTA 카드 */
.shop-cta-card { background: #fff; border: 1px solid var(--border); border-radius: 28px; padding: 36px 40px; margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.shop-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 8px; }
.shop-name { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin-bottom: 6px; }
.shop-desc { font-size: 14px; color: var(--text-sub); line-height: 1.65; }
.shop-notice { font-size: 12px; color: var(--text-sub); margin-top: 8px; line-height: 1.5; }
.shop-cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* 26. Responsive */
@media (max-width: 900px) {
  .hero-split-inner { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .info-card:nth-child(1) { grid-column: span 2; grid-row: auto; justify-content: flex-start; }
  .info-card:nth-child(2) { grid-column: span 2; grid-row: auto; }
  .info-card:nth-child(3) { grid-column: span 1; grid-row: auto; }
  .info-card:nth-child(4) { grid-column: span 1; grid-row: auto; }
  .mech-flow { flex-direction: column; align-items: center; }
  .mech-arrow { width: auto; padding-top: 0; padding: 6px 0; }
  .mech-arrow svg { transform: rotate(90deg); }
  .mech-step { max-width: 100%; width: 100%; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .shop-cta-card { padding: 24px 20px; }
  .shop-cta-btns { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  :root { --sec-pad: 50px; --hdr: 54px; }
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .nav-toggle { display: flex; }
  .top-sticky { top: 10px; }
  .hdr-inner { padding: 8px 10px 8px 20px; }
  .site-nav-mobile { top: 78px; }
  .overview-table th { width: 100px; font-size: 13px; }
  .overview-table td { font-size: 13px; }
  .bottom-cta { border-radius: 28px 28px 0 0; margin: 0 8px; }
  body { padding-bottom: 68px; }
  .mobile-shop-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: #fff; box-shadow: 0 -6px 20px rgba(14,60,52,.14);
  }
  .mobile-shop-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    background: var(--primary); color: #fff; font-size: 15px; font-weight: 700;
    padding: 13px 16px; border-radius: 100px;
  }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .info-card:nth-child(1), .info-card:nth-child(2), .info-card:nth-child(3), .info-card:nth-child(4) { grid-column: 1 / -1; }
  .cta-card { padding: 24px 20px; }
  .data-table { font-size: 13px; }
  .data-table thead th, .data-table tbody td { padding: 10px 12px; }
}
