:root {
  --navy: #061a49;
  --navy-medium: #0b285e;
  --navy-light: #173b75;
  --red: #ed1c2e;
  --red-dark: #cf1022;
  --white: #ffffff;
  --text: #0a1738;
  --muted: #5d6679;
  --background: #f7f8fb;
  --border: #e5e8ef;
  --shadow: 0 8px 25px rgba(6, 26, 73, 0.12);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(6, 26, 73, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 135px;
  height: 62px;
  object-fit: contain;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-menu a {
  position: relative;
  padding: 29px 0 22px;
  color: #10182f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: var(--red);
  transition: width 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 29px 0 22px;
  border: 0;
  color: #10182f;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 15px;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 3px;
  border-radius: 20px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-dropdown-toggle span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  font-size: 0;
  line-height: 0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--red);
}

.nav-dropdown.active .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown.open .nav-dropdown-toggle span,
.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -7px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown.open .nav-submenu,
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-menu .nav-submenu a {
  padding: 11px 13px;
  border-radius: 7px;
  font-size: 12px;
  text-transform: none;
}

.nav-menu .nav-submenu a::after {
  display: none;
}

.nav-menu .nav-submenu a:hover,
.nav-menu .nav-submenu a.active {
  color: var(--red);
  background: #fff1f2;
}

.button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 17px;
  height: 17px;
}

.button img.button-icon {
  width: 19px;
  height: 19px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.button-red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 9px 20px rgba(237, 28, 46, 0.24);
}

.button-red:hover {
  background: var(--red-dark);
}

.header-button {
  flex: 0 0 auto;
  min-width: 138px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 45px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 7px;
  background: #f1f3f8;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 8px;
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-slider {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 34%, rgba(6, 26, 73, 0.84) 51%, rgba(6, 26, 73, 0.14) 82%),
    linear-gradient(0deg, rgba(6, 26, 73, 0.35), transparent 62%);
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at 42% 30%, rgba(34, 72, 128, 0.35), transparent 35%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(540px, 54%);
  padding: 36px 0 28px;
}

.hero-label {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h2 {
  margin: 9px 0 13px;
  color: var(--red);
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 21px;
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
  background: transparent;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 23px;
  margin-top: 24px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

/* Section heading */
.section-heading {
  margin-bottom: 17px;
}

.section-heading p {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29px;
  height: 3px;
  border-radius: 8px;
  background: var(--red);
}

.small-heading {
  margin-bottom: 17px;
}

/* Services */
.services-section {
  padding: 20px 0 0;
  background: var(--white);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.8fr);
  gap: 25px;
  align-items: stretch;
}

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

.service-card {
  min-height: 165px;
  padding: 17px 10px 13px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(6, 26, 73, 0.08);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  margin: 0 auto 11px;
  border: 1.5px solid #6b7895;
  border-radius: 50%;
  color: var(--navy);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #333d55;
  font-size: 11.5px;
  line-height: 1.55;
}

.about-card {
  min-height: 224px;
  padding: 25px 28px 22px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(11, 40, 94, 0.95), var(--navy)),
    var(--navy);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}

.light-heading p {
  color: var(--white);
}

.about-card > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 12.5px;
  line-height: 1.65;
}

.about-card .button {
  margin-top: 2px;
  min-height: 37px;
  padding-inline: 22px;
}

/* Fleet */
.fleet-section {
  padding: 11px 0 31px;
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 6%, #f8f9fb 6%, #f8f9fb 100%);
}

.fleet-title {
  margin: 0 0 23px;
  text-align: center;
  color: var(--navy);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-title span {
  color: var(--red);
}

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

.fleet-card {
  position: relative;
  min-height: 287px;
  padding: 15px 13px 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(6, 26, 73, 0.11);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 11px 29px rgba(6, 26, 73, 0.16);
}

.fleet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  border-top: 7px solid var(--navy);
  border-left: 7px solid var(--navy);
  border-top-left-radius: 8px;
}

.fleet-number {
  position: absolute;
  top: 14px;
  left: 15px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.fleet-number.red {
  background: var(--red);
}

.fleet-number.navy {
  background: var(--navy);
}

.fleet-heading {
  min-height: 47px;
  padding: 0 5px 0 45px;
}

.fleet-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.fleet-heading p {
  margin: 2px 0 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.fleet-card > img {
  width: 100%;
  height: 146px;
  margin: 2px auto 5px;
  object-fit: contain;
}

.fleet-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--white);
  background: var(--navy);
}

.fleet-spec > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: left;
}

.fleet-spec svg {
  width: 21px;
  height: 21px;
  color: #fa4656;
}

.fleet-spec span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.18;
  text-transform: uppercase;
}

.fleet-spec strong {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.fleet-detail {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.fleet-detail:hover {
  color: var(--white);
  background: var(--red);
}

/* Information */
.information-section {
  padding: 56px 0;
  background: #f4f6fa;
}

.information-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.advantages-block,
.home-certification-block,
.service-area-block {
  padding: 28px 25px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 26, 73, 0.07);
}

.information-grid .section-heading {
  margin-bottom: 22px;
}

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

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.advantage-item > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
}

.advantage-item svg {
  width: 19px;
  height: 19px;
}

.advantage-item h3 {
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.advantage-item p {
  margin: 0;
  color: #464f62;
  font-size: 11px;
  line-height: 1.5;
}

.information-intro {
  margin: -9px 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.home-certification-grid {
  display: grid;
  gap: 13px;
}

.home-certification-card {
  min-height: 105px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e1e5ed;
  border-radius: 10px;
  background: #f9fafc;
  box-shadow: 0 7px 18px rgba(6, 26, 73, 0.07);
}

.home-certification-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: var(--white);
}

.home-certification-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-certification-card h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.home-certification-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.service-area-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area-list li {
  min-height: 34px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--navy);
  background: #f6f7fa;
  font-size: 11px;
  font-weight: 700;
}

.service-area-list span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.clients-section {
  position: relative;
  padding: 62px 0 66px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.09), transparent 27%),
    radial-gradient(circle at 90% 100%, rgba(237, 28, 46, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, #0b2d66 100%);
}

.clients-heading {
  margin-bottom: 32px;
  text-align: center;
}

.clients-heading > p {
  margin: 0 0 9px;
  color: #ffadb5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.clients-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3.3vw, 39px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.clients-heading > span {
  display: block;
  max-width: 670px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  line-height: 1.65;
}

.client-marquee {
  width: min(calc(100% - 24px), 1340px);
  margin-inline: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.client-marquee-track {
  width: max-content;
  display: flex;
  animation: client-logo-scroll 26s linear infinite;
  will-change: transform;
}

.client-logo-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.client-logo-card {
  width: 180px;
  height: 100px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 32px rgba(0, 0, 0, 0.22);
}

.client-marquee:hover .client-marquee-track,
.client-marquee:focus-within .client-marquee-track {
  animation-play-state: paused;
}

@keyframes client-logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Dynamic information ticker on homepage */
.home-information-ticker {
  position: relative;
  overflow: hidden;
  padding: 25px 0 30px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(237, 28, 46, .25), transparent 27%),
    linear-gradient(125deg, #061a49 0%, #0b316f 58%, #071c46 100%);
}

.home-information-ticker::after {
  content: "";
  position: absolute;
  top: -80px;
  right: 5%;
  width: 230px;
  height: 230px;
  border: 36px solid rgba(255, 255, 255, .035);
  border-radius: 50%;
  pointer-events: none;
}

.ticker-heading {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1180px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 0 auto 20px;
}

.ticker-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ticker-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4654;
  box-shadow: 0 0 0 5px rgba(255, 70, 84, .14);
  animation: ticker-pulse 1.7s ease infinite;
}

.ticker-heading h2 {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.2;
}

.ticker-heading p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
}

.ticker-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ticker-heading > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(237, 28, 46, .32);
}

.ticker-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  animation: information-scroll 46s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.ticker-group a {
  width: 355px;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  flex: 0 0 auto;
  padding: 13px 45px 13px 15px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, .075);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.ticker-group a:hover {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.ticker-group span {
  color: #ff9da6;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ticker-group strong {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticker-group time {
  position: absolute;
  top: 13px;
  right: 13px;
  color: rgba(255, 255, 255, .52);
  font-size: 8px;
}

.ticker-group a > i {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: #ff7c88;
  font-style: normal;
  font-weight: 800;
}

.ticker-viewport:hover .ticker-track,
.ticker-viewport:focus-within .ticker-track {
  animation-play-state: paused;
}

@keyframes information-scroll {
  to { transform: translateX(-50%); }
}

@keyframes ticker-pulse {
  50% { box-shadow: 0 0 0 10px rgba(255, 70, 84, 0); }
}

@media (max-width: 700px) {
  .ticker-heading {
    grid-template-columns: auto 1fr;
    width: min(calc(100% - 28px), 1180px);
  }

  .ticker-heading > a {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .ticker-group a { width: 300px; }
  .ticker-track { animation-duration: 38s; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .ticker-live i { animation: none; }
}

/* Minimal homepage update strip */
.home-update-strip {
  overflow: hidden;
  border-top: 1px solid #e7ebf1;
  border-bottom: 1px solid #e7ebf1;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 26, 73, .055);
}

.update-strip-layout {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.update-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 7px;
  color: #fff;
  background: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.update-strip-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .18);
  animation: ticker-pulse 1.8s ease infinite;
}

.update-strip-viewport {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.update-strip-track {
  width: max-content;
  display: flex;
  animation: update-title-scroll 38s linear infinite;
  will-change: transform;
}

.update-strip-group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.update-strip-group a {
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.update-strip-group a:hover { color: var(--red); }
.update-strip-group > span { color: #c9d0dc; font-size: 10px; }
.update-strip-viewport:hover .update-strip-track,
.update-strip-viewport:focus-within .update-strip-track { animation-play-state: paused; }

.update-strip-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.update-strip-all b { color: var(--red); font-size: 13px; }

@keyframes update-title-scroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 620px) {
  .update-strip-layout { min-height: 56px; grid-template-columns: auto minmax(0, 1fr); gap: 12px; }
  .update-strip-all { display: none; }
  .update-strip-label { padding: 7px 9px; }
  .update-strip-group { gap: 18px; padding-right: 18px; }
  .update-strip-track { animation-duration: 32s; }
}

@media (prefers-reduced-motion: reduce) {
  .update-strip-track { animation: none; }
  .update-strip-label i { animation: none; }
}

.gallery-section {
  padding: 54px 0 58px;
  background: var(--white);
}

.gallery-block > .section-heading {
  margin-bottom: 20px;
}

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

.gallery-grid a {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.gallery-button {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0 14px;
  border-radius: 4px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-button svg {
  width: 14px;
  height: 14px;
}

/* Interactive Gallery Preview */
.gallery-grid a { position: relative; display: block; }
.gallery-grid img { display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.gallery-grid a:hover img { transform: scale(1.09); filter: brightness(.6); }
.gallery-preview {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; color: var(--white); pointer-events: none;
  background: linear-gradient(180deg, rgba(6,26,73,.02) 18%, rgba(6,26,73,.18) 45%, rgba(6,26,73,.94) 100%);
  opacity: .88; transform: translateY(0); transition: opacity .35s ease, background .35s ease;
}
.gallery-preview::before {
  content: ""; position: absolute; top: 20px; right: 20px; width: 42px; height: 42px;
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%;
  background: rgba(6,26,73,.28) url("assets/icon/gallery-expand.svg") center / 22px 22px no-repeat;
}
.gallery-preview b {
  max-width: calc(100% - 36px); font-size: 12px; line-height: 1.35; letter-spacing: .06em; text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.gallery-grid a:hover .gallery-preview, .gallery-grid a:focus-visible .gallery-preview {
  opacity: 1; background: linear-gradient(180deg, rgba(6,26,73,.04) 10%, rgba(6,26,73,.3) 42%, rgba(6,26,73,.98) 100%);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox {
  position: fixed; z-index: 2000; inset: 0; display: grid; grid-template-columns: 80px minmax(0,980px) 80px;
  gap: 20px; align-items: center; justify-content: center; padding: 36px; background: rgba(2,9,27,.92);
  backdrop-filter: blur(12px); opacity: 0; transition: opacity .26s ease;
}
.gallery-lightbox.is-open { opacity: 1; }
.lightbox-open { overflow: hidden; }
.lightbox-content {
  width: 100%; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 16px;
  background: #071631; box-shadow: 0 30px 80px rgba(0,0,0,.45); transform: scale(.92) translateY(22px);
  transition: transform .35s cubic-bezier(.2,.75,.2,1);
}
.is-open .lightbox-content { transform: scale(1) translateY(0); }
.lightbox-image-frame { height: min(68vh,690px); display: grid; place-items: center; overflow: hidden; background: #020918; }
.lightbox-image-frame img {
  width: 100%; height: 100%; object-fit: contain; opacity: 0; transform: translateX(34px) scale(.975); filter: blur(3px);
  transition: opacity .28s ease, transform .38s cubic-bezier(.2,.75,.2,1), filter .3s ease;
}
.lightbox-image-frame img.is-visible { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
.lightbox-image-frame img.is-entering-previous { transform: translateX(-34px) scale(.975); }
.lightbox-image-frame img.is-leaving-next { opacity: 0; transform: translateX(-34px) scale(.975); filter: blur(3px); }
.lightbox-image-frame img.is-leaving-previous { opacity: 0; transform: translateX(34px) scale(.975); filter: blur(3px); }
.lightbox-content figcaption {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 17px 21px; color: var(--white);
}
.lightbox-content figcaption span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.lightbox-caption-copy { min-width: 0; }
.lightbox-content figcaption strong { display: block; font-size: 13px; line-height: 1.4; }
.lightbox-content figcaption small { display: block; margin-top: 4px; color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.5; }
.lightbox-close, .lightbox-nav {
  border: 1px solid rgba(255,255,255,.24); color: var(--white); background: rgba(255,255,255,.08);
  cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--red); transform: scale(1.07); }
.lightbox-close {
  position: absolute; top: 24px; right: 26px; width: 46px; height: 46px; border-radius: 50%; font-size: 29px; line-height: 1;
}
.lightbox-nav { width: 58px; height: 58px; border-radius: 50%; font-size: 36px; line-height: 1; }
.lightbox-previous { justify-self: end; }
.lightbox-next { justify-self: start; }
@media (max-width: 760px) {
  .gallery-lightbox { grid-template-columns: 48px minmax(0,1fr) 48px; gap: 8px; padding: 70px 10px 20px; }
  .lightbox-nav { width: 43px; height: 43px; font-size: 28px; }
  .lightbox-image-frame { height: 56vh; }
  .lightbox-close { top: 15px; right: 15px; }
}

/* Footer */
.footer {
  color: rgba(255, 255, 255, 0.83);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1.15fr 1.12fr 1.18fr;
  gap: 27px;
  padding: 28px 0 21px;
}

.footer-brand {
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand > img {
  width: 160px;
  height: 82px;
  padding: 0;
  object-fit: contain;
  background: transparent;
}

.footer-brand p {
  margin: 10px 0 13px;
  font-size: 11px;
  line-height: 1.65;
}

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

.social-links a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
  transition: transform .25s ease;
}

.social-links a img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.social-links a > span,
.social-links .linkedin-mark {
  font-size: 11px;
  line-height: 1;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.footer-column {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 13px;
  padding-bottom: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  border-radius: 6px;
  background: var(--red);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-information ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.footer-column li,
.footer-column p,
.footer-column a {
  font-size: 11px;
}

.footer-column li {
  margin-bottom: 7px;
}

.footer-column a:hover {
  color: var(--white);
}

.sales-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 11px;
  line-height: 1.55;
}

.footer-contact span {
  color: var(--white);
  font-size: 14px;
}

.footer-contact a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: 3px;
}

.footer-map-preview {
  width: 100%;
  height: 92px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-map-preview iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.footer-map-link {
  display: inline-flex;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px !important;
  font-weight: 700;
}

.footer-bottom {
  padding: 9px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 2px solid var(--red);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-menu {
    gap: 18px;
  }

  .header-button {
    display: none;
  }

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

  .service-card {
    min-height: 155px;
  }

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

  .advantages-block {
    grid-column: 1 / -1;
  }

  .gallery-grid img {
    height: 160px;
  }

  .gallery-button {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }

  .footer-column:nth-child(4),
  .footer-column:nth-child(5) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 118px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .js .nav-menu {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    margin: 0;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .js .nav-menu.open {
    display: flex;
  }

  .no-js .header-inner {
    flex-wrap: wrap;
    padding-bottom: 8px;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .nav-menu {
    position: static;
    order: 3;
    width: 100%;
    display: flex;
    margin: 0;
    padding: 7px 0 0;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    border: 0;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background: var(--white);
    box-shadow: none;
    scrollbar-width: thin;
  }

  .no-js .nav-menu a {
    flex: 0 0 auto;
    padding: 9px 11px;
    border: 0;
    border-radius: 6px;
    white-space: nowrap;
  }

  .nav-menu a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 0;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }

  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-submenu,
  .nav-dropdown.open .nav-submenu,
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 5px 8px 8px 18px;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .nav-submenu {
    display: grid;
  }

  .nav-menu .nav-submenu a {
    padding: 10px 12px;
    border: 0;
  }

  .no-js .nav-dropdown {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
  }

  .no-js .nav-dropdown-toggle {
    display: none;
  }

  .no-js .nav-submenu {
    display: flex;
    padding: 0;
    border: 0;
  }

  .hero {
    min-height: 610px;
    background: var(--navy);
  }

  .hero::before {
    background: linear-gradient(0deg, var(--navy) 0%, rgba(6, 26, 73, 0.97) 47%, rgba(6, 26, 73, 0.2) 82%);
  }

  .hero-slide {
    object-position: center top;
  }

  .hero-inner {
    min-height: 610px;
    align-items: flex-end;
  }

  .hero-content {
    width: 100%;
    padding: 0 0 27px;
  }

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

  .about-card {
    clip-path: none;
    border-radius: 10px;
  }

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

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

  .footer-brand,
  .footer-column {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .hero {
    min-height: 655px;
  }

  .hero-inner {
    min-height: 655px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero h2 {
    font-size: 25px;
  }

  .hero-copy {
    font-size: 11px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, max-content);
    gap: 13px 18px;
  }

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

  .service-card {
    min-height: 160px;
  }

  .fleet-title {
    line-height: 1.3;
  }

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

  .fleet-card {
    min-height: 300px;
  }

  .fleet-card > img {
    height: 165px;
  }

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

  .advantages-grid {
    gap: 17px 14px;
  }

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

  .gallery-grid img {
    height: 190px;
  }

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

  .footer-information ul {
    grid-template-columns: 1fr;
  }
}


/* Production accessibility and readability */
[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: var(--white);
  border-radius: 6px;
  background: var(--red);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

body {
  font-size: 16px;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29px;
  height: 3px;
  border-radius: 8px;
  background: var(--red);
}

.light-heading h2 {
  color: var(--white);
}

.linkedin-mark {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle span {
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  min-height: 46px;
  padding-inline: 22px;
  font-size: 13px;
}

.hero-copy {
  max-width: 540px;
  font-size: 15px;
  line-height: 1.65;
}

.service-card {
  min-height: 190px;
  padding: 20px 13px 17px;
}

.service-card h3 {
  font-size: 13px;
  line-height: 1.4;
}

.service-card p {
  font-size: 12px;
  line-height: 1.55;
}

.about-card > p {
  font-size: 13px;
  line-height: 1.7;
}

.fleet-card {
  min-height: 325px;
}

.fleet-spec span {
  font-size: 11px;
  line-height: 1.3;
}

.fleet-spec strong,
.fleet-detail {
  font-size: 12px;
}

.advantage-item h3 {
  font-size: 13px;
  line-height: 1.35;
}

.advantage-item p {
  font-size: 12px;
  line-height: 1.55;
}

.gallery-button {
  min-height: 38px;
  font-size: 12px;
}

.footer-brand p,
.footer-column li,
.footer-column p,
.footer-column a {
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom p {
  font-size: 11px;
}

@media (max-width: 820px) {
  .nav-menu a {
    font-size: 14px;
  }

  .service-card {
    min-height: 180px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .clients-section {
    padding-block: 52px 56px;
  }

  .clients-heading {
    margin-bottom: 27px;
  }

  .client-logo-group {
    gap: 12px;
    padding-right: 12px;
  }

  .client-logo-card {
    width: 150px;
    height: 84px;
    padding: 9px;
  }

  .hero-copy {
    font-size: 14px;
  }

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

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

  .footer-brand p,
  .footer-column li,
  .footer-column p,
  .footer-column a {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .client-marquee {
    width: min(calc(100% - 26px), var(--container));
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-marquee-track {
    width: 100%;
    animation: none !important;
  }

  .client-logo-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .client-logo-group[aria-hidden="true"] {
    display: none;
  }
}

/* Pop-up pilihan sales */
.sales-picker[hidden] {
  display: none !important;
}

.sales-picker {
  position: fixed;
  z-index: 4000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(2, 10, 31, 0.78);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.sales-picker.is-open {
  opacity: 1;
}

.sales-picker-open {
  overflow: hidden;
}

.sales-picker-panel {
  position: relative;
  width: min(100%, 880px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.22s ease;
}

.sales-picker.is-open .sales-picker-panel {
  transform: translateY(0) scale(1);
}

.sales-picker-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #f4f6fa;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sales-picker-close:hover {
  color: #ffffff;
  background: var(--red);
  transform: rotate(5deg);
}

.sales-picker-heading {
  max-width: 650px;
  margin: 0 auto 26px;
  padding-inline: 20px;
  text-align: center;
}

.sales-picker-eyebrow {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sales-picker-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.2;
}

.sales-picker-heading > span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.sales-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sales-picker-card {
  min-width: 0;
  padding: 22px 18px 18px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: linear-gradient(180deg, #ffffff, #f7f8fb);
  box-shadow: 0 9px 24px rgba(6, 26, 73, 0.08);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sales-picker-card:hover {
  border-color: rgba(237, 28, 46, 0.35);
  box-shadow: 0 16px 32px rgba(6, 26, 73, 0.13);
  transform: translateY(-4px);
}

.sales-picker-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 13px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #eef1f7;
  box-shadow: 0 7px 18px rgba(6, 26, 73, 0.16);
  object-fit: cover;
}

.sales-picker-role {
  margin: 0 0 2px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-picker-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}

.sales-picker-phone {
  display: block;
  margin: 5px 0 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.sales-picker-button {
  width: 100%;
  min-height: 42px;
  padding-inline: 12px;
  font-size: 11px;
}

@media (max-width: 720px) {
  .sales-picker {
    align-items: start;
    padding: 16px;
  }

  .sales-picker-panel {
    margin-block: 18px;
    padding: 30px 18px 20px;
  }

  .sales-picker-heading {
    margin-bottom: 20px;
    padding-inline: 22px;
  }

  .sales-picker-heading h2 {
    font-size: 24px;
  }

  .sales-picker-grid {
    grid-template-columns: 1fr;
  }

  .sales-picker-card {
    display: grid;
    grid-template-columns: 68px 1fr;
    grid-template-areas:
      "avatar role"
      "avatar name"
      "avatar phone"
      "button button";
    align-items: center;
    column-gap: 14px;
    padding: 14px;
    text-align: left;
  }

  .sales-picker-avatar {
    grid-area: avatar;
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .sales-picker-role {
    grid-area: role;
    align-self: end;
  }

  .sales-picker-card h3 {
    grid-area: name;
  }

  .sales-picker-phone {
    grid-area: phone;
    align-self: start;
    margin: 2px 0 0;
  }

  .sales-picker-button {
    grid-area: button;
    margin-top: 13px;
  }
}
