:root {
  --gold: #c9962e;
  --gold-dark: #ad7d1f;
  --navy: #061b2e;
  --deep-blue: #08243b;
  --text-dark: #151a21;
  --text-muted: #404a57;
  --light-bg: #f7f8fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 16px 38px rgba(6, 27, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
}

.btn {
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 14px 22px;
  text-transform: uppercase;
}

.btn i {
  margin-left: 9px;
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 22px rgba(201, 150, 46, 0.22);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--white);
  background: var(--gold-dark);
}

.btn-navy {
  color: var(--white);
  background: var(--navy);
}

.btn-navy:hover,
.btn-navy:focus {
  color: var(--white);
  background: #03111e;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 6px 20px rgba(6, 27, 46, 0.08);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(6, 27, 46, 0.13);
}

.navbar {
  min-height: 86px;
  padding: 0;
}

.navbar-brand img {
  display: block;
  width: auto;
  max-width: 318px;
  max-height: 72px;
  height: auto;
}

.navbar-nav {
  gap: 16px;
}

.nav-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 31px 0;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--gold);
}

.dropdown-menu {
  min-width: 270px;
  margin-top: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(201, 150, 46, 0.22);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(6, 27, 46, 0.16);
}

.mega-menu {
  width: min(880px, calc(100vw - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mega-menu.show {
  display: grid;
}

.dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 14px;
  color: var(--navy);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  white-space: normal;
}

.dropdown-item::before {
  content: none;
}

.dropdown-item i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  color: var(--gold);
  border: 1px solid rgba(201, 150, 46, 0.42);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--navy);
  background: rgba(201, 150, 46, 0.1);
}

.header-quote {
  white-space: nowrap;
}

@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: grid;
    top: calc(100% - 12px);
    left: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, 12px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
  }

  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu,
  .navbar .dropdown.show > .dropdown-menu,
  .navbar .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  .navbar .dropdown-toggle::after {
    transition: transform 0.18s ease;
  }

  .navbar .dropdown:hover > .dropdown-toggle::after,
  .navbar .dropdown:focus-within > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 760px;
  margin-top: 86px;
  display: flex;
  align-items: center;
  background: url("../images/classy-truck-banner-optimized.jpg") center center / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 27, 46, 0.92) 0%, rgba(6, 27, 46, 0.82) 38%, rgba(6, 27, 46, 0.18) 72%, rgba(6, 27, 46, 0.38) 100%);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, rgba(6, 27, 46, 0.52), transparent);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  gap: 22px;
  max-width: 690px;
}

.hero-accent {
  width: 5px;
  height: 156px;
  margin-top: 11px;
  flex: 0 0 5px;
  background: var(--gold);
  border-radius: 4px;
}

.hero-copy h1 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.03;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 545px;
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}

.stats-card {
  max-width: 370px;
  margin-left: auto;
  padding: 14px 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(6, 27, 46, 0.28);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  border-bottom: 1px solid var(--border);
}

.stat-item:last-child {
  border-bottom: 0;
}

.stat-item i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 150, 46, 0.45);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}

.stat-item strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-item span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Company Overview */
.overview-section {
  position: relative;
  padding: 78px 0 94px;
  background: #ffffff;
}

.overview-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 150, 46, 0.42) 50%, transparent 100%);
}

.overview-card {
  position: relative;
  overflow: hidden;
  padding: 46px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(6, 27, 46, 0.09);
}

.overview-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--gold);
  z-index: 2;
}

.overview-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 43%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(6, 27, 46, 0.78)), url("../images/hero-logistics.jpg") center center / cover no-repeat;
  z-index: 0;
}

.overview-card > * {
  position: relative;
  z-index: 1;
}

.overview-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.overview-kicker span {
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.overview-card h2 {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.overview-card p {
  margin: 0 0 15px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.overview-card p:last-child {
  margin-bottom: 0;
}

.overview-highlights {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
  padding: 22px;
  background: rgba(6, 27, 46, 0.2);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.overview-highlights div {
  position: relative;
  z-index: 1;
  min-height: 124px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 13px;
  padding: 20px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(6, 27, 46, 0.12);
}

.overview-highlights i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1.25px solid rgba(201, 150, 46, 0.58);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}

.overview-highlights span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Credential Bar */
.credential-bar {
  background: var(--navy);
}

.credential-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px 26px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.credential-item:last-child {
  border-right: 0;
}

.credential-item i {
  color: var(--gold);
  font-size: 35px;
  line-height: 1;
}

.credential-item span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

/* Services */
.services-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 92px;
  background:
    linear-gradient(180deg, rgba(244, 247, 250, 0.98) 0%, rgba(248, 249, 251, 0.97) 58%, rgba(255, 255, 255, 0.98) 100%),
    url("../images/truck-road.jpg") right center / auto 100% no-repeat;
  border-top: 1px solid rgba(6, 27, 46, 0.08);
  box-shadow: inset 0 18px 34px rgba(6, 27, 46, 0.045);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(6, 27, 46, 0.07) 58% 58.4%, transparent 58.4%),
    linear-gradient(90deg, rgba(201, 150, 46, 0.1) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 27, 46, 0.06) 0 1px, transparent 1px);
  background-size: 100% 100%, 72px 72px, 72px 72px;
  opacity: 0.45;
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-heading span,
.why-panel span,
.industries-panel span,
.network-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.network-copy h2,
.quote-inner h2 {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

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

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .service-card {
    grid-column: span 2;
  }

  .service-card:nth-child(6) {
    grid-column: 2 / span 2;
  }
}

.service-card {
  min-height: 270px;
  padding: 28px 22px 24px;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(6, 27, 46, 0.07);
}

.service-card i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 23px;
  color: var(--gold);
  border: 1.25px solid rgba(201, 150, 46, 0.58);
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.service-card h3 {
  min-height: 50px;
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.service-card ul,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 15px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* Why Choose */
.why-section {
  background: var(--white);
}

.why-image {
  min-height: 560px;
  height: 100%;
  background: url("../images/why-truck-optimized.jpg") center left / cover no-repeat;
}

.why-panel {
  min-height: 560px;
  height: 100%;
  padding: 64px 52px;
  color: var(--white);
  background: var(--navy);
}

.why-panel h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.check-grid p {
  display: flex;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.check-grid i {
  color: var(--gold);
  margin-top: -1px;
  font-size: 20px;
  line-height: 1;
}

.industries-panel {
  min-height: 560px;
  height: 100%;
  padding: 64px 48px;
  background: var(--white);
}

.industries-panel span {
  color: var(--navy);
  font-size: 20px;
}

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

.industry-grid div {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--navy);
  background: #fbfcfd;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.industry-grid i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  color: var(--gold);
  border: 1.25px solid rgba(201, 150, 46, 0.58);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

/* Network */
.network-section {
  padding: 96px 0;
  background: var(--light-bg);
}

.network-map {
  width: 100%;
  max-width: 370px;
  display: block;
  mix-blend-mode: multiply;
}

.network-copy h2 {
  margin-bottom: 18px;
}

.network-copy p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.network-stats {
  display: grid;
  gap: 18px;
}

.network-stats div {
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(6, 27, 46, 0.06);
}

.network-stats strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
}

.network-stats span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

/* Quote CTA */
.quote-section {
  position: relative;
  overflow: visible;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(190, 132, 28, 0.98), rgba(225, 151, 38, 0.94)),
    url("../images/hero-logistics.jpg") center center / cover no-repeat;
}

.quote-inner {
  position: relative;
  min-height: 184px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 28px 0;
}

.quote-person-wrap {
  align-self: end;
  height: 184px;
  position: relative;
}

.quote-person-wrap img {
 position: absolute;
    left: 16px;
    bottom: -28px;
    width: auto;
    height: 298px;
    display: block;
}

.quote-copy {
  min-width: 0;
}

.quote-inner h2 {
  margin-bottom: 9px;
  color: var(--white);
}

.quote-inner p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.6;
}

.quote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 18px;
}

.quote-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 800;
}

.quote-points i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 13px;
}

.quote-actions {
  display: grid;
  gap: 12px;
  min-width: 214px;
}

.quote-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.quote-phone:hover {
  color: var(--navy);
  background: var(--white);
}

/* Footer */
.site-footer {
  padding: 76px 0 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-logo {
  width: min(245px, 100%);
  height: auto;
  margin-bottom: 24px;
  padding: 9px;
  background: var(--white);
  border-radius: 7px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.site-footer h3 {
  margin-bottom: 21px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer li {
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-list i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 18px;
  line-height: 1;
}

.newsletter {
  display: grid;
  gap: 10px;
  min-width: 170px;
}

.newsletter input {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  outline: 0;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter button {
  height: 45px;
  color: var(--white);
  background: var(--gold);
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1199.98px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-copy h1 {
    font-size: 52px;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 76px;
    padding: 12px 0;
  }

  .navbar-brand img {
    max-width: 258px;
    max-height: 60px;
  }

  .navbar-collapse {
    padding: 18px 0 8px;
  }

  .navbar-nav {
    gap: 0;
    align-items: flex-start !important;
  }

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

  .mega-menu {
    position: static;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    margin: 8px 0 0;
    padding: 10px;
    box-shadow: none;
    transform: none !important;
  }

  .mega-menu.show {
    display: grid !important;
  }

  .navbar .dropdown.mobile-mega-open > .mega-menu {
    display: grid !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-item {
    min-height: 54px;
  }

  .header-quote {
    margin-top: 12px;
  }

  .hero-section {
    min-height: auto;
    margin-top: 76px;
    padding: 92px 0 72px;
  }

  .overview-card {
    padding: 38px 34px;
  }

  .overview-card::after {
    display: none;
  }

  .overview-highlights {
    background: linear-gradient(135deg, rgba(6, 27, 46, 0.88), rgba(8, 36, 59, 0.74)), url("../images/hero-logistics.jpg") center center / cover no-repeat;
  }

  .stats-card {
    margin: 0;
  }

  .credential-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .credential-item:nth-child(2) {
    border-right: 0;
  }

  .why-image,
  .why-panel,
  .industries-panel {
    min-height: auto;
  }

  .why-image {
    height: 360px;
  }

  .why-panel,
  .industries-panel {
    padding: 64px 32px;
  }

  .network-map {
    margin: 0 auto;
  }

  .quote-inner {
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 30px 0;
  }

  .quote-person-wrap {
    height: 160px;
  }

  .quote-person-wrap img {
    height: 178px;
  }

  .quote-actions {
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-copy {
    gap: 16px;
  }

  .hero-accent {
    height: 124px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 44px 0;
  }

  .quote-person-wrap {
    display: none;
  }

  .quote-actions {
    grid-template-columns: 1fr;
  }

  .stats-card {
    max-width: none;
  }

  .services-section,
  .network-section {
    padding: 72px 0;
  }

  .section-heading h2,
  .overview-card h2,
  .network-copy h2,
  .quote-inner h2 {
    font-size: 32px;
  }

  .overview-highlights {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .check-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 575.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section {
    padding: 72px 0 58px;
    background-position: center right;
  }

  .overview-section {
    padding: 54px 0;
  }

  .overview-card {
    padding: 34px 24px 30px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-item {
    min-height: 82px;
  }

  .credential-item {
    min-height: 82px;
    border-right: 0;
  }

  .why-panel,
  .industries-panel {
    padding: 54px 24px;
  }

  .why-panel h2 {
    font-size: 32px;
  }
}
