:root {
  --black: #000000;
  --white: #ffffff;
  --blue: #2680f1;
  --muted: #d9d9d9;
  --soft: #9fabc0;
  --line: rgba(255, 255, 255, 0.15);
  --panel: #050505;
  --panel-soft: #0b0b0d;
  --glass: rgba(255, 255, 255, 0.045);
  --blue-soft: rgba(38, 128, 241, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #030303 0%, var(--black) 38%, #020203 100%);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.46);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  position: relative;
  max-width: var(--max);
  height: 78px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.brand img {
  width: 315px;
  height: 64px;
  object-fit: contain;
}

.menu-toggle {
  display: grid;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
}

.nav-links {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 24px;
  width: min(360px, calc(100vw - 48px));
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.68);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a,
.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 0 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a {
  width: 100%;
  border-color: var(--line);
  background: transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: rgba(38, 128, 241, 0.65);
  background: rgba(38, 128, 241, 0.1);
}

.btn,
button.btn {
  box-shadow: 0 16px 40px rgba(38, 128, 241, 0.23);
}

.btn.secondary {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(38, 128, 241, 0.1);
}

.btn:hover,
button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(38, 128, 241, 0.32);
}

.btn.secondary:hover {
  background: rgba(38, 128, 241, 0.12);
}

.btn.danger {
  border-color: #ff4d4d;
  background: #b61522;
}

.btn.danger:hover {
  border-color: #ff7373;
  background: #d31f2d;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  min-height: 560px;
  padding: 106px 24px 78px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), #000 96%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.16)),
    url("/homepage-eavp.jpg?v=20260718c") center top / cover no-repeat;
}

.hero-home {
  min-height: 720px;
  padding-top: 126px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.39), #000 96%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.13)),
    url("/homepage-eavp.jpg?v=20260718c") center top / cover no-repeat;
}

.hero-av {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), #000 96%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.17)),
    url("/homepage-eavp.jpg?v=20260718c") center top / cover no-repeat;
}

.hero-home.hero-av {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), #000 96%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.17)),
    url("/homepage-eavp.jpg?v=20260718c") center top / cover no-repeat;
}

.page-hero {
  min-height: 420px;
}

.hero-content {
  position: relative;
  max-width: 1120px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 56px;
  height: 3px;
  background: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

h1 {
  max-width: 1060px;
  font-size: 70px;
  line-height: 0.98;
}

.hero-home h1 {
  max-width: 1120px;
  font-size: 58px;
  line-height: 1.08;
}

h2 {
  font-size: 44px;
  line-height: 1.03;
}

h3 {
  font-size: 23px;
  line-height: 1.12;
}

.blue-line {
  width: min(980px, 100%);
  height: 5px;
  margin: 28px 0 18px;
  background: var(--blue);
}

.lead {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.36;
  font-weight: 700;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.7);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(38, 128, 241, 0.55);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.44);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 28px rgba(38, 128, 241, 0.09);
}

.not-found-code {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(84px, 13vw, 178px);
  line-height: 0.82;
  font-weight: 900;
}

.not-found-hero h1 {
  max-width: 900px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.actions.centered {
  justify-content: center;
}

section {
  padding: 76px 24px;
  border-top: 1px solid var(--line);
}

.strip {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #020202;
}

.panel-section,
.request-section {
  background:
    linear-gradient(180deg, rgba(38, 128, 241, 0.13), transparent 44%),
    linear-gradient(90deg, rgba(38, 128, 241, 0.06), rgba(0, 0, 0, 0) 46%),
    var(--panel);
}

.section-head,
.two-col,
.contact-grid,
.request-layout,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
}

.request-layout,
.contact-grid,
.about-grid {
  align-items: start;
}

.section-head {
  margin-bottom: 42px;
}

.grid-2,
.stats-grid,
.image-grid,
.equipment-grid,
.product-row,
.contact-list {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.stats-grid,
.image-grid,
.product-row {
  grid-template-columns: repeat(3, 1fr);
}

.equipment-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.stat-card,
.feature-card,
.equipment-card,
.form-card,
.map-card,
.contact-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--glass), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.card,
.stat-card,
.form-card,
.map-card,
.contact-item {
  padding: 26px;
}

.card,
.stat-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stat-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  background: var(--blue);
}

.stat-card span,
.equipment-meta,
.contact-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-card strong,
.contact-value {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.contact-value {
  font-size: 20px;
  line-height: 1.2;
}

.feature-card,
.equipment-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card img,
.equipment-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  background: #0b0b0d;
  filter: contrast(1.04) saturate(1.06);
  transition: transform 260ms ease, filter 260ms ease;
}

.feature-card div,
.equipment-body {
  padding: 24px;
}

.equipment-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 270px;
}

.equipment-body .btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

.card:hover,
.stat-card:hover,
.feature-card:hover,
.equipment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 128, 241, 0.56);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.feature-card:hover img,
.equipment-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.08) saturate(1.12);
}

.av-showcase-section {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(38, 128, 241, 0.08) 46%, rgba(0, 0, 0, 0)),
    #030303;
}

.av-equipment-grid .equipment-card {
  background:
    linear-gradient(180deg, rgba(38, 128, 241, 0.11), rgba(255, 255, 255, 0.018)),
    #050505;
}

.popular-requests-section {
  background:
    linear-gradient(180deg, rgba(38, 128, 241, 0.08), rgba(0, 0, 0, 0) 48%),
    #030303;
}

.popular-request-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.popular-request-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(38, 128, 241, 0.15), rgba(255, 255, 255, 0.012) 48%),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.popular-request-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 4px;
  background: var(--blue);
}

.popular-request-card::after {
  content: "Aanvragen";
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(38, 128, 241, 0.5);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.popular-request-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 128, 241, 0.62);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.popular-request-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.popular-request-card p {
  max-width: 92%;
  margin: 0;
}

.popular-request-card.subtle-card {
  background:
    linear-gradient(145deg, rgba(38, 128, 241, 0.1), rgba(255, 255, 255, 0.012) 48%),
    #030303;
}

.av-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.av-popular-card {
  display: grid;
  gap: 10px;
  min-height: 112px;
  border: 1px solid rgba(38, 128, 241, 0.45);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(38, 128, 241, 0.16), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.av-popular-card span {
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
}

.av-popular-card strong {
  align-self: end;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.av-popular-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.seo-reach-section {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(38, 128, 241, 0.08) 38%, rgba(0, 0, 0, 0)),
    #010101;
}

.seo-reach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.seo-link-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(38, 128, 241, 0.11), rgba(255, 255, 255, 0.014)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.seo-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 128, 241, 0.56);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.seo-link-list,
.seo-link-cloud {
  display: grid;
  gap: 10px;
}

.seo-link-list {
  margin-top: 22px;
}

.seo-link-list a,
.seo-link-cloud a {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 11px 13px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.seo-link-list a:hover,
.seo-link-cloud a:hover {
  border-color: rgba(38, 128, 241, 0.7);
  background: rgba(38, 128, 241, 0.13);
}

.seo-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.seo-main-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(38, 128, 241, 0.11), rgba(255, 255, 255, 0.014)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.seo-main-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #0b0b0d;
}

.seo-main-card > div {
  padding: 28px;
}

.seo-main-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.seo-main-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.seo-main-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 20px rgba(38, 128, 241, 0.7);
}

.seo-link-cloud {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.brand-link-section {
  align-items: center;
}

.portal-card {
  border-color: rgba(38, 128, 241, 0.34);
  background:
    linear-gradient(180deg, rgba(38, 128, 241, 0.13), rgba(255, 255, 255, 0.018)),
    #050505;
}

.request-form-title {
  margin-bottom: 22px;
}

.request-form-title h2 {
  font-size: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: var(--panel-soft);
  color: var(--white);
  font: inherit;
}

input,
select {
  height: 52px;
  line-height: 1.2;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  color: var(--white);
  font-weight: 800;
}

.check input {
  width: auto;
}

.hp-field {
  display: none;
}

.notice {
  border: 1px solid rgba(38, 128, 241, 0.55);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(38, 128, 241, 0.08);
  color: var(--white);
  font-weight: 800;
}

.notice.error {
  border-color: rgba(255, 75, 75, 0.65);
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.1) contrast(1.04);
}

.map-frame-small {
  min-height: 300px;
}

.about-map {
  margin-top: 28px;
  padding: 0;
  overflow: hidden;
}

.portal-panel p,
.admin-request p {
  color: var(--muted);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(38, 128, 241, 0.45);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(38, 128, 241, 0.12);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-login {
  max-width: 560px;
}

.admin-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.admin-request {
  display: grid;
  gap: 18px;
}

.customer-select-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.customer-select-label {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(38, 128, 241, 0.55);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(38, 128, 241, 0.08);
  cursor: pointer;
}

.customer-select-label span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-select-label strong {
  color: var(--white);
  font-size: 18px;
}

.customer-select-input:checked + .customer-select-label {
  background: rgba(38, 128, 241, 0.2);
}

.customer-detail-panel {
  display: none;
  gap: 18px;
}

.customer-select-input:checked + .customer-select-label + .customer-detail-panel {
  display: grid;
}

.admin-topbar {
  display: grid;
  gap: 22px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.portal-login-grid,
.admin-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portal-login-flow {
  display: grid;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.portal-login-flow .form-card {
  width: 100%;
}

.admin-search,
.admin-create {
  display: grid;
  gap: 18px;
}

.partner-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.admin-tabs a,
.partner-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--panel-soft);
}

.admin-tabs a:hover,
.partner-tabs a:hover {
  border-color: var(--blue);
  color: var(--white);
}

.compact-form {
  display: grid;
  gap: 18px;
}

.portal-upload-form {
  border: 1px solid rgba(38, 128, 241, 0.45);
  border-radius: 8px;
  padding: 18px;
  background: rgba(38, 128, 241, 0.06);
}

.admin-request-head,
.portal-account-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.admin-meta-grid p {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel-soft);
}

.admin-subsection,
.portal-block {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.line-items {
  display: grid;
  gap: 10px;
}

.line-item-head,
.line-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px 150px 90px;
  gap: 10px;
}

.line-item-head {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.document-list,
.portal-request-list {
  display: grid;
  gap: 12px;
}

.document-group {
  display: grid;
  gap: 10px;
}

.document-group h4 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.portal-request-list {
  margin-top: 28px;
}

.document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel-soft);
}

.document-row strong,
.document-row small {
  display: block;
}

.document-row small {
  margin-top: 4px;
  color: var(--soft);
}

.document-type {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-table {
  display: grid;
  gap: 10px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(120px, 0.6fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel-soft);
}

.price-head {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row strong,
.price-row small {
  min-width: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(38, 128, 241, 0.45);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-section {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(38, 128, 241, 0.18), rgba(0, 0, 0, 0)),
    #030303;
}

.cta-inner {
  max-width: 900px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  color: #a9a9a9;
}

.footer-inner {
  display: flex;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand img {
  width: 220px;
  height: 48px;
  object-fit: contain;
}

.footer-brand span {
  color: #d8d8d8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .nav {
    height: 78px;
    padding: 0 16px;
  }

  .brand img {
    width: 214px;
    height: 48px;
  }

  .nav-links {
    right: 16px;
    width: min(340px, calc(100vw - 32px));
  }

  h1 {
    font-size: 48px;
  }

  .hero-home h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .lead {
    font-size: 20px;
  }

  .section-head,
  .two-col,
  .contact-grid,
  .request-layout,
  .about-grid,
  .grid-2,
  .admin-summary,
  .admin-page-grid,
  .portal-login-grid,
  .admin-meta-grid,
  .stats-grid,
  .image-grid,
  .product-row,
  .equipment-grid,
  .popular-request-grid,
  .av-popular-grid,
  .seo-reach-grid,
  .seo-detail-grid,
  .seo-main-card,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .checks {
    grid-template-columns: 1fr;
  }

  .line-item-head {
    display: none;
  }

  .line-item-row,
  .price-row,
  .document-row,
  .admin-request-head,
  .portal-account-head {
    grid-template-columns: 1fr;
  }

  .line-item-row {
    display: grid;
  }

  .admin-request-head,
  .portal-account-head {
    display: grid;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  section {
    padding: 58px 18px;
  }

  .hero,
  .hero-home,
  .page-hero {
    min-height: 620px;
    padding: 86px 18px 60px;
  }

  .page-hero {
    min-height: 430px;
  }

  h1 {
    font-size: 39px;
    line-height: 1.04;
  }

  .hero-home h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  .feature-card img,
  .equipment-card img,
  .seo-main-card img {
    height: 220px;
    min-height: 220px;
  }

  .form-card,
  .map-card,
  .card,
  .stat-card,
  .popular-request-card,
  .seo-link-card,
  .contact-item {
    padding: 20px;
  }

  .seo-main-card > div {
    padding: 20px;
  }
}
