:root {
  --blue: #0b63df;
  --blue-dark: #082b5b;
  --navy: #061f45;
  --text: #061942;
  --muted: #52617a;
  --line: #dfe7f6;
  --soft: #f3f7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1250px;
}

.site-header {
  box-shadow: 0 1px 0 rgba(8, 30, 67, .08);
}

.navbar {
  min-height: 60px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.logo:hover,
.footer-logo:hover {
  opacity: .9;
}

.logo img {
  display: block;
  width: 130px;
  height: auto;
}

.footer-logo img {
  display: block;
  width: 96px;
  height: auto;
  background: transparent;
  border-radius: 50%;
}

.navbar-nav {
  gap: 18px;
}

.nav-link {
  position: relative;
  color: #050b19;
  font-size: 15px;
  font-weight: 500;
  padding: 20px 0 !important;
}

.nav-link.active {
  color: var(--blue) !important;
}

.nav-link.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  border-radius: 3px 3px 0 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #050b19;
  font-weight: 700;
  white-space: nowrap;
}

.phone-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  place-items: center;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  color: #fff;
  background: #031a3b;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 24, 58, .16) 0%, rgba(4, 24, 58, .24) 34%, rgba(4, 24, 58, .76) 58%, rgba(2, 16, 41, .97) 100%),
    radial-gradient(circle at 76% 35%, rgba(11, 99, 223, .25), transparent 36%),
    image-set(
      url("assets/hero-truck-priorytet.webp") type("image/webp"),
      url("assets/hero-truck-priorytet.png") type("image/png")
    ) 24% center / cover no-repeat;
}

.hero-bg::before {
  position: absolute;
  inset: 0 0 0 auto;
  width: 38%;
  content: "";
  background-image: radial-gradient(rgba(38, 119, 230, .45) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .45;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 42px;
  padding-bottom: 42px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.16;
}

.hero h1 span {
  color: #0868eb;
}

.hero-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  font-size: 17px;
}

.hero-list li {
  position: relative;
  padding-left: 29px;
}

.hero-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  content: "✓";
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-license-badge {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .35));
  transform: translateX(30px);
}

.btn {
  border-radius: 6px;
  font-weight: 700;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 7px 18px rgba(11, 99, 223, .2);
}

.btn-primary:hover {
  background: #0756c4;
  border-color: #0756c4;
}

.btn-outline-light {
  min-width: 270px;
  border-color: rgba(255, 255, 255, .5);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.trust-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(205, 217, 238, .9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(4, 24, 58, .12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 14px 24px;
}

.round-icon,
.service-icon {
  display: inline-grid;
  flex: 0 0 auto;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 50%;
  place-items: center;
  font-weight: 800;
}

.round-icon {
  width: 54px;
  height: 54px;
  font-size: 30px;
}

.person-icon {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  color: inherit;
}

.person-icon::before,
.person-icon::after {
  position: absolute;
  left: 50%;
  content: "";
  border: 3px solid currentColor;
  transform: translateX(-50%);
}

.person-icon::before {
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.person-icon::after {
  bottom: 0;
  width: 25px;
  height: 14px;
  border-radius: 14px 14px 4px 4px;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.trust-item p,
.whatsapp-bar p,
.site-footer p {
  margin: 0;
}

.trust-item p {
  color: #26395d;
  font-size: 14px;
}

.cards-section {
  padding: 18px 0 5px;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 136px;
  padding: 24px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(6, 31, 69, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover,
.service-card:focus {
  color: var(--text);
  border-color: #bdd2f5;
  box-shadow: 0 10px 24px rgba(6, 31, 69, .11);
  transform: translateY(-2px);
}

.service-card:hover .service-icon,
.service-card:focus .service-icon {
  color: #fff;
  background: #22b85a;
}

.service-icon {
  width: 106px;
  height: 106px;
  font-size: 54px;
  transition: color .2s ease, background .2s ease;
}

.service-copy strong {
  display: block;
  max-width: 245px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.13;
}

.service-copy small {
  display: block;
  max-width: 240px;
  color: #17315d;
  font-size: 14px;
  line-height: 1.35;
}

.whatsapp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 10px;
  padding: 14px 32px 14px 24px;
  background: linear-gradient(90deg, #eef5ff, #f7fbff);
  border: 1px solid #dfebfb;
  border-radius: 8px;
}

.wa-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 265px;
}

.wa-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #24c05a;
  border-radius: 8px;
  place-items: center;
  font-size: 26px;
}

.wa-main strong {
  display: block;
  font-size: 18px;
}

.wa-main p {
  font-size: 14px;
}

.wa-benefits {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  color: #14305e;
  font-size: 14px;
}

.wa-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  color: var(--blue);
  background: #fff;
  border: 1px solid #d6e5ff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(11, 99, 223, .08);
}

.site-footer {
  padding: 18px 0 12px;
  color: #dbe9ff;
  background: linear-gradient(120deg, #062654, #031734);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 6px;
}

.site-footer p {
  max-width: 220px;
  color: #d8e5fb;
  font-size: 14px;
  line-height: 1.35;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 4px;
  color: #dbe9ff;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  place-items: center;
  font-weight: 800;
}

.site-footer .footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin-top: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #24c05a;
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(36, 192, 90, .18);
  font-weight: 800;
}

.footer-action-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.site-footer .footer-whatsapp-btn::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  content: "☏";
  color: #24c05a;
  background: #fff;
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
}

.site-footer .footer-whatsapp-btn:hover {
  color: #fff;
  background: #1da84d;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 12px;
  color: #b9c8df;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 40px;
}

.article-hero {
  position: relative;
  padding: 58px 0 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 16, 41, .95), rgba(4, 24, 58, .78)),
    image-set(
      url("assets/hero-truck-priorytet.webp") type("image/webp"),
      url("assets/hero-truck-priorytet.png") type("image/png")
    ) center / cover no-repeat;
}

.contact-hero {
  padding: 50px 0 54px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 16, 41, .96), rgba(4, 24, 58, .82)),
    image-set(
      url("assets/hero-truck-priorytet.webp") type("image/webp"),
      url("assets/hero-truck-priorytet.png") type("image/png")
    ) center / cover no-repeat;
}

.contact-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
}

.contact-hero p {
  max-width: 650px;
  margin: 0;
  color: #e4efff;
  font-size: 18px;
}

.contact-page {
  padding: 42px 0 58px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 32px;
  align-items: stretch;
}

.contact-details {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(6, 31, 69, .06);
}

.contact-details h2 {
  margin: 22px 0 12px;
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-details h3 {
  margin: 24px 0 10px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
}

.contact-details p {
  margin: 0 0 10px;
  color: #20385f;
  line-height: 1.55;
}

.contact-details a {
  color: var(--blue);
  font-weight: 700;
}

.route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: #fff !important;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(11, 99, 223, .2);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.whatsapp-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 12px 18px;
  color: #fff !important;
  background: #24c05a;
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(36, 192, 90, .22);
  font-weight: 800;
}

.whatsapp-call-btn::before {
  display: inline-grid;
  width: 24px;
  height: 24px;
  content: "☏";
  color: #24c05a;
  background: #fff;
  border-radius: 50%;
  place-items: center;
  font-size: 16px;
}

.whatsapp-call-btn:hover {
  background: #1da84d;
}

.contact-map {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(6, 31, 69, .08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.office-entrance-section {
  margin-top: 34px;
}

.office-entrance-section h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
}

.office-entrance-section img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(6, 31, 69, .08);
}

.faq-page {
  padding: 42px 0 58px;
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(6, 31, 69, .05);
}

.faq-item h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
}

.faq-item p {
  margin: 0 0 12px;
  color: #20385f;
  font-size: 16px;
  line-height: 1.62;
}

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

.faq-item ul,
.faq-item ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  margin: 0;
  color: #20385f;
  line-height: 1.55;
}

.faq-cta {
  margin-top: 24px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(120deg, #062654, #0b63df);
  border-radius: 8px;
}

.faq-cta h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
}

.faq-cta p {
  max-width: 680px;
  margin: 0 0 18px;
  color: #e4efff;
}

.article-hero h1 {
  max-width: 820px;
  margin: 18px 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}

.article-hero p {
  max-width: 710px;
  margin: 0 0 24px;
  color: #e4efff;
  font-size: 18px;
  line-height: 1.5;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #c8d9f5;
  font-size: 14px;
}

.breadcrumbs a {
  color: #fff;
}

.breadcrumbs span::before {
  margin-right: 10px;
  content: "/";
  color: #8fb7f6;
}

.article-page {
  padding: 42px 0 56px;
  background: #fff;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.article-content {
  color: #12284d;
  font-size: 17px;
  line-height: 1.72;
}

.article-content h2 {
  margin: 34px 0 16px;
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.22;
}

.article-content p {
  margin: 0 0 16px;
}

.article-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0 0 18px;
}

.article-image {
  display: flex;
  justify-content: center;
  margin: 0 0 28px;
  padding: 24px;
  background: #f3f7ff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-image img {
  display: block;
  width: min(100%, 460px);
  height: auto;
}

.article-sidebar {
  position: sticky;
  top: 88px;
  padding: 24px;
  background: #f3f7ff;
  border: 1px solid #dfe7f6;
  border-radius: 8px;
}

.article-sidebar h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.article-sidebar p {
  margin: 0 0 18px;
  color: #26395d;
  line-height: 1.5;
}

.sidebar-phone {
  display: block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0;
    padding-top: 10px;
  }

  .nav-link {
    padding: 10px 0 !important;
  }

  .nav-link.active::after {
    display: none;
  }

  .phone-link {
    padding: 10px 0 14px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(2, 16, 41, .88), rgba(4, 24, 58, .86)),
      image-set(
        url("assets/hero-truck-priorytet.webp") type("image/webp"),
        url("assets/hero-truck-priorytet.png") type("image/png")
      ) center / cover no-repeat;
  }

  .trust-strip {
    margin-top: 0;
  }

  .whatsapp-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .wa-benefits {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .logo {
    font-size: 26px;
  }

  .hero-content {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .hero-list {
    font-size: 15px;
  }

  .hero-actions .btn,
  .btn-outline-light {
    width: 100%;
    min-width: auto;
  }

  .hero-license-badge {
    width: 78px;
    height: 78px;
  }

  .service-card {
    align-items: flex-start;
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .service-icon {
    width: 74px;
    height: 74px;
    font-size: 38px;
  }

  .service-copy strong {
    font-size: 17px;
  }

  .trust-item {
    padding: 13px 18px;
  }

  .whatsapp-bar {
    padding: 16px;
  }

  .wa-benefits {
    display: grid;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    flex-direction: column;
    gap: 2px;
  }
}
