/* ══════════════════════════════════════════════════════════════════
   GiftVerify Gateway — Stylesheet
   Navy + Gold premium theme. Mobile-first. No build step.
   ══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────────────── */
:root {
  --navy-deep:  #0B1B3D;
  --navy-mid:   #1A365D;
  --navy-light: #2C4A7C;
  --gold:       #D4AF37;
  --gold-light: #E8C76A;
  --gold-soft:  #faf3dd;
  --white:      #ffffff;
  --off-white:  #F7F8FB;
  --gray-100:   #E7EAF1;
  --gray-200:   #d7dce6;
  --gray-500:   #6B7280;
  --gray-700:   #3b4252;
  --gray-900:   #0F172A;

  --radius:     12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(11,27,61,.06);
  --shadow-md:  0 8px 24px rgba(11,27,61,.10);
  --shadow-lg:  0 20px 60px rgba(11,27,61,.18);

  --container:  1120px;
  --transition: .2s ease;
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size:16px; line-height:1.6;
  color:var(--gray-900);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
a { color:inherit; text-decoration:none; }
img, svg { display:block; max-width:100%; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
ul { list-style:none; }

:focus-visible {
  outline:2px solid var(--gold);
  outline-offset:2px;
  border-radius:4px;
}

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

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 20px; border-radius:10px;
  font-size:14px; font-weight:700;
  transition:background var(--transition), transform .1s, box-shadow var(--transition);
  white-space:nowrap;
}
.btn:active { transform:scale(.98); }
.btn-sm { padding:9px 16px; font-size:13px; }
.btn-lg { padding:14px 26px; font-size:15px; }
.btn-block { width:100%; }

.btn-gold {
  background:var(--gold); color:var(--navy-deep);
  box-shadow:0 4px 14px rgba(212,175,55,.35);
}
.btn-gold:hover { background:var(--gold-light); box-shadow:0 6px 20px rgba(212,175,55,.45); transform:translateY(-1px); }

.btn-ghost {
  background:transparent; color:var(--white);
  border:1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.45); }

/* ── Navbar ──────────────────────────────────────────────────────── */
.navbar {
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(1.2) blur(10px);
  -webkit-backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow var(--transition), border-color var(--transition);
}
.navbar.scrolled {
  box-shadow:var(--shadow-sm);
  border-bottom-color:var(--gray-100);
}
.navbar-inner {
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; height:68px;
}
.brand {
  display:inline-flex; align-items:center; gap:10px;
  color:var(--navy-deep); font-weight:600;
}
.brand-mark {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:10px;
  background:linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  color:var(--gold);
  box-shadow:var(--shadow-sm);
}
.brand-name { font-size:18px; letter-spacing:-.01em; }
.brand-name strong { color:var(--gold); font-weight:800; }
.brand.light { color:var(--white); }
.brand.light .brand-mark { background:rgba(255,255,255,.08); }

.nav-links {
  display:none; align-items:center; gap:28px;
}
.nav-links a {
  font-size:14px; font-weight:500; color:var(--gray-700);
  transition:color var(--transition);
}
.nav-links a:hover { color:var(--navy-deep); }

.hamburger {
  display:inline-flex; padding:8px; border-radius:8px;
  color:var(--navy-deep);
}
.hamburger:hover { background:var(--gray-100); }

.mobile-menu {
  display:flex; flex-direction:column; gap:4px;
  padding:16px 24px 20px;
  background:var(--white);
  border-top:1px solid var(--gray-100);
  box-shadow:var(--shadow-sm);
}
.mobile-menu[hidden] { display:none !important; }
.mobile-menu a {
  padding:12px 4px; font-size:15px; font-weight:500;
  color:var(--gray-700); border-bottom:1px solid var(--gray-100);
}
.mobile-menu a:last-of-type { border-bottom:none; }
.mobile-menu .btn { margin-top:12px; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position:relative; overflow:hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color:var(--white);
  padding:72px 0 96px;
}
.hero-bg-glow {
  position:absolute; inset:auto -10% -40% auto;
  width:640px; height:640px; border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,.18), transparent 60%);
  pointer-events:none;
}
.hero-grid {
  position:relative;
  display:grid; grid-template-columns:1fr; gap:48px;
  align-items:center;
}
.hero-copy { max-width:560px; }

.pill {
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px; border-radius:999px;
  background:rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.35);
  color:var(--gold-light);
  font-size:12px; font-weight:600; letter-spacing:.02em;
  margin-bottom:20px;
}
.pill-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 3px rgba(212,175,55,.25);
}
.pill-emph {
  background:var(--gold-soft); border-color:var(--gold);
  color:var(--navy-deep); margin-right:8px; margin-bottom:0;
}

.hero-title {
  font-size:clamp(34px, 5.2vw, 54px);
  line-height:1.08; letter-spacing:-.02em; font-weight:800;
  margin-bottom:20px;
}
.hero-title .accent {
  background:linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub {
  font-size:17px; line-height:1.6;
  color:rgba(255,255,255,.78);
  margin-bottom:32px; max-width:520px;
}

.hero-cta-row {
  display:flex; flex-wrap:wrap; gap:12px;
  margin-bottom:28px;
}
.hero-microtrust {
  display:flex; flex-wrap:wrap; gap:20px;
  font-size:13px; color:rgba(255,255,255,.72);
}
.hero-microtrust li {
  display:inline-flex; align-items:center; gap:6px;
}
.check { color:var(--gold); font-weight:700; }

/* ── Hero visual (decorative card) ───────────────────────────────── */
.hero-visual {
  position:relative;
  min-height:320px;
  display:flex; justify-content:center; align-items:center;
}
.card-float {
  position:absolute; border-radius:22px;
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}
.card-float-back {
  width:78%; height:75%; top:-6%; right:-4%;
  transform:rotate(6deg);
}
.card-float-mid {
  width:82%; height:78%; top:2%; right:2%;
  transform:rotate(-3deg);
  background:linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.03));
  border-color:rgba(212,175,55,.22);
}
.premium-card {
  position:relative; z-index:2;
  width:100%; max-width:440px;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.45));
  border-radius:22px;
}

.chip {
  position:absolute; z-index:3;
  display:flex; align-items:center; gap:10px;
  padding:10px 14px;
  background:var(--white); color:var(--navy-deep);
  border-radius:12px;
  box-shadow:var(--shadow-md);
  font-size:12px;
}
.chip strong { display:block; font-size:13px; font-weight:700; }
.chip span   { color:var(--gray-500); font-size:11px; }
.chip-icon {
  width:30px; height:30px; border-radius:8px;
  background:#e6f6ed; color:#15803d;
  display:flex; align-items:center; justify-content:center;
}
.chip-icon-gold { background:var(--gold-soft); color:#b4862a; }
.chip-top { top:8%; left:-6%; }
.chip-bot { bottom:8%; right:-4%; }

/* ── Trust banner ────────────────────────────────────────────────── */
.trust-banner {
  background:var(--off-white);
  border-top:1px solid var(--gray-100);
  border-bottom:1px solid var(--gray-100);
  padding:20px 0;
}
.trust-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:14px;
}
.trust-cell {
  display:flex; align-items:center; gap:10px;
  font-size:13px; font-weight:600; color:var(--gray-700);
}
.trust-icon {
  width:32px; height:32px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
}
.icon-green  { background:#e6f6ed; color:#15803d; }
.icon-blue   { background:#e6effb; color:#1e40af; }
.icon-purple { background:#efeafa; color:#6d28d9; }
.icon-gold   { background:var(--gold-soft); color:#a6791e; }

/* ── Section headings ────────────────────────────────────────────── */
.section-tag {
  display:inline-block;
  font-size:11px; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color:var(--gold);
  margin-bottom:12px;
}
.section-tag.light { color:var(--gold-light); }
.section-title {
  font-size:clamp(26px, 3.6vw, 38px);
  line-height:1.2; font-weight:800; letter-spacing:-.015em;
  color:var(--navy-deep); margin-bottom:14px; max-width:760px;
}
.section-title.light { color:var(--white); }
.section-sub {
  font-size:16px; color:var(--gray-500);
  max-width:620px; line-height:1.65;
}
.section-sub.light { color:rgba(255,255,255,.72); }

/* ── Features grid ───────────────────────────────────────────────── */
.features { background:var(--white); }
.features-grid {
  display:grid; grid-template-columns:1fr; gap:20px;
  margin-top:44px;
}
.feature-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-sm);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:var(--gray-200);
}
.feature-icon {
  width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.feature-card h3 {
  font-size:18px; font-weight:700; color:var(--navy-deep);
  margin-bottom:8px;
}
.feature-card p { font-size:14px; color:var(--gray-500); line-height:1.65; }

/* reveal animation */
.reveal { opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
}

/* ── How it works ────────────────────────────────────────────────── */
.how {
  background:linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
  color:var(--white);
}
.steps-grid {
  display:grid; grid-template-columns:1fr; gap:20px;
  margin-top:44px; counter-reset:step;
}
.step-card {
  position:relative;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg);
  padding:28px;
  transition:transform var(--transition), border-color var(--transition), background var(--transition);
}
.step-card:hover {
  transform:translateY(-3px);
  border-color:rgba(212,175,55,.45);
  background:rgba(255,255,255,.06);
}
.step-num {
  position:absolute; top:20px; right:24px;
  font-size:34px; font-weight:800; letter-spacing:-.02em;
  color:rgba(212,175,55,.35);
}
.step-icon {
  width:44px; height:44px; border-radius:10px;
  background:rgba(212,175,55,.15); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.step-card h3 {
  font-size:17px; font-weight:700; margin-bottom:6px;
}
.step-card p { font-size:14px; color:rgba(255,255,255,.72); line-height:1.65; }

.how-disclaimer {
  margin-top:36px;
  display:flex; flex-wrap:wrap; align-items:center; gap:4px;
  padding:16px 20px;
  background:rgba(212,175,55,.08);
  border:1px solid rgba(212,175,55,.25);
  border-radius:var(--radius);
  color:rgba(255,255,255,.85);
  font-size:14px;
}

/* ── Trust block (Why Canadians) ─────────────────────────────────── */
.trust-block { background:var(--white); }
.trust-block-grid {
  display:grid; grid-template-columns:1fr; gap:40px;
}
.benefit-list {
  display:flex; flex-direction:column; gap:16px;
  margin-top:28px;
}
.benefit-list li {
  display:flex; gap:14px; align-items:flex-start;
  font-size:15px; color:var(--gray-700); line-height:1.6;
}
.benefit-list strong { color:var(--navy-deep); font-weight:700; }
.benefit-dot {
  flex-shrink:0; margin-top:6px;
  width:12px; height:12px; border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 4px var(--gold-soft);
}

.quote-card {
  background:linear-gradient(160deg, var(--off-white), var(--white));
  border:1px solid var(--gray-100);
  border-left:3px solid var(--gold);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-sm);
}
.quote-mark {
  font-family:'DM Serif Display', Georgia, serif;
  font-size:60px; line-height:1; color:var(--gold);
  margin-bottom:-10px;
}
.quote-text {
  font-size:17px; line-height:1.55; color:var(--navy-deep);
  margin-bottom:20px;
}
.quote-meta {
  display:flex; align-items:center; gap:12px;
  border-top:1px solid var(--gray-100); padding-top:16px;
}
.quote-avatar {
  width:40px; height:40px; border-radius:50%;
  background:var(--navy-deep); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:800; letter-spacing:.5px;
}
.quote-meta strong { display:block; font-size:14px; color:var(--navy-deep); }
.quote-meta span   { font-size:12px; color:var(--gray-500); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { background:var(--off-white); }
.faq-list {
  display:flex; flex-direction:column; gap:12px;
  margin-top:40px; max-width:820px;
}
.faq-item {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color:var(--gold);
  box-shadow:var(--shadow-sm);
}
.faq-item summary {
  list-style:none;
  padding:18px 22px;
  cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-size:15px; font-weight:600; color:var(--navy-deep);
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content:"";
  width:10px; height:10px;
  border-right:2px solid var(--gray-500);
  border-bottom:2px solid var(--gray-500);
  transform:rotate(45deg); transition:transform var(--transition), border-color var(--transition);
  flex-shrink:0;
}
.faq-item[open] summary::after {
  transform:rotate(-135deg);
  border-color:var(--gold);
}
.faq-body {
  padding:0 22px 20px;
  font-size:14px; color:var(--gray-500); line-height:1.7;
}
.faq-body a { color:var(--navy-mid); font-weight:600; border-bottom:1px solid var(--gray-200); }
.faq-body a:hover { border-color:var(--gold); }

/* ── Newsletter ──────────────────────────────────────────────────── */
.newsletter { background:var(--off-white); border-top:1px solid var(--gray-100); }
.newsletter-inner {
  display:flex; flex-direction:column; gap:24px;
  align-items:flex-start;
}
.newsletter .section-tag { color:var(--gold); }
.newsletter .section-title { margin-bottom:14px; }
.newsletter .section-sub { margin-bottom:0; }
@media (min-width:900px) {
  .newsletter-inner { flex-direction:row; justify-content:space-between; align-items:center; gap:48px; }
}

/* ── Final CTA strip ─────────────────────────────────────────────── */
.final-cta {
  background:
    radial-gradient(600px 280px at 20% 0%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color:var(--white);
  padding:64px 0;
}
.final-cta-inner {
  display:flex; flex-direction:column; gap:24px;
  align-items:flex-start;
}
.final-cta h2 {
  font-size:clamp(24px, 3.2vw, 32px);
  font-weight:800; letter-spacing:-.015em; margin-bottom:6px;
}
.final-cta p { color:rgba(255,255,255,.72); font-size:15px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  background:var(--navy-deep); color:rgba(255,255,255,.72);
  padding:64px 0 24px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display:grid; grid-template-columns:1fr; gap:36px;
  margin-bottom:40px;
}
.footer-brand p { font-size:14px; margin-top:12px; line-height:1.65; max-width:300px; }
.footer h4 {
  font-size:13px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--white);
  margin-bottom:16px;
}
.footer ul li { margin-bottom:10px; }
.footer a {
  font-size:14px; color:rgba(255,255,255,.72);
  transition:color var(--transition);
}
.footer a:hover { color:var(--gold); }
.footer-cta p { font-size:13px; margin-bottom:14px; }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:24px;
  display:flex; flex-direction:column; gap:10px;
  font-size:12px; color:rgba(255,255,255,.5);
  line-height:1.6;
}

/* ── Gift card directory ─────────────────────────────────────────── */
.cards-section { background:var(--off-white); }
.cards-grid {
  display:grid; grid-template-columns:1fr; gap:18px;
  margin-top:44px;
}
.gift-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:24px;
  display:flex; flex-direction:column; gap:14px;
  box-shadow:var(--shadow-sm);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.gift-card:hover {
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:var(--gold);
}
.gift-card-head { display:flex; flex-direction:column; gap:6px; }
.card-tag {
  align-self:flex-start;
  font-size:11px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--gold);
  background:var(--gold-soft);
  padding:4px 10px; border-radius:999px;
}
.gift-card h3 {
  font-size:18px; font-weight:700; color:var(--navy-deep);
  letter-spacing:-.01em;
}
.gift-card p {
  font-size:14px; color:var(--gray-500); line-height:1.6;
  flex:1;
}
.gift-card-actions {
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  padding-top:8px; border-top:1px solid var(--gray-100);
}
.btn-link {
  font-size:13px; font-weight:600; color:var(--navy-mid);
  border-bottom:1px solid transparent;
  transition:color var(--transition), border-color var(--transition);
}
.btn-link:hover { color:var(--navy-deep); border-color:var(--gold); }

.cards-disclaimer {
  margin-top:36px; padding:18px 22px;
  background:var(--white);
  border:1px solid var(--gray-200);
  border-left:3px solid var(--gold);
  border-radius:var(--radius);
  font-size:13px; color:var(--gray-700); line-height:1.65;
}
.cards-disclaimer code {
  font-family:ui-monospace, Menlo, monospace;
  background:var(--gray-100);
  padding:1px 6px; border-radius:4px;
  font-size:12px; color:var(--navy-deep);
}

.faq-body code {
  font-family:ui-monospace, Menlo, monospace;
  background:var(--gray-100);
  padding:1px 6px; border-radius:4px;
  font-size:12.5px; color:var(--navy-deep);
}

/* ── Sub-page layout ─────────────────────────────────────────────── */
.page-header {
  background:
    radial-gradient(900px 380px at 80% -10%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color:var(--white);
  padding:60px 0 50px;
  border-bottom:3px solid var(--gold);
}
.page-header .container { max-width:880px; }
.page-header .breadcrumb {
  display:flex; flex-wrap:wrap; align-items:center; gap:8px;
  font-size:13px; color:rgba(255,255,255,.65);
  margin-bottom:20px;
}
.page-header .breadcrumb a { color:rgba(255,255,255,.85); text-decoration:underline; text-decoration-color:rgba(255,255,255,.2); }
.page-header .breadcrumb a:hover { text-decoration-color:var(--gold); color:var(--white); }
.page-header h1 {
  font-size:clamp(28px, 4.2vw, 44px);
  line-height:1.15; letter-spacing:-.02em; font-weight:800;
  margin-bottom:12px;
}
.page-header .lead {
  font-size:16px; color:rgba(255,255,255,.78); line-height:1.6;
  max-width:680px;
}
.page-header .meta {
  display:flex; flex-wrap:wrap; gap:14px;
  margin-top:20px; padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:12px; color:rgba(255,255,255,.55);
}
.page-header .meta strong { color:rgba(255,255,255,.85); font-weight:600; }

.page-content {
  padding:60px 0 80px;
  background:var(--white);
}
.page-content .container { max-width:780px; }

.prose { color:var(--gray-700); font-size:16px; line-height:1.75; }
.prose h2 {
  font-size:24px; line-height:1.3; font-weight:700;
  color:var(--navy-deep);
  margin:36px 0 14px;
  padding-bottom:8px; border-bottom:1px solid var(--gray-100);
}
.prose h2:first-child { margin-top:0; }
.prose h3 {
  font-size:18px; line-height:1.4; font-weight:700;
  color:var(--navy-mid);
  margin:28px 0 10px;
}
.prose p   { margin-bottom:16px; }
.prose ul, .prose ol { margin:0 0 18px 22px; }
.prose li  { margin-bottom:8px; padding-left:4px; }
.prose a   { color:var(--navy-mid); font-weight:600; border-bottom:1px solid var(--gray-200); }
.prose a:hover { border-color:var(--gold); }
.prose code {
  font-family:ui-monospace, Menlo, monospace;
  background:var(--gray-100);
  padding:1px 6px; border-radius:4px;
  font-size:14px; color:var(--navy-deep);
}
.prose strong { color:var(--navy-deep); font-weight:700; }
.prose blockquote {
  margin:20px 0; padding:16px 20px;
  background:var(--off-white);
  border-left:3px solid var(--gold);
  border-radius:0 var(--radius) var(--radius) 0;
  font-size:15px; color:var(--gray-700);
}
.prose .callout {
  margin:24px 0; padding:18px 22px;
  background:var(--gold-soft);
  border:1px solid var(--gold);
  border-radius:var(--radius);
  font-size:15px; color:var(--navy-deep); line-height:1.65;
}
.prose .callout strong { display:block; margin-bottom:4px; color:var(--navy-deep); }
.prose hr {
  border:none; border-top:1px solid var(--gray-100);
  margin:36px 0;
}
.prose table {
  width:100%; border-collapse:collapse;
  margin:20px 0; font-size:14.5px;
}
.prose th, .prose td {
  padding:10px 14px; text-align:left;
  border-bottom:1px solid var(--gray-100);
}
.prose th {
  background:var(--off-white); color:var(--navy-deep);
  font-weight:700; font-size:13px;
  text-transform:uppercase; letter-spacing:.05em;
}

/* CTA row inside prose */
.prose-cta {
  display:flex; flex-wrap:wrap; gap:12px;
  margin:24px 0 32px;
}

/* Related cards strip on detail pages */
.related-strip {
  background:var(--off-white);
  border-top:1px solid var(--gray-100);
  padding:48px 0;
}
.related-strip h2 {
  font-size:20px; font-weight:700; color:var(--navy-deep);
  margin-bottom:20px;
}
.related-grid {
  display:grid; grid-template-columns:1fr; gap:14px;
}
.related-grid a {
  display:block; padding:18px 20px;
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  transition:border-color var(--transition), transform var(--transition);
}
.related-grid a:hover { border-color:var(--gold); transform:translateY(-2px); }
.related-grid strong { display:block; color:var(--navy-deep); font-size:15px; margin-bottom:4px; }
.related-grid span { font-size:13px; color:var(--gray-500); }

/* ── Breakpoint: Tablet ──────────────────────────────────────────── */
@media (min-width:768px) {
  .trust-grid         { grid-template-columns:repeat(4,1fr); }
  .cards-grid         { grid-template-columns:repeat(2,1fr); }
  .related-grid       { grid-template-columns:repeat(2,1fr); }
  .features-grid      { grid-template-columns:repeat(3,1fr); }
  .steps-grid         { grid-template-columns:repeat(3,1fr); }
  .trust-block-grid   { grid-template-columns:1.1fr .9fr; align-items:center; }
  .footer-grid        { grid-template-columns:1.4fr 1fr 1fr 1.2fr; }
  .footer-bottom      { flex-direction:row; justify-content:space-between; align-items:center; }
  .final-cta-inner    { flex-direction:row; justify-content:space-between; align-items:center; }
  .nav-links          { display:flex; }
  .hamburger          { display:none; }
  .mobile-menu        { display:none !important; }
}

/* ── Breakpoint: Desktop ─────────────────────────────────────────── */
@media (min-width:1100px) {
  .hero               { padding:96px 0 120px; }
  .hero-grid          { grid-template-columns:1.05fr .95fr; gap:72px; }
  .cards-grid         { grid-template-columns:repeat(3,1fr); }
  .related-grid       { grid-template-columns:repeat(4,1fr); }
  .section            { padding:100px 0; }
}
