:root {
  --navy: #08265a;
  --navy-dark: #041a3f;
  --orange: #f26522;
  --orange-dark: #d94d05;
  --green: #2d9b22;
  --teal: #087985;
  --red: #e8263d;
  --purple: #6b3fa0;
  --ink: #102142;
  --muted: #59677d;
  --line: #dde5ef;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 18px 38px rgba(8, 38, 90, 0.13);
  --container: 1150px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

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

.section {
  padding: 28px 0;
}

.section-tight {
  padding: 14px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(4, 26, 63, 0.1);
}

.top-bar {
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
}

.top-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 44px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
  font-weight: 750;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-item svg,
.call-button svg,
.nav-link svg,
.quote-button svg,
.service-card svg,
.trust-band svg,
.payment-links svg,
.why svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 96px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 198px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.nav-link,
.dropdown-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  color: var(--navy);
  border: 0;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.dropdown-menu a:hover,
.text-link:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange-dark);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  min-width: 226px;
  padding: 10px;
  display: grid;
  gap: 2px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.dropdown-open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--navy);
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.call-button,
.btn-orange,
.btn-blue,
.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.call-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.call-button,
.btn-orange,
.quote-orange {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff7d1d);
  box-shadow: 0 12px 22px rgba(242, 101, 34, 0.24);
}

.btn-blue,
.quote-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #093a82);
  box-shadow: 0 12px 22px rgba(8, 38, 90, 0.22);
}

.call-button:hover,
.btn-orange:hover,
.btn-blue:hover,
.quote-button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 454px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 31%, rgba(255, 255, 255, 0.62) 53%, rgba(255, 255, 255, 0.06) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 454px;
  display: flex;
  align-items: center;
  padding: 38px 0;
}

.hero-copy {
  width: min(550px, 100%);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.service-line {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-text {
  max-width: 490px;
  margin: 18px 0 0;
  color: #20355d;
  font-size: 1.1rem;
  font-weight: 600;
}

.trust-phrase {
  margin: 10px 0 0;
  font-size: 1.02rem;
  font-weight: 950;
}

.trust-phrase span:nth-child(1) {
  color: var(--green);
}

.trust-phrase span:nth-child(2) {
  color: #005bd8;
}

.trust-phrase span:nth-child(3) {
  color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.quote-button {
  min-width: 190px;
  min-height: 62px;
  padding: 8px 18px;
  text-align: left;
}

.quote-button span {
  display: grid;
  gap: 1px;
}

.quote-button small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #005bd8;
  font-weight: 950;
}

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

.service-card {
  min-height: 242px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(8, 38, 90, 0.08);
}

.icon-circle {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
}

.service-card svg {
  width: 31px;
  height: 31px;
}

.service-card h3 {
  min-height: 42px;
  margin: 11px 0 8px;
  color: currentColor;
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 650;
}

.service-card a {
  margin-top: auto;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 950;
}

.service-card.blue {
  color: var(--navy);
}

.service-card.blue .icon-circle {
  background: var(--navy);
}

.service-card.green {
  color: var(--green);
}

.service-card.green .icon-circle {
  background: var(--green);
}

.service-card.purple {
  color: var(--purple);
}

.service-card.purple .icon-circle {
  background: var(--purple);
}

.service-card.orange {
  color: var(--orange);
}

.service-card.orange .icon-circle {
  background: var(--orange);
}

.service-card.red {
  color: var(--red);
}

.service-card.red .icon-circle {
  background: var(--red);
}

.service-card.teal {
  color: var(--teal);
}

.service-card.teal .icon-circle {
  background: var(--teal);
}

.trust-band {
  padding: 14px 0 4px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-grid article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid svg {
  width: 54px;
  height: 54px;
  color: var(--orange);
}

.trust-grid article:nth-child(2) svg {
  color: var(--green);
}

.trust-grid article:nth-child(3) svg {
  color: #ff8a22;
}

.trust-grid article:nth-child(4) svg {
  color: #23c0d3;
}

.trust-grid h2 {
  margin: 0;
  font-size: 1.03rem;
}

.trust-grid p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.payment-panel,
.center-panel {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 180px;
  padding: 18px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(8, 38, 90, 0.08);
}

.payment-copy h2,
.center-panel h2,
.why h2,
.articles h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.payment-copy p,
.center-panel p {
  max-width: 330px;
  margin: 8px 0 16px;
  color: var(--navy);
  font-weight: 700;
}

.payment-visual {
  position: relative;
  min-height: 130px;
}

.shield {
  position: absolute;
  left: 10px;
  top: 14px;
  width: 130px;
  height: 112px;
  border: 11px solid #e1e8f3;
  border-radius: 46% 46% 52% 52%;
}

.laptop {
  position: absolute;
  left: 62px;
  top: 2px;
  width: 160px;
  height: 100px;
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 22px;
  background: #eaf1fa;
  border: 7px solid var(--navy);
  border-bottom-width: 12px;
  border-radius: 6px;
}

.laptop::after {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: -24px;
  height: 14px;
  background: #c7d4e8;
  border-radius: 0 0 18px 18px;
}

.laptop span {
  width: 70px;
  height: 13px;
  background: var(--navy);
  border-radius: 2px;
}

.laptop strong {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1fa34a;
  border-radius: 50%;
}

.payment-links {
  display: grid;
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.payment-links a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-weight: 850;
}

.payment-links a:last-child {
  border-bottom: 0;
}

.payment-links a:nth-child(1) svg {
  color: var(--navy);
}

.payment-links a:nth-child(2) svg {
  color: var(--green);
}

.payment-links a:nth-child(3) svg {
  color: var(--red);
}

.service-center {
  padding-top: 0;
}

.center-panel {
  grid-template-columns: 0.9fr 1.4fr;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.request-grid span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.why {
  padding-top: 0;
}

.why h2 {
  margin-bottom: 14px;
}

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

.why-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 20px rgba(8, 38, 90, 0.07);
}

.mini-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
}

.mini-icon.green {
  background: var(--green);
}

.mini-icon.blue {
  background: #006ebd;
}

.mini-icon.orange {
  background: var(--orange);
}

.mini-icon.purple {
  background: var(--purple);
}

.why-grid h3,
.article-card h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
}

.why-grid p {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 650;
}

.articles {
  padding-top: 0;
}

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

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

.article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 38, 90, 0.08);
}

.article-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.article-card > div {
  padding: 14px 16px 16px;
}

.article-card span {
  color: #005bd8;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.article-card p {
  margin: 7px 0 18px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
}

.article-card footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #005bd8;
  font-size: 0.86rem;
  font-weight: 850;
}

.article-card time {
  color: var(--navy);
}

.site-footer {
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr 1fr;
  gap: 34px;
  padding: 28px 0 22px;
}

.footer-logo-link img {
  width: 190px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  padding: 4px;
  background: var(--white);
  border-radius: 6px;
}

.footer-brand p,
.footer-contact p,
.footer-hours p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.socials {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1a64bc;
  border-radius: 50%;
  font-weight: 950;
}

.socials a:nth-child(2) {
  background: #e44875;
}

.socials a:nth-child(3) {
  background: #db4437;
}

.socials a:nth-child(4) {
  background: #d32323;
}

.expertise-badge {
  margin-top: 4px;
}

.footer-links,
.footer-contact,
.footer-hours {
  display: grid;
  align-content: start;
  gap: 5px;
}

.footer-links h2,
.footer-contact h2,
.footer-hours h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-hours {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-hours .btn-orange {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-logo-link {
  display: inline-block;
}

@media (max-width: 1120px) {
  .top-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
  }

  .nav-shell {
    min-height: 82px;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav,
  .call-button {
    display: none;
  }

  .site-header.nav-open .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 100%;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 0 8px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border-radius: 8px;
    margin: 0 0 8px;
  }

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

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

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

  .payment-panel {
    grid-template-columns: 1fr 1fr;
  }

  .payment-visual {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 112px;
  }

  .top-inner {
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 0.78rem;
  }

  .top-item {
    white-space: normal;
  }

  .portal-link {
    display: none;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 164px;
    height: 56px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    position: relative;
    display: block;
    height: 230px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    min-height: auto;
    padding: 24px 0 18px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .service-line {
    font-size: 0.85rem;
  }

  .quote-button {
    width: 100%;
  }

  .service-grid,
  .trust-grid,
  .payment-panel,
  .center-panel,
  .request-grid,
  .why-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-grid article {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .payment-panel,
  .center-panel {
    padding: 22px;
  }

  .payment-links {
    padding-left: 0;
    border-left: 0;
  }

  .why-grid article {
    grid-template-columns: 54px 1fr;
  }

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

  .footer-hours {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 420px) {
  .container,
  .top-inner,
  .nav-shell {
    width: min(100% - 22px, var(--container));
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  .payment-links a {
    grid-template-columns: 26px 1fr auto;
    font-size: 0.88rem;
  }
}
