/* ============================================================
   EMI Calculator India — Stackaris
   Single optimized stylesheet | No duplicates | CSS Variables
   ============================================================ */

/* ── Root Design Tokens ─────────────────────────────────── */
:root {
  --brand:       #2563eb;
  --brand-dark:  #1d4ed8;
  --brand-light: #eff6ff;
  --accent:      #0ea5e9;
  --success:     #10b981;
  --warning:     #f59e0b;
  --danger:      #ef4444;
  --bg:          #f8fafc;
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --text:        #0f172a;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --transition:  .18s ease;
  --max-w:       1140px;
  --gap:         24px;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
table { border-collapse: collapse; width: 100%; }
button { font-family: var(--font); cursor: pointer; }

/* ── Layout Utilities ───────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.grid-3   { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.flex     { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.gap-sm   { gap: 8px; }
.gap      { gap: var(--gap); }
.mt-sm    { margin-top: 8px; }
.mt       { margin-top: 16px; }
.mt-lg    { margin-top: 32px; }
.mb       { margin-bottom: 16px; }
.mb-lg    { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--text-muted); }
.text-small  { font-size: .875rem; }
.text-xs     { font-size: .75rem; }
.fw-600  { font-weight: 600; }
.fw-700  { font-weight: 700; }
.hidden  { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Card ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--gap);
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  padding: 10px 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); text-decoration: none; }
.breadcrumb span + span::before { content: ' › '; margin: 0 4px; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #0ea5e9 100%);
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__badge .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.hero__sub {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 540px;
  margin: 0 auto 20px;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero__stat strong { display: block; font-size: 1.35rem; font-weight: 800; }
.hero__stat span   { font-size: .78rem; opacity: .75; letter-spacing: .3px; }

/* ── Ad Slot ───────────────────────────────────────────────── */
.ad-slot {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--text-light);
  font-size: .72rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px;
  overflow: hidden;
}
.ad-slot--top    { min-height: 90px;  display: flex; align-items: center; justify-content: center; }
.ad-slot--mid    { min-height: 280px; display: flex; align-items: center; justify-content: center; }
.ad-slot--bottom { min-height: 90px;  display: flex; align-items: center; justify-content: center; }

/* ── Main Layout ─────────────────────────────────────────── */
.calc-section { padding: 36px 0 48px; }
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* ── Calculator Form ─────────────────────────────────────── */
.calc-form { display: flex; flex-direction: column; gap: 20px; }

.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.input-group label .lbl-icon { font-size: 1rem; }

.input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.input-prefix, .input-suffix {
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.num-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -moz-appearance: textfield;
}
.num-input::-webkit-inner-spin-button,
.num-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.num-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.num-input.error { border-color: var(--danger); }

.err-msg {
  font-size: .75rem;
  color: var(--danger);
  display: none;
  margin-top: -4px;
}
.input-group.has-error .err-msg { display: block; }

.range-wrap { position: relative; padding: 4px 0 2px; }
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--brand) 0%, var(--brand) var(--pct, 30%), var(--border) var(--pct, 30%), var(--border) 100%);
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid #fff;
  box-shadow: 0 1px 6px rgba(37,99,235,.4);
  cursor: grab;
  transition: transform .1s;
}
.slider::-webkit-slider-thumb:active { transform: scale(1.2); cursor: grabbing; }
.slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid #fff;
  box-shadow: 0 1px 6px rgba(37,99,235,.4);
  cursor: grab;
}
.range-labels { display: flex; justify-content: space-between; font-size: .72rem; color: var(--text-light); margin-top: 4px; }

.tenure-row { display: flex; align-items: center; gap: 10px; }
.toggle-btns {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.toggle-btn {
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.toggle-btn.active {
  background: var(--brand);
  color: #fff;
}

.btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.4); }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-outline:hover { background: var(--brand-light); }
.btn-ghost {
  background: var(--bg);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-icon { font-size: 1rem; line-height: 1; }

.result-box {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.result-emi {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.result-emi .lbl { font-size: .8rem; opacity: .8; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 6px; }
.result-emi .amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}
.result-emi .per { font-size: .78rem; opacity: .7; margin-top: 4px; }

.result-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.result-card .r-lbl { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.result-card .r-val { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.result-card.highlight .r-val { color: var(--danger); }
.result-card.success-card .r-val { color: var(--success); }

.donut-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.donut-wrap h3 { font-size: .9rem; font-weight: 700; margin-bottom: 14px; }
.donut-svg-wrap { position: relative; display: inline-block; }
.donut-svg-wrap svg { display: block; }
.donut-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  pointer-events: none;
}
.donut-center .d-pct { font-size: 1.35rem; font-weight: 800; color: var(--text); }
.donut-center .d-lbl { font-size: .65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; }

.donut-legend { display: flex; justify-content: center; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--text-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.share-row { display: flex; gap: 8px; }
.share-row .btn { flex: 1; justify-content: center; padding: 9px 12px; font-size: .8rem; }

.chart-section { margin-top: 32px; }
.chart-section .card-title { margin-bottom: 20px; }
.bar-chart { overflow-x: auto; }
.bar-chart-inner { min-width: 420px; }
.chart-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: .78rem;
}
.chart-row .yr-lbl { width: 44px; color: var(--text-muted); flex-shrink: 0; text-align: right; }
.chart-bar-wrap { flex: 1; height: 22px; background: #f1f5f9; border-radius: 4px; overflow: hidden; position: relative; }
.chart-bar-p { height: 100%; background: var(--brand); border-radius: 4px; transition: width .5s ease; }
.chart-bar-i { position: absolute; top: 0; height: 100%; background: #fca5a5; border-radius: 0 4px 4px 0; transition: width .5s ease; }
.chart-row .bar-amt { width: 90px; color: var(--text-muted); text-align: right; flex-shrink: 0; }

.amort-section { margin-top: 32px; }
.table-controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.view-toggle { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.view-btn { padding: 7px 14px; font-size: .8rem; font-weight: 600; border: none; background: transparent; color: var(--text-muted); cursor: pointer; }
.view-btn.active { background: var(--brand); color: #fff; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.amort-table { min-width: 560px; font-size: .84rem; }
.amort-table thead { background: #f1f5f9; }
.amort-table th {
  padding: 11px 14px;
  font-weight: 700;
  text-align: right;
  color: var(--text);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.amort-table th:first-child { text-align: left; }
.amort-table td {
  padding: 10px 14px;
  text-align: right;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text);
}
.amort-table td:first-child { text-align: left; font-weight: 600; }
.amort-table tbody tr:last-child td { border-bottom: none; }
.amort-table tbody tr:nth-child(even) td { background: #fafbfc; }
.amort-table .total-row td { font-weight: 700; background: #f1f5f9 !important; border-top: 2px solid var(--border); }
.amort-table .principal-col { color: var(--brand); font-weight: 600; }
.amort-table .interest-col  { color: var(--danger); }
.load-more-wrap { text-align: center; margin-top: 14px; }

.offers-section { margin-top: 32px; }
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.offer-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.offer-logo { height: 28px; font-size: 1.1rem; font-weight: 800; color: var(--brand); }
.offer-rate { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.offer-rate span { font-size: .78rem; color: var(--text-muted); font-weight: 400; }
.offer-tag {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: .7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.offer-link { margin-top: auto; }
.offer-link .btn { width: 100%; justify-content: center; font-size: .82rem; padding: 9px; }

.related-section { margin-top: 32px; padding: 32px 0; background: var(--surface); border-top: 1px solid var(--border); }
.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tool-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--transition);
  text-decoration: none;
}
.tool-card:hover { border-color: var(--brand); background: var(--brand-light); color: var(--brand); text-decoration: none; }
.tool-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.tool-info { font-size: .875rem; font-weight: 600; }
.tool-info span { display: block; font-size: .72rem; font-weight: 400; color: var(--text-muted); margin-top: 1px; }

.seo-section { padding: 48px 0; }
.seo-content { max-width: 820px; }
.seo-content h2 { font-size: 1.45rem; font-weight: 700; color: var(--text); margin: 36px 0 12px; }
.seo-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.seo-content p  { color: #374151; line-height: 1.75; margin-bottom: 14px; }
.seo-content ul, .seo-content ol { color: #374151; line-height: 1.75; margin-bottom: 14px; }
.seo-content li { margin-bottom: 6px; }
.seo-content strong { color: var(--text); }

.seo-table { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin: 18px 0; font-size: .875rem; }
.seo-table th { background: #f1f5f9; padding: 10px 14px; text-align: left; font-weight: 700; border-bottom: 1px solid var(--border); }
.seo-table td { padding: 10px 14px; border-bottom: 1px solid #f1f5f9; }
.seo-table tr:last-child td { border-bottom: none; }
.seo-table tr:nth-child(even) td { background: #fafbfc; }

.formula-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 18px 0;
}
.formula-box code {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #0c4a6e;
  line-height: 1.8;
}

.highlight-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 18px 0;
  font-size: .9rem;
  color: #78350f;
}

.tip-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--success);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 18px 0;
  font-size: .9rem;
  color: #14532d;
}

.faq-section { margin: 36px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--surface);
  border: none;
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-q:hover { background: #f8fafc; }
.faq-q.open { background: var(--brand-light); color: var(--brand); }
.faq-icon { font-size: 1.2rem; font-weight: 300; transition: transform var(--transition); flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: var(--surface);
  font-size: .9rem;
  color: #374151;
  line-height: 1.7;
  padding: 0 20px;
}
.faq-a.open { max-height: 400px; padding: 14px 20px 18px; }

.cta-section {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  text-align: center;
  padding: 48px 20px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.cta-section h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.cta-section p  { opacity: .85; margin-bottom: 24px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--brand); font-weight: 700; }
.btn-white:hover { background: #f0f9ff; }
.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.footer-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
}
.footer-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.footer-links a { color: var(--text-muted); font-size: .78rem; }
.footer-links a:hover { color: var(--brand); }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1e293b;
  color: #fff;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  z-index: 9999;
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.fade-in { animation: fadeIn .35s ease forwards; }

.count-up { transition: all .3s ease; }
.pulse { animation: pulse .6s ease; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

@media (max-width: 1024px) {
  .calc-layout { grid-template-columns: 1fr; }
  .result-box  { position: static; }
  .result-breakdown { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  :root { --gap: 16px; }
  .hero { padding: 32px 0 28px; }
  .hero h1 { font-size: 1.75rem; }
  .hero__stats { gap: 20px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .tools-grid  { grid-template-columns: 1fr 1fr; }
  .result-breakdown { grid-template-columns: 1fr 1fr; }
  .calc-section { padding: 24px 0 32px; }
  .seo-content h2 { font-size: 1.2rem; }
  .table-controls { flex-direction: column; align-items: flex-start; }
  .btn-row { gap: 8px; }
  .btn { padding: 9px 14px; font-size: .82rem; }
  .share-row .btn { padding: 8px 10px; font-size: .76rem; }
}
@media (max-width: 480px) {
  .tools-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 10px; }
  .result-breakdown { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media print {
  .hero, .ad-slot, .offers-section, .related-section, .cta-section, .footer-strip { display: none; }
  .result-box { position: static; }
  body { background: #fff; }
  .card { box-shadow: none; border: 1px solid #ddd; }
}
