@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #16172b;
  --red: #f12328;
  --red-dark: #d11f24;
  --mint: #a8ddcb;
  --mint-soft: rgb(217 254 241 / 35%);
  --page: #f5f8fa;
  --ink: #222222;
  --body: #333333;
  --muted: #6c6d79;
  --white: #ffffff;
  --border: #c7c7cc;
  --page-padding: 30px;
  --shadow: 0 20px 45px rgb(22 23 43 / 12%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-top: 58px;
}

.page-shell {
  display: flex;
  flex-direction: column;
  background: var(--page);
}

.section-pad {
  padding-right: var(--page-padding);
  padding-left: var(--page-padding);
}

.button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.button:hover {
  opacity: 0.92;
}

.button:active {
  transform: translateY(1px);
}

.button--red {
  background: var(--red);
}

.button--red:hover {
  background: var(--red-dark);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 58px;
  padding: 16px var(--page-padding);
  background: var(--white);
}

.site-header.is-open {
  height: 100vh;
}

.site-nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  width: 78px;
  height: 18px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
  color: var(--body);
  font-size: 17px;
  font-weight: 600;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--red);
}

.nav-quote {
  display: none;
  padding: 10px 40px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.menu-button {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 1px;
  background: transparent;
  color: var(--navy);
}

.menu-button svg {
  width: 26px;
  height: 26px;
}

.menu-button .icon-close,
.site-header.is-open .menu-button .icon-menu {
  display: none;
}

.site-header.is-open .menu-button .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  background: var(--white);
  animation: fade-in 200ms ease-out;
}

.site-header.is-open .mobile-menu {
  display: block;
}

.mobile-nav {
  display: flex;
  margin: 32px calc(var(--page-padding) * -1) 0;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  font-weight: 500;
}

.mobile-nav li {
  padding-bottom: 14px;
  border-bottom: 0.6px solid #d9d9d9;
}

.mobile-nav a {
  display: block;
  padding: 0 var(--page-padding);
}

.mobile-quote {
  display: block;
  width: 100%;
  margin-top: 56px;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 56px var(--page-padding) 40px;
  background-image: url("../images/footer-mobile.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.footer-main {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand h2 {
  max-width: 620px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid var(--white);
  border-radius: 4px;
  transition: background-color 180ms ease, color 180ms ease;
}

.social-links a:hover {
  background: var(--white);
  color: var(--navy);
}

.social-links svg {
  width: 12px;
  height: 12px;
}

.opening-hours {
  font-size: 12px;
}

.footer-newsletter {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
}

.footer-newsletter > p {
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  margin-top: 16px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 6px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 8px 12px;
  border: 0;
  outline: none;
  background: transparent;
  color: #000000;
  font-size: 10px;
}

.newsletter-form input::placeholder {
  color: #000000;
}

.newsletter-form button {
  flex: 0 0 auto;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.newsletter-form button:disabled,
.quote-form button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.form-message {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  border-color: rgb(34 197 94 / 30%);
  background: rgb(34 197 94 / 20%);
  color: #dcfce7;
}

.form-message.is-error {
  border-color: rgb(239 68 68 / 30%);
  background: rgb(239 68 68 / 20%);
  color: #fee2e2;
}

.footer-links {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-size: 16px;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--mint);
}

.footer-rule {
  margin: 80px calc(var(--page-padding) * -1) 0;
  border-top: 0.3px solid var(--mint);
}

.footer-bottom {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-bottom p,
.footer-legal {
  font-size: 14px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-dot {
  display: none;
}

/* Home */
.home-hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  background-image: url("../images/home-hero-mobile.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-hero__content {
  display: flex;
  margin-top: 72px;
  flex-direction: column;
  gap: 15px;
  padding: 0 var(--page-padding);
}

.home-hero__copy {
  display: flex;
  max-width: 676px;
  flex-direction: column;
  gap: 12px;
}

.home-hero h1 {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.home-hero p {
  max-width: 638px;
  color: #f3f3f3;
  font-size: 10px;
  line-height: 1.6;
}

.home-hero .button {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 12px;
}

.logo-marquee {
  position: relative;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  padding: 12px 0;
  background: var(--mint-soft);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: logo-scroll 25s linear infinite;
}

.logo-group {
  display: flex;
  gap: 48px;
}

.partner-logo {
  display: flex;
  min-width: 120px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 120px;
  max-height: 40px;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.partner-logo img:hover {
  opacity: 0.5;
}

@keyframes logo-scroll {
  to {
    transform: translateX(calc(-100% / 3));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .logo-track {
    animation-play-state: paused;
  }
}

.home-about {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-about__inner,
.standard-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 20px;
}

.home-about__copy,
.standard-hero__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
}

.home-about h2 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.home-about p {
  font-size: 12px;
  line-height: 1.65;
}

.home-about .button,
.standard-hero .button {
  margin-top: 4px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.home-about__image,
.standard-hero__image {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.home-about__image img,
.standard-hero__image img {
  width: 100%;
  max-width: 594px;
}

.services-overview {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 64px var(--page-padding);
  background: var(--navy);
}

.services-overview .eyebrow {
  color: var(--mint);
}

.services-overview > h2 {
  margin-top: 16px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
}

.service-grid {
  display: grid;
  width: 100%;
  margin-top: 40px;
  gap: 32px;
  grid-template-columns: 1fr;
}

.service-card {
  display: flex;
  min-height: 374px;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border-radius: 14px;
  background: var(--white);
}

.service-card__icon {
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
}

.service-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-card__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

.service-card p {
  color: var(--body);
  font-size: 13px;
}

.service-card .button {
  margin-top: auto;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 400;
}

.partner-benefits {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 40px 20px;
}

.partner-benefits__layout {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
}

.partner-benefits__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-benefits h2 {
  color: #000000;
  font-size: 24px;
  line-height: 1.25;
}

.partner-benefits__intro p {
  font-size: 12px;
  line-height: 1.65;
}

.partner-benefits__intro .button {
  margin: 20px 0 32px;
  padding: 10px 26px;
  font-size: 10px;
}

.benefit-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.benefit-card {
  min-height: 300px;
  padding: 22px 20px;
  border: 1px solid rgb(0 0 0 / 15%);
  border-radius: 19px;
}

.benefit-card:first-child {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.benefit-card__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.benefit-card h3 {
  color: var(--ink);
  font-size: 20px;
}

.benefit-card:first-child h3 {
  color: var(--white);
}

.benefit-card p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

.benefit-card:first-child p {
  color: rgb(255 255 255 / 80%);
}

.quote-cta {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 36px var(--page-padding);
  background-image: url("../images/home-rq-mobile.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.quote-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.quote-cta h2 {
  width: 80%;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.quote-cta p {
  width: 100%;
  color: #425466;
  font-size: 10px;
  line-height: 1.5;
}

.quote-cta .button {
  padding: 6px 40px;
  border-radius: 8px;
  font-size: 8px;
}

/* About and services shared hero */
.standard-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.standard-hero__copy {
  gap: 16px;
}

.standard-hero h1 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.standard-hero p {
  font-size: 11px;
  line-height: 1.7;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px var(--page-padding);
  scroll-margin-top: 72px;
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-copy h2,
.values-heading h2,
.clients-heading h2 {
  color: var(--body);
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.story-copy > p {
  width: 100%;
  color: #333740;
  font-size: 10px;
  text-align: center;
}

.brand-statement {
  display: none;
}

.mission-mobile {
  display: flex;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  flex-direction: column;
  gap: 10px;
}

.mission-mobile > img {
  width: 100%;
  border-radius: 12px;
}

.mission-card {
  padding: 28px 20px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
}

.mission-card:last-child {
  background: var(--navy);
}

.mission-card h3 {
  font-size: 14px;
}

.mission-card p {
  margin-top: 10px;
  font-size: 12px;
}

.mission-desktop {
  display: none;
}

.values-section,
.clients-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 56px var(--page-padding);
}

.values-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.values-heading h2 {
  color: #000000;
  text-align: left;
}

.value-grid {
  display: grid;
  width: 100%;
  gap: 20px;
  grid-template-columns: 1fr;
}

.value-card {
  padding: 16px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.value-card img {
  width: 40px;
  height: 40px;
}

.value-card h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
}

.value-card p {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.7;
}

.clients-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.clients-heading h2 {
  color: #313131;
  font-size: 30px;
}

.clients-heading p {
  font-size: 12px;
  text-align: center;
}

.client-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.client-card {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  padding: 38px 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 8px rgb(0 0 0 / 5%);
}

.client-card img {
  max-width: 275px;
  max-height: 192px;
  object-fit: contain;
}

/* Services */
.offerings-section {
  display: flex;
  flex-direction: column;
  padding: 32px var(--page-padding);
}

.offerings-section > h2 {
  margin: 0 auto;
  color: #000000;
  font-size: 24px;
  line-height: 1.5;
}

.offerings-mobile {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
  gap: 34px;
}

.product-mobile {
  display: flex;
  flex-direction: column;
  scroll-margin-top: 72px;
}

.product-mobile__copy {
  padding: 20px 24px 32px;
  border-radius: 8px 8px 0 0;
  background: var(--mint);
}

.product-mobile h3 {
  color: var(--ink);
  font-size: 24px;
}

.product-mobile p,
.product-mobile li {
  font-size: 10px;
  line-height: 1.6;
}

.feature-list {
  margin: 14px 0 0 20px;
  padding-left: 10px;
  list-style-type: circle;
}

.feature-list li + li {
  margin-top: 10px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 9px;
  font-weight: 600;
}

.text-link svg {
  width: 12px;
}

.product-mobile > img {
  width: 100%;
  border-radius: 0 0 8px 8px;
  object-fit: cover;
}

.offerings-desktop {
  display: none;
}

/* Quote */
.quote-page {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: var(--page);
}

.quote-page::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  background-color: var(--navy);
  background-image: url("../images/quote-hero-mobile.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.quote-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 20px 64px;
  color: var(--white);
}

.quote-title {
  font-size: 24px;
  line-height: 1.45;
  text-align: center;
}

.quote-title + .quote-title {
  margin-bottom: 32px;
}

.quote-error {
  display: none;
  width: 100%;
  max-width: 896px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fef2f2;
  color: #991b1b;
}

.quote-error.is-visible {
  display: block;
}

.quote-form {
  display: grid;
  width: 100%;
  padding: 40px 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: #000000;
  gap: 20px;
  grid-template-columns: 1fr;
}

.form-field label {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
}

.required {
  color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea,
.multi-select__trigger {
  width: 100%;
  padding: 8px;
  border: 1px solid #b7b8ba;
  border-radius: 6px;
  outline: none;
  background: var(--white);
  font-size: 13px;
}

.form-field textarea {
  display: block;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.multi-select__trigger:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.multi-select {
  position: relative;
}

.multi-select__trigger {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.multi-select__trigger svg {
  width: 16px;
  height: 16px;
}

.multi-select__value.is-placeholder {
  color: #9ca3af;
}

.multi-select__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  display: none;
  width: 100%;
  overflow: hidden;
  border: 1px solid #b7b8ba;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 20px rgb(0 0 0 / 12%);
}

.multi-select.is-open .multi-select__menu {
  display: block;
}

.multi-select__option {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding: 12px;
  font-size: 12px;
}

.multi-select__option:hover {
  background: #f9fafb;
}

.multi-select__option input {
  width: 16px;
  height: 16px;
  margin: 0 12px 0 0;
  accent-color: var(--red);
}

.quote-submit {
  width: 100%;
  margin: 28px auto 0;
  padding: 16px 64px;
  border-radius: 16px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.quote-submit:hover {
  background: #dc2626;
}

/* Thank you */
.thank-you-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 20px 64px;
  color: var(--white);
}

.thank-you-card {
  width: 100%;
  max-width: 672px;
  padding: 40px 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: #000000;
  text-align: center;
}

.success-icon {
  display: flex;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0fdf4;
  color: #22c55e;
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

.thank-you-card h1 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 24px;
}

.thank-you-card h2 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
}

.thank-you-copy {
  display: flex;
  margin-bottom: 32px;
  flex-direction: column;
  gap: 16px;
}

.thank-you-copy p,
.next-steps,
.urgent-help {
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
}

.next-steps {
  margin-bottom: 32px;
  padding: 16px;
  border: 1px solid #b7b8ba;
  border-radius: 8px;
  background: var(--page);
  text-align: left;
}

.next-steps h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 14px;
  text-align: center;
}

.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.next-steps li {
  position: relative;
  padding-left: 20px;
}

.next-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  content: "•";
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thank-you-actions .button {
  width: 100%;
  padding: 12px 32px;
}

.thank-you-actions .button--outline {
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
}

.urgent-help {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 12px;
}

.urgent-help a {
  color: var(--red);
  font-weight: 600;
}

/* 404 */
.not-found {
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px var(--page-padding);
  background: var(--page);
  text-align: center;
}

.not-found__code {
  color: var(--red);
  font-size: clamp(72px, 18vw, 180px);
  font-weight: 700;
  line-height: 1;
}

.not-found h1 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(26px, 5vw, 46px);
}

.not-found p {
  max-width: 600px;
  margin-top: 12px;
}

.not-found .button {
  margin-top: 28px;
  padding: 12px 32px;
}

@media (min-width: 400px) {
  .home-hero h1 {
    font-size: 40px;
  }

  .home-hero p {
    font-size: 14px;
    line-height: 1.45;
  }

  .newsletter-form input {
    font-size: 12px;
  }

  .newsletter-form button {
    font-size: 10px;
  }

  .quote-cta h2 {
    width: 100%;
    font-size: 28px;
  }

  .quote-cta p {
    max-width: 75%;
    font-size: 12px;
  }

  .standard-hero h1 {
    font-size: 36px;
  }

  .standard-hero p {
    font-size: 12px;
  }

  .mission-card h3 {
    font-size: 18px;
  }
}

@media (min-width: 640px) {
  :root {
    --page-padding: 32px;
  }

  .home-about h2,
  .partner-benefits h2,
  .story-copy h2,
  .values-heading h2 {
    font-size: 30px;
  }

  .home-about p,
  .partner-benefits__intro p {
    font-size: 14px;
  }

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

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

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

  .product-mobile h3 {
    font-size: 30px;
  }

  .product-mobile p,
  .product-mobile li {
    font-size: 12px;
  }

  .text-link {
    font-size: 12px;
  }

  .quote-title {
    font-size: 36px;
  }

  .quote-title + .quote-title {
    margin-bottom: 48px;
  }

  .quote-form {
    padding: 40px 32px;
    gap: 24px;
  }

  .thank-you-card {
    padding: 48px 32px;
  }

  .thank-you-actions {
    flex-direction: row;
    justify-content: center;
  }

  .thank-you-actions .button {
    width: auto;
  }
}

@media (min-width: 768px) {
  .home-hero h1 {
    font-size: 48px;
  }

  .home-hero p {
    font-size: 16px;
  }

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

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

  .quote-cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .quote-cta h2 {
    font-size: 35px;
  }

  .quote-cta p {
    font-size: 14px;
  }

  .quote-cta .button {
    padding: 8px 40px;
    font-size: 10px;
  }

  .story-copy h2,
  .values-heading h2 {
    font-size: 36px;
  }

  .story-copy > p {
    width: 95%;
    margin: 0 auto;
    font-size: 14px;
  }

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

  .value-card {
    padding: 20px 36px;
  }

  .value-card h3 {
    font-size: 24px;
  }

  .value-card p {
    font-size: 14px;
  }

  .clients-heading h2 {
    font-size: 40px;
  }

  .quote-page::before {
    height: 580px;
  }

  .quote-title {
    font-size: 48px;
  }

  .quote-title + .quote-title {
    margin-bottom: 64px;
  }

  .quote-form {
    padding: 48px 28px;
    gap: 32px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field label,
  .multi-select__option {
    font-size: 14px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .multi-select__trigger {
    padding: 12px;
    font-size: 14px;
  }

  .quote-submit {
    width: max-content;
    font-size: 14px;
    grid-column: 1 / -1;
  }

  .thank-you-section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .thank-you-card {
    padding: 56px 40px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
  }

  .success-icon svg {
    width: 40px;
    height: 40px;
  }

  .thank-you-card h1 {
    font-size: 36px;
  }

  .thank-you-card h2 {
    font-size: 24px;
  }

  .thank-you-copy p,
  .next-steps {
    font-size: 16px;
  }
}

@media (min-width: 910px) {
  .desktop-nav {
    display: flex;
  }

  .home-hero {
    min-height: 100vh;
    background-image: url("../images/home-hero-desktop.png");
  }

  .home-hero__content {
    margin-top: auto;
    margin-bottom: auto;
  }

  .home-hero h1 {
    font-size: 55px;
    font-weight: 500;
  }

  .home-about,
  .standard-hero {
    background-image: url("../images/about-the-program-desktop.png");
  }

  .standard-hero {
    background-image: url("../images/services-hero-bg.png");
  }

  .home-about__inner,
  .standard-hero__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 64px;
  }

  .home-about__copy,
  .standard-hero__copy {
    width: 50%;
    max-width: 576px;
  }

  .home-about__image,
  .standard-hero__image {
    width: 50%;
    justify-content: flex-end;
  }

  .home-about h2 {
    font-size: 36px;
    font-weight: 500;
  }

  .standard-hero h1 {
    max-width: 100%;
    font-size: 40px;
    font-weight: 500;
  }

  .standard-hero p {
    font-size: 14px;
  }

  .story-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .story-copy {
    width: 50%;
    gap: 24px;
  }

  .story-copy h2 {
    color: var(--navy);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
  }

  .story-copy > p {
    width: 100%;
    margin: 0;
    font-size: 16px;
    text-align: left;
  }

  .brand-statement {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 12px;
    padding: 12px 64px 12px 24px;
    border-radius: 8px;
    background: var(--navy);
    color: #f3f3f3;
    font-size: 20px;
    font-weight: 700;
  }

  .brand-statement img {
    width: 60px;
    height: 64px;
  }

  .mission-mobile {
    display: none;
  }

  .mission-desktop {
    display: flex;
    margin-left: 80px;
    gap: 54px;
  }

  .mission-line {
    display: flex;
    height: 236px;
    margin-top: 8px;
    flex-direction: column;
    align-items: center;
  }

  .mission-line span:first-child,
  .mission-line span:last-child {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--red);
  }

  .mission-line span:nth-child(2) {
    flex: 1;
    border-left: 2px dashed #d9c6b8;
  }

  .mission-copy {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .mission-copy article {
    max-width: 448px;
  }

  .mission-copy h3 {
    color: var(--red);
    font-size: 30px;
    font-weight: 500;
  }

  .mission-copy p {
    margin-top: 12px;
    font-size: 18px;
  }

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

  .offerings-mobile {
    display: none;
  }

  .offerings-desktop {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-desktop {
    position: relative;
    display: flex;
    width: 100%;
    margin: 40px 0;
    scroll-margin-top: 128px;
  }

  .product-desktop:nth-child(even) {
    flex-direction: row-reverse;
  }

  .product-desktop__image {
    width: 57%;
    height: 450px;
    overflow: hidden;
  }

  .product-desktop__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-desktop__copy {
    position: absolute;
    z-index: 2;
    top: 32px;
    left: 45%;
    width: 55%;
    padding: 12px 32px 32px;
    border-radius: 12px;
    background: var(--mint);
    box-shadow: 0 10px 25px rgb(0 0 0 / 12%);
  }

  .product-desktop:nth-child(even) .product-desktop__copy {
    right: 45%;
    left: auto;
  }

  .product-desktop h3 {
    color: var(--ink);
    font-size: 30px;
  }

  .product-desktop p,
  .product-desktop li {
    font-size: 13px;
    line-height: 1.75;
  }

  .product-desktop .text-link {
    font-size: 13px;
  }
}

@media (min-width: 1150px) {
  :root {
    --page-padding: 40px;
  }

  .site-main {
    margin-top: 92px;
  }

  .site-header {
    min-height: 92px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .site-logo img {
    width: 160px;
    height: 36px;
  }

  .menu-button {
    display: none;
  }

  .nav-quote {
    display: inline-flex;
  }

  .mobile-menu {
    display: none !important;
  }

  .home-hero__copy {
    gap: 26px;
  }

  .home-hero__content {
    gap: 20px;
  }

  .home-hero h1 {
    font-size: 55px;
  }

  .home-hero .button {
    padding: 16px 40px;
    border-radius: 16px;
    font-size: 16px;
  }

  .partner-logo {
    height: 56px;
  }

  .home-about__inner,
  .standard-hero__inner {
    gap: 40px;
    padding: 48px 64px;
  }

  .home-about__copy {
    gap: 12px;
  }

  .home-about h2 {
    font-size: 42px;
  }

  .home-about p {
    font-size: 16px;
  }

  .home-about .button,
  .standard-hero .button {
    padding: 14px 40px;
    font-size: 16px;
  }

  .services-overview {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .services-overview .eyebrow {
    font-size: 18px;
  }

  .services-overview > h2 {
    font-size: 50px;
    line-height: 1.2;
  }

  .service-grid {
    margin-top: 48px;
    gap: 40px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    gap: 34px;
    padding: 34px;
    border-radius: 16px;
  }

  .service-card__icon {
    width: 80px;
    height: 80px;
  }

  .service-card__icon img {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-card .button {
    padding: 12px 26px;
    font-size: 16px;
  }

  .partner-benefits {
    padding: 80px 64px;
  }

  .partner-benefits__layout {
    align-items: center;
    gap: 40px;
    grid-template-columns: 40% 1fr;
  }

  .partner-benefits__intro {
    gap: 28px;
  }

  .partner-benefits h2 {
    font-size: 50px;
    font-weight: 500;
  }

  .partner-benefits__intro p {
    font-size: 16px;
    line-height: 2;
  }

  .partner-benefits__intro .button {
    margin-top: 36px;
    margin-bottom: 0;
    padding: 16px 56px;
    border-radius: 16px;
    font-size: 16px;
  }

  .benefit-card {
    padding: 22px 20px;
  }

  .benefit-card img {
    width: 50px;
    height: 50px;
  }

  .benefit-card h3 {
    font-size: 22px;
  }

  .quote-cta {
    padding: 48px 0 80px;
    background-image: url("../images/home-rq-desktop.png");
  }

  .quote-cta__inner {
    gap: 32px;
  }

  .quote-cta h2 {
    font-size: 50px;
  }

  .quote-cta p {
    max-width: 702px;
    font-size: 18px;
  }

  .quote-cta .button {
    padding: 12px 80px;
    border-radius: 16px;
    font-size: 16px;
  }

  .standard-hero h1 {
    font-size: 55px;
  }

  .standard-hero p {
    font-size: 16px;
  }

  .story-section,
  .values-section,
  .clients-section {
    padding: 80px 40px;
  }

  .story-copy h2,
  .values-heading h2 {
    font-size: 55px;
    line-height: 1.2;
  }

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

  .clients-heading h2 {
    font-size: 55px;
    font-weight: 500;
  }

  .clients-heading p {
    font-size: 18px;
  }

  .offerings-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .offerings-section > h2 {
    font-size: 40px;
    font-weight: 500;
  }

  .product-desktop__image {
    width: 60%;
    height: 530px;
  }

  .product-desktop__copy {
    left: 50%;
    width: 50%;
    padding: 20px 40px 40px;
  }

  .product-desktop:nth-child(even) .product-desktop__copy {
    right: 50%;
  }

  .product-desktop h3 {
    font-size: 36px;
  }

  .product-desktop p,
  .product-desktop li,
  .product-desktop .text-link {
    font-size: 15px;
  }

  .quote-page::before {
    height: 616px;
    background-image: url("../images/quote-hero-desktop.png");
  }

  .quote-section,
  .thank-you-section {
    padding-top: 192px;
  }

  .quote-title {
    font-size: 60px;
    font-weight: 500;
  }

  .quote-title + .quote-title {
    margin-bottom: 80px;
  }

  .quote-form {
    padding: 56px 40px;
    gap: 40px 28px;
  }

  .quote-submit {
    font-size: 16px;
  }

  .thank-you-card {
    padding: 64px 48px;
  }

  .thank-you-card h1 {
    font-size: 48px;
  }

  .site-footer {
    padding-top: 74px;
    padding-bottom: 24px;
    background-image: url("../images/footer-desktop.png");
  }

  .footer-main {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    max-width: 616px;
  }

  .footer-brand h2 {
    font-size: 55px;
    line-height: 1.27;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    padding: 8px;
    border-radius: 8px;
  }

  .social-links svg {
    width: 16px;
    height: 16px;
  }

  .opening-hours {
    font-size: 20px;
  }

  .footer-newsletter {
    width: 100%;
    max-width: 530px;
    margin-top: 0;
  }

  .footer-newsletter > p {
    font-size: 26px;
  }

  .newsletter-form {
    border-radius: 32px;
  }

  .newsletter-form input {
    padding: 8px 16px;
    font-size: 16px;
  }

  .newsletter-form button {
    padding: 10px 20px;
    border-radius: 32px;
    font-size: 16px;
  }

  .footer-links {
    font-size: 22px;
  }

  .footer-rule {
    margin-top: 80px;
    border-top-width: 0.5px;
  }

  .footer-bottom {
    margin-top: 24px;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .footer-bottom p,
  .footer-legal {
    font-size: 18px;
  }

  .footer-legal {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    order: 2;
  }

  .footer-bottom > p {
    order: 1;
  }

  .legal-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9d9d9;
  }
}

@media (min-width: 1280px) {
  :root {
    --page-padding: 80px;
  }

  .home-hero h1 {
    font-size: 60px;
  }

  .home-about__inner,
  .standard-hero__inner {
    padding-right: 80px;
    padding-left: 80px;
  }

  .home-about h2 {
    font-size: 48px;
  }

  .home-about p {
    font-size: 18px;
  }

  .standard-hero h1 {
    font-size: 60px;
  }

  .standard-hero p {
    font-size: 18px;
  }

  .service-card p {
    font-size: 16px;
  }

  .partner-benefits {
    padding-right: 80px;
    padding-left: 80px;
  }

  .partner-benefits h2 {
    font-size: 55px;
  }

  .partner-benefits__intro p {
    font-size: 22px;
  }

  .story-section,
  .values-section,
  .clients-section {
    padding-right: 80px;
    padding-left: 80px;
  }
}
