:root {
  --ink: #211e22;
  --ink-2: #343039;
  --yellow: #f7c90e;
  --yellow-2: #ffd84a;
  --teal: #05b9be;
  --teal-2: #13c9ba;
  --white: #ffffff;
  --paper: #f6f7f8;
  --line: #e5e7eb;
  --muted: #6f7178;
  --ok: #178f67;
  --warn: #b7791f;
  --shadow: 0 18px 45px rgba(33, 30, 34, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(33, 30, 34, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}
.brand img { width: 150px; height: auto; display: block; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.main-nav a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background .18s ease, color .18s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(247,201,14,.16);
  color: var(--yellow);
  outline: none;
}

.hero {
  background:
    linear-gradient(90deg, rgba(33,30,34,.94), rgba(33,30,34,.72)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 48px),
    var(--ink);
  color: var(--white);
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 72px 0 58px;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  align-items: center;
  gap: 42px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--teal);
}
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; margin: 0; }
h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 900;
}
.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 12px 28px rgba(247,201,14,.28); }
.btn-secondary { border-color: rgba(255,255,255,.3); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); border-color: var(--line); }

.hero-panel {
  border: 2px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 24px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5,185,190,.18);
  color: #bdfaff;
  border: 1px solid rgba(5,185,190,.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-2);
}
.license-number {
  margin-top: 18px;
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  overflow-wrap: anywhere;
}
.hero-panel dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}
.hero-panel div { border-top: 1px solid rgba(255,255,255,.12); padding-top: 14px; }
dt { color: rgba(255,255,255,.64); font-size: 13px; font-weight: 700; }
dd { margin: 4px 0 0; font-weight: 800; }

.section { padding: 64px 0; }
.section-muted { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--white); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head p { max-width: 700px; margin: 12px 0 0; color: var(--muted); }
.section-dark .section-head p { color: rgba(255,255,255,.72); }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; }
h3 { font-size: 22px; font-weight: 900; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(33, 30, 34, .06);
}
.section-dark .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.card-accent { border-top: 5px solid var(--yellow); }
.card-teal { border-top: 5px solid var(--teal); }
.muted { color: var(--muted); }
.section-dark .muted { color: rgba(255,255,255,.68); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.tag-yellow { background: var(--yellow); }
.tag-teal { background: rgba(5,185,190,.16); color: #06767a; }

.fact-list { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.fact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.fact-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 3px;
  background: var(--teal);
  box-shadow: 8px 0 0 var(--yellow);
}
.contact-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}
.contact-facts div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.contact-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.contact-facts a {
  text-decoration: none;
}
.doc-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.doc-list li {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.doc-card {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(33, 30, 34, .06);
}
.doc-card h3 {
  font-size: 18px;
  overflow-wrap: anywhere;
}
.doc-card p {
  margin: 0;
  color: var(--muted);
}
.doc-card-strong {
  border-top-color: var(--yellow);
}
.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.doc-actions .btn {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 14px;
}
.note {
  border-left: 5px solid var(--yellow);
  background: #fff8d9;
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
}
.notice {
  border: 1px solid rgba(183,121,31,.22);
  background: #fff7e8;
  color: #6b420b;
  border-radius: 8px;
  padding: 18px;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--ink); color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0; }
tr:last-child td { border-bottom: 0; }

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 62px 0;
}
.page-hero p { max-width: 760px; margin: 18px 0 0; color: rgba(255,255,255,.76); font-size: 19px; }
.crumbs { font-size: 14px; color: rgba(255,255,255,.64); margin-bottom: 18px; }
.crumbs a { color: var(--yellow); text-decoration: none; }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--yellow); text-decoration: none; font-weight: 800; }

@media (max-width: 880px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .main-nav { justify-content: flex-start; }
  .hero { min-height: 0; padding: 56px 0; }
  .hero-layout { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, 1160px); }
  .brand img { width: 132px; }
  .main-nav a { padding: 8px 9px; font-size: 13px; }
  h1 { font-size: 32px; }
  .lead { font-size: 18px; }
  .hero-actions .btn { width: 100%; }
  .license-number { font-size: 22px; }
  .card { padding: 18px; }
  .contact-facts div { grid-template-columns: 1fr; gap: 4px; }
}
