/* VAT-Scan — Main Stylesheet */

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

:root {
  --blue:    #1d4ed8;
  --blue-dk: #1e3a8a;
  --blue-lt: #dbeafe;
  --accent:  #2563eb;
  --green:   #16a34a;
  --red:     #dc2626;
  --gray-50: #f9fafb;
  --gray-100:#f3f4f6;
  --gray-200:#e5e7eb;
  --gray-500:#6b7280;
  --gray-700:#374151;
  --gray-900:#111827;
  --white:   #ffffff;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,.09);
  --shadow-sm: 0 1px 6px rgba(0,0,0,.07);
  --max-w:   1160px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

/* ── NAV ── */
nav {
  background: var(--blue-dk);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 24px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo span { color: #60a5fa; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: #cbd5e1;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.12); color: var(--white); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-dk) 0%, #1e40af 60%, #1d4ed8 100%);
  padding: 64px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::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.03'%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");
}
.hero-inner { max-width: 680px; margin: 0 auto; position: relative; }
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: #93c5fd; }
.hero p {
  color: #bfdbfe;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.badge-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #e0f2fe;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
}

/* ── CHECKER CARD ── */
.checker-wrap {
  max-width: var(--max-w);
  margin: -36px auto 40px;
  padding: 0 24px;
}
.checker-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
  padding: 36px 40px;
  border: 1px solid var(--gray-200);
}
.checker-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.checker-card > p { color: var(--gray-500); margin-bottom: 24px; font-size: .9rem; }

.input-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .8rem; font-weight: 600; color: var(--gray-700); text-transform: uppercase; letter-spacing: .5px; }
.field select, .field input[type=text] {
  height: 48px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .15s;
  outline: none;
}
.field select { max-width: 140px; cursor: pointer; }
.field select:focus, .field input[type=text]:focus { border-color: var(--accent); }
.btn-check {
  height: 48px;
  padding: 0 28px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-check:hover { background: var(--blue-dk); }
.btn-check:active { transform: scale(.97); }
.btn-check:disabled { opacity: .6; cursor: not-allowed; }

/* Result */
#result-box { margin-top: 24px; }
.result-card {
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  animation: fadeIn .3s ease;
}
.result-card.valid   { background: #f0fdf4; border: 2px solid #86efac; }
.result-card.invalid { background: #fef2f2; border: 2px solid #fca5a5; }
.result-card.error   { background: #fffbeb; border: 2px solid #fcd34d; }
.result-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.result-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.result-body .meta { font-size: .88rem; color: var(--gray-700); line-height: 1.7; }
.result-body .meta strong { color: var(--gray-900); }
.valid   .result-body h3 { color: var(--green); }
.invalid .result-body h3 { color: var(--red); }
.error   .result-body h3 { color: #92400e; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.spinner {
  width: 22px; height: 22px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 24px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── AD SLOTS ── */
.ad-leaderboard { text-align: center; margin: 8px 0; min-height: 90px; background: var(--gray-50); border: 1px dashed var(--gray-200); display: flex; align-items: center; justify-content: center; }
.ad-leaderboard ins { display: block; width: 100%; }
.ad-rectangle { min-height: 250px; background: var(--gray-50); border: 1px dashed var(--gray-200); display: flex; align-items: center; justify-content: center; }

/* ── CONTENT LAYOUT ── */
.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.content-main h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 40px 0 12px;
  color: var(--gray-900);
  letter-spacing: -.3px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--gray-700); margin-bottom: 14px; line-height: 1.75; }
.content-main ul { padding-left: 20px; color: var(--gray-700); }
.content-main li { margin-bottom: 8px; line-height: 1.7; }

.sidebar { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 14px; color: var(--gray-900); }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card li { padding: 6px 0; border-bottom: 1px solid var(--gray-200); font-size: .875rem; }
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card li a { color: var(--accent); font-weight: 500; }

/* ── COUNTRY TABLE ── */
.country-table { width: 100%; border-collapse: collapse; font-size: .875rem; margin: 20px 0; }
.country-table th { background: var(--blue); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; }
.country-table td { padding: 9px 14px; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.country-table tr:nth-child(even) td { background: var(--gray-50); }
.country-table code { background: var(--gray-100); padding: 2px 6px; border-radius: 4px; font-size: .8rem; }

/* ── CARDS GRID ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin: 24px 0; }
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.info-card .icon { font-size: 1.6rem; margin-bottom: 10px; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.info-card p { font-size: .875rem; color: var(--gray-500); }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: .8rem; color: var(--gray-500); padding: 16px 24px; max-width: var(--max-w); margin: 0 auto; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HEADER ── */
.page-header { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 36px 24px; margin-bottom: 40px; }
.page-header-inner { max-width: var(--max-w); margin: 0 auto; }
.page-header h1 { font-size: 2rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.page-header p { color: var(--gray-500); font-size: 1.05rem; }

/* ── SECTION ── */
.section-alt { background: var(--gray-50); padding: 56px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-inner h2 { font-size: 1.65rem; font-weight: 800; letter-spacing: -.4px; margin-bottom: 8px; }
.section-inner > p { color: var(--gray-500); margin-bottom: 32px; }

/* ── FOOTER ── */
footer {
  background: var(--gray-900);
  color: #9ca3af;
  padding: 48px 24px 28px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px; margin-bottom: 40px; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #9ca3af; font-size: .875rem; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: .875rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; font-size: .8rem; }
.footer-logo { font-weight: 800; color: var(--white); font-size: 1.1rem; }
.footer-logo span { color: #60a5fa; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gray-900);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
  font-size: .875rem;
}
#cookie-banner a { color: #60a5fa; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-cookie-decline {
  background: transparent;
  color: #9ca3af;
  border: 1px solid #4b5563;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: .875rem;
  cursor: pointer;
}

/* ── FORM (contact) ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 560px; }
.contact-form .field input, .contact-form .field textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  outline: none; transition: border-color .15s;
}
.contact-form .field input:focus, .contact-form .field textarea:focus { border-color: var(--accent); }
.contact-form .field textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  align-self: flex-start;
  padding: 12px 28px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-submit:hover { background: var(--blue-dk); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0 !important; }
.prose p { margin-bottom: 14px; }
.prose h2 { margin: 36px 0 12px; font-size: 1.35rem; font-weight: 700; }
.prose h3 { margin: 24px 0 8px; font-size: 1.1rem; font-weight: 700; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; color: var(--gray-700); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .checker-card { padding: 24px 20px; }
  .input-row { flex-direction: column; }
  .field select { max-width: 100%; }
  .btn-check { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links a { padding: 6px 8px; font-size: .8rem; }
}
@media (max-width: 480px) {
  .hero { padding: 48px 16px 60px; }
  .checker-wrap { padding: 0 12px; }
  .checker-card { padding: 20px 16px; }
}


/* ═══════════════════════════════════════════════════════
   ADDITIONS — content pages, article layout, AdSense
   ═══════════════════════════════════════════════════════ */

/* ── ARTICLE LAYOUT ── */
.article-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.article-main { min-width: 0; }
.article-main h1 { font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 800; letter-spacing: -.4px; margin-bottom: 8px; line-height: 1.2; }
.article-main h2 { font-size: 1.35rem; font-weight: 700; margin: 36px 0 12px; color: var(--gray-900); letter-spacing: -.2px; }
.article-main h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 8px; }
.article-main p { color: var(--gray-700); margin-bottom: 16px; line-height: 1.8; }
.article-main ul, .article-main ol { padding-left: 22px; color: var(--gray-700); margin-bottom: 16px; }
.article-main li { margin-bottom: 8px; line-height: 1.75; }
.article-main a { color: var(--accent); }
.article-main code { background: var(--gray-100); padding: 2px 7px; border-radius: 4px; font-size: .85rem; }

.article-sidebar { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 20px; }

/* ── AUTHOR BOX ── */
.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 28px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.author-bio { font-size: .825rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 6px; }
.author-meta { font-size: .775rem; color: var(--gray-500); }

/* ── PAGE INTRO ── */
.intro { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 28px; line-height: 1.75; border-left: 3px solid var(--blue); padding-left: 16px; }

/* ── BREADCRUMB (article style) ── */
.article-breadcrumb { font-size: .8rem; color: var(--gray-500); margin-bottom: 16px; }
.article-breadcrumb a { color: var(--gray-500); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--accent); }
.article-breadcrumb span { margin: 0 6px; }

/* ── COUNTRY SUMMARY BOX ── */
.country-summary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  background: var(--blue-lt);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0 32px;
}
.summary-item { display: flex; flex-direction: column; gap: 3px; }
.summary-item span { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--blue); }
.summary-item strong { font-size: .95rem; color: var(--gray-900); }

/* ── FAQ ── */
.faq-section { margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--gray-900); }
.faq-item p { color: var(--gray-700); line-height: 1.8; margin-bottom: 10px; }
.faq-item p:last-child { margin-bottom: 0; }

/* ── GUIDE CARDS (index page) ── */
.guide-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.guide-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s;
}
.guide-card:hover { box-shadow: var(--shadow); }
.guide-card h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.guide-card h2 a { color: var(--gray-900); text-decoration: none; }
.guide-card h2 a:hover { color: var(--accent); }
.guide-card p { color: var(--gray-500); font-size: .9rem; margin-bottom: 12px; }
.read-more { font-size: .875rem; font-weight: 600; color: var(--accent); }

/* ── GLOSSARY ── */
.glossary { margin-top: 8px; }
.glossary dt {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.glossary dt:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.glossary dd { color: var(--gray-700); margin: 8px 0 0 0; line-height: 1.8; }

/* ── VAT RATES TABLE ── */
.table-wrapper { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--gray-200); }
.vat-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.vat-table th { background: var(--blue); color: var(--white); padding: 11px 16px; text-align: left; font-weight: 600; white-space: nowrap; }
.vat-table td { padding: 9px 16px; border-bottom: 1px solid var(--gray-200); }
.vat-table tr:last-child td { border-bottom: none; }
.vat-table tr:nth-child(even) td { background: var(--gray-50); }
.vat-table a { color: var(--accent); font-weight: 500; }

/* ── CALCULATOR ── */
.calc-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  margin: 24px 0 32px;
}
.calc-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.calc-row label { font-size: .8rem; font-weight: 600; color: var(--gray-700); text-transform: uppercase; letter-spacing: .5px; }
.calc-row select, .calc-row input[type=number] {
  height: 48px; border: 2px solid var(--gray-200); border-radius: 8px;
  padding: 0 14px; font-size: 1rem; background: var(--white);
  max-width: 400px; outline: none; transition: border-color .15s;
}
.calc-row select:focus, .calc-row input:focus { border-color: var(--accent); }
.calc-buttons { display: flex; gap: 10px; }
.btn-primary { height: 48px; padding: 0 24px; background: var(--blue); color: var(--white); border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; }
.btn-primary:hover { background: var(--blue-dk); }
.btn-secondary { height: 48px; padding: 0 24px; background: var(--white); color: var(--blue); border: 2px solid var(--blue); border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; }
.btn-secondary:hover { background: var(--blue-lt); }
.calc-results { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 20px; margin-top: 20px; }
.result-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: .95rem; }
.result-row:last-child { border-bottom: none; }
.result-row span { color: var(--gray-500); }
.result-row strong { color: var(--gray-900); font-size: 1rem; }
.result-total { margin-top: 4px; }
.result-total span { font-weight: 700; color: var(--gray-900); }
.result-total strong { font-size: 1.2rem; color: var(--blue); }

/* ── RELATED ARTICLES ── */
.related-articles {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 40px;
}
.related-articles h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.related-articles ul { list-style: none; padding: 0; }
.related-articles li { padding: 7px 0; border-bottom: 1px solid var(--gray-200); font-size: .9rem; }
.related-articles li:last-child { border-bottom: none; }
.related-articles a { color: var(--accent); font-weight: 500; }

/* ── CTA LINK ── */
.cta-link {
  display: inline-block;
  margin-top: 8px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
  font-size: .95rem;
}
.cta-link:hover { background: var(--blue-dk); }

/* ── SIDEBAR CTA ── */
.sidebar-cta {
  display: block;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
}
.sidebar-cta:hover { background: var(--blue-dk); text-decoration: none; }

/* ── COUNTRY LINKS LIST ── */
.country-links { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 8px; margin: 16px 0; }
.country-links li a { color: var(--accent); font-size: .9rem; font-weight: 500; }

/* ── AD SLOT INLINE ── */
.ad-slot-inline { margin: 36px 0; text-align: center; min-height: 90px; }

/* ── PAGE CONTENT (simple pages) ── */
.page-content { max-width: 860px; margin: 0 auto; padding: 48px 24px 80px; }
.page-content h1 { font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 800; letter-spacing: -.4px; margin-bottom: 8px; }
.page-content h2 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 10px; color: var(--gray-900); }
.page-content p { color: var(--gray-700); margin-bottom: 14px; line-height: 1.8; }

/* ── RESPONSIVE ARTICLE ── */
@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; display: none; }
}
@media (max-width: 600px) {
  .country-summary { grid-template-columns: 1fr 1fr; }
  .calc-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; }
}
