:root {
  --bg: #f4f6f7;
  --card: #ffffff;
  --text: #111719;
  --muted: #7c868c;
  --border: #e2e6e8;
  --dark: #1f2528;
  --gold: #b98200;
  --green: #1f8f55;
  --red: #b33a3a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

button,
input {
  font: inherit;
}

.hidden {
  display: none !important;
}

.topbar {
  height: 76px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.96);
}

.brand img {
  width: 168px;
  display: block;
}

.top-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 80px;
}

.hero {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow,
.small-label {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.tracking-form {
  max-width: 690px;
  margin: 32px auto 0;
  padding: 8px;
  display: flex;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 18px 45px rgba(20,30,35,.07);
}

.tracking-form input {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 17px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.tracking-form button {
  height: 50px;
  padding: 0 25px;
  border: 0;
  border-radius: 11px;
  background: var(--dark);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.tracking-form button:hover {
  opacity: .92;
}

.error-box {
  max-width: 690px;
  margin: 14px auto 0;
  padding: 13px 16px;
  border: 1px solid #f0caca;
  border-radius: 11px;
  background: #fff5f5;
  color: var(--red);
  font-size: 13px;
  text-align: left;
}

.result {
  display: grid;
  gap: 18px;
}

.shipment-head,
.route-card,
.info-card,
.map-card,
.events-card {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 12px 34px rgba(20,30,35,.04);
}

.shipment-head {
  padding: 24px 26px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tracking-number {
  display: block;
  margin-top: 6px;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  font-size: 23px;
}

.status-badge {
  padding: 9px 13px;
  border-radius: 100px;
  background: #eef3f1;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.route-card {
  padding: 28px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: center;
  gap: 20px;
}

.route-place span,
.info-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
}

.route-place strong {
  font-size: 20px;
  line-height: 1.3;
}

.route-place.destination {
  text-align: right;
}

.route-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

.route-line span {
  height: 1px;
  background: #dfe3e5;
}

.route-line b {
  font-size: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.info-card {
  min-height: 104px;
  padding: 20px;
  border-radius: 15px;
}

.info-card strong {
  font-size: 15px;
  line-height: 1.4;
}

.map-card,
.events-card {
  padding: 24px;
  border-radius: 18px;
}

.section-head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section-head h2 {
  margin: 5px 0 0;
  font-size: 22px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.live-indicator i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31,143,85,.10);
}

#map {
  height: 410px;
  border-radius: 14px;
  overflow: hidden;
  background: #edf0f1;
}

.no-location {
  padding: 44px 20px;
  border-radius: 14px;
  background: #f6f7f8;
  color: var(--muted);
  text-align: center;
}

#events {
  display: grid;
}

.event-row {
  position: relative;
  padding: 4px 0 22px 34px;
}

.event-row:last-child {
  padding-bottom: 4px;
}

.event-row::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.event-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.event-row strong {
  display: block;
  font-size: 14px;
}

.event-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 780px) {
  .topbar {
    height: 66px;
    padding: 0 18px;
  }

  .brand img {
    width: 138px;
  }

  .page {
    padding-top: 46px;
  }

  .tracking-form {
    flex-direction: column;
  }

  .tracking-form button {
    width: 100%;
  }

  .route-card {
    grid-template-columns: 1fr;
  }

  .route-line {
    grid-template-columns: 1fr auto 1fr;
  }

  .route-place.destination {
    text-align: left;
  }

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

  #map {
    height: 330px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .shipment-head {
    align-items: flex-start;
    flex-direction: column;
  }

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


/* =========================================================
   SLKNS PUBLIC v1.1 — CORPORATE HEADER + HERO
   ========================================================= */

html {
  scroll-behavior: smooth;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 82px;
  padding: 0 42px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 174px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #4f595e;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 9px;
  background: var(--dark);
  color: #fff;
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: #111719;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.page {
  width: min(1240px, calc(100% - 36px));
  padding-top: 34px;
}

.corporate-hero {
  min-height: 570px;
  padding: 58px;
  border-radius: 24px;
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(360px, .8fr);
  align-items: center;
  gap: 64px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(185,130,0,.17),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #111719 0%,
      #20272a 100%
    );
  color: #fff;
}

.corporate-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

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

.corporate-hero .eyebrow {
  color: #d09a16;
}

.corporate-hero h1 {
  max-width: 700px;
  margin: 16px 0 22px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: #b7bec2;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button-primary,
.button-secondary {
  min-height: 50px;
  padding: 0 21px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--gold);
  color: #fff;
}

.button-primary:hover {
  background: #c58b00;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255,255,255,.11);
}

.hero-points {
  margin-top: 38px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: #929da2;
  font-size: 11px;
  font-weight: 700;
}

.hero-points span {
  position: relative;
  padding-left: 14px;
}

.hero-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-tracking-card {
  position: relative;
  z-index: 2;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.97);
  box-shadow:
    0 30px 70px
    rgba(0,0,0,.22);
  color: var(--text);
}

.hero-tracking-card .small-label {
  margin-bottom: 8px;
}

.hero-tracking-card h2 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -.025em;
}

.hero-tracking-card > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-tracking-card .tracking-form {
  margin: 24px 0 0;
  padding: 6px;
  box-shadow: none;
  border-radius: 13px;
  background: #f4f6f7;
}

.hero-tracking-card .tracking-form input {
  height: 48px;
}

.hero-tracking-card .tracking-form button {
  height: 48px;
  background: var(--gold);
}

.hero-tracking-card .error-box {
  margin: 12px 0 0;
}

.result {
  width: min(1120px, 100%);
  margin: 34px auto 0;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .corporate-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-tracking-card {
    max-width: 620px;
  }
}

@media (max-width: 860px) {
  .topbar {
    height: 68px;
    padding: 0 18px;
  }

  .brand img {
    width: 145px;
  }

  .main-nav {
    display: none;
  }

  .corporate-hero {
    min-height: auto;
    padding: 42px 28px;
    border-radius: 18px;
  }

  .corporate-hero h1 {
    font-size: clamp(43px, 11vw, 62px);
  }

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

@media (max-width: 520px) {
  .page {
    width: min(100% - 22px, 1240px);
    padding-top: 12px;
  }

  .corporate-hero {
    padding: 34px 20px 22px;
  }

  .corporate-hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 11px;
  }

  .hero-tracking-card {
    padding: 22px;
  }
}


/* =========================================================
   SLKNS PUBLIC v1.1 — SERVICES
   ========================================================= */

.company-section {
  padding: 92px 0 0;
}

.section-intro {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, .85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.section-intro h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.section-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.service-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 45px
    rgba(20,30,35,.07);
}

.service-number {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.service-card h3 {
  max-width: 260px;
  margin: 42px 0 14px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.service-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card-dark {
  border-color: #1f2528;
  background:
    linear-gradient(
      145deg,
      #171d1f,
      #252c2f
    );
  color: #fff;
}

.service-card-dark p {
  color: #aeb7bb;
}

.service-card-dark a {
  margin-top: 22px;
  color: #d39a13;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.service-card-dark::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

@media (max-width: 620px) {
  .company-section {
    padding-top: 64px;
  }

  .section-intro h2 {
    font-size: 40px;
  }

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

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


/* =========================================================
   SLKNS PUBLIC v1.1 — ROUTES
   ========================================================= */

.routes-board {
  padding: 34px;
  border-radius: 20px;
  display: grid;
  grid-template-columns:
    1fr auto 1fr auto 1fr;
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(
      135deg,
      #151b1d,
      #232a2d
    );
  color: #fff;
}

.route-column {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.route-region {
  margin-bottom: 26px;
  color: #d29a14;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.route-column strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.route-column p {
  margin: auto 0 0;
  color: #aeb7bb;
  font-size: 13px;
  line-height: 1.65;
}

.route-arrow {
  color: #d29a14;
  font-size: 32px;
  font-weight: 300;
}

.routes-note {
  margin-top: 14px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  display: grid;
  grid-template-columns:
    auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.routes-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.routes-note strong {
  font-size: 15px;
}

.routes-note a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .routes-board {
    grid-template-columns: 1fr;
  }

  .route-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .route-column {
    min-height: auto;
  }

  .route-column p {
    margin-top: 18px;
  }

  .routes-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


/* =========================================================
   SLKNS PUBLIC v1.1 — WHY + ABOUT
   ========================================================= */

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

.why-card {
  min-height: 245px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.why-card > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.why-card h3 {
  max-width: 230px;
  margin: 36px 0 14px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.why-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}


.about-panel {
  padding: 52px;
  border-radius: 22px;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(380px, .9fr);
  gap: 70px;
  background:
    linear-gradient(
      135deg,
      #151b1d,
      #252c2f
    );
  color: #fff;
}

.about-copy h2 {
  margin: 12px 0 22px;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -.04em;
}

.about-copy p {
  max-width: 610px;
  margin: 0 0 16px;
  color: #b3bdc1;
  font-size: 14px;
  line-height: 1.75;
}

.about-copy .button-primary {
  margin-top: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns:
    1fr 1fr;
  gap: 12px;
}

.about-stat {
  min-height: 155px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 15px;
  background: rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-stat strong {
  color: #d19a15;
  font-size: 30px;
  letter-spacing: -.03em;
}

.about-stat span {
  color: #aeb7bb;
  font-size: 12px;
  line-height: 1.45;
}


@media (max-width: 950px) {
  .why-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-panel {
    padding: 30px 22px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-stat {
    min-height: 130px;
  }

  .about-stat strong {
    font-size: 25px;
  }
}


/* =========================================================
   SLKNS PUBLIC v1.1 — CONTACT / QUOTE
   ========================================================= */

.contact-panel {
  padding: 52px;
  border: 1px solid var(--border);
  border-radius: 22px;
  display: grid;
  grid-template-columns:
    minmax(0, .85fr)
    minmax(440px, 1.15fr);
  gap: 70px;
  background:
    linear-gradient(
      135deg,
      #f7f8f8,
      #ffffff
    );
}

.contact-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
}

.contact-copy > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-points {
  margin-top: 34px;
  display: grid;
  gap: 13px;
}

.contact-points span {
  position: relative;
  padding-left: 20px;
  color: #4f595e;
  font-size: 13px;
  font-weight: 700;
}

.contact-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}


.quote-form {
  padding: 30px;
  border-radius: 18px;
  background: #171d1f;
  display: grid;
  gap: 18px;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: #c9d0d3;
  font-size: 11px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  outline: none;
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  transition:
    border-color .2s ease,
    background .2s ease;
}

.quote-form input {
  height: 48px;
  padding: 0 14px;
}

.quote-form textarea {
  min-height: 110px;
  padding: 13px 14px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #788287;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #b9860b;
  background: rgba(255,255,255,.09);
}

.quote-submit {
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.quote-submit:hover {
  background: #c68d00;
}

.quote-submit:disabled {
  opacity: .6;
  cursor: wait;
}

.quote-status {
  min-height: 18px;
  color: #aeb7bb;
  font-size: 12px;
  line-height: 1.5;
}


@media (max-width: 950px) {
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 620px) {
  .contact-panel {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 22px;
  }

  .contact-copy h2 {
    font-size: 40px;
  }
}


/* =========================================================
   SLKNS PUBLIC v1.1 — CONTACT EMAIL + FOOTER
   ========================================================= */

.contact-email {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}


.site-footer {
  width: min(1240px, calc(100% - 36px));
  margin: 92px auto 24px;
  padding: 50px 52px 24px;
  box-sizing: border-box;
  border-radius: 22px;
  background: #111719;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.5fr)
    repeat(3, minmax(140px, .7fr));
  gap: 52px;
  padding-bottom: 46px;
}

.footer-brand img {
  width: 170px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  margin: 22px 0 18px;
  color: #8f999e;
  font-size: 13px;
  line-height: 1.7;
}

.footer-brand > a {
  color: #d19a15;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .06em;
}

.footer-column a,
.footer-column span {
  color: #929ca1;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
}

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

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #687277;
  font-size: 11px;
}


@media (max-width: 900px) {
  .footer-main {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer {
    width: min(100% - 22px, 1240px);
    margin-top: 64px;
    padding: 34px 22px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

/* Tracking result scroll position */
.result {
  scroll-margin-top: 105px;
}

@media (max-width: 860px) {
  .result {
    scroll-margin-top: 82px;
  }
}

/* Quote form result states */
.quote-status.quote-success {
  color: #79c98b;
  font-weight: 700;
}

.quote-status.quote-error {
  color: #ff8a8a;
  font-weight: 700;
}
