:root {
  --blue: #1d5fd1;
  --blue-dark: #0c2f72;
  --blue-soft: #eaf1ff;
  --ink: #13213a;
  --muted: #667085;
  --line: #e3e7ee;
  --surface: #ffffff;
  --soft: #f6f8fb;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(15, 35, 70, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(227, 231, 238, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.brand-logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(12, 47, 114, 0.15);
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: var(--line);
}

.brand-subtitle {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
}

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

.nav-links a {
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--blue);
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #0f4cc2;
  box-shadow: 0 10px 28px rgba(21, 88, 214, .24);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.button-ghost {
  background: transparent;
  color: var(--blue);
}

.button-ghost:hover {
  background: var(--blue-soft);
  box-shadow: none;
}

.hero {
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 13% 20%, rgba(21, 88, 214, .11), transparent 32%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 68px);
}

.hero-content > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
}

.check {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 7px;
  border-radius: 50%;
  background: #e9f7ef;
  color: #14804a;
  font-size: 12px;
  font-weight: 900;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-card {
  position: absolute;
  left: -24px;
  bottom: 26px;
  min-width: 210px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 35px rgba(15, 35, 70, .16);
  backdrop-filter: blur(10px);
}

.image-card strong { font-size: 15px; }
.image-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }

.trust-grid strong { font-size: 20px; }
.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 105px 0; }
.section-soft { background: var(--soft); }

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section h2,
.cta h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading p,
.info-intro p,
.split-copy p,
.cta p {
  color: var(--muted);
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: white;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #c7d7fb;
  box-shadow: 0 18px 44px rgba(15, 35, 70, .09);
}

.card-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .1em;
}

.card h3 {
  margin: 54px 0 13px;
  font-size: 24px;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card a {
  margin-top: auto;
  padding-top: 30px;
  color: var(--blue);
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.split-copy {
  max-width: 660px;
}

.split-copy p:first-child {
  margin-top: 3px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.info-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.hours-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 50px rgba(15, 35, 70, .06);
}

.hours-row {
  padding: 21px 26px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hours-row:last-child { border-bottom: 0; }
.hours-row span { color: var(--muted); }
.hours-row.muted { background: #fafafa; }

.cta-section {
  padding: 95px 0;
  background: var(--blue-dark);
  color: white;
}

.cta {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.eyebrow-light { color: #a9c6ff; }

.cta p { color: #cbd5e7; }

.contact-list {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.contact-list > * {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.contact-list span {
  color: #aebbd0;
  font-size: 13px;
}

.contact-list strong {
  text-align: right;
  font-size: 15px;
}

.contact-list a:hover strong { text-decoration: underline; }

.site-footer {
  padding: 28px 0;
  background: #091f4c;
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 30px;
  width: auto;
  border-radius: 6px;
}

.footer-brand span,
.footer-inner p {
  color: #aebbd0;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 940px) {
  .nav-links { display: none; }

  .hero-grid,
  .split,
  .info-grid,
  .cta {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero { padding-top: 58px; }
  .hero-image { height: auto; }
  .image-card { left: 18px; }

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

  .card {
    min-height: 260px;
  }

  .card h3 {
    margin-top: 34px;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }

  .nav {
    min-height: 74px;
  }

  .nav .button-small {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-divider,
  .brand-subtitle {
    display: none;
  }

  .hero {
    padding: 46px 0 54px;
  }

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

  .hero-content > p {
    font-size: 17px;
  }

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

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

  .hero-points {
    flex-direction: column;
    gap: 10px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
  }

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

  .trust-grid > div {
    padding: 20px 12px;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) { border-bottom: 0; }

  .section { padding: 76px 0; }

  .card { padding: 24px; }

  .hours-row,
  .contact-list > * {
    flex-direction: column;
    gap: 3px;
  }

  .contact-list strong { text-align: left; }

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

/* Holiday notice */
.holiday-bar {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #d00000 !important;
  background-color: #d00000 !important;
  color: #ffffff !important;
  position: relative;
  z-index: 9999;
}

.holiday-bar__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto !important;
  padding: 14px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 900 !important;
  line-height: 1.4;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.holiday-bar,
.holiday-bar *,
.holiday-bar__inner {
  color: #ffffff !important;
  font-weight: 900 !important;
}

.holiday-hidden {
  display: none !important;
}

@media (max-width: 680px) {
  .holiday-bar__inner {
    width: calc(100% - 28px);
    padding: 12px 0 !important;
    font-size: 13px;
    line-height: 1.45;
  }
}

.holiday-hours-notice {
  margin-bottom: 18px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #d00000 !important;
  background-color: #d00000 !important;
  color: #ffffff !important;
  text-align: center;
  font-size: 15px;
  font-weight: 900 !important;
  line-height: 1.45;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(208, 0, 0, 0.16);
}

.holiday-hours-notice * {
  color: #ffffff !important;
  font-weight: 900 !important;
}

@media (max-width: 680px) {
  .holiday-hours-notice {
    padding: 14px 16px;
    font-size: 13px;
  }
}

