/* CertifiedPetSupport — premium design system
   Navy + gold trust palette. Mobile-first. No emoji.
*/

:root {
  --navy: #1B2B4B;
  --navy-700: #243a64;
  --navy-50: #f0f4f8;
  --gold: #C9A84C;
  --gold-soft: #f7f0db;
  --bg: #F8F9FA;
  --white: #FFFFFF;
  --text: #1a1a2e;
  --text-soft: #4a5568;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(27, 43, 75, 0.04), 0 1px 3px rgba(27, 43, 75, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(27, 43, 75, 0.08), 0 2px 4px -2px rgba(27, 43, 75, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(27, 43, 75, 0.10), 0 4px 6px -4px rgba(27, 43, 75, 0.08);
  --radius: 6px;
  --max: 1180px;

  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

.label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ───────────── Top banner bar ───────────── */
.banner-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 16px;
}
.banner-bar strong { color: var(--gold); font-weight: 600; }
.banner-bar span { display: inline-block; margin: 0 10px; }
.banner-bar span + span::before {
  content: '·'; color: var(--gold); margin-right: 18px;
}

/* ───────────── Header / Nav ───────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}
.brand small {
  display: block;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-top: 2px;
}

.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.site-nav a:hover { color: var(--navy); }
.site-nav .nav-cta { margin-left: 8px; }

@media (max-width: 880px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .site-header-inner { height: 64px; }
  .brand small { display: none; }
}

/* ───────────── Buttons ───────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  text-decoration: none !important;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #b89638;
  border-color: #b89638;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-large { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ───────────── Section helpers ───────────── */
section { padding: 88px 0; }
section.bg-soft { background: var(--bg); }
section.bg-navy { background: var(--navy); color: var(--white); }
section.bg-navy h1, section.bg-navy h2, section.bg-navy h3 { color: var(--white); }
section.bg-light-blue { background: #F0F4F8; }

@media (max-width: 720px) { section { padding: 56px 0; } }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .label { display: block; margin-bottom: 12px; }
.section-head h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 16px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head p { color: var(--text-soft); font-size: 1.1rem; margin: 0; }

/* ───────────── Hero ───────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(27, 43, 75, 0.92), rgba(27, 43, 75, 0.78)),
    linear-gradient(135deg, #2a3f6b 0%, #1B2B4B 50%, #131e36 100%);
  color: var(--white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201, 168, 76, 0.08), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero .label { color: var(--gold); display: block; margin-bottom: 18px; }
.hero h1 {
  color: var(--white);
  margin: 0 auto 20px;
  max-width: 880px;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
}
.hero-trust .check::before { content: '✓'; }

/* ───────────── Trust badges row ───────────── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid var(--gold);
}
.trust-badge-label { font-size: 0.86rem; color: var(--text-soft); font-weight: 500; }
.trust-badge-label strong { color: var(--text); display: block; font-size: 0.92rem; }
@media (max-width: 720px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }

/* ───────────── How it works (3-step) ───────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-soft); margin: 0; }
@media (max-width: 720px) { .steps-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ───────────── Package cards ───────────── */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pkg:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pkg-popular {
  border-color: var(--gold);
  box-shadow: 0 12px 28px -8px rgba(201, 168, 76, 0.32);
}
.pkg-popular::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.pkg-tagline { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 16px; }
.pkg-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  font-weight: 700;
}
.pkg-price small {
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}
.pkg-features { list-style: none; padding: 0; margin: 24px 0; flex: 1; }
.pkg-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-left: 26px;
}
.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 11px;
  color: var(--gold);
  font-weight: 700;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg .btn { width: 100%; text-align: center; margin-top: 8px; }
@media (max-width: 880px) { .packages { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ───────────── Benefit cards (4-up) ───────────── */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.benefit h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit p { color: var(--text-soft); margin: 0; font-size: 0.95rem; }
@media (max-width: 720px) { .benefits { grid-template-columns: repeat(2, 1fr); } }

/* ───────────── Testimonials ───────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.testimonial-quote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.testimonial-meta { font-size: 0.82rem; color: var(--text-soft); }
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }

/* ───────────── State grid ───────────── */
.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.state-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.state-card:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--navy);
}
.state-card-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.state-card-arrow { color: var(--gold); font-size: 1.2rem; }
@media (max-width: 720px) { .state-grid { grid-template-columns: 1fr 1fr; } }

/* ───────────── FAQ ───────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 24px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s;
}
.faq details[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 14px 0 4px; color: var(--text-soft); }
.faq details p:last-child { margin-bottom: 0; }
.faq-category-head {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.4rem;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.faq-category-head:first-child { margin-top: 0; }

/* ───────────── Final CTA banner ───────────── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin: 0 auto 28px; max-width: 620px; }
.cta-banner .gold-text { color: var(--gold); }

/* ───────────── Footer ───────────── */
.site-footer {
  background: #0f1a31;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-grid a { color: rgba(255, 255, 255, 0.75); }
.footer-grid a:hover { color: var(--gold); }
.footer-brand { color: var(--white); font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.footer-tag { font-size: 0.86rem; line-height: 1.6; max-width: 320px; }
.footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 24px;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* ───────────── Content (long-form pages) ───────────── */
.content {
  padding: 72px 0;
}
.content-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.content h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 8px; }
.content .meta {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.content .lead {
  font-size: 1.18rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0 0 32px;
  font-style: italic;
}
.content h2 {
  margin-top: 44px;
  font-size: 1.6rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.content h3 { margin-top: 28px; font-size: 1.18rem; }
.content p { margin: 0 0 18px; }
.content ul, .content ol { padding-left: 24px; margin-bottom: 18px; }
.content li { margin-bottom: 6px; line-height: 1.7; }
.content blockquote {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  padding: 18px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
}

.callout {
  background: var(--navy-50);
  border-left: 4px solid var(--navy);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.callout strong { color: var(--navy); }

.warning-callout {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.inline-cta {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: 10px;
  text-align: center;
  margin: 36px 0;
}
.inline-cta h3 { color: var(--white); margin-bottom: 8px; }
.inline-cta p { color: rgba(255, 255, 255, 0.85); margin-bottom: 18px; }

/* ───────────── Comparison table ───────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 24px 0;
  font-size: 0.95rem;
}
.comparison-table th, .comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: var(--bg); }
.comparison-table .yes { color: #16a34a; font-weight: 700; }
.comparison-table .no { color: #dc2626; font-weight: 700; }

/* ───────────── Timeline (how-it-works visual) ───────────── */
.timeline {
  position: relative;
  margin: 48px 0;
  padding-left: 32px;
  border-left: 3px solid var(--gold);
}
.timeline-step {
  position: relative;
  padding: 0 0 36px 0;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-time {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline-step h3 { margin: 0 0 6px; }
.timeline-step p { color: var(--text-soft); margin: 0; }

/* ───────────── Document mockups (CSS only) ───────────── */
.doc-preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.doc-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 0.77;
  position: relative;
}
.doc-preview-page {
  width: 100%;
  height: 100%;
  background: var(--white);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  font-size: 6px;
  line-height: 1.3;
  color: var(--text-soft);
}
.doc-preview-header {
  border-bottom: 1px solid var(--navy);
  padding-bottom: 6px;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 7px;
}
.doc-preview-line {
  height: 4px;
  background: var(--border);
  margin-bottom: 4px;
  border-radius: 2px;
}
.doc-preview-line.short { width: 60%; }
.doc-preview-line.medium { width: 80%; }
.doc-preview-stamp {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  color: var(--gold);
  font-weight: 700;
  font-size: 6px;
}
.doc-preview-label {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
}
@media (max-width: 720px) { .doc-preview-row { grid-template-columns: 1fr; } }

/* ───────────── Blog grid ───────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201, 168, 76, 0.2), transparent 60%);
}
.blog-card-image span { position: relative; padding: 0 16px; text-align: center; line-height: 1.2; font-size: 0.95rem; }
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-cat {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 1.18rem;
  margin: 0 0 10px;
  line-height: 1.35;
}
.blog-card-excerpt { color: var(--text-soft); font-size: 0.95rem; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.blog-card-link { color: var(--navy); font-weight: 600; }
.blog-card-link:hover { color: var(--gold); }

.blog-sidebar h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.blog-sidebar ul { list-style: none; padding: 0; margin: 0 0 32px; }
.blog-sidebar li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.blog-sidebar li:last-child { border-bottom: none; }
.blog-sidebar a { color: var(--text); font-size: 0.95rem; }
.blog-sidebar a:hover { color: var(--gold); }
@media (max-width: 880px) {
  .blog-layout { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ───────────── Money-back / guarantee ───────────── */
.guarantee-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.guarantee-seal {
  flex-shrink: 0;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  border: 4px double var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.guarantee-seal strong { display: block; font-size: 1.2rem; margin-bottom: 2px; }
.guarantee-content h3 { margin: 0 0 8px; }
.guarantee-content p { margin: 0; color: var(--text-soft); }
@media (max-width: 720px) {
  .guarantee-box { flex-direction: column; text-align: center; padding: 28px 20px; }
}

/* ───────────── Misc utility ───────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.section-cta { text-align: center; margin-top: 40px; }
