/* ══════════════════════════════════════════════════
   MoneyTab · Global Stylesheet
   Font: Poppins (body/UI) + Lora (headings/display)
   Design: Inspired by ValueLayer.in
══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Lora:ital,wght@0,500;0,600;1,400&display=swap');

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

:root {
  --ink:         #1a1a1a;
  --ink-soft:    #3a3a3a;
  --muted:       #6b6b6b;
  --rule:        #e4e4e0;
  --accent:      #c8561a;
  --accent-dk:   #a8430e;
  --accent-lt:   #fdf3ec;
  --bg:          #fafaf8;
  --card:        #ffffff;
  --footer-bg:   #111111;
  --footer-rule: #252525;
  --max:         760px;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
strong { font-weight: 600; }
main { flex: 1; }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}

.header-top {
  text-align: center;
  padding: 16px 24px 10px;
  border-bottom: 1px solid var(--rule);
}

.site-logo {
  font-family: 'Lora', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline-block;
}
.site-logo span { color: var(--accent); }

.site-tagline {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 300;
  margin-top: 2px;
}

/* Primary nav — centered with search pinned right */
.header-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  padding: 13px 16px;
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.01em;
  display: block;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.hamburger-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 8px;
  transition: color 0.2s;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.hamburger-btn:hover { color: var(--accent); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--rule);
  padding: 12px 24px 16px;
}
.mobile-menu a {
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════ */
.breadcrumb {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.77rem;
  color: var(--muted);
  font-weight: 400;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: #ccc; font-size: 0.65rem; }

/* ════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════ */
.page-hero {
  background: #fff;
  padding: 44px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 36px;
}

/* ════════════════════════════════════════════
   ARTICLE HERO
════════════════════════════════════════════ */
.article-hero {
  max-width: 100%;
  padding: 44px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.article-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 18px;
  animation: fadeSlide 0.6s ease 0.1s both;
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-img-wrap {
  width: 100%;
  max-width: 920px;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 480px;
}

/* ════════════════════════════════════════════
   ARTICLE BODY
════════════════════════════════════════════ */
.article-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
  flex: 1;
}

.intro-block {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 44px 0 36px;
  background: var(--accent-lt);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 300;
}

h2 {
  font-family: 'Lora', serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin: 52px 0 18px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rule);
}
h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  margin: 30px 0 12px;
  color: var(--ink);
}
p { margin-bottom: 16px; font-size: 1rem; font-weight: 400; }

/* ── Table of Contents ── */
.toc-box {
  background: #f8f8f5;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 0 0 36px;
}
.toc-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}
.toc-box ol {
  padding-left: 18px;
  font-size: 0.86rem;
  line-height: 1;
  color: var(--ink-soft);
}
.toc-box ol li { margin-bottom: 11px; }
.toc-box ol li a { color: var(--ink-soft); font-weight: 400; transition: color .2s; }
.toc-box ol li a:hover { color: var(--accent); }

/* ── Rate Box (finance specific) ── */
.rate-box {
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  margin: 28px 0;
}
.rate-box-head {
  padding: 13px 20px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f5a265;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rate-cell {
  padding: 16px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.rate-cell:last-child { border-right: none; }
.rate-cell-bank { font-size: 0.75rem; color: #bfb5a8; margin-bottom: 5px; }
.rate-cell-val {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #f5a265;
  line-height: 1;
}
.rate-cell-sub { font-size: 0.67rem; color: #7a7060; margin-top: 4px; }
.rate-note { font-size: 0.72rem; color: #7a7060; text-align: center; padding: 8px 14px 12px; }

/* ── Price Grid ── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 14px 0 24px;
}
.price-row {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 5px;
  padding: 11px 14px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.price-row .label { color: var(--muted); font-weight: 400; }
.price-row .value { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ── Info Cards ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 28px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
}
.info-card .ic-icon { font-size: 1.5rem; margin-bottom: 8px; }
.info-card .ic-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.info-card .ic-val {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── Comparison Table ── */
.table-wrap {
  overflow-x: auto;
  margin: 18px 0 28px;
  border-radius: 8px;
  border: 1px solid var(--rule);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.comp-table thead tr { background: var(--ink); }
.comp-table th {
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 500;
  font-size: 0.78rem;
}
.comp-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  vertical-align: middle;
}
.comp-table tr:nth-child(even) td { background: #f7f7f4; }
.comp-table td:first-child { font-weight: 600; color: var(--ink); }
.comp-table .highlight { color: var(--accent); font-weight: 600; }

/* ── Pros / Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 28px;
}
.pros-col, .cons-col {
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.84rem;
}
.pros-col { background: #f0f8f0; border: 1px solid #c8e6c8; }
.cons-col { background: #fdf4f0; border: 1px solid #f0cfc0; }
.pros-col h5, .cons-col h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 10px;
}
.pros-col h5 { color: #3a7a3a; }
.cons-col h5 { color: #a84020; }
.pros-col ul, .cons-col ul { list-style: none; padding: 0; margin: 0; }
.pros-col ul li, .cons-col ul li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 7px;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
  font-weight: 400;
}
.pros-col ul li::before { content: "✓"; position: absolute; left: 0; color: #3a7a3a; font-weight: 700; font-size: 0.8rem; }
.cons-col ul li::before { content: "✗"; position: absolute; left: 0; color: #a84020; font-weight: 700; font-size: 0.8rem; }

/* ── Insider Tip ── */
.insider-tip {
  background: var(--ink);
  border-radius: 6px;
  padding: 14px 18px;
  margin: 20px 0 28px;
  font-size: 0.85rem;
  color: #c8c2ba;
  font-weight: 300;
  line-height: 1.75;
}
.insider-tip strong { color: #f0a060; font-weight: 600; }

/* ── Author Box ── */
.author-box {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px;
  margin: 44px 0 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info { flex: 1; font-size: 0.85rem; }
.author-name { font-weight: 600; color: var(--ink); font-size: 0.9rem; }
.author-title { color: var(--muted); font-size: 0.78rem; margin-bottom: 6px; }
.author-bio { color: var(--ink-soft); font-weight: 300; line-height: 1.7; }

/* ════════════════════════════════════════════
   HOMEPAGE DESIGN: MINIMAL CARD-FOCUSED
════════════════════════════════════════════ */

/* ── Clean Minimal Hero ── */
.hp-hero {
  background: #fff;
  padding: 64px 24px 56px;
  border-bottom: 1px solid var(--rule);
}

.hp-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-lt);
  border: 1px solid rgba(200,86,26,0.15);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeSlide 0.6s ease;
}

.hp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hp-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 20px;
  animation: fadeSlide 0.6s ease 0.1s both;
}

.hp-hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 300;
  animation: fadeSlide 0.6s ease 0.2s both;
}

.hp-search-wrap {
  max-width: 560px;
  margin: 0 auto;
  animation: fadeSlide 0.6s ease 0.3s both;
}

.hp-search-box {
  display: flex;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 6px;
  transition: border-color 0.2s;
}

.hp-search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,86,26,0.08);
}

.hp-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  outline: none;
}
.hp-search-input::placeholder { color: var(--muted); }

.hp-search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.hp-search-btn:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

.hp-quick-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--muted);
}
.hp-quick-links span { opacity: 0.7; }
.hp-quick-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.hp-quick-links a:hover { color: var(--accent-dk); text-decoration: underline; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Stats Strip ── */
.hp-stats {
  background: var(--accent);
  padding: 22px 24px;
}
.hp-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.hp-stat { text-align: center; color: #fff; }
.hp-stat-num {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.hp-stat-label { font-size: 0.78rem; opacity: 0.85; margin-top: 4px; }

/* ── Main Content ── */
.hp-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Simple Section Headers */
.hp-section { margin-bottom: 60px; }

.hp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.hp-section-title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}

.hp-view-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.hp-view-all::after { content: " →"; }
.hp-view-all:hover { color: var(--accent-dk); }

/* ── Card Grid ── */
.hp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.hp-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.hp-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.hp-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.hp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hp-card:hover .hp-card-img img { transform: scale(1.08); }

.hp-card-img-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hp-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-card-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
}

.hp-card-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
  flex: 1;
}

.hp-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.hp-card-meta {
  display: flex;
  gap: 14px;
  font-size: 0.74rem;
  color: var(--muted);
}

.hp-card-arrow {
  font-size: 0.85rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.hp-card:hover .hp-card-arrow { transform: translateX(4px); }

/* ── Tools Grid ── */
.hp-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.hp-tool-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s;
}
.hp-tool-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.hp-tool-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.hp-tool-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.hp-tool-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}

.hp-tool-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.18s;
}
.hp-tool-card:hover .hp-tool-link { gap: 8px; }

/* ── Price Reference Box ── */
.hp-price-box {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
}
.hp-price-header {
  background: var(--ink);
  padding: 18px 24px;
  color: #fff;
}
.hp-price-header h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0a060;
  margin-bottom: 4px;
}
.hp-price-header p {
  font-size: 0.78rem;
  color: #8a8078;
  margin: 0;
}
.hp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hp-price-item {
  padding: 16px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hp-price-item:nth-child(3n) { border-right: none; }
.hp-price-label { font-size: 0.8rem; color: var(--muted); font-weight: 400; }
.hp-price-val { font-size: 0.88rem; font-weight: 600; color: var(--ink); }

/* ── Newsletter ── */
.hp-newsletter {
  background: var(--ink);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-bottom: 60px;
  color: #c8c2ba;
}
.hp-newsletter h3 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.hp-newsletter p {
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.7;
}
.hp-newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 10px;
}
.hp-newsletter-form input {
  flex: 1;
  border: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  outline: none;
}
.hp-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.hp-newsletter-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.hp-newsletter-form button:hover { background: var(--accent-dk); }

/* ── CTA Banner ── */
.hp-cta-banner {
  background: var(--accent);
  padding: 44px 24px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 8px;
}
.hp-cta-banner h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.hp-cta-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 22px; }
.hp-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent-dk);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 28px;
  border-radius: 5px;
  transition: background 0.2s;
  text-decoration: none;
}
.hp-cta-btn:hover { background: var(--ink); color: #fff; }

/* ── Related Grid ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.related-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}
.related-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.related-card-body { padding: 14px 16px; }
.related-card-tag {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}
.related-card-title {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* ════════════════════════════════════════════
   CATEGORY / LISTING PAGE
════════════════════════════════════════════ */
.listing-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}
.featured-article:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.featured-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}
.featured-article-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-featured {
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.badge-cat {
  background: var(--accent-lt);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.featured-title {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.featured-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}
.featured-footer {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.featured-read-more { color: var(--accent); font-weight: 600; }

/* ════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h2 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-lt);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(200,86,26,0.15);
}
.contact-detail h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-detail p { font-size: 0.9rem; color: var(--ink); margin: 0; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 30px;
}
.contact-form h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  margin-bottom: 22px;
  color: var(--ink);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,86,26,0.07); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dk); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--footer-bg);
  color: #c8c2ba;
  padding: 56px 24px 0;
}

.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--footer-rule);
}

.footer-logo {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  display: block;
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: #b0a8a0;
  font-weight: 300;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: #c8c2ba;
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }

.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: #c8c2ba;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0 32px;
}
.footer-bottom-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: #d0c8c0;
}
.footer-copy .heart { color: var(--accent); }
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: #c0b8b0;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--accent); }

.footer-disclaimer-line {
  font-size: 0.74rem;
  color: #a09890;
  line-height: 1.7;
  font-weight: 300;
  border-top: 1px solid var(--footer-rule);
  padding-top: 14px;
}
.footer-disclaimer-line a { color: #c0b0a8; transition: color 0.2s; }
.footer-disclaimer-line a:hover { color: var(--accent); }

/* ════════════════════════════════════════════
   COOKIE CONSENT
════════════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  padding: 0;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.35);
  border-top: 3px solid var(--accent);
  /* Hidden by default — JS adds .show class */
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.3s ease, visibility 0s linear 0.4s;
  display: block;
}
.cookie-consent.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.3s ease, visibility 0s linear 0s;
}
.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
}
.cookie-left { display: flex; align-items: flex-start; gap: 14px; }
.cookie-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text-wrap { flex: 1; }
.cookie-title { font-size: 0.88rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.cookie-text { color: #bfb5a8; font-size: 0.8rem; line-height: 1.6; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent-dk); transform: translateY(-1px); }
.cookie-decline { background: transparent; color: #c0b8b0; border: 1px solid rgba(255,255,255,0.2); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cookie-settings { background: transparent; color: #8a8280; border: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; }
.cookie-settings:hover { color: #c0b8b0; border-color: rgba(255,255,255,0.25); }
@media(max-width:640px){
  .cookie-consent-inner { grid-template-columns: 1fr; gap: 14px; }
  .cookie-buttons { width: 100%; justify-content: flex-start; }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article img { min-height: 200px; max-height: 260px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hp-tools-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom-row1 { flex-direction: column; align-items: flex-start; gap: 10px; }
  .price-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .hp-price-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .header-nav a { padding: 12px 10px; font-size: 0.75rem; }
  .hamburger-btn { display: flex; }
  .nav-links { display: none; }
  .article-hero h1 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }
  .info-cards { grid-template-columns: 1fr; }
  .hp-tools-grid { grid-template-columns: 1fr; }
  .hp-newsletter-form { flex-direction: column; }
  .hp-price-grid { grid-template-columns: 1fr; }
}

/* ── Author social icons ─────────────────────────────── */
.author-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.author-social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--accent-lt);
  border: 1px solid rgba(200,86,26,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.author-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.author-social svg { fill: currentColor; }

/* ── Author box updated ─────────────────────────────── */
.author-box { display: flex; gap: 18px; align-items: flex-start; background: var(--card); border: 1px solid var(--rule); border-radius: 8px; padding: 24px; margin: 48px 0 0; }
.author-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--accent-lt); }
.author-info { flex: 1; }
.author-name { font-weight: 700; color: var(--ink); font-size: 1rem; margin-bottom: 2px; }
.author-title { color: var(--accent); font-size: 0.78rem; font-weight: 500; margin-bottom: 8px; }
.author-bio { font-size: 0.84rem; color: var(--ink-soft); font-weight: 300; line-height: 1.72; }
