@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Serif:wght@400;600&display=swap');

/* ── Design Tokens ── */
:root {
  --navy:       #1a2e4a;
  --navy-dark:  #122035;
  --navy-mid:   #2c4566;
  --orange:     #e05a1e;
  --orange-lt:  #f06830;
  --orange-bg:  #fef4ee;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --border:     #e2e6ec;
  --text:       #1a2e4a;
  --muted:      #5a6a7e;
  --muted-lt:   #8a9ab0;
  --gold:       #c89a2e;
  --green:      #1e8c52;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 4px rgba(26,46,74,0.08);
  --shadow:     0 4px 16px rgba(26,46,74,0.1);
  --shadow-lg:  0 8px 32px rgba(26,46,74,0.12);
  --container:  1140px;
  --nav-h:      68px;

  --font:       'IBM Plex Sans', sans-serif;
  --font-serif: 'IBM Plex Serif', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-lt); text-decoration: underline; }

img { display: block; max-width: 100%; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.3px; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 10px; color: var(--navy); }
.section-title p { color: var(--muted); max-width: 520px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.brand-text { line-height: 1.2; }
.brand-name { font-size: 1.05rem; font-weight: 700; color: #fff; }
.brand-sub  { font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 0.3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange-lt); color: #fff; text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; }

/* ── Top info bar ── */
.info-bar {
  background: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-bar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.info-bar-item strong { color: rgba(255,255,255,0.9); }
.info-bar-item a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; }
.info-bar-item a:hover { color: #fff; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--muted); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--orange); }
.breadcrumb-inner .sep { color: var(--muted-lt); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.card-hover {
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.card-hover:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p  { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.card p + p { margin-top: 8px; }
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card-link { display: block; text-decoration: none; color: inherit; }
.card-link:hover { text-decoration: none; }
.card-link .card { cursor: pointer; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Sections ── */
section { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.7); }

/* ── Hero ── */
.hero {
  background: var(--navy-dark);
  color: #fff;
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 0; bottom: 0;
  width: 42%;
  background: var(--navy-mid);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,90,30,0.18);
  border: 1px solid rgba(224,90,30,0.4);
  color: #f9c09a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--orange); }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 520px; margin-bottom: 30px; }
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.hero-check-icon {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  flex-shrink: 0;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero side panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-panel-block h4 {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.hero-panel-block p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.hero-panel-block a { color: rgba(255,255,255,0.9); text-decoration: none; }
.hero-panel-block a:hover { color: #fff; }
.hero-panel-divider { height: 1px; background: rgba(255,255,255,0.08); }
.hero-stat-row { display: flex; gap: 24px; }
.hero-stat .n { font-size: 1.8rem; font-weight: 700; color: var(--orange); line-height: 1; }
.hero-stat .k { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item-icon { color: var(--green); font-size: 1rem; }

/* ── Badge / Pill ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid rgba(224,90,30,0.2);
}
.badge-navy {
  background: rgba(26,46,74,0.07);
  color: var(--navy);
  border-color: rgba(26,46,74,0.12);
}
.badge-green {
  background: #eef8f3;
  color: var(--green);
  border-color: rgba(30,140,82,0.2);
}

/* ── Info / Warning Boxes ── */
.box-info {
  background: #fffbea;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text);
  margin: 24px 0;
}
.box-warning {
  background: var(--orange-bg);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text);
  margin: 24px 0;
}
.box-info strong, .box-warning strong { font-weight: 600; }

/* ── Error code table ── */
.err-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 16px 0 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.err-table thead { background: var(--navy); }
.err-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: none;
}
.err-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.err-table tr:last-child td { border-bottom: none; }
.err-table tr:hover td { background: var(--off-white); }
.err-table tr.row-hl td { background: #fffbf7; }
.err-table .code { font-weight: 700; color: var(--orange); font-size: 1rem; }

/* ── Article layout ── */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
  padding: 48px 0 72px;
}
.article-body h1 { color: var(--navy); margin-bottom: 16px; }
.article-body h2 {
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 1.3rem;
}
.article-body h2:first-of-type { margin-top: 28px; }
.article-body p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }
.article-body ul, .article-body ol { color: var(--muted); padding-left: 22px; margin-bottom: 16px; }
.article-body li { margin-bottom: 8px; font-size: 0.95rem; }
.article-body li strong { color: var(--text); }
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 16px; }
.sidebar .card { padding: 22px; }
.sidebar h3 { font-size: 0.92rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar ul { list-style: none; padding: 0; }
.sidebar ul li { border-bottom: 1px solid var(--border); }
.sidebar ul li:last-child { border-bottom: none; }
.sidebar ul li a {
  display: block;
  padding: 9px 0;
  font-size: 0.87rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.sidebar ul li a:hover { color: var(--orange); text-decoration: none; }
.sidebar .btn { width: 100%; justify-content: center; margin-bottom: 8px; }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-item[open] { border-color: var(--orange); }
.faq-item[open] summary { background: var(--orange-bg); }
.faq-item summary {
  padding: 18px 22px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item-body {
  padding: 16px 22px 20px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item-body a { color: var(--orange); }

/* ── Review cards ── */
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 0.92rem; color: var(--muted); font-style: italic; margin-bottom: 14px; line-height: 1.65; }
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.review-location { font-size: 0.78rem; color: var(--muted-lt); }

/* ── District grid ── */
.district-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.district-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.15s;
}
.district-tag:hover { background: var(--orange); border-color: var(--orange); color: #fff; text-decoration: none; }
.district-tag-primary { background: var(--navy); border-color: var(--navy); color: #fff; }
.district-tag-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: #fff; }

/* ── CTA section ── */
.cta-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.cta-block h2 { color: #fff; margin-bottom: 10px; }
.cta-block p { color: rgba(255,255,255,0.65); max-width: 460px; margin: 0 auto 28px; }
.cta-block .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.phone-block { text-align: center; }
.phone-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.phone-number { font-size: 1.5rem; font-weight: 700; color: #fff; }
.phone-number a { color: inherit; text-decoration: none; }
.phone-number a:hover { color: #f9c09a; text-decoration: none; }
.phone-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 24px; }

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { margin-bottom: 14px; }
.footer-brand-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-brand-sub { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-desc { font-size: 0.87rem; line-height: 1.6; margin-bottom: 16px; }
.footer-contact { font-size: 0.87rem; display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero::after { display: none; }
  .hero-panel { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .hero-panel-block { flex: 1 1 180px; }
  .hero-panel-divider { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px 24px;
    gap: 2px;
    z-index: 99;
  }
  .nav-links.open a { padding: 12px; font-size: 0.95rem; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-items { gap: 16px; }
  .hero { padding: 48px 0 40px; }
  section { padding: 52px 0; }
  .cta-block { padding: 36px 24px; }
  .phone-row { gap: 24px; }
  .info-bar .container { justify-content: center; }
}
