:root {
  --ink: #17202a;
  --muted: #4b5563;
  --blue: #006ba6;
  --blue-dark: #003b66;
  --blue-hover: #004c7f;
  --ice: #eef6fb;
  --surface: #f4f7fa;
  --line: #cbd5e1;
  --white: #fff;
  --accent: #c2410c;
  --success: #166534;
  --danger: #9f1239;
  --shadow: 0 18px 50px rgb(15 23 42 / 10%);
  --radius: 1rem;
  --content: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-hover);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--blue-dark);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .65rem 1rem;
  border-radius: .5rem;
  color: var(--white);
  background: var(--blue-dark);
}

.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  max-width: 48rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(203 213 225 / 75%);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex: 0 1 17rem;
  align-items: center;
}

.brand img {
  width: 17rem;
  height: auto;
}

.nav-shell {
  margin-left: auto;
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: .55rem .68rem;
  border-radius: .55rem;
  color: var(--ink);
  font-size: .91rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--ice);
}

.site-nav .shop-link {
  margin-left: .4rem;
  border: 1px solid var(--blue);
  color: var(--blue-hover);
}

.phone-top {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: .6rem;
  color: var(--white);
  background: var(--blue-dark);
  font-size: .92rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.phone-top:hover {
  color: var(--white);
  background: var(--blue-hover);
}

.breadcrumb {
  padding-block: 1.1rem;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: .35rem;
  content: "/";
  color: #94a3b8;
}

.breadcrumb a {
  color: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 85% 15%, rgb(0 107 166 / 16%), transparent 31rem),
    linear-gradient(145deg, var(--white) 20%, var(--ice));
}

.hero::before {
  position: absolute;
  inset: auto -8rem -14rem auto;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgb(0 107 166 / 18%);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--blue-hover);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-block: 0 .7em;
  color: var(--blue-dark);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.45rem, 5.8vw, 4.5rem);
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  letter-spacing: -.025em;
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.lede {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.1rem;
  border: 2px solid var(--blue);
  border-radius: .65rem;
  color: var(--white);
  background: var(--blue);
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
}

.button:hover {
  border-color: var(--blue-hover);
  color: var(--white);
  background: var(--blue-hover);
}

.button.secondary {
  color: var(--blue-hover);
  background: var(--white);
}

.button.secondary:hover {
  color: var(--white);
  background: var(--blue-hover);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(203 213 225 / 85%);
  border-radius: 1.4rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 14rem;
  padding: .7rem .85rem;
  border-radius: .65rem;
  color: var(--white);
  background: rgb(0 59 102 / 92%);
  font-size: .82rem;
  font-weight: 700;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-list {
  display: grid;
  margin: 0;
  padding: 1.25rem 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.trust-list li {
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding-inline: 1rem;
  color: var(--blue-dark);
  font-weight: 760;
  text-align: center;
}

.trust-list li + li {
  border-left: 1px solid var(--line);
}

.tick {
  display: inline-grid;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--ice);
  font-size: .9rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  color: #dbeafe;
  background: var(--blue-dark);
}

.section.dark h2,
.section.dark h3,
.section.dark .eyebrow {
  color: var(--white);
}

.section-header {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-header p,
.content-block p,
.rich-copy p {
  max-width: 68ch;
  color: var(--muted);
}

.section.dark .section-header p,
.section.dark p {
  color: #dbeafe;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgb(15 23 42 / 5%);
}

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

.card-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-weight: 760;
}

.card-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: .75rem;
  color: var(--blue-dark);
  background: var(--ice);
  font-weight: 850;
}

.service-aside {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, .55fr);
}

.content-block + .content-block {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.content-block ul,
.check-list {
  padding-left: 1.25rem;
}

.content-block li + li,
.check-list li + li {
  margin-top: .55rem;
}

.steps {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 3.25rem;
  padding: .35rem 0 1.35rem 4rem;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  content: counter(steps);
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.aside-card {
  position: sticky;
  top: 7rem;
  padding: 1.6rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-dark);
}

.aside-card h2 {
  color: var(--white);
  font-size: 1.45rem;
}

.aside-card p {
  color: #dbeafe;
}

.aside-card .button {
  width: 100%;
  border-color: var(--white);
}

.aside-card .button + .button {
  margin-top: .7rem;
}

.faq-list {
  max-width: 52rem;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 3.5rem;
  padding: 1rem 2.2rem 1rem 0;
  color: var(--blue-dark);
  font-weight: 760;
  cursor: pointer;
}

.faq-list details p {
  margin-top: 0;
  padding: 0 2rem 1.2rem 0;
  color: var(--muted);
}

.proof-placeholder {
  padding: 2rem;
  border: 2px dashed #94a3b8;
  border-radius: var(--radius);
  background: var(--white);
}

.proof-placeholder h3 {
  color: var(--ink);
}

.client-logo {
  width: auto;
  height: 3.5rem;
  margin-bottom: 1.2rem;
  object-fit: contain;
  object-position: left center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: .35rem .65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--white);
  font-size: .9rem;
  font-weight: 680;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
}

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

.field {
  display: grid;
  gap: .4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink);
  font-weight: 720;
}

.field small {
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: .65rem .75rem;
  border: 1px solid #94a3b8;
  border-radius: .45rem;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.checkbox {
  display: grid;
  align-items: start;
  gap: .65rem;
  grid-template-columns: 1.3rem 1fr;
}

.checkbox input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: .25rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-bottom: 1.4rem;
  padding: 1rem;
  border-left: .35rem solid currentColor;
  background: var(--surface);
}

.form-status:target {
  display: block;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.address-card {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.address-card:first-child {
  padding-top: 0;
}

.address-card h3 {
  margin-bottom: .35rem;
}

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

.cta-band {
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: 1.4rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 58ch;
}

.cta-band .button.secondary {
  border-color: var(--white);
}

.site-footer {
  padding: 4rem 0 6rem;
  color: #cbd5e1;
  background: #071b2c;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer p,
.site-footer address {
  color: #cbd5e1;
  font-size: .92rem;
  font-style: normal;
}

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

.site-footer li + li {
  margin-top: .45rem;
}

.site-footer a {
  color: #e0f2fe;
}

.footer-brand {
  display: inline-flex;
  max-width: 17rem;
  margin-bottom: 1rem;
  padding: .55rem;
  border-radius: .5rem;
  background: var(--white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(203 213 225 / 24%);
  font-size: .86rem;
}

.mobile-actions {
  display: none;
}

.legal-copy h2 {
  margin-top: 2.4rem;
  font-size: 1.55rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  max-width: 74ch;
}

@media (max-width: 68rem) {
  .phone-top {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 3rem;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: .6rem;
    color: var(--blue-dark);
    font-weight: 760;
    cursor: pointer;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: .75rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open,
  .no-js .site-nav {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    padding-inline: 1rem;
  }

  .site-nav .shop-link {
    margin: .3rem 0 0;
  }
}

@media (max-width: 52rem) {
  body {
    padding-bottom: 4rem;
    font-size: 1rem;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .brand {
    flex-basis: 14rem;
  }

  .brand img {
    width: 14rem;
  }

  .hero-grid,
  .service-aside,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero-media {
    max-width: 38rem;
  }

  .trust-list,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .trust-list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .aside-card {
    position: static;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #93c5fd;
    background: var(--blue-dark);
  }

  .mobile-actions a {
    display: inline-flex;
    min-height: 4rem;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgb(255 255 255 / 30%);
  }
}

@media (max-width: 37rem) {
  .container {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

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

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

  .field.full {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .hero-actions,
  .actions,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .section,
  .hero {
    padding: 1.5rem 0;
  }
}
