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

:root {
  --black:      #111111;
  --red:        #cc0000;
  --red-dark:   #990000;
  --blue:       #1d4ed8;
  --blue-dark:  #1e3a8a;
  --blue-light: #eff6ff;
  --blue-border:#bfdbfe;
  --green:      #16a34a;
  --green-light:#f0fff4;
  --green-border:#bbf7d0;
  --white:      #ffffff;
  --grey:       #f4f4f4;
  --border:     #e0e0e0;
  --text:       #111111;
  --text-mid:   #444444;
  --text-muted: #777777;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --radius:     12px;
  --radius-sm:  6px;
  --max-w:      680px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--grey);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NAVBAR ─── */
.navbar {
  background: var(--black);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-badge { width: 32px; height: 32px; object-fit: contain; }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* ─── PAGE ─── */
.page { flex: 1; padding: 2.5rem 1rem 3rem; }
.page-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }

/* ─── CHECK HEADER ─── */
.check-header {
  text-align: center;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
}
.check-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.check-header h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #92400e;
  margin-bottom: 0.5rem;
}
.check-sub { font-size: 0.95rem; color: #78350f; max-width: 460px; margin: 0 auto; line-height: 1.6; }

/* ─── DIVIDER ─── */
.divider-arrow {
  text-align: center;
  font-size: 1.75rem;
  color: var(--text-muted);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ─── FA CARD ─── */
.fa-card {
  background: var(--white);
  border: 2px solid var(--blue-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(29,78,216,0.1);
}

.fa-card-header {
  background: var(--blue);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.fa-logo { font-size: 2.5rem; flex-shrink: 0; }
.fa-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.fa-subtitle { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ─── STEPS ─── */
.steps-block {
  padding: 1.5rem;
  border-bottom: 1px solid var(--blue-border);
}
.steps-block h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
}
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.steps-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.steps-list strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 2px; }
.steps-list p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ─── FA ACTION ─── */
.fa-action {
  padding: 1.5rem;
  background: var(--blue-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.btn-fa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 3px 12px rgba(29,78,216,0.35);
}
.btn-fa:hover { background: var(--blue-dark); transform: translateY(-2px); }
.fa-note { font-size: 0.8rem; color: #1e40af; }

/* ─── BOTTOM NAV ─── */
.bottom-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-home {
  background: var(--black);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.15s;
  border: 2px solid var(--red);
}
.btn-home:hover { background: var(--red); }
.btn-secondary {
  background: transparent;
  color: var(--text-mid);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: background 0.15s;
}
.btn-secondary:hover { background: #f3f4f6; }

/* ─── FOOTER ─── */
.page-footer {
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--white);
}

@media (max-width: 480px) {
  .fa-card-header { flex-direction: column; gap: 0.5rem; }
  .nav-actions .nav-link:first-child { display: none; }
}
