/* =============================================
   핀프로 — STYLE.CSS  (Mint + Beige Theme)
   ============================================= */

:root {
  --primary:        #1A9E7E;
  --primary-light:  #2DC5A2;
  --primary-dark:   #117A60;
  --accent:         #C49A6C;
  --accent-light:   #DDB98A;
  --highlight:      #E07B3A;
  --highlight-dark: #C4652A;
  --bg-main:        #FAF8F2;
  --bg-beige:       #EDE5D5;
  --bg-mint-soft:   #E8F6F2;
  --text-primary:   #1E2D28;
  --text-secondary: #4A6258;
  --gray-100:       #F5F0E8;
  --gray-200:       #E5DDD0;
  --gray-300:       #D0C4B4;
  --gray-500:       #8A9E97;
  --gray-700:       #4A5E58;
  --white:          #FFFFFF;
  --grad-brand:   linear-gradient(135deg, #1A9E7E 0%, #2DC5A2 100%);
  --grad-hero:    linear-gradient(135deg, #0B5740 0%, #1A9E7E 55%, #14806A 100%);
  --grad-card1:   linear-gradient(135deg, #1A9E7E 0%, #2DC5A2 100%);
  --grad-card2:   linear-gradient(135deg, #8B6325 0%, #C49A6C 100%);
  --grad-card3:   linear-gradient(135deg, #B54E20 0%, #E07B3A 100%);
  --grad-card4:   linear-gradient(135deg, #4A3875 0%, #8B72BE 100%);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 4px rgba(26,158,126,.08);
  --shadow-md:  0 4px 16px rgba(26,158,126,.12);
  --shadow-lg:  0 8px 32px rgba(26,158,126,.16);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { padding-left: 1.5em; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  height: 36px;
  overflow: hidden;
}
.ticker-tag {
  flex-shrink: 0;
  background: rgba(255,255,255,.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-body { flex: 1; overflow: hidden; }
.ticker-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}
.ticker-item { font-size: 12px; opacity: .9; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,242,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(26,158,126,.10);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--grad-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,158,126,.3);
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
}
.logo-sub {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  margin-left: -4px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--primary);
  background: var(--bg-mint-soft);
}
.header-cta { flex-shrink: 0; }

/* ── CTA Button ─────────────────────────────────────────────── */
.btn-winpin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-brand);
  color: white !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 24px;
  box-shadow: 0 3px 10px rgba(26,158,126,.35);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-winpin:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,158,126,.45);
  color: white !important;
}

/* ── Hamburger ───────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Mobile Nav ─────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-main);
  border-bottom: 2px solid var(--bg-beige);
  padding: 12px 20px 16px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--bg-mint-soft); color: var(--primary); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--highlight);
  color: white;
  box-shadow: 0 4px 16px rgba(224,123,58,.35);
}
.btn-primary:hover {
  background: var(--highlight-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,58,.45);
  color: white;
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  color: white;
  transform: translateY(-2px);
}
.btn-lg { font-size: 15px; padding: 14px 28px; }

/* ── Home Hero ───────────────────────────────────────────────── */
.home-hero {
  background: var(--grad-hero);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232DC5A2' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.home-hero h1 {
  font-size: clamp(28px,4.5vw,52px);
  font-weight: 800;
  color: white;
  line-height: 1.18;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.home-hero h1 em {
  font-style: normal;
  color: #6EECD1;
}
.home-hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Hero Stats Card ─────────────────────────────────────────── */
.hero-stats {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
}
.hero-stats-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-stat-row:last-child { border-bottom: none; }
.hero-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.hero-stat-icon.mint   { background: rgba(45,197,162,.25); }
.hero-stat-icon.beige  { background: rgba(196,154,108,.25); }
.hero-stat-icon.orange { background: rgba(224,123,58,.25); }
.hero-stat-icon.purple { background: rgba(139,114,190,.25); }
.hero-stat-info { flex: 1; }
.hero-stat-label { font-size: 13px; font-weight: 700; color: white; }
.hero-stat-value { font-size: 11px; color: rgba(255,255,255,.65); }
.hero-stat-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

/* ── Trust Strip ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-beige);
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-icon.mint   { background: var(--bg-mint-soft); }
.trust-icon.beige  { background: #EDE0CC; }
.trust-icon.orange { background: #FAEEE5; }
.trust-icon.navy   { background: #E8F0FE; }
.trust-label { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.trust-sub   { font-size: 12px; color: var(--gray-500); }

/* ── Cluster Section ─────────────────────────────────────────── */
.cluster-section { padding: 60px 0; border-bottom: 1px solid var(--gray-200); }
.cluster-section:last-of-type { border-bottom: none; }

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.section-title {
  font-size: clamp(20px,2.5vw,28px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
.section-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}
.see-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all var(--transition);
}
.see-all:hover {
  background: var(--primary);
  color: white;
}

/* ── Cat Hero Card ───────────────────────────────────────────── */
.cat-hero-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--grad-card1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.cat-hero-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cat-hero-card.beige  { background: var(--grad-card2); }
.cat-hero-card.orange { background: var(--grad-card3); }
.cat-hero-card.purple { background: var(--grad-card4); }
.cat-hero-card:hover  { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cat-hero-icon { font-size: 48px; flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,.2)); }
.cat-hero-body { flex: 1; }
.cat-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.cat-hero-title { font-size: 20px; font-weight: 800; color: white; margin-bottom: 6px; }
.cat-hero-desc  { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.5; }
.cat-hero-cta {
  flex-shrink: 0;
  background: rgba(255,255,255,.2);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.3);
  transition: background var(--transition);
}
.cat-hero-card:hover .cat-hero-cta { background: rgba(255,255,255,.3); }

/* ── Article Grid ────────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.article-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(26,158,126,.12);
  transform: translateY(-2px);
}
.article-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-mint-soft);
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
  align-self: flex-start;
}
.article-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}
.article-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  font-size: 12px;
  color: var(--gray-500);
}
.article-card-read {
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  transition: color var(--transition);
}
.article-card-read:hover { color: var(--primary-dark); }

/* ── Cat Index Hero ──────────────────────────────────────────── */
.cat-index-hero {
  background: var(--grad-hero);
  padding: 48px 0;
}
.cat-index-hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cat-index-icon { font-size: 52px; flex-shrink: 0; }
.cat-index-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cat-index-hero h1 {
  font-size: clamp(22px,3.5vw,36px);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.cat-index-hero p { color: rgba(255,255,255,.8); font-size: 15px; }

/* ── Main Layout ─────────────────────────────────────────────── */
.main-content { padding: 48px 0; }
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  background: var(--bg-beige);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumb-list a { color: var(--primary); }
.breadcrumb-list .active { color: var(--text-primary); font-weight: 600; }
.breadcrumb-sep { color: var(--gray-300); }

/* ── Content Area ────────────────────────────────────────────── */
.content-area { min-width: 0; }
.article-header { margin-bottom: 24px; }
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}
.badge-primary { background: var(--bg-mint-soft); color: var(--primary); }
.article-header h1 {
  font-size: clamp(20px,3vw,32px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.02em;
  line-height: 1.3;
  margin: 12px 0 8px;
}
.article-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-500);
}
.article-info-item { display: flex; align-items: center; gap: 4px; }

/* ── TOC ─────────────────────────────────────────────────────── */
.toc {
  background: var(--bg-mint-soft);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.toc-title { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
#toc-list { padding-left: 16px; }
#toc-list li { margin-bottom: 4px; }
#toc-list a { font-size: 13px; color: var(--text-secondary); }
#toc-list a:hover { color: var(--primary); }

/* ── Article Body ────────────────────────────────────────────── */
.article-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-beige);
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 8px;
}
.article-body p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.8; }
.article-body ul, .article-body ol {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.article-body li { margin-bottom: 4px; }
.article-body strong { color: var(--text-primary); font-weight: 700; }

/* ── Article Summary ─────────────────────────────────────────── */
.article-summary {
  background: linear-gradient(135deg, var(--bg-mint-soft) 0%, var(--bg-beige) 100%);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  border: 1px solid var(--gray-200);
}
.article-summary-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.article-summary ul { margin: 0; padding-left: 20px; }
.article-summary li { font-size: 14px; color: var(--text-secondary); margin-bottom: 4px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.article-faq { margin: 32px 0; }
.article-faq-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  background: var(--bg-beige);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.faq-a {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Related Posts ───────────────────────────────────────────── */
.related-posts { margin-top: 40px; }
.related-posts-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-beige);
}
.related-posts-grid { display: flex; flex-direction: column; gap: 8px; }
.related-post-item {
  display: block;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.related-post-item:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: var(--bg-mint-soft);
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.cta-widget {
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-widget-icon { font-size: 36px; margin-bottom: 10px; }
.cta-widget-title { font-size: 16px; font-weight: 800; color: white; margin-bottom: 6px; }
.cta-widget-desc { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.5; margin-bottom: 16px; }
.cta-widget-btn {
  display: block;
  background: white;
  color: var(--primary) !important;
  font-size: 14px;
  font-weight: 800;
  padding: 12px;
  border-radius: 12px;
  transition: all var(--transition);
}
.cta-widget-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }

.sidebar-widget {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.widget-header {
  background: var(--bg-beige);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--gray-200);
}
.widget-body { padding: 12px 16px; }
.cat-list { display: flex; flex-direction: column; gap: 4px; }
.cat-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: background var(--transition);
}
.cat-list-item:hover, .cat-list-item.active {
  background: var(--bg-mint-soft);
  color: var(--primary);
}
.cat-list-icon { margin-right: 6px; }
.cat-list-count {
  font-size: 11px;
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--gray-500);
}
.stats-list { display: flex; flex-direction: column; gap: 8px; }
.stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.stat-label { color: var(--gray-500); }
.stat-value { font-weight: 700; color: var(--primary); }

/* ── Static Pages ────────────────────────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: 48px 0;
}
.page-hero-body { text-align: center; }
.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.info-section { padding: 60px 0; }
.info-content { max-width: 760px; margin: 0 auto; }
.info-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 28px 0 12px;
}
.info-content p  { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.info-content ul { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #0B5740;
  color: rgba(255,255,255,.8);
  padding: 48px 0 0;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-name { color: var(--primary-light); }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 12px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col li a:hover { color: var(--primary-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: var(--primary-light); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .home-hero-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .cat-hero-card { flex-direction: column; text-align: center; }
  .cat-hero-cta { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-items { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
