:root {
  --blue-950: #0f2747;
  --blue-900: #0f2747;
  --blue-800: #214f7d;
  --blue-700: #356a9a;
  --cream: #f2e7c9;
  --cream-soft: #faf8f3;
  --white: #faf8f3;
  --gray-100: #faf8f3;
  --gray-700: #4a5a62;
  --orange: #e58a2b;
  --orange-dark: #bc6717;
  --green: #b7d63d;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blue-950);
  background: var(--blue-950);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  color: var(--orange);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-inner,
.footer-inner {
  width: min(var(--max-width), calc(100% - 42px));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem max(21px, calc((100vw - var(--max-width)) / 2));
  min-height: 78px;
  color: var(--white);
  background: rgba(15, 39, 71, 0.94);
  backdrop-filter: blur(5px);
}

.topbar::before {
  display: none;
  content: none;
}

.brand img {
  width: clamp(132px, 16vw, 178px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.2vw, 2.05rem);
  font-size: 0.8rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  opacity: 0.95;
}

.nav-links a + a::before {
  position: absolute;
  left: calc(clamp(0.75rem, 2.2vw, 2.05rem) / -2);
  width: 1px;
  height: 22px;
  content: "";
  background: rgba(250, 248, 243, 0.35);
}

.nav-links a:hover,
.footer-nav a:hover {
  color: var(--orange);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.section-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 39, 71, 0.88) 0%, rgba(15, 39, 71, 0.76) 33%, rgba(15, 39, 71, 0.1) 68%),
    linear-gradient(180deg, rgba(15, 39, 71, 0.25) 0%, rgba(15, 39, 71, 0.15) 45%, rgba(15, 39, 71, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 42px));
  margin: 0 auto;
  padding-top: 225px;
  transform: translateX(-320px);
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

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

.hero p {
  max-width: 440px;
  margin-bottom: 1.35rem;
  font-size: 1.13rem;
  font-weight: 500;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.72rem;
  border: 2px solid var(--orange-dark);
  border-radius: 3px;
  color: var(--blue-950);
  background: var(--orange);
  box-shadow: 7px 7px 0 rgba(229, 138, 43, 0.2);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cta-button:hover {
  background: #ff9c32;
  box-shadow: 4px 4px 0 rgba(229, 138, 43, 0.24);
  transform: translate(2px, 2px);
}

.cta-button:focus-visible,
.nav-links a:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.cta-button--compact {
  font-size: 0.86rem;
}

.service-intro {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 520px;
  overflow: hidden;
  color: var(--blue-950);
  background: var(--cream);
  isolation: isolate;
}

.service-intro::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(242, 231, 201, 0) 0%, rgba(242, 231, 201, 0.04) 42%, rgba(242, 231, 201, 0.16) 62%, rgba(242, 231, 201, 0.28) 100%);
}

.service-media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

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

.service-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(49%, 620px);
  min-height: 520px;
  margin-left: auto;
  transform: translateX(-160px);
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 3rem) clamp(3rem, 6vw, 6rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
}

.service-copy h2 {
  color: var(--blue-700);
}

.service-copy p {
  max-width: 520px;
  margin-bottom: 1.3rem;
  font-size: 1.03rem;
  line-height: 1.45;
  color: var(--blue-950);
  font-weight: 500;
}

.service-copy .cta-button {
  width: auto;
  max-width: none;
  align-self: flex-start;
}

.who-we-help,
.dark-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.who-we-help {
  min-height: 820px;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6.2rem);
}

.section-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(15, 39, 71, 0.78);
}

.section-shade--strong {
  background: linear-gradient(180deg, rgba(15, 39, 71, 0.72), rgba(15, 39, 71, 0.86) 28%, rgba(15, 39, 71, 0.91));
}

.who-we-help .section-inner,
.dark-flow .section-inner {
  position: relative;
  z-index: 2;
}

.business-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  align-items: center;
  justify-content: center;
  width: min(870px, 100%);
  margin: 2.15rem auto 2.6rem;
}

.business-grid img {
  width: min(100%, 178px);
  flex: 0 0 178px;
  aspect-ratio: 1;
  border: 3px solid var(--orange);
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.who-we-help p {
  width: min(880px, 100%);
  margin: 0 auto;
  font-size: 1.04rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
}

.dark-flow {
  padding: 0 0 clamp(3.5rem, 7vw, 6rem);
}

.how-it-works {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
}

.steps {
  width: min(820px, 100%);
  margin: 1.7rem auto 0;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.45rem;
  align-items: center;
  width: min(700px, 100%);
  min-height: 205px;
  margin-bottom: 1.2rem;
}

.step--right {
  margin-left: auto;
}

.step img {
  position: relative;
  z-index: 2;
  width: 250px;
  height: auto;
  object-fit: contain;
}

.step h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.05;
}

.step p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--white);
  font-weight: 500;
}

.support {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.support-intro {
  width: min(760px, 100%);
  margin-bottom: 2rem;
  font-size: 1.03rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
}

.support-card {
  min-height: 250px;
  padding: 1.35rem 1.25rem 1.55rem;
  border: 2px solid rgba(250, 248, 243, 0.9);
  border-radius: 24px;
  background: rgba(15, 39, 71, 0.2);
  text-align: center;
  backdrop-filter: blur(2px);
}

.support-card img {
  width: 76px;
  height: 76px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.support-card h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 800;
}

.support-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
  color: var(--white);
  font-weight: 500;
}

.coverage {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.coverage-inner,
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.coverage-inner img,
.final-cta-inner img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.coverage p,
.final-cta p {
  max-width: 450px;
  margin-bottom: 1.25rem;
  font-size: 1.03rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
}

.final-cta {
  padding: clamp(2.5rem, 6vw, 5.5rem) 0 0;
}

.site-footer {
  color: var(--white);
  background: var(--blue-950);
  padding: clamp(3rem, 6vw, 5.5rem) 0 2.2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.footer-brand img {
  width: min(360px, 100%);
  margin-bottom: 0.65rem;
}

.footer-contact,
.footer-coverage {
  font-style: normal;
}

.footer-contact h2,
.footer-coverage h2 {
  margin-bottom: 0.65rem;
  color: var(--orange);
  font-size: 1.12rem;
}

.footer-contact a,
.footer-contact span,
.footer-coverage p {
  display: block;
  margin: 0 0 0.22rem;
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  width: min(var(--max-width), calc(100% - 42px));
  margin: 2.2rem auto 1rem;
  font-size: 0.86rem;
  font-weight: 500;
}

.footer-nav a:not(:last-child)::after {
  margin-left: 0.35rem;
  color: rgba(250, 248, 243, 0.85);
  content: "·";
}

.copyright {
  margin-bottom: 0;
  color: rgba(250, 248, 243, 0.86);
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 1120px) {
  .hero-content {
    transform: none;
  }
}

@media (max-width: 860px) {
  .topbar {
    min-height: auto;
    padding: 0.8rem 0;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    font-size: 0.72rem;
  }

  .nav-links a + a::before {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(15, 39, 71, 0.9), rgba(15, 39, 71, 0.55));
  }

  .hero-content {
    padding-top: 190px;
  }

  .coverage-inner,
  .final-cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-intro {
    min-height: 500px;
    justify-content: stretch;
  }

  .service-intro::after {
    background:
      linear-gradient(90deg, rgba(242, 231, 201, 0.06) 0%, rgba(242, 231, 201, 0.12) 36%, rgba(242, 231, 201, 0.5) 68%, rgba(242, 231, 201, 0.84) 100%),
      linear-gradient(180deg, rgba(250, 248, 243, 0.04) 0%, rgba(242, 231, 201, 0.18) 100%);
  }

  .service-media img {
    object-position: 34% top;
  }

  .service-copy {
    width: min(50%, 420px);
    min-height: 500px;
    margin-left: auto;
    margin-right: 0;
    transform: none;
    padding: 3rem 21px 3.5rem;
    color: var(--blue-950);
  }

  .service-copy h2 {
    color: var(--blue-700);
  }

  .service-copy p {
    color: var(--blue-950);
  }

  .business-grid {
    width: min(600px, 100%);
    gap: 1rem;
  }

  .business-grid img {
    flex-basis: 150px;
  }

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

  .support-card {
    min-height: auto;
  }

  .final-cta-inner img {
    order: -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .section-inner,
  .footer-inner,
  .footer-nav {
    width: min(100% - 30px, var(--max-width));
  }

  .topbar {
    padding-inline: 15px;
  }

  .brand img {
    width: 138px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-bg {
    object-position: 58% top;
  }

  .hero-content {
    width: min(100% - 30px, 520px);
    padding-top: 180px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .service-intro::after {
    background:
      linear-gradient(90deg, rgba(242, 231, 201, 0.08) 0%, rgba(242, 231, 201, 0.16) 30%, rgba(242, 231, 201, 0.56) 62%, rgba(242, 231, 201, 0.9) 100%),
      linear-gradient(180deg, rgba(250, 248, 243, 0.04) 0%, rgba(242, 231, 201, 0.2) 100%);
  }

  .service-media img {
    object-position: 30% top;
  }

  .service-copy {
    width: min(54%, 320px);
    margin-left: auto;
    margin-right: 0;
    padding-left: 15px;
  }

  .who-we-help {
    min-height: auto;
  }

  .business-grid {
    gap: 0.8rem;
  }

  .business-grid img {
    width: 140px;
    flex-basis: 140px;
  }

  .step,
  .step--right {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 1rem;
    min-height: 150px;
    margin-left: 0;
  }

  .step img {
    width: 160px;
  }

  .step h3 {
    font-size: 1.12rem;
  }

  .step p,
  .who-we-help p,
  .coverage p,
  .final-cta p {
    font-size: 0.93rem;
  }

  .support-card {
    border-radius: 18px;
  }

  .coverage-inner img,
  .final-cta-inner img {
    border-radius: 12px;
  }
}

@media (max-width: 430px) {
  .topbar {
    justify-content: center;
  }

  .hero-content {
    padding-top: 200px;
  }

  .service-intro {
    min-height: 460px;
  }

  .service-intro::after {
    background:
      linear-gradient(90deg, rgba(242, 231, 201, 0.7) 0%, rgba(242, 231, 201, 0.56) 38%, rgba(242, 231, 201, 0.26) 70%, rgba(242, 231, 201, 0.08) 100%),
      linear-gradient(180deg, rgba(242, 231, 201, 0.12) 0%, rgba(242, 231, 201, 0.26) 100%);
  }

  .service-media img {
    object-position: 46% top;
  }

  .service-copy {
    width: min(86%, 340px);
    min-height: 460px;
    padding: 2.4rem 15px 2.6rem;
    justify-content: center;
    align-items: flex-start;
    margin-left: 0;
    margin-right: auto;
  }

  .service-copy h2 {
    font-size: 1.42rem;
    color: var(--blue-700);
  }

  .service-copy p {
    font-size: 0.93rem;
    max-width: 290px;
    color: var(--blue-950);
  }

  .service-copy .cta-button {
    width: auto;
    max-width: none;
    min-height: 0;
    padding: 0.5rem 0.7rem;
    align-self: flex-start;
    font-size: 0.86rem;
  }

  .business-grid {
    gap: 0.65rem;
  }

  .business-grid img {
    width: 132px;
    flex-basis: 132px;
  }

  .step,
  .step--right {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step img {
    margin: 0 auto;
  }

  .step div,
  .support-card p,
  .footer-contact,
  .footer-coverage {
    text-align: center;
  }

  .step p {
    max-width: 255px;
    margin: 0 auto;
    line-height: 1.38;
  }

  .support-card p {
    max-width: 210px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.38;
  }

  .footer-contact a,
  .footer-contact span,
  .footer-coverage p {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
