/* ================================================================
   Japan Visa Hub — Shared Styles
   Flat SaaS 2026 · Stripe / Linear inspired
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -.02em;
}
.brand-icon {
  width: 28px;
  height: 28px;
  background: #2563eb;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.03em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  text-decoration: none;
  color: #64748b;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background .15s, color .15s;
}
.nav-link:hover { color: #0f172a; background: #f1f5f9; }
.nav-link.active { color: #0f172a; background: #f1f5f9; font-weight: 600; }
.nav-cta {
  text-decoration: none;
  color: #fff;
  background: #2563eb;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  margin-left: 8px;
  transition: background .15s;
  letter-spacing: -.01em;
}
.nav-cta:hover { background: #1d4ed8; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 88px 0 80px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.1;
  color: #0f172a;
  margin: 0 0 18px;
}
.hero-sub {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 40px;
  letter-spacing: .005em;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -.01em;
  transition: background .15s, border-color .15s, transform .15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: #2563eb;
  color: #fff;
}
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }
.btn-secondary {
  background: #fff;
  color: #334155;
  border: 1px solid #e2e8f0;
}
.btn-secondary:hover { border-color: #cbd5e1; }

/* ── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 20px 0;
}
.stat { text-align: center; }
.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -.04em;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Section ────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-header { margin-bottom: 40px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 10px;
}
.section-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.035em;
  color: #0f172a;
  margin-bottom: 8px;
}
.section-sub { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── How it works ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.step {
  background: #fff;
  padding: 32px;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.step-desc { font-size: 13.5px; color: #64748b; line-height: 1.65; }

/* ── Feature cards ──────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color .15s, box-shadow .15s;
}
.feature-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37,99,235,.08);
}
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { color: #2563eb; }
.feature-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.feature-desc { font-size: 13px; color: #64748b; line-height: 1.6; }
.feature-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: #2563eb;
  margin-top: 14px;
  text-decoration: none;
}

/* ── Page header ────────────────────────────────────────────── */
.page-header {
  padding: 52px 0 44px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 10px;
}
.page-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #0f172a;
  margin-bottom: 10px;
}
.page-sub { font-size: 15px; color: #64748b; line-height: 1.65; max-width: 600px; }

/* ── News filters ───────────────────────────────────────────── */
.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-group { display: flex; gap: 6px; }
.filter-btn {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 12.5px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
  letter-spacing: .01em;
}
.filter-btn:hover { border-color: #94a3b8; color: #334155; }
.filter-btn.active { background: #0f172a; color: #fff; border-color: #0f172a; }
.news-count {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 500;
}

/* ── News cards ─────────────────────────────────────────────── */
.news-grid { display: flex; flex-direction: column; gap: 20px; }
.news-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 30px 36px;
  transition: border-color .15s;
}
.news-card:hover { border-color: #cbd5e1; }

/* Alert badge */
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.badge-high  { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.badge-medium{ background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.badge-low   { background: #f8fafc; color: #64748b; border: 1px solid #e2e8f0; }
.badge-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.badge-high   .badge-dot { background: #ef4444; }
.badge-medium .badge-dot { background: #f59e0b; }
.badge-low    .badge-dot { background: #94a3b8; }

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -.02em;
  line-height: 1.35;
  margin: 0 0 7px;
}
.card-meta {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: .02em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Section blocks inside card */
.card-block { margin-bottom: 22px; }
.block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}

/* Executive summary list */
.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-list li {
  font-size: 14px;
  color: #334155;
  line-height: 1.65;
  letter-spacing: .005em;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.summary-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Visa impact */
.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.impact-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: 3px 10px;
  letter-spacing: .005em;
}
.impact-detail {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  letter-spacing: .005em;
}

/* Source link */
.source-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  transition: color .15s;
}
.source-link:hover { color: #2563eb; }
.source-link svg { flex-shrink: 0; }

/* ── Skeleton loading ───────────────────────────────────────── */
.skeleton-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 30px 36px;
}
.skel {
  background: linear-gradient(90deg, #f1f5f9 25%, #e9eef5 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  border-radius: 5px;
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Empty / error state ────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 72px 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}
.empty-title { font-size: 16px; font-weight: 700; color: #334155; margin-bottom: 8px; }
.empty-desc { font-size: 14px; color: #94a3b8; line-height: 1.65; }

/* ── Visa guide cards ───────────────────────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.guide-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 32px;
}
.guide-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.guide-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.guide-card-sub { font-size: 12.5px; color: #94a3b8; }
.difficulty-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.diff-medium { background: #fffbeb; color: #b45309; }
.diff-hard   { background: #fef2f2; color: #dc2626; }
.diff-easy   { background: #f0fdf4; color: #15803d; }
.guide-req-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-req-list li {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.guide-req-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
  margin-top: 7px;
}
.guide-stay {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 12px;
  display: inline-block;
}

/* ── CTA box ────────────────────────────────────────────────── */
.cta-box {
  background: #0f172a;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
.cta-box h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}
.cta-box p { font-size: 15px; color: #94a3b8; line-height: 1.65; margin-bottom: 28px; }
.btn-white {
  background: #fff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.01em;
  transition: transform .15s;
}
.btn-white:hover { transform: translateY(-1px); }

/* ── Resource links ─────────────────────────────────────────── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.resource-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 28px;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .15s;
}
.resource-card:hover { border-color: #2563eb; }
.resource-org {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 5px;
}
.resource-title { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 5px; letter-spacing: -.01em; }
.resource-desc { font-size: 12.5px; color: #64748b; line-height: 1.55; }
.resource-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ── Disclaimer ─────────────────────────────────────────────── */
.disclaimer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
}
.disclaimer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 6px;
}
.disclaimer p { font-size: 13px; color: #1c1917; line-height: 1.7; margin: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 48px 0;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.footer-disc { font-size: 12.5px; color: #94a3b8; max-width: 400px; line-height: 1.65; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.footer-link { font-size: 13px; color: #64748b; text-decoration: none; font-weight: 500; }
.footer-link:hover { color: #2563eb; }

/* ── Result badge variants (used by assessment engine) ──────── */
.badge-pos  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.badge-neu  { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.badge-warn { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.badge-pos  .badge-dot { background: #22c55e; }
.badge-neu  .badge-dot { background: #f59e0b; }
.badge-warn .badge-dot { background: #ef4444; }

/* ── Assessment Engine ──────────────────────────────────────── */
html { scroll-behavior: smooth; }

#assessmentEngine {
  max-width: 680px;
  margin: 0 auto;
}
.ae-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}
.ae-progress-step { font-size: 11.5px; font-weight: 500; letter-spacing: .03em; color: #94a3b8; }
.ae-progress-pct  { font-size: 11.5px; font-weight: 600; color: #2563eb; }
.ae-bar-track {
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.ae-bar-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 2px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.ae-screen { position: relative; }
.ae-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 40px 44px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}
.ae-card.ae-out { opacity: 0; transform: translateY(-8px); }
.ae-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
  font-family: inherit;
  transition: color .15s;
}
.ae-back:hover { color: #2563eb; }
.ae-route-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 16px;
}
.ae-route-dot { width: 5px; height: 5px; border-radius: 50%; background: #2563eb; flex-shrink: 0; }
.ae-q-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 8px;
}
.ae-q-sub { font-size: 14px; color: #64748b; line-height: 1.65; margin-bottom: 40px; }
.ae-reqs {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 2px solid #2563eb;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.ae-reqs-title { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #2563eb; margin-bottom: 12px; }
.ae-reqs ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ae-reqs li { font-size: 13px; color: #475569; line-height: 1.5; display: flex; gap: 10px; }
.ae-reqs-bullet { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid #cbd5e1; flex-shrink: 0; margin-top: 1px; }
.ae-choices { display: flex; flex-direction: column; gap: 10px; }
.ae-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color .15s, background .15s;
  font-family: inherit;
}
.ae-choice:hover { border-color: #2563eb; background: #f8faff; }
.ae-choice:hover .ae-choice-arr { color: #2563eb; }
.ae-choice-body { flex: 1; }
.ae-choice-main { font-size: 14px; font-weight: 600; letter-spacing: -.01em; color: #0f172a; display: block; line-height: 1.5; }
.ae-choice-sub  { font-size: 12.5px; color: #94a3b8; display: block; margin-top: 7px; letter-spacing: .01em; }
.ae-choice-arr  { flex-shrink: 0; color: #cbd5e1; display: flex; align-items: center; transition: color .15s; }
.ae-r-header { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid #f1f5f9; }
.ae-r-title { font-size: 22px; font-weight: 800; letter-spacing: -.035em; line-height: 1.2; color: #0f172a; margin-bottom: 6px; }
.ae-r-sub   { font-size: 14px; color: #64748b; line-height: 1.55; }
.ae-r-desc  { font-size: 14px; color: #334155; line-height: 1.75; margin-bottom: 20px; }
.ae-pts {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.ae-pts-title { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #64748b; margin-bottom: 14px; }
.ae-pts ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ae-pts li { font-size: 13.5px; color: #334155; line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.ae-pts-bullet { width: 5px; height: 5px; border-radius: 50%; background: #94a3b8; flex-shrink: 0; margin-top: 7px; }
.ae-warnbox { background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; }
.ae-warnbox-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #b45309; margin-bottom: 8px; }
.ae-warnbox p { font-size: 13.5px; color: #1c1917; line-height: 1.7; margin: 0; }
.ae-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  text-decoration: none !important;
  margin-bottom: 12px;
  transition: background .15s, transform .15s;
  font-family: inherit;
}
.ae-cta-primary { background: #2563eb; color: #fff !important; }
.ae-cta-primary:hover { background: #1d4ed8; transform: translateY(-1px); }
.ae-cta-danger  { background: #dc2626; color: #fff !important; }
.ae-cta-danger:hover  { background: #b91c1c; transform: translateY(-1px); }
.ae-disc { font-size: 11.5px; color: #94a3b8; line-height: 1.65; text-align: center; margin-bottom: 16px; padding: 0 4px; }
.ae-restart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 12px;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s, color .15s;
}
.ae-restart:hover { border-color: #cbd5e1; color: #64748b; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 56px 0 52px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 28px; flex-wrap: wrap; }
  .nav-links { gap: 0; }
  .nav-link { padding: 6px 8px; font-size: 12.5px; }
  .nav-cta { display: none; }
  .news-card { padding: 20px 20px; }
  .container { padding: 0 18px; }
  .cta-box { padding: 32px 24px; }
  .cta-box h2 { font-size: 22px; }
  .section { padding: 48px 0; }
  .ae-card { padding: 24px 20px; border-radius: 12px; }
  .ae-q-title { font-size: 18px; }
  .ae-r-title { font-size: 18px; }
}
