:root {
  --ink: #212529;
  --muted: #979cb6;
  --blue: #000046;
  --blue-dark: #09265e;
  --footer-blue: #0b2a60;
  --accent: #9cf151;
  --line: #eef1f8;
  --paper: #ffffff;
  --bg: #f7f8fc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--muted);
  background: var(--bg);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.58;
}

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

.topbar {
  background: #f2f4fa;
  color: #979cb6;
  font-size: 14px;
}

.topbar-inner,
.nav-inner,
.page-head-inner,
.content-wrap,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 46px;
}

.topbar a {
  color: #979cb6;
  opacity: 1;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.phone-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #d8dced;
  border-radius: 50%;
  display: inline-block;
}

.nav {
  background: var(--paper);
  border-bottom: 1px solid #f0f2f8;
  box-shadow: 0 10px 28px rgba(0, 0, 70, .04);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue-dark);
  border-radius: 2px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 44px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  gap: 10px;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
  font-weight: 500;
  box-shadow: none;
}

.quote-btn::after {
  content: "›";
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: var(--accent);
  border-radius: 50%;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.page-head {
  color: var(--blue);
  background: var(--bg);
}

.page-head-inner {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 54px 0 34px;
}

.crumbs {
  margin-bottom: 18px;
  display: none;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 700;
}

.crumbs span {
  color: var(--accent);
}

h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
}

.policy-section {
  padding: 42px 0 78px;
}

.content-wrap {
  display: block;
  max-width: 1176px;
}

.policy-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.policy-card h2 {
  margin: 34px 0 12px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 21px;
}

.policy-card ul {
  margin: 0 0 22px 20px;
  padding: 0;
  color: var(--muted);
  font-size: 21px;
}

.policy-card li {
  margin: 7px 0;
  padding-left: 4px;
}

.contact-section {
  padding: 0 0 88px;
  background: var(--bg);
}

.contact-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding: 54px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(0, 0, 70, .06);
}

.contact-copy h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dde2ee;
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--blue);
  background: #f8f9fc;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 138px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(9, 38, 94, .12);
}

.contact-form button {
  justify-self: start;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  color: var(--blue);
  background: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-success {
  color: #218838;
}

.form-status.is-error {
  color: #c82333;
}

.footer {
  color: #ffffff;
  background: var(--footer-blue);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.45fr .8fr 1.15fr 1.05fr;
  gap: 44px;
  align-items: start;
  padding: 50px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, .72);
}

.footer h2,
.footer h3 {
  margin: 0 0 14px;
  letter-spacing: 0;
}

.footer h2 {
  color: #ffffff;
  font-size: 32px;
  text-transform: uppercase;
}

.footer h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer p,
.footer a {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  display: block;
}

.fmcsa-card {
  margin-top: 0;
  max-width: 300px;
}

.fmcsa-card img {
  width: 215px;
  height: auto;
  margin-bottom: 12px;
}

.footer .fmcsa-card p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
  line-height: 1.45;
}

.copyright {
  padding: 0 0 18px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  text-align: center;
}

.copyright-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .72);
  padding-top: 18px;
}

@media (max-width: 900px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 10px 0;
  }

  .nav-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .content-wrap {
    grid-template-columns: 1fr;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .topbar-inner,
  .nav-inner,
  .page-head-inner,
  .content-wrap,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    white-space: normal;
  }

  .nav-links a:not(.quote-btn) {
    display: none;
  }

  .quote-btn {
    width: 100%;
  }

  .page-head-inner {
    min-height: 190px;
  }

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

  .contact-wrap {
    width: min(100% - 24px, 1180px);
    padding: 24px;
  }

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

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