/* ============================================
   SS BENEFITS CALCULATOR — MAIN STYLESHEET
   Aesthetic: Editorial Finance / Refined Luxury
   ============================================ */

:root {
  --navy: #0d1b2a;
  --navy-mid: #1b2d42;
  --navy-light: #243447;
  --gold: #c9a84c;
  --gold-light: #e8c87a;
  --cream: #f5f0e8;
  --cream-dark: #ede6d8;
  --white: #ffffff;
  --text-dark: #0d1b2a;
  --text-mid: #3a4a5c;
  --text-light: #6b7a8d;
  --green: #2a7a4f;
  --green-light: #e8f5ee;
  --red-light: #fdf0f0;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.logo-icon { color: var(--gold); font-size: 1rem; }
.logo em { color: var(--gold-light); font-style: italic; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  font-weight: 400;
  transition: color var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  min-width: 70px;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.hero-ribbon {
  height: 32px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.calculator-section {
  padding: 72px 0;
  background: var(--cream);
}

.calc-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.calc-header {
  background: var(--navy);
  padding: 32px 40px;
  border-bottom: 4px solid var(--gold);
}

.calc-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.calc-header p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.calc-inputs {
  padding: 36px 40px;
  border-right: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.input-group select,
.input-group input[type="number"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.input-group select:focus,
.input-group input[type="number"]:focus {
  border-color: var(--gold);
  background: var(--white);
}

.input-prefix-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0dbd0;
  border: 1.5px solid #c8c3b8;
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0 14px;
  color: var(--text-mid);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}
.input-prefix-wrap input {
  flex: 1;
  width: 0;
  min-width: 0;
  padding: 11px 14px !important;
  border: 1.5px solid #c8c3b8;
  border-left: none !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  box-sizing: border-box;
}
.input-prefix-wrap input:focus {
  border-color: var(--gold) !important;
  background: var(--white);
}

.helper-text {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.4;
}

.btn-calculate {
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}
.btn-calculate:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-reset {
  background: none;
  color: var(--text-light);
  padding: 8px 0;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  transition: color var(--transition);
}
.btn-reset:hover { color: var(--text-dark); }

/* RESULTS */
.calc-results {
  padding: 36px 40px;
  background: var(--cream);
}

.results-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-light);
  gap: 16px;
}
.placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.2;
}

.results-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  border-left: 3px solid transparent;
}
.result-row strong { font-weight: 700; font-size: 1rem; }
.result-row.highlight { border-left-color: var(--gold); background: #fdf9f0; }
.result-row.highlight-green { border-left-color: var(--green); background: var(--green-light); }
.result-row.highlight-green strong { color: var(--green); }

.result-verdict {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}
.verdict-none { background: var(--green-light); color: var(--green); border-left: 4px solid var(--green); }
.verdict-partial { background: #fff8e8; color: #7a5c00; border-left: 4px solid var(--gold); }
.verdict-max { background: var(--red-light); color: #8b2020; border-left: 4px solid #c0392b; }

.result-formula-box {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.result-formula-box h4 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.result-formula-box p {
  margin-bottom: 4px;
  line-height: 1.6;
}

.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn-print {
  background: var(--white);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  font-weight: 600;
  transition: background var(--transition);
}
.btn-print:hover { background: var(--cream); }

.btn-blog-link {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background var(--transition);
}
.btn-blog-link:hover { background: var(--gold-light); color: var(--navy); }

.disclaimer {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.5;
  font-style: italic;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.step-formula {
  background: var(--navy);
  color: var(--gold-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: monospace;
  line-height: 1.5;
}

.threshold-table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.83rem;
  border: 1px solid var(--cream-dark);
}
.threshold-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 8px 12px;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}
.threshold-row.header {
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.threshold-row:last-child { border-bottom: none; }

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.step-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pub-link-box {
  text-align: center;
  margin-top: 40px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.pub-link-box a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ============================================
   VALUE ADD
   ============================================ */
.value-add {
  padding: 80px 0;
  background: var(--navy);
}
.value-add .section-header h2 { color: var(--white); }
.value-add .section-header p { color: rgba(255,255,255,0.65); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition), transform var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.value-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.faq-chevron {
  font-size: 1.3rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 400px;
  padding: 20px 24px;
}
.faq-answer p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   BLOG CTA
   ============================================ */
.blog-cta {
  padding: 64px 0;
  background: var(--gold);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.cta-text p {
  color: rgba(13,27,42,0.75);
  max-width: 560px;
  font-size: 0.98rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-mid);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

.footer-links h4 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   BLOG INDEX PAGE
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 64px 0 48px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
.page-hero-ribbon {
  height: 24px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.blog-grid-section {
  padding: 64px 0;
  background: var(--cream);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--text-light); text-decoration: underline; }
.breadcrumb span { color: var(--text-light); }

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

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

.blog-card-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: #7a5c00;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card-body p {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.btn-read-more {
  display: inline-block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-read-more:hover { color: var(--gold); }

/* ============================================
   BLOG POST PAGE
   ============================================ */
.post-hero {
  background: var(--navy);
  padding: 60px 0;
}
.post-hero .post-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  max-width: 760px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.post-hero .post-meta {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 60px 0 80px;
  align-items: start;
}

.post-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 2px solid var(--cream-dark);
}
.post-content h2:first-child { margin-top: 0; border-top: none; }

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 24px 0 10px;
}

.post-content p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.post-content ul, .post-content ol {
  margin: 0 0 16px 24px;
  color: var(--text-mid);
}
.post-content li { margin-bottom: 8px; font-size: 0.97rem; line-height: 1.65; }

.post-content strong { color: var(--text-dark); }

.post-content .placeholder-box {
  background: var(--cream);
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 28px;
  margin: 24px 0;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  font-size: 0.9rem;
}

.post-content .callout {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.93rem;
  border-left: 4px solid var(--gold);
  line-height: 1.65;
}
.post-content .callout strong { color: var(--gold-light); }

.post-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}
.post-cta-box p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 16px; }
.post-cta-box .btn-primary { font-size: 0.9rem; padding: 11px 24px; }

/* SIDEBAR */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}

.sidebar-widget h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.sidebar-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-widget li a {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.5;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid var(--cream);
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-widget li a:hover {
  color: var(--navy);
  padding-left: 6px;
}

.sidebar-cta {
  background: var(--navy);
  text-align: center;
}
.sidebar-cta h4 { color: var(--gold-light); }
.sidebar-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.sidebar-cta .btn-primary { width: 100%; text-align: center; display: block; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header, .hero, .how-it-works, .value-add, .faq-section, .blog-cta, .site-footer, .calc-inputs, .btn-print, .btn-blog-link, .result-actions { display: none !important; }
  .calc-results { padding: 0 !important; background: white !important; }
  .calc-wrapper { box-shadow: none !important; border: 1px solid #ccc !important; }
  body { font-size: 13px !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 160px; }
  .calc-body { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .steps-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .post-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 20px 24px; gap: 16px; z-index: 200; }
  .hamburger { display: block; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .blog-cards { grid-template-columns: 1fr; }
  .calc-inputs, .calc-results { padding: 24px 20px; }
  .post-content { padding: 28px 20px; }
}
