/* ============================================================
   Missing Number – Shared Stylesheet
   ============================================================ */

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

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f5f7fa;
  color: #1a1a2e;
  line-height: 1.7;
}

/* ── Header ─────────────────────────────────────────────── */
header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: #ffffff;
  padding: 48px 24px 40px;
  text-align: center;
}

header .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 18px;
  color: #a8d8ea;
}

header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

header p {
  margin-top: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Breadcrumb ──────────────────────────────────────────── */
nav.breadcrumb {
  max-width: 740px;
  margin: 28px auto 0;
  padding: 0 20px;
  font-size: 0.85rem;
  color: #888;
}

nav.breadcrumb a {
  color: #0f3460;
  text-decoration: none;
}

nav.breadcrumb a:hover {
  text-decoration: underline;
}

/* ── Layout ──────────────────────────────────────────────── */
main {
  max-width: 740px;
  margin: 48px auto 80px;
  padding: 0 20px;
}

/* Pages with a breadcrumb use less top margin */
main.sub {
  margin-top: 20px;
}

/* ── Card ────────────────────────────────────────────────── */
.card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 36px 40px;
  margin-bottom: 28px;
}

.card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f3460;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card h2 .icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.card p {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 14px;
}

.card p:last-child {
  margin-bottom: 0;
}

/* ── Lists ───────────────────────────────────────────────── */
ul.data-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

ul.data-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: #444;
}

ul.data-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f3460;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Callout Boxes ───────────────────────────────────────── */
.highlight-box {
  background: #f0f4ff;
  border-left: 4px solid #0f3460;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  font-size: 0.97rem;
  color: #333;
  margin-top: 14px;
}

.warning-box {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  font-size: 0.97rem;
  color: #333;
  margin-top: 14px;
}

/* ── Effective Date Badge ────────────────────────────────── */
.effective-date {
  display: inline-block;
  background: #e8f0fe;
  color: #0f3460;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ── Inline Links ────────────────────────────────────────── */
a.contact-link {
  color: #0f3460;
  font-weight: 600;
}

/* ── Steps (index.html) ──────────────────────────────────── */
.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0f3460;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body {
  font-size: 0.97rem;
  color: #333;
}

.step-body strong {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 2px;
}

/* ── Email Button (index.html) ───────────────────────────── */
.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 13px 28px;
  background: #0f3460;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.email-btn:hover {
  background: #16213e;
  transform: translateY(-1px);
}

.email-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Timeline (index.html) ───────────────────────────────── */
.timeline {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0f4ff;
  border-left: 4px solid #0f3460;
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  font-size: 0.97rem;
  color: #333;
}

.timeline .days {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f3460;
  line-height: 1;
  flex-shrink: 0;
}

.timeline .label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f3460;
  font-weight: 600;
}

/* ── Deleted Checklist (index.html) ──────────────────────── */
.deleted-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.deleted-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: #333;
}

.deleted-list li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d4edda;
  color: #1a7f3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
  color: #888;
}

footer a {
  color: #0f3460;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 520px) {
  .card {
    padding: 24px 20px;
  }
}
