/*
Theme Name: AutoFix v3
Theme URI: https://autofix.co.kr
Description: 자동차 정비소 AI 마케팅 플랫폼 | B2B 전문 테마
Version: 3.0.0
Author: ADP (에이디플랫폼)
Text Domain: autofix
*/

/* ============================================================
   CSS VARIABLES — Color System
   ============================================================ */
:root {
  --bg:          #0f172a;
  --bg-hero:     #0a1020;
  --bg-footer:   #060e1e;
  --bg-card:     #1e293b;
  --bg-card-hover: #263248;
  --accent:      #f97316;
  --accent-dim:  rgba(249,115,22,0.12);
  --accent-glow: rgba(249,115,22,0.25);
  --text:        #f8fafc;
  --text-muted:  #94a3b8;
  --text-subtle: #64748b;
  --border:      rgba(255,255,255,0.07);
  --border-accent: rgba(249,115,22,0.30);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.35);
  --shadow-accent: 0 0 40px rgba(249,115,22,0.15);
  --transition:  all 0.25s cubic-bezier(0.4,0,0.2,1);
  --font-head:   'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --font-body:   'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --container:   1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.35; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 56px 0; }
.section--dark { background: var(--bg-hero); }
.section--alt  { background: rgba(30,41,59,0.5); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width:1024px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ============================================================
   COMPONENTS — Badge / Label
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid var(--border-accent);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase;
}
.badge--ai::before { content: '🤖'; font-size: 0.85em; }
.section-label {
  display: inline-block;
  color: var(--accent); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; max-width: 600px; }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* ============================================================
   COMPONENTS — Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-primary:hover { background: #ea6b0a; border-color: #ea6b0a; transform: translateY(-1px); box-shadow: var(--shadow-accent); }
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--text-muted); border: none; padding: 10px 16px; }
.btn-ghost:hover { color: var(--text); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============================================================
   COMPONENTS — Cards
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover { background: var(--bg-card-hover); border-color: var(--border-accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.card-icon { font-size: 2.2rem; margin-bottom: 20px; }
.card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.card-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(10,16,32,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-size: 1.35rem; font-weight: 900; letter-spacing: -0.04em;
  color: var(--text);
}
.site-logo span { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  padding: 8px 14px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-tel { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.header-tel:hover { color: var(--accent); }

/* Mobile Nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-hero); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem; font-weight: 700; padding: 16px 40px;
  color: var(--text-muted); border-radius: 10px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--text); background: var(--bg-card); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer;
}
@media (max-width: 900px) {
  .nav-menu, .header-tel { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--bg-hero);
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}
.hero-inner { position: relative; z-index: 1; padding: 80px 0; }
.hero-badge { margin-bottom: 28px; }
.hero-title { margin-bottom: 24px; }
.hero-title em {
  font-style: normal; color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted); max-width: 560px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 40px; padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 2rem; font-weight: 800; color: var(--text);
  line-height: 1;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.pain-item {
  padding: 36px 28px; background: var(--bg-card);
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.pain-item:last-child { border-right: none; }
.pain-item:hover { background: var(--bg-card-hover); }
.pain-emoji { font-size: 2rem; margin-bottom: 16px; }
.pain-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.pain-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; border: none; gap: 2px; }
  .pain-item { border-right: none; border-bottom: 1px solid var(--border); border-radius: 0; }
  .pain-item:last-child { border-bottom: none; }
}

/* ============================================================
   BENTO SERVICES
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); overflow: hidden; position: relative;
}
.bento-item:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.bento-1 { grid-column: span 5; grid-row: span 2; }
.bento-2 { grid-column: span 7; }
.bento-3 { grid-column: span 4; }
.bento-4 { grid-column: span 3; }
.bento-item .service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-dim); border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.bento-item h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.bento-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.bento-item .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-tag {
  font-size: 0.75rem; padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,0.05); color: var(--text-subtle);
  border: 1px solid var(--border);
}
.bento-1 { background: linear-gradient(135deg, #1e293b 0%, #162035 100%); }
.bento-1::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .bento-1, .bento-2, .bento-3, .bento-4 { grid-column: span 12; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: flex; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  z-index: 0;
}
.step { flex: 1; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--accent);
  margin: 0 auto 20px; position: relative;
}
.step-num::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px dashed var(--border-accent); opacity: 0.5;
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 768px) {
  .steps { flex-direction: column; gap: 32px; }
  .steps::before { display: none; }
}

/* ============================================================
   REPAIR CASES (정비사례)
   ============================================================ */
.repair-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.repair-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.repair-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: var(--transition);
}
.repair-card:hover { border-color: var(--border-accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.repair-card:hover::before { opacity: 1; }
.repair-card-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--accent-dim); color: var(--accent);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 16px;
}
.repair-card-title { font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.45; }
.repair-card-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.repair-card-meta { display: flex; align-items: center; justify-content: space-between; }
.repair-card-date { font-size: 0.78rem; color: var(--text-subtle); }
.repair-card-arrow { color: var(--accent); font-size: 1rem; opacity: 0; transition: var(--transition); }
.repair-card:hover .repair-card-arrow { opacity: 1; transform: translateX(3px); }
@media (max-width: 768px) { .repair-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NUMBERS / STATS
   ============================================================ */
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item {
  padding: 40px 24px; text-align: center; background: var(--bg-card);
  border-right: 1px solid var(--border); transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-card-hover); }
.stat-num { font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 8px; }
.stat-num em { font-style: normal; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   FAQ (AEO/GEO)
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 600; color: var(--text); cursor: pointer;
  gap: 20px; transition: var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent); transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-dim); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 24px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }
.faq-a-inner strong { color: var(--text); }

/* ============================================================
   PARTNER CTA BANNER
   ============================================================ */
.partner-cta {
  background: linear-gradient(135deg, #1a2744 0%, #0f1f3d 100%);
  border: 1px solid var(--border-accent); border-radius: var(--radius-lg);
  padding: 56px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; position: relative; overflow: hidden;
}
.partner-cta::before {
  content: ''; position: absolute; right: -5%; top: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.1), transparent 70%);
  pointer-events: none;
}
.partner-cta-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.partner-cta-text p { color: var(--text-muted); font-size: 0.95rem; max-width: 500px; }
.partner-cta-actions { display: flex; gap: 12px; flex-shrink: 0; }
@media (max-width: 768px) {
  .partner-cta { flex-direction: column; padding: 36px 24px; }
  .partner-cta-actions { flex-direction: column; width: 100%; }
  .partner-cta-actions .btn { justify-content: center; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--bg-hero); text-align: center; padding: 80px 0; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; }
.cta-channels { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 32px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--transition); min-width: 240px;
}
.cta-channel:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.cta-channel-icon { font-size: 2rem; }
.cta-channel-label { font-size: 0.78rem; color: var(--text-muted); }
.cta-channel-value { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.cta-kakao { background: #3A1D00; border-color: rgba(254,229,0,0.2); }
.cta-kakao:hover { border-color: rgba(254,229,0,0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-footer); padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .site-logo { font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.85rem; color: var(--text-muted); line-height: 2; }
.footer-contact strong { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { font-size: 0.78rem; color: var(--text-subtle); line-height: 1.8; }
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--accent); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ARCHIVE PAGES
   ============================================================ */
.archive-hero {
  background: var(--bg-hero); padding: 100px 0 64px;
  border-bottom: 1px solid var(--border);
}
.archive-hero h1 { margin-bottom: 12px; }
.archive-hero p { font-size: 1rem; color: var(--text-muted); max-width: 600px; }
.archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 56px 0; }
.archive-empty { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.pagination { display: flex; gap: 8px; justify-content: center; padding: 40px 0; }
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border);
  font-size: 0.9rem; font-weight: 600; transition: var(--transition);
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (max-width: 768px) { .archive-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-hero { background: var(--bg-hero); padding: 100px 0 56px; border-bottom: 1px solid var(--border); }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.post-cat { font-size: 0.78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }
.post-date { font-size: 0.82rem; color: var(--text-subtle); }
.post-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.post-body { max-width: 780px; margin: 0 auto; padding: 56px 24px; }
.post-body h2 { font-size: 1.4rem; margin: 40px 0 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-body h3 { font-size: 1.15rem; margin: 28px 0 12px; color: var(--text); }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 8px; color: var(--text-muted); }
.post-body strong { color: var(--text); }
.post-body blockquote {
  border-left: 3px solid var(--accent); margin: 28px 0;
  padding: 16px 20px; background: var(--accent-dim); border-radius: 0 8px 8px 0;
}
.post-body blockquote p { color: var(--text); margin: 0; }
.post-cta {
  background: var(--bg-card); border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg); padding: 36px; margin: 48px 0;
  text-align: center;
}
.post-cta h3 { margin-bottom: 10px; }
.post-cta p { margin-bottom: 24px; }
.related-posts { padding: 56px 0; border-top: 1px solid var(--border); }
.related-posts h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partners-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding: 56px 0; }
.partner-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 18px; transition: var(--transition);
}
.partner-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.partner-card-name { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.partner-card-region { font-size: 0.78rem; color: var(--text-muted); }
@media (max-width: 1024px) { .partners-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) { .partners-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .partners-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 14px 0; }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-subtle); }
.breadcrumb li:not(:last-child)::after { content: '/'; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--text-muted); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(10,16,32,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border); padding: 12px 20px;
  gap: 10px;
}
@media (max-width: 768px) { .mobile-sticky-cta { display: flex; } }
.mobile-sticky-cta .btn { flex: 1; justify-content: center; font-size: 0.88rem; padding: 13px 16px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-accent { color: var(--accent) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.hidden-mobile { display: block; }
@media (max-width: 768px) { .hidden-mobile { display: none; } }
.show-mobile { display: none; }
@media (max-width: 768px) { .show-mobile { display: block; } }
