@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --ga-red: #C0392B;
  --ga-red-dark: #922B21;
  --ga-red-light: #FADBD8;
  --ga-peach: #F0A500;
  --ga-peach-light: #FEF9E7;
  --ga-green: #1E8449;
  --ga-green-light: #D5F5E3;
  --bg: #FAFAF8;
  --bg-warm: #F5F3EE;
  --surface: #FFFFFF;
  --border: #E8E4DC;
  --border-strong: #D5CFC4;
  --text-primary: #1A1814;
  --text-secondary: #52504A;
  --text-muted: #8C8880;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1), 0 6px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.2; }
a { color: var(--ga-red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAVIGATION ── */
.site-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 800; color: var(--text-primary);
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--ga-red);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.1px;
}
.nav-links a:hover, .nav-links a.active { color: var(--ga-red); }
.nav-cta {
  background: var(--ga-red); color: #fff !important;
  padding: 8px 18px; border-radius: 8px; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--ga-red-dark) !important; text-decoration: none !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #1A1814 0%, #2D2520 40%, #1F1A16 100%);
  padding: 80px 28px 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(192,57,43,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.4);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; color: #F5A69A;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}
.hero-eyebrow::before { content: '🍑'; font-size: 14px; }
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; color: #fff;
  margin-bottom: 20px; line-height: 1.1;
}
.hero-text h1 em { font-style: italic; color: var(--ga-peach); }
.hero-text p {
  color: rgba(255,255,255,0.6); font-size: 17px; font-weight: 400;
  margin-bottom: 32px; max-width: 480px; line-height: 1.75;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 7px 16px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ga-peach); flex-shrink: 0; }
.hero-stats {
  display: flex; gap: 32px; padding-bottom: 48px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 800; color: #fff; line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 500; }

/* ── CALCULATOR CARD ── */
.calc-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative; z-index: 2;
  margin-bottom: -60px;
}
.calc-card-head {
  background: linear-gradient(135deg, var(--ga-red) 0%, var(--ga-red-dark) 100%);
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.calc-card-head h2 {
  color: #fff; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.calc-tag {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.calc-body { padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 11.5px; font-weight: 700; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.6px;
}
.form-group input, .form-group select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-primary);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--ga-red); background: #fff;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-group.full { grid-column: 1 / -1; }
.input-prefix {
  position: relative;
}
.input-prefix::before {
  content: '$'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 14px; font-weight: 600; color: var(--text-muted); pointer-events: none;
}
.input-prefix input { padding-left: 26px; }
.section-divider {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin: 20px 0 14px; display: flex; align-items: center; gap: 10px;
}
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.calc-btn {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--ga-red) 0%, var(--ga-red-dark) 100%);
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s, transform 0.1s;
  margin-top: 8px; letter-spacing: 0.2px;
}
.calc-btn:hover { opacity: 0.92; }
.calc-btn:active { transform: scale(0.99); }

/* ── RESULTS ── */
.results-wrap { display: none; margin-top: 24px; }
.results-wrap.show { display: block; }
.results-top {
  background: linear-gradient(135deg, var(--ga-red) 0%, var(--ga-red-dark) 100%);
  border-radius: var(--radius-md); padding: 20px 22px; margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.res-take-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: rgba(255,255,255,0.65); }
.res-take-amount { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; color: #fff; }
.res-period { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.res-annual-box { text-align: right; }
.res-annual-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.55); }
.res-annual-amount { font-size: 22px; font-weight: 800; color: rgba(255,255,255,0.9); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.res-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
}
.res-card-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; }
.res-card-val { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--text-primary); margin-top: 2px; }
.res-card-val.red { color: var(--ga-red); }
.breakdown-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.breakdown-table tr { border-bottom: 1px solid var(--border); }
.breakdown-table tr:last-child { border-bottom: none; }
.breakdown-table td { padding: 9px 4px; color: var(--text-secondary); }
.breakdown-table td:last-child { text-align: right; font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.breakdown-table .deduction td:last-child { color: var(--ga-red); }
.breakdown-table .zero-tax td { font-style: italic; }
.breakdown-table .zero-tax td:last-child { color: var(--ga-green); font-style: normal; }
.breakdown-table .total-row td { font-weight: 800; border-top: 2px solid var(--border-strong); color: var(--text-primary); }
.ot-note {
  display: none; background: var(--ga-peach-light); border: 1px solid rgba(240,165,0,0.3);
  border-radius: var(--radius-sm); padding: 8px 12px; font-size: 12px;
  font-weight: 600; color: #7D5000; margin-bottom: 10px;
}

/* ── PAGE SECTIONS ── */
.page-wrap { max-width: 1160px; margin: 0 auto; padding: 80px 28px; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--ga-red); margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px); font-weight: 800; margin-bottom: 16px;
}
.section-intro { color: var(--text-secondary); font-size: 17px; max-width: 620px; margin-bottom: 48px; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 72px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.22s, transform 0.22s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--ga-red-light); color: var(--ga-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── COMPARISON TABLE (Competitor Gaps) ── */
.compare-section { background: var(--bg-warm); border-radius: var(--radius-xl); padding: 48px; margin-bottom: 72px; }
.compare-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.compare-subtitle { color: var(--text-secondary); font-size: 15px; margin-bottom: 32px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { padding: 13px 16px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; background: var(--surface); border-bottom: 2px solid var(--border); color: var(--text-secondary); }
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }
.compare-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text-secondary); background: var(--surface); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.compare-table tr:last-child td:last-child { border-radius: 0 0 8px 0; }
.compare-table .feature-name { color: var(--text-primary); font-weight: 600; }
.check { color: var(--ga-green); font-weight: 700; font-size: 16px; }
.cross { color: #C0392B; font-weight: 700; font-size: 16px; }
.partial { color: var(--ga-peach); font-weight: 700; font-size: 14px; }
.us-col { background: rgba(192,57,43,0.04) !important; font-weight: 700; }

/* ── TAX TABLES ── */
.tax-table-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.tax-table-head {
  background: var(--text-primary); padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.tax-table-head h3 { color: #fff; font-size: 16px; font-weight: 700; }
.tax-table-head span { color: rgba(255,255,255,0.5); font-size: 13px; }
table.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data-table thead th { background: var(--bg); padding: 11px 20px; text-align: left; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
table.data-table tbody td { padding: 12px 20px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
table.data-table tbody tr:last-child td { border-bottom: none; }
table.data-table tbody tr:hover td { background: var(--bg); }
table.data-table tbody td:first-child { color: var(--text-primary); font-weight: 600; }
table.data-table .rate { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--ga-red); font-size: 16px; }
table.data-table .rate-green { font-weight: 700; color: var(--ga-green); }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin-bottom: 72px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 10px; background: var(--surface); overflow: hidden;
}
.faq-q {
  padding: 18px 24px; font-weight: 700; font-size: 15px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: background 0.15s; gap: 12px;
}
.faq-q:hover { background: var(--bg); }
.faq-icon { font-size: 13px; color: var(--text-muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-bottom: 72px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.22s, transform 0.22s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--ga-red) 0%, #8C1E16 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; position: relative; overflow: hidden;
}
.blog-card-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: 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.04'%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");
}
.blog-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.bc-chip {
  display: inline-block; background: var(--ga-red-light); color: var(--ga-red);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: var(--text-primary); text-decoration: none; }
.blog-card h3 a:hover { color: var(--ga-red); }
.blog-card p { font-size: 14px; color: var(--text-secondary); flex: 1; margin-bottom: 18px; line-height: 1.65; }
.read-link { font-size: 13px; font-weight: 700; color: var(--ga-red); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.read-link::after { content: '→'; transition: transform 0.2s; }
.read-link:hover::after { transform: translateX(3px); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #1A1814 0%, #2D2520 100%);
  padding: 80px 28px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-band h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(26px,3.5vw,40px); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.55); font-size: 17px; margin-bottom: 32px; position: relative; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ga-red); color: #fff;
  padding: 16px 36px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; position: relative;
}
.cta-btn:hover { background: var(--ga-red-dark); transform: translateY(-1px); text-decoration: none; }

/* ── FOOTER ── */
.site-footer { background: #0F0D0B; padding: 56px 28px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.42); font-size: 13.5px; line-height: 1.7; }
.footer-col h4 { color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.42); font-size: 13.5px; text-decoration: none; transition: color 0.18s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.3); }
.disclaimer-bar {
  background: var(--ga-peach-light); border: 1px solid rgba(240,165,0,0.3);
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 12.5px;
  color: #7D5000; line-height: 1.6; margin-bottom: 22px;
}
.disclaimer-bar strong { color: #5C3900; }

/* ── BREADCRUMB ── */
.breadcrumb { max-width: 1160px; margin: 0 auto; padding: 18px 28px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ga-red); }
.breadcrumb span { margin: 0 7px; }

/* ── BLOG POST ── */
.post-hero { background: linear-gradient(160deg, #1A1814 0%, #2D2520 100%); padding: 64px 28px 72px; }
.post-hero-inner { max-width: 800px; margin: 0 auto; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 22px; }
.post-chip { background: var(--ga-red); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 5px 14px; border-radius: 100px; }
.post-date, .post-read { color: rgba(255,255,255,0.45); font-size: 13px; }
.post-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(28px,4vw,48px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.post-hero .excerpt { color: rgba(255,255,255,0.55); font-size: 17px; font-weight: 300; line-height: 1.75; }

.post-body { max-width: 800px; margin: 0 auto; padding: 60px 28px 80px; }
.post-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; margin: 44px 0 14px; }
.post-body h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.post-body p { color: var(--text-secondary); margin-bottom: 18px; font-size: 16.5px; line-height: 1.82; }
.post-body ul, .post-body ol { color: var(--text-secondary); margin: 0 0 18px 22px; font-size: 16px; line-height: 1.8; }
.post-body li { margin-bottom: 7px; }
.post-body .callout { background: rgba(30,132,73,0.07); border-left: 4px solid var(--ga-green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 22px; margin: 24px 0; font-size: 15px; color: #155235; }
.post-body table.post-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14.5px; border-radius: var(--radius-md); overflow: hidden; }
.post-body table.post-table th { background: var(--text-primary); color: #fff; padding: 12px 18px; text-align: left; font-weight: 700; }
.post-body table.post-table td { padding: 11px 18px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.post-body table.post-table tr:last-child td { border-bottom: none; }
.post-body table.post-table tr:nth-child(even) td { background: var(--bg); }
.placeholder-box {
  background: repeating-linear-gradient(45deg, var(--bg), var(--bg) 12px, var(--border) 12px, var(--border) 13px);
  border: 1.5px dashed var(--border-strong); border-radius: var(--radius-md);
  padding: 36px 28px; text-align: center; color: var(--text-muted); margin: 24px 0;
}
.placeholder-box strong { display: block; font-size: 17px; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; }
.placeholder-box p { margin: 0; font-size: 14px; }
.tool-promo {
  background: linear-gradient(135deg, var(--ga-red) 0%, var(--ga-red-dark) 100%);
  border-radius: var(--radius-lg); padding: 36px; text-align: center; margin: 40px 0;
}
.tool-promo h3 { color: #fff; font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 8px; }
.tool-promo p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 20px; }
.tool-promo a { display: inline-block; background: #fff; color: var(--ga-red); padding: 13px 30px; border-radius: var(--radius-sm); font-weight: 800; font-size: 15px; text-decoration: none; transition: opacity 0.2s; }
.tool-promo a:hover { opacity: 0.9; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .calc-card { margin-bottom: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .compare-section { padding: 32px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .hero { padding: 52px 20px 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .compare-section { padding: 24px 18px; overflow-x: auto; }
}
