/* ============================================================
   checklist.css — styles for checklist.html
   ============================================================ */

/* ── Hero ── */
.cl-hero {
  position: relative;
  background: var(--primary-dark, #051242);
  padding: 80px 0 60px;
  overflow: hidden;
}
.cl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #051242 0%, #1F3F6B 60%, #0a1e4a 100%);
}
.cl-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="%23ffffff04"/><circle cx="80" cy="80" r="60" fill="%23ffffff03"/></svg>') center/cover;
}
.cl-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--accent, #C9A84C);
  color: var(--accent, #C9A84C);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.cl-hero-content h1 {
  font-family: 'Anton', sans-serif;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.cl-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.cl-hero-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cl-hero-meta span {
  color: var(--accent, #C9A84C);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Progress Bar ── */
.cl-progress-bar-wrap {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
  position: sticky;
  top: 120px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cl-progress-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cl-progress-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--primary, #1F3F6B);
  white-space: nowrap;
  min-width: 180px;
}
.cl-progress-label i { color: var(--accent, #C9A84C); }
.cl-progress-track {
  flex: 1;
  height: 10px;
  background: #e5e7eb;
  border-radius: 99px;
  overflow: hidden;
  min-width: 100px;
}
.cl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary, #1F3F6B), var(--accent, #C9A84C));
  border-radius: 99px;
  transition: width 0.3s ease;
  width: 0%;
}
.cl-reset-btn {
  background: none;
  border: 1px solid #d1d5db;
  color: #6b7280;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  transition: all 0.2s;
}
.cl-reset-btn:hover { border-color: #9ca3af; color: #374151; }

/* ── Main Layout ── */
.cl-main {
  background: #f8f9fb;
  padding: 3rem 0 5rem;
}
.cl-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}
.cl-column { display: flex; flex-direction: column; gap: 2rem; }

/* ── Phase Cards ── */
.cl-phase {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid #e9ecef;
}
.cl-phase-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid #f1f3f5;
}
.cl-phase-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  color: var(--primary, #1F3F6B);
  margin: 0;
}
.cl-phase-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-transform: uppercase;
}
.bg-navy { background: var(--primary, #1F3F6B); color: #fff; }
.bg-gold  { background: var(--accent, #C9A84C); color: #1a1a1a; }

.cl-phase-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.75rem; }

/* ── Categories ── */
.cl-category h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary, #1F3F6B);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cl-category h3 i { color: var(--accent, #C9A84C); font-size: 0.9rem; }
.cl-category + .cl-category { padding-top: 1.25rem; border-top: 1px solid #f1f3f5; }

/* ── Checklist Items ── */
.cl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 7px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1.5;
}
.cl-item:hover { background: #f8f9fb; }
.cl-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: all 0.2s;
}
.cl-item input[type="checkbox"]:checked {
  background: var(--primary, #1F3F6B);
  border-color: var(--primary, #1F3F6B);
}
.cl-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 8px; height: 12px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.cl-item span {
  font-size: 0.95rem;
  color: #374151;
  transition: color 0.2s;
}
.cl-item:has(input:checked) span {
  color: #9ca3af;
  text-decoration: line-through;
}
.cl-item span a { color: var(--primary, #1F3F6B); }
.cl-item span strong { color: #1f2937; }
.cl-item:has(input:checked) span strong { color: #9ca3af; }

/* ── Tips ── */
.cl-tip {
  font-size: 0.875rem;
  color: #6b7280;
  background: #f0f4ff;
  border-left: 3px solid var(--accent, #C9A84C);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.cl-tip i { color: var(--accent, #C9A84C); margin-right: 4px; }

/* ── Sidebar ── */
.cl-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 185px; }
.cl-sidebar-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e9ecef;
  overflow: hidden;
}

/* Utility Card */
.utility-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 2px solid #f1f3f5;
  background: linear-gradient(135deg, #f8f9fb, #eef1f8);
}
.utility-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 6px; }
.utility-card-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--primary, #1F3F6B);
  margin: 0 0 2px;
}
.utility-card-header p { font-size: 0.8rem; color: #6b7280; margin: 0; }

.utility-item {
  display: flex;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f3f5;
}
.utility-item:last-child { border-bottom: none; }
.utility-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}
.utility-icon.electric { background: #fef3c7; color: #d97706; }
.utility-icon.water    { background: #dbeafe; color: #2563eb; }
.utility-icon.internet { background: #f0fdf4; color: #16a34a; }
.utility-icon.trash    { background: #f3f4f6; color: #4b5563; }
.utility-icon.mail     { background: #fce7f3; color: #db2777; }
.utility-icon.dmv      { background: #ede9fe; color: #7c3aed; }
.utility-icon.ssa      { background: #fef2f2; color: #dc2626; }

.utility-info { flex: 1; min-width: 0; }
.utility-info strong { display: block; font-size: 0.88rem; color: #111827; font-weight: 600; margin-bottom: 1px; }
.utility-info > span { display: block; font-size: 0.78rem; color: #6b7280; margin-bottom: 4px; }
.utility-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--primary, #1F3F6B);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2px;
}
.utility-info a:hover { color: var(--accent, #C9A84C); }
.utility-info a i { font-size: 0.75rem; color: var(--accent, #C9A84C); }
.utility-note { font-size: 0.76rem; color: #9ca3af; margin: 4px 0 0; line-height: 1.4; }

/* Tips Card */
.tips-card { padding: 1.25rem; }
.tips-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--primary, #1F3F6B);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tips-card h3 i { color: var(--accent, #C9A84C); }
.pro-tips-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.pro-tips-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; line-height: 1.5; color: #374151; }
.pro-tips-list li i { color: var(--accent, #C9A84C); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

/* CTA Card */
.cta-card { padding: 1.5rem; text-align: center; }
.cta-logo { width: 100px; height: auto; border-radius: 8px; margin-bottom: 1rem; }
.cta-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  color: var(--primary, #1F3F6B);
  margin-bottom: 0.5rem;
}
.cta-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; margin-bottom: 1rem; }
.cta-note { font-size: 0.76rem; color: #9ca3af; margin-top: 0.5rem !important; }

/* ── Button helpers ── */
.btn-outline-dark {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--primary, #1F3F6B);
  color: var(--primary, #1F3F6B);
  border-radius: var(--radius, 6px);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--primary, #1F3F6B); color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cl-layout { grid-template-columns: 1fr; }
  .cl-sidebar { position: static; }
}
@media (max-width: 640px) {
  .cl-hero { padding: 60px 0 40px; }
  .cl-hero-meta { gap: 1rem; }
  .cl-phase-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .cl-progress-bar-wrap { top: 100px; }
  .cl-progress-inner { gap: 0.5rem; }
}
