/* Phase 2 service conversion layer */
:root {
  --phase2-button-radius: 14px;
  --phase2-header-button-radius: 9px;
}

#page > .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.admin-bar #page > .site-header {
  top: 32px;
}

.site-header__bar {
  background: transparent;
}

body {
  padding-top: 68px;
}
body.admin-bar {
  padding-top: 100px;
}

header .header-bar {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, auto) minmax(120px, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  min-height: 68px;
  padding: 4px 0;
  background: transparent;
}
header .header-logo {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: 0 8px 22px rgba(255, 0, 0, 0.16);
  transition: box-shadow 0.16s ease;
}
header .header-logo:hover, header .header-logo:focus {
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.22);
  text-decoration: none;
}
header .header-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
header .header-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}
header .header-cta {
  display: flex;
  justify-self: end;
  flex: 0 0 auto;
}
header .header-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 116px;
  padding: 0 18px;
  border-radius: var(--phase2-header-button-radius);
  background: #ff0000;
  color: #fff;
  border: 1px solid #ff0000;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
header .header-cta .btn-cta:hover, header .header-cta .btn-cta:focus {
  background: #cc0000;
  border-color: #cc0000;
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.24);
  text-decoration: none;
}
header .navbar {
  margin: 0;
  min-height: 0;
  border: 0;
  background: transparent;
}
header .navbar-collapse {
  padding: 0;
  border: 0;
  box-shadow: none;
}
header .navbar-default {
  background: transparent;
  border: 0;
}
header .navbar-default .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 1.75vw, 28px);
  margin: 0;
  padding: 0;
}
header .navbar-default .navbar-nav > li {
  position: relative;
  padding: 0;
}
header .navbar-default .navbar-nav > li > a {
  position: relative;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 22px 0 20px;
  color: #202020;
  box-sizing: border-box;
  outline: 0;
  box-shadow: none;
}
header .navbar-default .navbar-nav > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 0;
  height: 2px;
  background: #ff0000;
  opacity: 1;
  transform: none;
  transition: width 0.16s ease;
}
header .navbar-default .navbar-nav > li > a:hover, header .navbar-default .navbar-nav > li > a:focus {
  color: #ff0000;
  background: transparent;
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
header .navbar-default .navbar-nav > li > a:hover::after, header .navbar-default .navbar-nav > li > a:focus::after {
  width: 100%;
  transform: none;
}
header .navbar-default .navbar-nav > li > a:focus-visible {
  outline: 0;
  box-shadow: none;
}
header .navbar-default .navbar-nav > li.current-menu-item > a,
header .navbar-default .navbar-nav > li.current_page_item > a {
  color: #ff0000;
  background: transparent;
  text-decoration: none;
}
header .navbar-default .navbar-nav > li.current-menu-item > a::after,
header .navbar-default .navbar-nav > li.current_page_item > a::after {
  width: 100%;
  transform: none;
}
header .navbar-default .navbar-nav > li > .sub-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 1001;
  display: grid;
  min-width: 280px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
header .navbar-default .navbar-nav > li:hover > .sub-menu,
header .navbar-default .navbar-nav > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
header .navbar-default .navbar-nav > li > .sub-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #202020;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}
header .navbar-default .navbar-nav > li > .sub-menu a:hover, header .navbar-default .navbar-nav > li > .sub-menu a:focus {
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
  outline: 0;
  text-decoration: none;
}

.site-hero.logo_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(470px, 62vh);
  background: url("../images/logo_bg.png") center/cover no-repeat;
}
.site-hero.logo_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}
.site-hero.logo_wrapper .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 48px 16px;
}
.site-hero.logo_wrapper img {
  position: static;
  margin: 0 auto 22px;
  max-width: 420px;
  width: 100%;
  height: auto;
}
.site-hero.logo_wrapper .hero-buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
}
.site-hero.logo_wrapper .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  text-align: center;
  white-space: nowrap;
}

.services-archive,
.service-landing {
  background: #fff;
  color: #161616;
}

.services-hub-hero,
.service-landing-hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.62)), url("../images/services-archive-hero.jpg") center/cover no-repeat;
  color: #fff;
  padding: clamp(56px, 8vw, 110px) 0;
}
.services-hub-hero .breadcrumbs,
.services-hub-hero .breadcrumbs a,
.service-landing-hero .breadcrumbs,
.service-landing-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}
.services-hub-hero .breadcrumbs,
.service-landing-hero .breadcrumbs {
  display: none;
}
.services-hub-hero h1,
.service-landing-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}
.services-hub-hero p,
.service-landing-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.service-landing-hero--car {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.62)), url("../images/services-hero-cars.jpg") center/cover no-repeat;
}

.service-landing-hero--imports {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(18, 18, 18, 0.6)), url("../images/services-archive-hero.jpg") center/cover no-repeat;
}

.services-hub-hero__grid,
.service-landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff0000;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-hub-hero__actions,
.service-landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.services-hub-hero__actions .btn-cta,
.service-landing-hero__actions .btn-cta {
  border-radius: var(--phase2-button-radius);
}
.services-hub-hero__actions .btn-cta--ghost,
.service-landing-hero__actions .btn-cta--ghost {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.94);
  color: #121212;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.services-hub-hero__actions .btn-cta--ghost:hover, .services-hub-hero__actions .btn-cta--ghost:focus,
.service-landing-hero__actions .btn-cta--ghost:hover,
.service-landing-hero__actions .btn-cta--ghost:focus {
  background: #fff;
  border-color: #fff;
  color: #121212;
  text-decoration: none;
}

.services-hub-panel,
.service-landing-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.services-hub-panel__stat + .services-hub-panel__stat {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.services-hub-panel strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}
.services-hub-panel span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

.service-landing-panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 24px;
}
.service-landing-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-landing-panel li {
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.service-landing-panel li:last-child {
  border-bottom: 0;
}
.service-landing-panel > a {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 750;
}

.services-hub-list,
.services-process,
.car-intro-section,
.service-split-section,
.service-docs-section,
.car-clearance-details,
.car-guides-section,
.car-clearance-cta,
.imports-intro-section,
.imports-risk-section,
.imports-services-section,
.imports-docs-section,
.imports-specialization-section,
.imports-categories-section,
.imports-why-section,
.service-content-section,
.service-contact-section,
.services-final-cta {
  padding: clamp(54px, 7vw, 92px) 0;
}

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

.services-card {
  min-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.services-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.32);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.1);
}
.services-card__link {
  display: flex;
  min-height: 280px;
  height: 100%;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}
.services-card__link:hover, .services-card__link:focus {
  color: inherit;
  text-decoration: none;
}
.services-card__number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 750;
}
.services-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}
.services-card p {
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.65;
}
.services-card__cta {
  margin-top: auto;
  color: #ff0000;
  font-weight: 750;
}

.services-process {
  background: #f6f7f8;
}
.services-process .service-process-heading {
  margin: 0 0 34px;
}
.services-process .service-process-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.services-process .service-process-heading p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}
.services-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.services-process__grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.services-process__grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.services-process__item {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.services-process__item strong {
  display: inline-flex;
  margin-bottom: 28px;
  color: #ff0000;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.services-process__item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}
.services-process__item p {
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.65;
}

.service-scope-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.96)), linear-gradient(135deg, rgba(255, 0, 0, 0.04), rgba(0, 0, 0, 0.02));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}
.service-scope-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 4vw, 46px);
  width: 72px;
  height: 2px;
  background: #ff0000;
}
.service-scope-panel h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: 0;
  color: #111;
}
.service-scope-panel p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}

.service-trust-strip {
  padding: 22px 0;
  background: #111;
  color: #fff;
}
.service-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-trust-strip strong {
  display: block;
  font-size: 22px;
}
.service-trust-strip span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.car-intro-section {
  background: #fff;
}
.car-intro-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-bottom: clamp(26px, 4vw, 44px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.car-intro-section h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.car-intro-section p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.78;
}
.car-intro-section p + p {
  margin-top: 16px;
}

.service-split-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
.service-split-section h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}
.service-split-section p {
  color: rgba(0, 0, 0, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.service-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-benefit-card,
.service-content-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}

.service-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}
.service-benefit-card p {
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.75;
}

.service-content-card {
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.75;
}

.service-docs-section {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.service-docs-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.service-docs-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 2px;
  background: #ff0000;
}
.service-docs-card h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.service-docs-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}
.service-docs-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.service-docs-card__chips li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  color: rgba(0, 0, 0, 0.76);
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}
.service-docs-card__actions {
  display: grid;
  gap: 10px;
}

.service-content-section--editor {
  background: #fff;
}

.car-clearance-details {
  background: #f5f6f7;
}
.car-clearance-details__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.56fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)), linear-gradient(135deg, rgba(255, 0, 0, 0.04), rgba(0, 0, 0, 0.03));
  padding: clamp(32px, 5vw, 54px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.05);
}
.car-clearance-details__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 2px;
  background: #ff0000;
}
.car-clearance-details__copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.car-clearance-details__copy p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}
.car-clearance-details__copy p + p {
  margin-top: 14px;
}
.car-clearance-details__routes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(24px, 4vw, 44px);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.car-clearance-details__routes h3 {
  margin: 0 0 22px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: 0;
}

.car-clearance-route-list {
  display: grid;
  gap: 0;
}

.car-clearance-route-row {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.car-clearance-route-row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.car-clearance-route-row strong {
  display: block;
  margin-bottom: 6px;
  color: #111;
  font-size: 18px;
  font-weight: 850;
}
.car-clearance-route-row p {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  line-height: 1.65;
}

.car-guides-section {
  background: #fff;
}
.car-guides-section__header {
  margin-bottom: 28px;
}
.car-guides-section__header h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.car-guides-section__header p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}

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

.car-guide-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.car-guide-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 850;
}
.car-guide-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}
.car-guide-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.7;
}
.car-guide-card:hover, .car-guide-card:focus {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.3);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.1);
}
.car-guide-card:hover span, .car-guide-card:focus span {
  background: #ff0000;
}

.car-clearance-cta {
  background: #f5f6f7;
}
.car-clearance-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
}
.car-clearance-cta__inner h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.car-clearance-cta__inner p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}
.car-clearance-cta__actions {
  display: grid;
  gap: 10px;
}

.imports-trust-strip strong {
  font-size: 20px;
}

.imports-hero-panel h2 {
  font-size: 28px;
}

.imports-section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}
.imports-section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.imports-section-heading p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}

.imports-intro-section {
  background: #fff;
}
.imports-intro-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-bottom: clamp(26px, 4vw, 44px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.imports-intro-section h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.imports-intro-section p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.78;
}
.imports-intro-section p + p {
  margin-top: 16px;
}

.imports-risk-section,
.imports-docs-section,
.imports-categories-section,
.imports-final-cta {
  background: #f5f6f7;
}

.imports-risk-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.96)), linear-gradient(135deg, rgba(255, 0, 0, 0.04), rgba(0, 0, 0, 0.02));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}
.imports-risk-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 5vw, 54px);
  width: 72px;
  height: 2px;
  background: #ff0000;
}
.imports-risk-panel h2,
.imports-risk-panel h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.imports-risk-panel p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}
.imports-risk-panel p + p {
  margin-top: 14px;
}

.imports-services-section,
.imports-specialization-section,
.imports-why-section {
  background: #fff;
}

.imports-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.imports-card-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
}
.imports-card-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: #ff0000;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.imports-card-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 850;
}
.imports-card-grid p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.65;
}

.imports-docs-panel {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
}

.imports-docs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.74fr);
  gap: 18px;
}

.imports-docs-list,
.imports-note-panel {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #f8f9fa;
}
.imports-docs-list h3,
.imports-note-panel h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 850;
}
.imports-docs-list ul,
.imports-note-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.imports-docs-list li,
.imports-note-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.55;
}
.imports-docs-list li::before,
.imports-note-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff0000;
}
.imports-docs-list p,
.imports-note-panel p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.7;
}

.imports-note-panel {
  margin-top: 18px;
}

.imports-inline-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.imports-inline-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.7;
}

.imports-specialization-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.imports-specialization-grid h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.imports-specialization-grid p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.78;
}
.imports-specialization-grid p + p {
  margin-top: 16px;
}

.imports-category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.imports-category-list li {
  padding: 13px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.035);
}

.imports-category-note {
  margin: 24px 0 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.7;
}

.imports-why-panel {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 252, 0.96)), linear-gradient(135deg, rgba(255, 0, 0, 0.035), rgba(0, 0, 0, 0.02));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.055);
}
.imports-why-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 5vw, 54px);
  width: 72px;
  height: 2px;
  background: #ff0000;
}
.imports-why-panel__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 42px);
}
.imports-why-panel h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}
.imports-why-panel__header p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.75;
}
.imports-why-panel__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  list-style: none;
}
.imports-why-panel li {
  padding: 24px clamp(18px, 2vw, 28px) 0;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.imports-why-panel li:last-child {
  border-right: 0;
}
.imports-why-panel li:first-child {
  padding-left: 0;
}
.imports-why-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}
.imports-why-panel span {
  color: rgba(0, 0, 0, 0.66);
  font-size: 16px;
  line-height: 1.68;
}

.imports-final-cta .car-clearance-cta__inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.96)), linear-gradient(135deg, rgba(255, 0, 0, 0.035), rgba(0, 0, 0, 0.02));
}

.service-landing-hero--exports {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.6)), url("../images/services-archive-hero.jpg") center/cover no-repeat;
}

.exports-hero-panel h2 {
  font-size: 28px;
}
.exports-hero-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.exports-hero-panel li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.exports-trust-strip strong {
  font-size: 20px;
}

.exports-intro-section,
.exports-support-section,
.exports-process-section,
.exports-docs-section,
.exports-coverage-section,
.exports-logistics-section,
.exports-final-cta {
  padding: clamp(56px, 7vw, 96px) 0;
}

.exports-intro-section,
.exports-coverage-section {
  background: #fff;
}

.exports-support-section,
.exports-docs-section,
.exports-final-cta {
  background: #f5f6f7;
}

.exports-logistics-section {
  background: #fff;
}

.exports-intro-section__grid,
.exports-support-panel,
.exports-logistics-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.exports-intro-section__grid {
  padding-bottom: clamp(26px, 4vw, 44px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.exports-intro-section h2,
.exports-support-panel h2,
.exports-logistics-panel h2,
.exports-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}

.exports-intro-section p,
.exports-support-panel p,
.exports-logistics-panel p,
.exports-section-heading p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 17px;
  line-height: 1.78;
}
.exports-intro-section p + p,
.exports-support-panel p + p,
.exports-logistics-panel p + p,
.exports-section-heading p + p {
  margin-top: 16px;
}

.exports-support-panel,
.exports-logistics-panel {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.96)), linear-gradient(135deg, rgba(255, 0, 0, 0.035), rgba(0, 0, 0, 0.02));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.055);
}
.exports-support-panel::before,
.exports-logistics-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 5vw, 54px);
  width: 72px;
  height: 2px;
  background: #ff0000;
}

.exports-docs-panel {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
}

.exports-section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}
.exports-section-heading h2 {
  margin-bottom: 12px;
}

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

.exports-docs-list,
.exports-note-panel {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #f8f9fa;
}
.exports-docs-list h3,
.exports-note-panel h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 850;
}
.exports-docs-list ol,
.exports-note-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: export-docs;
}
.exports-docs-list li,
.exports-note-panel li {
  position: relative;
  padding-left: 34px;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.55;
  counter-increment: export-docs;
}
.exports-docs-list li::before,
.exports-note-panel li::before {
  content: counter(export-docs, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: #ff0000;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}
.exports-docs-list p,
.exports-note-panel p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.7;
}

.exports-note-panel {
  margin-top: 18px;
}

.exports-category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.exports-category-list li {
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.035);
}

.exports-logistics-panel {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.exports-final-cta .car-clearance-cta__inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.96)), linear-gradient(135deg, rgba(255, 0, 0, 0.035), rgba(0, 0, 0, 0.02));
}

.faq-premium .faq-premium__header {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.faq-premium .faq-premium__header p {
  max-width: none;
}

.service-faq {
  background: #f4f5f6;
}
.service-faq .faq-premium__header {
  margin: 0 0 34px;
}
.service-faq .faq-premium__header h2 {
  margin-top: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}
.service-faq .faq-premium__header p {
  color: rgba(0, 0, 0, 0.62);
  font-size: 17px;
}
.service-faq .faq-premium__list {
  display: grid;
  gap: 12px;
}
.service-faq .faq-item {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.service-faq .faq-item:hover {
  border-color: rgba(255, 0, 0, 0.24);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
}
.service-faq .faq-item[open] {
  border-color: rgba(0, 0, 0, 0.12);
}
.service-faq .faq-item__summary {
  min-height: 64px;
  padding: 20px 22px;
}
.service-faq .faq-item__q {
  font-size: 17px;
  font-weight: 800;
}
.service-faq .faq-item__icon {
  width: 28px;
  height: 28px;
  border-color: rgba(0, 0, 0, 0.12);
}
.service-faq .faq-item__content {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 22px 24px;
}
.service-faq .faq-item__content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.66);
}

.service-contact-section {
  background: #f8f8f8;
  color: #111;
}

.service-mini-nav a {
  color: rgba(255, 255, 255, 0.86);
}
.service-mini-nav a.current_service, .service-mini-nav a:hover, .service-mini-nav a:focus {
  color: #fff;
  text-decoration: underline;
}

.news-archive {
  background: #fff;
  color: #14161a;
}

.news-hero {
  padding: clamp(52px, 7vw, 92px) 0 clamp(36px, 5vw, 64px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)), url("../images/services-archive-hero.jpg") center/cover no-repeat;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.news-hero .breadcrumbs,
.news-hero .breadcrumbs a {
  color: rgba(0, 0, 0, 0.58);
}
.news-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  margin-top: 16px;
}
.news-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}
.news-hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.66);
}

.news-topic-nav {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}
.news-topic-nav > span {
  color: #ff0000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-topic-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-topic-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #202020;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.news-topic-nav a:hover, .news-topic-nav a:focus {
  border-color: rgba(255, 0, 0, 0.32);
  color: #ff0000;
  text-decoration: none;
}

.news-listing {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
}

.news-section-heading {
  margin-bottom: 22px;
}
.news-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.news-section-heading--grid {
  margin-top: clamp(46px, 6vw, 76px);
}

.news-featured-wrap {
  position: relative;
  padding-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.news-featured-wrap::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 2px;
  background: #ff0000;
}

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

.news-card {
  min-height: 100%;
}
.news-card__link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.news-card__link:hover, .news-card__link:focus {
  color: inherit;
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.26);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.1);
  outline: 0;
}
.news-card__media {
  position: relative;
  aspect-ratio: 16/10;
  background: #eceff1;
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}
.news-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(255, 0, 0, 0.52)), url("../images/services-archive-hero.jpg") center/cover no-repeat;
  color: #fff;
  font-weight: 800;
}
.news-card__body {
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 22px;
}
.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(0, 0, 0, 0.52);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}
.news-card__meta span {
  color: #ff0000;
}
.news-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}
.news-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-size: 15px;
  line-height: 1.65;
}
.news-card__readmore {
  margin-top: auto;
  padding-top: 22px;
  color: #ff0000;
  font-weight: 800;
}
.news-card:hover .news-card__media img, .news-card:focus-within .news-card__media img {
  transform: scale(1.035);
}

.news-card--featured .news-card__link {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
}
.news-card--featured .news-card__media {
  aspect-ratio: auto;
  min-height: 420px;
}
.news-card--featured .news-card__body {
  min-height: 420px;
  padding: clamp(28px, 4vw, 46px);
  justify-content: center;
}
.news-card--featured h3 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}
.news-card--featured p {
  font-size: 17px;
  line-height: 1.75;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 64px);
}
.news-pagination .page-numbers {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #202020;
  font-weight: 800;
  text-decoration: none;
}
.news-pagination .page-numbers.current, .news-pagination .page-numbers:hover, .news-pagination .page-numbers:focus {
  border-color: #ff0000;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1199px) {
  header .header-bar {
    gap: 24px;
  }
  header .navbar-default .navbar-nav {
    gap: 18px;
  }
  header .navbar-default .navbar-nav > li > a {
    font-size: 15px;
  }
  header .header-cta .btn-cta {
    min-width: 108px;
    padding: 0 15px;
  }
  .services-process__grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .services-process__grid--four,
  .car-guides-grid,
  .imports-card-grid,
  .imports-category-list,
  .imports-why-panel__list,
  .exports-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .imports-why-panel li:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }
  .imports-why-panel li:nth-child(odd) {
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  header .navbar-toggle {
    display: none !important;
  }
  header .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 0;
  }
  header .navbar-default .navbar-nav > li {
    width: auto !important;
    opacity: 1 !important;
    float: none;
  }
}
@media (max-width: 991px) {
  .admin-bar #page > .site-header {
    top: 0;
  }
  body,
  body.admin-bar {
    padding-top: 64px;
  }
  header .header-bar {
    position: static;
    grid-template-columns: 50px minmax(104px, 1fr) 42px;
    gap: 10px;
    min-height: 64px;
    padding: 6px 0;
  }
  header .header-nav {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
    justify-self: end;
  }
  header .header-cta {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  header .header-cta .btn-cta {
    height: 34px;
    min-width: 104px;
    padding: 0 13px;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(255, 0, 0, 0.18);
  }
  header .navbar-toggle {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid #ff0000;
    border-radius: 999px;
    background: #ff0000;
    box-shadow: 0 10px 22px rgba(255, 0, 0, 0.22);
    float: none;
    position: relative;
    z-index: 1004;
  }
  header .navbar-toggle .icon-bar {
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #fff;
  }
  header .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
  }
  header .navbar-toggle:hover, header .navbar-toggle:focus {
    background: #cc0000;
    border-color: #cc0000;
  }
  header .navbar-toggle:hover .icon-bar, header .navbar-toggle:focus .icon-bar {
    background: #fff;
  }
  header .navbar-default {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1002;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  header .navbar-collapse {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  header .navbar-collapse.collapse {
    display: none !important;
  }
  header .navbar-collapse.collapse.in {
    display: block !important;
  }
  header .navbar-collapse.collapse.in .navbar-nav > li {
    width: 100% !important;
    opacity: 1 !important;
  }
  header #header-menu {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  header .navbar-default .navbar-nav {
    display: grid;
    gap: 0;
    justify-content: stretch;
    justify-items: stretch;
    width: 100%;
    margin: 0 !important;
    padding: 6px 0 !important;
    border-radius: 0 0 8px 8px;
    background: #050505;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  }
  header .navbar-default .navbar-nav > li {
    float: none;
    width: 100%;
    padding: 0 !important;
    opacity: 1;
    transition: none;
  }
  header .navbar-default .navbar-nav > li > a {
    display: block;
    width: 100%;
    padding: 9px 16px !important;
    color: #fff;
    font-size: 15px;
    text-align: left;
    white-space: normal;
    overflow: visible;
  }
  header .navbar-default .navbar-nav > li > a::after {
    display: none;
  }
  header .navbar-default .navbar-nav > li > a:hover {
    background: #ff0000;
    color: #fff;
  }
  header .navbar-default .navbar-nav > li > a:focus {
    background: transparent;
    color: #fff;
    outline: 0;
    box-shadow: none;
  }
  header .navbar-default .navbar-nav > li > .sub-menu {
    position: static;
    display: grid;
    gap: 0;
    min-width: 0;
    margin: 0 0 4px;
    padding: 0 0 5px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  header .navbar-default .navbar-nav > li:hover > .sub-menu,
  header .navbar-default .navbar-nav > li:focus-within > .sub-menu {
    transform: none;
  }
  header .navbar-default .navbar-nav > li > .sub-menu a {
    padding: 6px 26px !important;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 750;
    text-align: left;
    white-space: normal;
  }
  header .navbar-default .navbar-nav > li > .sub-menu a:hover {
    background: rgba(255, 0, 0, 0.18);
    color: #fff;
  }
  header .navbar-default .navbar-nav > li > .sub-menu a:focus {
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    outline: 0;
    box-shadow: none;
  }
  header .navbar-default .navbar-nav > li.current-menu-item > a,
  header .navbar-default .navbar-nav > li.current_page_item > a {
    background: #ff0000;
    color: #fff;
  }
  .services-hub-hero__grid,
  .service-landing-hero__grid,
  .car-intro-section__grid,
  .imports-intro-section__grid,
  .exports-intro-section__grid,
  .service-split-section__grid,
  .services-card-grid,
  .services-process__grid,
  .services-process__grid--five,
  .services-process__grid--four,
  .service-trust-strip__grid,
  .service-benefit-grid,
  .service-scope-panel,
  .car-clearance-details__panel,
  .car-guides-grid,
  .car-clearance-cta__inner,
  .imports-risk-panel,
  .imports-card-grid,
  .imports-docs-grid,
  .imports-specialization-grid,
  .imports-category-list,
  .imports-why-panel,
  .exports-support-panel,
  .exports-logistics-panel,
  .exports-docs-grid {
    grid-template-columns: 1fr;
  }
  .car-clearance-details__routes {
    padding-left: 0;
    border-left: 0;
  }
  .service-docs-card {
    grid-template-columns: 1fr;
  }
  .service-docs-card__actions {
    max-width: 320px;
  }
  .news-hero__grid,
  .news-card--featured .news-card__link {
    grid-template-columns: 1fr;
  }
  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-card--featured .news-card__media,
  .news-card--featured .news-card__body {
    min-height: auto;
  }
  .services-card__link,
  .services-process__item {
    min-height: auto;
  }
  .imports-inline-cta {
    display: grid;
    align-items: start;
  }
  .imports-why-panel__header {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .services-hub-hero {
    padding: 38px 0 36px;
    height: auto;
    min-height: 0;
    background-position: center top;
  }
  .services-hub-hero__grid {
    min-height: 0;
  }
  .services-hub-hero h1 {
    font-size: clamp(31px, 8vw, 40px);
  }
  .services-hub-hero p {
    font-size: 16px;
    line-height: 1.55;
  }
  .services-hub-panel {
    display: none;
  }
  .services-hub-list {
    padding: 34px 0 42px;
  }
  .services-hub-list .section-heading {
    margin: 0 0 18px;
  }
  .services-hub-list .section-heading h2 {
    margin-top: 0;
  }
  .services-hub-list .section-heading p {
    margin-bottom: 0;
    line-height: 1.6;
  }
  .services-archive .services-hub-hero__actions {
    display: none;
  }
}
@media (max-width: 600px) {
  .site-hero.logo_wrapper {
    min-height: 285px;
  }
  .site-hero.logo_wrapper .hero-content {
    padding: 30px 14px;
  }
  .site-hero.logo_wrapper img {
    max-width: 260px;
    margin-bottom: 16px;
  }
  .site-hero.logo_wrapper .hero-buttons {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }
  .site-hero.logo_wrapper .hero-btn {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0;
    padding: 11px 8px !important;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }
  .service-landing-hero {
    padding: 36px 0 56px;
  }
  .service-landing-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(29px, 8.2vw, 38px);
    line-height: 1.07;
  }
  .service-landing-hero p {
    font-size: 17px;
    line-height: 1.55;
  }
  .services-hub-hero__actions,
  .service-landing-hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }
  .service-landing-hero__actions .btn-cta {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }
  .service-landing-hero--car {
    padding-bottom: 64px;
    background-position: 58% center;
  }
  .service-landing-hero--car .service-landing-hero__actions .btn-cta--ghost {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
    color: #121212;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  }
  .news-card-grid {
    grid-template-columns: 1fr;
  }
  .news-hero h1 {
    font-size: 42px;
  }
  .news-topic-nav {
    padding: 18px;
  }
  .imports-why-panel__list {
    grid-template-columns: 1fr;
  }
  .exports-category-list {
    grid-template-columns: 1fr;
  }
  .imports-why-panel li {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }
}
@media (max-width: 479px) {
  .page-template-homepage-template .site-content {
    margin-top: 0;
  }
}
