/* ===== HERO ===== */
.hero { position: relative; padding: 72px 0 64px; overflow: hidden; margin-top: var(--header-h); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 60%, #3B6FA0 100%); z-index: 0; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(232,101,26,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(249,115,22,0.1) 0%, transparent 50%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: 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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; }
.hero-title { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 50px); font-weight: 700; line-height: 1.12; margin-bottom: 14px; letter-spacing: -0.03em; animation: fadeInUp 0.7s var(--ease-out) both; }
.hero-subtitle { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 32px; line-height: 1.55; animation: fadeInUp 0.7s var(--ease-out) 0.1s both; }
.hero-actions { display: flex; justify-content: center; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; animation: fadeInUp 0.7s var(--ease-out) 0.2s both; }
.hero-badges { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.75); animation: fadeIn 0.8s var(--ease-out) 0.4s both; }
.badge-item { display: inline-flex; align-items: center; gap: 6px; }
.badge-separator { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.35); }

/* ===== HOMEPAGE CONTENT ===== */
.main-content { padding: 52px 0 60px; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; align-items: start; }
.analyses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* Articles sidebar */
.articles-section { position: sticky; top: calc(var(--header-h) + 24px); background: var(--color-card); border-radius: var(--radius); border: 1px solid var(--color-border); padding: 24px 20px; box-shadow: var(--shadow-sm); }
.articles-section .section-header { margin-bottom: 16px; }
.articles-section .section-footer { margin-top: 16px; }

/* ===== GUIDES SECTION (Homepage) ===== */
.guides-section { padding: 64px 0; background: var(--color-secondary); color: #fff; position: relative; overflow: hidden; }
.guides-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(232,101,26,0.08) 0%, transparent 60%); pointer-events: none; }
.guides-title { font-family: var(--font-heading); font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 8px; letter-spacing: -0.02em; position: relative; }
.guides-subtitle { text-align: center; color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 36px; position: relative; }
.guides-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.guide-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 20px; border-radius: var(--radius); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); transition: all var(--duration-normal) var(--ease-out); }
.guide-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); border-color: rgba(255,255,255,0.15); }
.guide-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(232,101,26,0.15); color: var(--color-accent); margin-bottom: 16px; transition: transform var(--duration-normal) var(--ease-spring), background var(--duration-normal); }
.guide-card:hover .guide-icon { transform: scale(1.08); background: rgba(232,101,26,0.22); }
.guide-name { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.guide-count { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .articles-section { position: static; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 50px 0 42px; }
  .hero-title { font-size: 28px; }
  .hero-badges { flex-direction: column; gap: 6px; }
  .badge-separator { display: none; }
  .analyses-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .articles-section { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .guide-card { padding: 20px 12px; }
}
