/* ── Use-cases page specific styles ──────────────────────────── */

/* Active nav link */
.nav-active {
  color: #6b9ec5 !important;
  border-bottom: 2px solid #6b9ec5;
  padding-bottom: 2px;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.uc-hero {
  background:
    linear-gradient(135deg, rgba(11,29,61,0.93) 0%, rgba(26,79,140,0.88) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80')
      center/cover no-repeat;
  padding: 72px 32px 64px;
}

.uc-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.uc-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.uc-hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b9ec5;
  margin-bottom: 20px;
}

.uc-hero-desc {
  color: #c4d8ef;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 620px;
}

/* ── Main content ─────────────────────────────────────────────── */
.uc-main { background: #f4f7fb; }

/* ── Category section ─────────────────────────────────────────── */
.uc-category {
  padding: 60px 32px 48px;
  background: #f4f7fb;
}

.uc-category--alt {
  background: #eaf1f9;
}

.uc-category-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a4f8c;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid #d0e4f5;
}

/* ── Card grid ────────────────────────────────────────────────── */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ── Card ─────────────────────────────────────────────────────── */
.uc-card {
  background: #fff;
  border: 1px solid #d8e8f5;
  border-radius: 10px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.uc-card:hover {
  box-shadow: 0 8px 28px rgba(27,58,107,0.12);
  transform: translateY(-3px);
  border-color: #6b9ec5;
}

.uc-card-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.uc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a4f8c;
  line-height: 1.4;
}

.uc-card p {
  font-size: 0.88rem;
  color: #3a4f6a;
  line-height: 1.65;
  flex: 1;
}

.uc-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a4f8c;
  transition: color .2s;
  align-self: flex-start;
  margin-top: 4px;
}

.uc-card-link:hover { color: #0b1d3d; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0b1d3d 0%, #1a4f8c 100%);
  padding: 72px 32px;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
}

.cta-banner p {
  color: #c4d8ef;
  font-size: 1rem;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: #0b1d3d;
  padding: 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.8rem;
  color: #6a8cae;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  .uc-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
