:root {
  --blue: #00a0e1;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

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

.home-page {
  text-transform: uppercase;
  background: var(--blue);
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(16px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--blue);
  background: var(--white);
}

.brand {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  text-decoration: none;
}

.brand-symbol {
  width: 52px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  width: clamp(145px, 26vw, 250px);
  flex: 0 1 auto;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a {
  text-decoration: none;
}

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

.hero {
  background: var(--blue);
  color: var(--white);
}

.hero-inner {
  display: grid;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 34px;
}

.hero-copy {
  align-self: center;
}

.kicker {
  margin: 0 0 12px;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker-blue {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.15rem, 9vw, 4.7rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 6vw, 3rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.lead,
.intro {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.1rem;
}

.lead {
  color: var(--white);
}

.intro {
  color: var(--blue);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

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

.button-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero-brand-card {
  display: grid;
  gap: 18px;
  width: min(100%, 460px);
  align-self: center;
  justify-items: center;
  border-radius: 8px;
  padding: clamp(22px, 5vw, 36px);
  background: transparent;
}

.hero-logo-symbol {
  width: min(62vw, 260px);
  height: auto;
}

.hero-logo-name {
  width: min(100%, 420px);
  height: auto;
}

.hero-logo-slogan {
  width: min(100%, 420px);
  height: auto;
  margin-top: -10px;
}

.hero-people {
  width: min(44vw, 124px);
  height: auto;
  margin-top: 6px;
}

.fact-band {
  background: var(--blue);
  color: var(--white);
  padding: 20px 0;
}

.fact-grid {
  display: grid;
  gap: 14px;
}

.fact-grid div {
  display: grid;
  gap: 2px;
}

.fact-grid strong {
  font-size: 1.55rem;
  line-height: 1;
}

.fact-grid span {
  color: var(--white);
}

.section {
  padding: 44px 0;
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.card {
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.card-icon {
  width: 58px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 14px;
}

.card p,
.info-box p,
.section-blue p {
  margin: 0;
}

.card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-blue p {
  max-width: 720px;
  color: var(--white);
  font-size: 1.06rem;
}

.billing-section h2 {
  max-width: 680px;
}

.billing-copy {
  align-self: end;
}

.billing-copy h3 {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.08;
}

.billing-copy p {
  max-width: 560px;
}

.split {
  display: grid;
  gap: 22px;
}

.info-box {
  border: 1px solid var(--white);
  border-radius: 8px;
  padding: 20px;
  background: transparent;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--blue);
  padding: 0 0 14px;
}

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.step p {
  margin: 6px 0 0;
  color: var(--blue);
}

.contact {
  background: var(--blue);
  color: var(--white);
  padding: 36px 0;
}

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

.contact p:not(.kicker) {
  margin: 12px 0 0;
  color: var(--white);
}

.contact-lines,
.hours-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.location-lines {
  display: grid;
  gap: 0;
  max-width: 660px;
  margin-top: 22px;
  border-top: 1px solid var(--white);
  color: var(--white);
}

.location-lines div {
  display: grid;
  grid-template-columns: 150px minmax(180px, 1fr) 180px;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid var(--white);
  padding: 9px 0;
}

.location-lines span,
.location-lines small,
.location-lines a {
  display: block;
}

.location-lines span {
  font-weight: 900;
}

.location-lines small {
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
}

.location-lines a {
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.contact-lines div,
.hours-lines div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  color: var(--white);
}

.contact-lines span,
.hours-lines span {
  font-weight: 900;
}

.hours-lines strong {
  font-weight: 650;
}

.site-footer {
  border-top: 1px solid var(--blue);
  padding: 22px 0;
  color: var(--blue);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.site-footer a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.home-page .site-header {
  border-bottom: 1px solid var(--blue);
  background: var(--white);
}

.home-page .site-nav {
  color: var(--blue);
}

.home-page .brand-symbol {
  width: 52px;
  height: 56px;
}

.home-page .brand-wordmark {
  width: clamp(145px, 26vw, 250px);
}

.flyer-hero,
.flyer-trust,
.flyer-info {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.flyer-hero::before,
.flyer-trust::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(32px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.18);
}

.flyer-hero::after,
.flyer-trust::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(160px, 28vw, 420px);
  background: rgba(255, 255, 255, 0.14);
}

.flyer-side {
  position: absolute;
  left: clamp(8px, 1.5vw, 22px);
  bottom: 34px;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.3rem, 4vw, 2.35rem);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.flyer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(44px, 7vw, 88px) 0;
}

.flyer-claim h1,
.flyer-trust h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(3rem, 10vw, 6.8rem);
  font-weight: 300;
  line-height: 0.95;
}

.flyer-claim h1 span,
.flyer-claim h1 strong,
.flyer-trust h2 span,
.flyer-trust h2 strong {
  display: block;
}

.flyer-claim h1 strong,
.flyer-trust h2 strong {
  font-weight: 900;
}

.flyer-claim p,
.flyer-trust p,
.flyer-info p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 650;
  line-height: 1.28;
}

.flyer-phone {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.flyer-list {
  align-self: start;
}

.flyer-list ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flyer-list li {
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.04;
}

.flyer-list li.gap {
  margin-top: 22px;
}

.flyer-list strong {
  font-weight: 900;
}

.flyer-brand {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  min-height: 100%;
  padding: clamp(20px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.14);
}

.flyer-logo {
  width: min(72vw, 240px);
}

.flyer-people {
  width: min(38vw, 120px);
  margin-top: auto;
}

.flyer-brand p {
  max-width: 220px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 650;
  line-height: 1.08;
  text-align: center;
}

.flyer-trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(54px, 8vw, 96px) 0;
}

.flyer-trust h2 {
  max-width: 760px;
}

.flyer-contact {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.14);
}

.flyer-contact-logo {
  width: min(100%, 320px);
  margin-bottom: 26px;
}

.flyer-contact h3 {
  margin-top: 34px;
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 900;
}

.flyer-contact p {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 650;
  line-height: 1.3;
}

.flyer-contact a {
  color: var(--white);
  text-decoration: none;
}

.flyer-small-logo {
  width: 78px;
  margin-top: 36px;
}

.flyer-info {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.flyer-info-grid {
  display: grid;
  gap: 28px;
  padding: clamp(42px, 6vw, 70px) 0;
}

.flyer-info h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.home-page .section {
  background: var(--white);
  color: var(--blue);
}

.home-page .site-footer {
  background: var(--white);
}

.trust-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.trust-layout p {
  max-width: 760px;
}

.trust-icon {
  width: min(44vw, 150px);
  padding: 18px;
  border-radius: 8px;
  background: var(--blue);
}

.office-hours {
  border: 1px solid var(--white);
  border-radius: 8px;
  padding: 20px;
}

.office-hours h3 {
  color: var(--white);
}

.office-hours p {
  color: var(--white);
}

.contact a {
  color: var(--white);
  text-decoration: none;
}

.home-page .billing-section {
  background: var(--white);
  color: var(--blue);
}

.home-page .billing-section h2,
.home-page .billing-section h3,
.home-page .billing-section p {
  color: var(--blue);
}

.legal-page {
  padding: 42px 0 64px;
}

.legal {
  max-width: 860px;
}

.legal h1 {
  color: var(--blue);
  font-size: clamp(2.1rem, 8vw, 3.8rem);
}

.legal h2 {
  margin-top: 30px;
  color: var(--blue);
  font-size: 1.35rem;
}

.legal p {
  color: var(--blue);
}

.legal a {
  color: var(--blue);
  font-weight: 750;
}

@media (max-width: 560px) {
  .wrap,
  .hero-inner {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

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

  .button {
    padding-left: 12px;
    padding-right: 12px;
  }

  .location-lines div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .location-lines a {
    white-space: normal;
  }
}

@media (min-width: 900px) {
  .flyer-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr) minmax(230px, 0.52fr);
  }

  .flyer-trust-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  }

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

  .trust-layout {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: center;
    padding: 70px 0 54px;
  }

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

  .section {
    padding: 68px 0;
  }

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

  .split {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
    align-items: center;
  }

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

  .step {
    display: block;
    border-bottom: 0;
    border-left: 1px solid var(--blue);
    padding: 0 0 0 16px;
  }

  .step p {
    margin-top: 12px;
  }

  .contact-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
