:root {
  --blue-900: #0b1f5e;
  --blue-700: #1e40af;
  --amber: #f59e0b;
  --ink: #0f172a;
  --paper: #f8fafc;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 45%);
}

h1,
h2,
h3,
.brand {
  font-family: 'IBM Plex Serif', serif;
}

.site-header {
  color: #fff;
  background: linear-gradient(120deg, rgba(11, 31, 94, 0.96), rgba(30, 64, 175, 0.9));
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #fff;
}

.navbar .nav-link:hover,
.navbar .navbar-brand:hover {
  color: #bfdbfe;
}

.btn-amber {
  background: var(--amber);
  color: #111827;
  border: none;
  font-weight: 700;
}

.btn-amber:hover {
  background: #fbbf24;
  color: #111827;
}

.hero-kicker {
  color: #fde68a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 560px;
  color: #dbeafe;
  font-size: 1.05rem;
}

.hero-panel {
  background: rgba(15, 23, 42, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.metric {
  background: rgba(15, 23, 42, 0.48);
  border-radius: 0.8rem;
  padding: 0.9rem;
}

.metric span {
  color: #bfdbfe;
  font-size: 0.88rem;
}

.metric strong {
  display: block;
  font-size: 1.35rem;
}

.progress {
  height: 0.52rem;
  background: rgba(255, 255, 255, 0.22);
}

.progress-bar {
  background: linear-gradient(90deg, #f59e0b, #fcd34d);
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.service-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 1rem;
  padding: 1.15rem;
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.09);
  height: 100%;
}

.service-card h3 {
  color: var(--blue-700);
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.about {
  background: var(--paper);
}

.about p {
  color: #475569;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--amber);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-radius: 0.8rem;
  padding: 1rem 1.1rem;
}

.testimonial p {
  font-size: 1.03rem;
  margin-bottom: 0.6rem;
}

.testimonial span {
  color: #64748b;
  font-size: 0.9rem;
}

.contact-box {
  background: linear-gradient(140deg, #0f172a, #1e293b);
  color: #f8fafc;
  border-radius: 1.2rem;
  padding: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.48s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
