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

:root {
  --brand: #002ca7;
  --brand-dark: #00206e;
  --brand-soft: #e9eefc;
  --accent: #ffc107;
  --ink: #1e2733;
  --muted: #5a6472;
  --bg: #f4f6fb;
  --card: #ffffff;
  --border: #e5e9f2;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(16,24,40,.04), 0 4px 12px rgba(16,24,40,.05);
  --shadow-lg: 0 16px 40px rgba(0,44,167,.14);
  --maxw: 960px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

header {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,32,110,.18);
}

.brand {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand--link {
  text-decoration: none;
  color: inherit;
}

.brand__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.brand__logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.brand h1,
.brand .brand__name {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand__tagline {
  font-size: 15px;
  opacity: 0.9;
  margin-top: 0.45rem;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Full-height landing: header + nav + hero fill the viewport */
.hero-screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #002ca7 0%, #0038c4 55%, #00206e 100%);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 18px;
  opacity: 0.92;
}

.badge-247 {
  display: inline-block;
  background: rgba(255,193,7,.16);
  color: var(--accent);
  border: 1px solid rgba(255,193,7,.5);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.cta-buttons {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 14px 30px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #3a2c00;
  box-shadow: 0 6px 16px rgba(255,193,7,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255,193,7,.45);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

.btn-secondary:hover {
  background: #fff;
  color: var(--brand);
  transform: translateY(-2px);
}

/* Section heading helper */
.section-title {
  text-align: center;
  color: var(--brand);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin: 0.75rem auto 0;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 0;
}

.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--card);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 22px;
}

.service-card h3 {
  color: var(--brand);
  font-size: 19px;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.service-card__more {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
}

.info-section {
  background: var(--card);
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-section > h2 {
  color: var(--brand);
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.info-item {
  padding: 1.25rem 1.35rem;
  background: #f7f9fd;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.info-item h3 {
  color: var(--muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.info-item p {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.phone-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
}

.phone-link:hover {
  text-decoration: underline;
}

/* Prominent call band */
.call-band {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1rem;
}

.call-band__label {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0.35rem;
}

.call-band__number {
  font-size: 46px;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.01em;
}

.call-band__number:hover { text-decoration: underline; }

footer {
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 4rem;
  font-size: 14px;
}

footer address {
  font-size: 15px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

.highlight {
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 16px;
}

.highlight strong {
  color: var(--brand);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #002ca7;
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}

.skip-link:focus {
  left: 0;
}

.main-nav {
  background: var(--brand-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.main-nav ul {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem 2rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  justify-content: center;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  opacity: 0.85;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: opacity .15s ease, border-color .15s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  opacity: 1;
  border-bottom-color: var(--accent);
}

/* Vertical rhythm inside main */
main {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

main > * + * {
  margin-top: 2.75rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0;
}

.faq-item:first-of-type { padding-top: 0.25rem; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-item h3 {
  color: var(--brand);
  font-size: 17px;
  margin-bottom: 0.4rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 15px;
}

.prose p {
  color: var(--muted);
  margin-bottom: 1rem;
}

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

/* ---- Subpage: compact hero (not full height) ---- */
.subhero {
  background: linear-gradient(135deg, #002ca7 0%, #0038c4 55%, #00206e 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 2rem 3.5rem;
}

.subhero h1 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.subhero p {
  font-size: 17px;
  opacity: 0.92;
  max-width: 620px;
  margin: 0 auto;
}

/* ---- Breadcrumbs ---- */
.breadcrumb {
  font-size: 13.5px;
  color: var(--muted);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}

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

.breadcrumb li[aria-current="page"] { color: var(--muted); }

/* ---- Article content ---- */
.article h2 {
  color: var(--brand);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 0.85rem;
}

.article h3 {
  color: var(--ink);
  font-size: 17px;
  margin: 1.5rem 0 0.4rem;
}

.article p { color: var(--muted); margin-bottom: 1rem; }
.article p:last-child { margin-bottom: 0; }

.article ul {
  margin: 0.5rem 0 1rem 1.4rem;
  color: var(--muted);
}

.article li { margin-bottom: 0.35rem; }

.feature-list {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.feature-list li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--muted);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

/* ---- Related services chips ---- */
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.related a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  transition: background .15s ease;
}

.related a:hover { background: #dbe4fb; }

@media (max-width: 768px) {
  .brand { padding: 1.25rem 1.25rem; }
  .brand h1,
  .brand .brand__name { font-size: 24px; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  .hero {
    padding: 3rem 1.25rem 3.25rem;
  }

  .hero h2 {
    font-size: 27px;
  }

  .subhero { padding: 2.5rem 1.25rem 3rem; }
  .subhero h1 { font-size: 25px; }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  main { padding-top: 2.25rem; }
  main > * + * { margin-top: 2rem; }

  .info-section { padding: 1.5rem; }
  .call-band__number { font-size: 38px; }
  .services { grid-template-columns: 1fr; }
}
