:root {
  --green-deep: #1A5C34;
  --green-mid: #2D8653;
  --green-light: #4CAF78;
  --gold: #F5A623;
  --gold-light: #FDD87A;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --shadow-warm: 0 4px 24px rgba(26, 92, 52, 0.12);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --radius-card: 20px;
  --radius-btn: 50px;
  --max-width: 1140px;
  --section-pad: clamp(56px, 8vw, 96px);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  padding-top: 68px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
ul { list-style: none; }
.container { width: min(var(--max-width), calc(100% - 48px)); margin: 0 auto; }
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", sans-serif; letter-spacing: -0.03em; line-height: 1.15; }

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 68px;
  background: rgba(250,247,242,0.92); backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(19,38,27,0.08);
}
.nav-inner {
  width: min(var(--max-width), calc(100% - 48px)); margin: 0 auto; height: 100%;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.brand-mark { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark img { height: 40px; width: auto; }
.brand-wordmark { font-size: 18px; font-weight: 800; }
.brand-faida { color: var(--green-deep); }
.brand-sense { color: #1E2B5C; }
.nav-links { display: flex; justify-content: center; gap: 26px; font-size: 15px; font-weight: 500; }
.nav-links a { color: rgba(26,26,26,0.82); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green-deep); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 0 22px; border-radius: var(--radius-btn); font-weight: 700; transition: transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-green { background: var(--green-deep); color: var(--cream); box-shadow: var(--shadow-warm); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--text-dark); }
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--text-dark); border-radius: 2px; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: linear-gradient(160deg, #143321, #0f2d1c);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 22px;
  transform: translateY(-100%); transition: transform 0.35s ease; color: var(--cream); font-size: 20px; font-weight: 600;
}
.mobile-nav.open { transform: translateY(0); }

.page-hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 48px); margin: 12px 0 16px; max-width: 820px; margin-left: auto; margin-right: auto; }
.page-hero p { color: var(--text-mid); font-size: 18px; max-width: 680px; margin: 0 auto; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-mid); background: rgba(45,134,83,0.1);
  padding: 6px 14px; border-radius: 999px;
}

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--cream-dark); }
.section-title { font-size: clamp(28px, 4vw, 40px); text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-mid); max-width: 640px; margin: 0 auto 40px; font-size: 17px; }

.compare-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px;
}
.compare-card {
  background: #fff; border-radius: var(--radius-card); padding: 28px 24px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.04);
}
.compare-card.highlight {
  border: 2px solid var(--green-mid); background: linear-gradient(180deg, #fff 0%, rgba(76,175,120,0.06) 100%);
}
.compare-card h3 { font-size: 18px; margin-bottom: 16px; color: var(--green-deep); }
.compare-card ul { font-size: 14px; color: var(--text-mid); }
.compare-card li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); padding-left: 22px; position: relative; }
.compare-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-mid); font-weight: 700; }
.compare-card li.miss::before { content: "✗"; color: #c44; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.feature-pills span {
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(26,92,52,0.12); color: var(--green-deep);
}

.article-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
.article-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }
.article-card-top { padding: 24px 24px 12px; flex: 1; }
.article-card h3 { font-size: 20px; margin-top: 10px; line-height: 1.3; }
.article-card > p { padding: 0 24px 16px; color: var(--text-mid); font-size: 15px; flex: 1; }
.article-card-footer { padding: 16px 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.read-more { font-weight: 700; color: var(--green-deep); font-size: 14px; }
.tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
}
.tag-guide { background: rgba(245,166,35,0.2); color: #8a5a00; }
.tag-business { background: rgba(26,92,52,0.12); color: var(--green-deep); }
.tag-personal { background: rgba(30,43,92,0.1); color: #1E2B5C; }

.cta-band {
  text-align: center; padding: 48px 32px; background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: var(--radius-card); color: var(--cream);
}
.cta-band h2 { color: var(--cream); margin-bottom: 12px; font-size: clamp(24px, 3vw, 32px); }
.cta-band p { opacity: 0.9; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Article pages */
.article-layout { padding: 32px 0 var(--section-pad); }
.breadcrumb { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--green-deep); }
.article-header { max-width: 760px; margin-bottom: 40px; }
.article-header h1 { font-size: clamp(30px, 4.5vw, 44px); margin: 16px 0; }
.article-meta { font-size: 14px; color: var(--text-light); }
.article-body { max-width: 760px; font-size: 17px; color: var(--text-mid); }
.article-body h2 { font-size: 26px; color: var(--text-dark); margin: 40px 0 16px; }
.article-body h3 { font-size: 20px; color: var(--text-dark); margin: 28px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 10px; padding-left: 4px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body strong { color: var(--text-dark); }
.callout {
  background: #fff; border-left: 4px solid var(--green-mid); padding: 20px 24px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0; margin: 28px 0;
  box-shadow: var(--shadow-card);
}
.callout h4 { color: var(--green-deep); margin-bottom: 8px; font-size: 16px; }
.feature-table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px;
  background: #fff; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card);
}
.feature-table th, .feature-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.06); }
.feature-table th { background: var(--green-deep); color: var(--cream); font-weight: 600; }
.related-posts { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.08); }
.related-posts h2 { font-size: 22px; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.related-grid a {
  display: block; padding: 18px; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-card); font-weight: 600; font-size: 15px; transition: transform 0.2s;
}
.related-grid a:hover { transform: translateY(-2px); color: var(--green-deep); }

.site-footer {
  background: linear-gradient(160deg, #143321 0%, #0f2d1c 100%);
  color: rgba(250,247,242,0.85); padding: 56px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; margin-bottom: 40px;
}
.site-footer h4 { color: var(--cream); margin-bottom: 14px; font-size: 14px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(250,247,242,0.72); font-size: 14px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; font-size: 13px; opacity: 0.6; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }

@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}
