/* ===== INNERCALMGUIDE.COM — Global Stylesheet ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --sage: #A8B5A0;
  --sage-light: #C5CEBC;
  --sage-dark: #7A8A70;
  --sage-darker: #5C6B54;
  --cream: #FAF8F5;
  --warm-white: #F5F2ED;
  --sand: #E8E0D5;
  --stone: #D4CBC0;
  --charcoal: #2C2C2C;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --text-lighter: #999;
  --lavender: #E6E0F0;
  --lavender-soft: #F0ECF6;
  --blush: #F2E4E1;
  --sky: #E0EBF0;
  --golden: #E8D5B0;
  --white: #FFFFFF;
  --border: rgba(168,181,160,0.15);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--sage-dark);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 300;
}
.topbar a { color: white; text-decoration: underline; text-underline-offset: 2px; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .brand-calm { color: var(--sage); font-style: italic; }
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.3px;
  position: relative;
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-dark);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-links .active { color: var(--sage-dark); }
.nav-links .active::after { width: 100%; }

.nav-cta {
  background: var(--sage-dark) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13px !important;
  letter-spacing: 0.5px;
}
.nav-cta:hover { background: var(--charcoal) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.mobile-menu { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-dark);
  color: white;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--stone);
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--sage-dark); color: var(--sage-dark); }

.btn-small {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: var(--radius-full);
  background: var(--sage-dark);
  color: white;
  font-weight: 600;
  display: inline-flex;
  letter-spacing: 0.3px;
}
.btn-small:hover { background: var(--charcoal); transform: translateY(-1px); }

/* ===== COMMON ===== */
section { padding: 90px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--sage);
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
  font-weight: 300;
}
.section-title em { font-style: italic; color: var(--sage-dark); }

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

.bg-warm { background: var(--warm-white); }
.bg-cream { background: var(--cream); }

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-blue { background: #e3f2fd; color: #1565c0; }
.badge-purple { background: var(--lavender-soft); color: #6a1b9a; }
.badge-pink { background: var(--blush); color: #c62828; }
.badge-amber { background: var(--golden); color: #795548; }
.badge-sage { background: rgba(168,181,160,0.2); color: var(--sage-darker); }

.rating { color: #D4A847; font-size: 13px; letter-spacing: 2px; }

/* ===== HERO (Homepage) ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  border-radius: 300px;
  overflow: hidden;
  opacity: 0;
  animation: heroImgIn 1.2s ease 0.3s forwards;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.02) saturate(0.9); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 40px 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.1s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lavender-soft);
  color: var(--sage-dark);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before { content: '✦'; font-size: 10px; }

.hero h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: -1px;
}
.hero h1 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.hero p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 460px;
  line-height: 1.8;
}

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

/* ===== PAGE HEADER (Inner pages) ===== */
.page-header {
  background: var(--warm-white);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  margin-bottom: 12px;
}
.page-header h1 em { font-style: italic; color: var(--sage-dark); }
.page-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-lighter);
}
.breadcrumbs a { color: var(--sage-dark); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 8px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
}
.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ===== ARTICLE CARDS ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.article-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-img .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  color: var(--sage-dark);
}

.article-card-body { padding: 24px; }

.article-card-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.article-card-body h3 a:hover { color: var(--sage-dark); }

.article-card-body p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-lighter);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.article-meta span { display: flex; align-items: center; gap: 4px; }

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more:hover { gap: 10px; }

/* ===== ARTICLE FEATURED (Large card) ===== */
.article-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 40px;
  transition: var(--transition);
}
.article-featured:hover { box-shadow: var(--shadow-md); }

.article-featured-img { min-height: 360px; overflow: hidden; }
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.article-featured:hover .article-featured-img img { transform: scale(1.03); }

.article-featured-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-featured-body h2 { font-size: 32px; margin-bottom: 16px; }
.article-featured-body h2 a:hover { color: var(--sage-dark); }
.article-featured-body p {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===== CATEGORY FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--sage-dark);
  color: white;
  border-color: var(--sage-dark);
}

/* ===== SIDEBAR ===== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.sidebar-widget h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage-light);
}

.sidebar-widget ul { list-style: none; }
.sidebar-widget li { margin-bottom: 14px; }
.sidebar-widget li a {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget li a:hover { color: var(--sage-dark); }
.sidebar-widget li a::before {
  content: '→';
  font-size: 12px;
  color: var(--sage);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: white;
  border: none;
  text-align: center;
}
.sidebar-cta h4 { color: white; border-bottom-color: rgba(255,255,255,0.3); }
.sidebar-cta p { font-size: 14px; font-weight: 300; margin-bottom: 16px; line-height: 1.7; }
.sidebar-cta .btn-white {
  display: inline-block;
  padding: 12px 28px;
  background: white;
  color: var(--sage-dark);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}
.sidebar-cta .btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== SINGLE ARTICLE PAGE ===== */
.article-header {
  padding: 50px 0 40px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}
.article-header .badge { margin-bottom: 16px; }
.article-header h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 300;
  max-width: 800px;
  margin-bottom: 20px;
}
.article-header-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
}
.article-header-meta img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.article-hero-img {
  margin: -1px 0 0;
  max-height: 480px;
  overflow: hidden;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-content {
  padding: 48px 0 80px;
}

.article-body {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}
.article-body h2 {
  font-size: 32px;
  margin: 48px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-size: 24px;
  margin: 36px 0 16px;
}
.article-body p { margin-bottom: 20px; font-weight: 300; }
.article-body ul, .article-body ol {
  margin: 16px 0 24px 24px;
  font-weight: 300;
}
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--sage-darker); }
.article-body img {
  border-radius: var(--radius);
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.article-body blockquote {
  border-left: 3px solid var(--sage);
  padding: 20px 28px;
  margin: 28px 0;
  background: var(--warm-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-light);
}

/* Affiliate CTA Box inside articles */
.affiliate-box {
  background: linear-gradient(135deg, #f8faf7, #eef2ec);
  border: 2px solid var(--sage-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 36px 0;
  text-align: center;
}
.affiliate-box h4 {
  font-size: 22px;
  margin-bottom: 8px;
}
.affiliate-box p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 300;
}
.affiliate-box .rating { margin-bottom: 16px; display: block; font-size: 18px; }

/* Table of Contents */
.toc {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 36px;
  border: 1px solid var(--border);
}
.toc h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--sage-dark);
}
.toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}
.toc li {
  counter-increment: toc;
  margin-bottom: 10px;
}
.toc li::before {
  content: counter(toc) ".";
  color: var(--sage);
  font-weight: 600;
  margin-right: 8px;
}
.toc a { font-size: 14px; color: var(--text); }
.toc a:hover { color: var(--sage-dark); }

/* ===== COMPARISON TABLE ===== */
.comp-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}
.comp-table thead th {
  background: var(--sage-dark);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.comp-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 300;
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--warm-white); }
.comp-table .app-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cat-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.cat-card h3 { font-size: 22px; margin-bottom: 8px; }
.cat-card p { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.7; margin-bottom: 16px; }
.cat-count { font-size: 12px; font-weight: 600; color: var(--sage-dark); letter-spacing: 0.5px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
}
.pagination a:hover { border-color: var(--sage-dark); color: var(--sage-dark); }
.pagination .active {
  background: var(--sage-dark);
  color: white;
  border-color: var(--sage-dark);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.newsletter h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; font-weight: 300; }
.newsletter p { font-size: 16px; opacity: 0.85; margin-bottom: 32px; font-weight: 300; max-width: 500px; margin-left: auto; margin-right: auto; }

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 14px;
  font-family: 'Nunito Sans', sans-serif;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: white; }
.newsletter-form button {
  padding: 15px 30px;
  border-radius: var(--radius-full);
  border: none;
  background: white;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.newsletter-note { font-size: 12px; opacity: 0.6; margin-top: 14px; }

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo-icon { background: var(--sage); }
.footer-brand p { font-size: 14px; font-weight: 300; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.footer-social a:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

.footer-col h4 {
  color: white;
  font-size: 13px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; font-weight: 300; }
.footer-col a:hover { color: white; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
}

.footer-disclosure {
  background: rgba(255,255,255,0.05);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImgIn {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .article-featured { grid-template-columns: 1fr; }
  .article-featured-img { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .hero-bg { display: none; }
  .hero { min-height: 70vh; }
  .hero-content { max-width: 100%; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .article-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .comp-table-wrap { overflow-x: auto; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .trust-inner { gap: 24px; }
  .article-header h1 { font-size: 30px; }
  .article-featured-body { padding: 28px; }
  .filter-tabs { gap: 6px; }
}
