.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 58, 107, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--max-width);
  min-height: 76px;
  margin: 0 auto;
  padding: 8px 24px;
}

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

.nav-logo img {
  width: 140px;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-link {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 5;
  display: none;
  min-width: 250px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--navy);
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.active {
  background: var(--light-bg);
}

.nav-hamburger {
  display: none;
  width: 42px;
  height: 38px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--white);
}

.nav-hamburger span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
}

.hero-section {
  background: #1B3A6B;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 24px 152px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--green);
  opacity: 0.8;
}

.hero-headline {
  /* Playfair Display is intentionally limited to this rule. */
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subhead {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 32px 0 28px;
  overflow: visible;
}

.logo-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.logo-strip-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 12px 0;
}

.logo-strip-track {
  display: flex;
  width: max-content;
  gap: 40px;
  align-items: center;
  overflow-y: visible;
  animation: logo-strip-scroll 35s linear infinite;
}

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

@keyframes logo-strip-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-strip-item {
  width: 190px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.logo-strip-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-strip-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(10%);
  transform-origin: center center;
  transition: opacity 0.2s, filter 0.2s;
}

.logo-strip-item img:hover { opacity: 1; filter: none; }
.logo-strip-item--lockton img { transform: scale(1.2); }
.logo-strip-item--incheck img { transform: scale(1.35); }
.logo-strip-item--covenanthr img { transform: scale(1.4); }
.logo-strip-item--onebadgehealthcare img { transform: scale(1.1); }
.logo-strip-item--vitalworklife img { transform: scale(1.3); }

.form-title {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.form-intro {
  margin-bottom: 8px;
  color: var(--gray-text);
  font-size: 0.95rem;
}

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

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

.why-card {
  padding: var(--card-pad);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  flex-shrink: 0;
}

.why-card-title {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.why-card-body {
  margin-bottom: 0;
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.7;
}

.how-section {
  background: var(--light-bg);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.how-step-num {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--green);
  line-height: 1;
}

.how-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.how-step-body {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.65;
}

.cta-band {
  background: var(--green);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band-heading {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.cta-band-body {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.cta-band .btn-blue {
  background: var(--navy);
}

.ecosystem-section { background: white; }

.ecosystem-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--gray-text);
  margin-top: -32px;
  margin-bottom: 52px;
}

.accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: white;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  border: none;
  font-family: var(--font-body);
}

.accordion-trigger:hover,
.accordion-trigger.open { background: var(--light-bg); }

.accordion-icon {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.accordion-trigger.open .accordion-icon { background: var(--navy); color: white; }
.accordion-title { font-size: 17px; font-weight: 700; color: var(--navy); flex: 1; }
.accordion-count { font-size: 13px; color: var(--gray-text); margin-right: 8px; }
.accordion-chevron { color: var(--gray-text); font-size: 13px; transition: transform 0.2s; flex-shrink: 0; }
.accordion-trigger.open .accordion-chevron { transform: rotate(180deg); }

.accordion-panel {
  display: none;
  padding: 24px;
  background: #fafbfd;
  border-top: 1px solid var(--border);
}

.accordion-panel.open { display: block; }
.partner-tiles { display: flex; flex-wrap: wrap; gap: 16px; }

.partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 96px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}

.partner-tile:hover { box-shadow: var(--shadow); border-color: var(--navy); }
.partner-tile img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.partner-tile--lockton img { transform: scale(1.45); }
.partner-tile--incheck img { transform: scale(1.3); }
.partner-tile--covenanthr img { transform: scale(1.35); }
.partner-tile--vitalworklife img { transform: scale(1.25); }

.video-section {}

.video-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.video-frame {
  position: relative;
  width: 100%;
  background: #0f2040;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(16,32,64,0.18);
}

.video-frame::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-attr {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 16px;
}

.home-video-section { background: var(--navy); }
.home-video-section .section-eyebrow { color: var(--green); }
.home-video-section .section-heading { color: #ffffff; }
.home-video-section .video-intro {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
}
.home-video-section .video-attr { color: rgba(255,255,255,0.55); }
.home-video-section .video-frame { border-color: rgba(255,255,255,0.15); }

.partner-video-section {
  background: var(--navy);
  border-top: none;
}

.partner-video-section .section-eyebrow { color: var(--green); }
.partner-video-section .section-heading { color: #ffffff; }

.partner-video-section .video-intro {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
}

.partner-video-section .video-attr { color: rgba(255,255,255,0.55); }
.partner-video-section .video-frame { border-color: rgba(255,255,255,0.15); }

.thankyou-section { background: var(--light-bg); }
.thankyou-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thankyou-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
}
.thankyou-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.thankyou-body {
  font-size: 17px;
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 8px;
}
.thankyou-sub {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 0;
}
.thankyou-contacts { margin: 8px 0 36px; }
.thankyou-contacts-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 14px;
}
.thankyou-contact-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.thankyou-contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 24px;
  text-align: left;
  min-width: 240px;
}
.tc-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.tc-role {
  font-size: 13px;
  color: var(--gray-text);
  margin: 2px 0 6px;
}
.tc-email {
  font-size: 14px;
  color: var(--blue);
}
.thankyou-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-section {
  background: var(--navy);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-section .section-heading {
  color: white;
}

.contact-section .section-eyebrow {
  color: var(--green);
}

.contact-intro p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
}

.contact-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6) !important;
  font-size: 13px;
  margin-top: 20px;
}

.contact-trust i {
  color: var(--green);
}

.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.newsletter-section {
  background: #0f2040;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.newsletter-heading {
  color: white;
}

.newsletter-intro {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.65);
}

.sendfox-form {
  display: flex;
  flex: 1 1 520px;
  justify-content: flex-end;
  gap: 8px;
}

.sendfox-form input {
  max-width: 190px;
}

.site-footer {
  background: #1a1f2e;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.footer-col--about > a {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-col--about img {
  width: 120px;
  height: 48px;
  object-fit: contain;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.footer-text,
.footer-links {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.footer-managed-label {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-lockton-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-top: 4px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 22, 38, 0.78);
}

.modal-box {
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--gray-text);
  font-size: 2rem;
  line-height: 1;
}

.modal-title {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.modal-intro {
  margin-bottom: 24px;
  color: var(--gray-text);
}

.partner-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
}

.partner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 31, 60, 0.92), rgba(27, 58, 107, 0.6) 58%, rgba(27, 58, 107, 0.3));
}

.partner-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.partner-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.partner-hero-headline {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
}

.partner-hero-subhead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.partner-extra-paragraph {
  margin-top: 20px;
  line-height: 1.7;
}

.partner-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-challenge,
.partner-fit {
  background: var(--light-bg);
}

.partner-challenge .section-intro,
.partner-solution .section-intro,
.partner-fit .section-intro,
.partner-why .section-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.partner-challenge .card-grid,
.partner-fit .card-grid,
.partner-why .advantage-grid,
.partner-solution .solution-list {
  margin-top: 0;
}

.challenge-card,
.fit-card,
.advantage-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.challenge-card-title,
.fit-card-title,
.advantage-card-title {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.challenge-card p,
.fit-card p,
.advantage-card p {
  margin-bottom: 0;
  color: var(--gray-text);
}

.partner-solution {
  background: var(--navy);
}

.partner-solution .section-inner {
  color: rgba(255, 255, 255, 0.84);
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.solution-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.solution-num {
  color: var(--green);
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.solution-item-title {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.solution-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.solution-callout {
  margin-top: 32px;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 20px 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.65;
  font-style: normal;
}

.solution-callout strong {
  color: white;
  font-weight: 700;
}

.fit-card {
  display: flex;
  gap: 14px;
}

.fit-check {
  display: flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.partner-why {
  background: var(--white);
}

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

.partner-contact {
  background: var(--light-bg);
}

.partner-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1fr);
  gap: 72px;
  align-items: start;
}

.partner-contact-intro h2 {
  margin-bottom: 18px;
}

.partner-contact-intro > p {
  color: var(--gray-text);
}

.contact-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 110px;
  padding: 18px 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 28px;
  overflow: hidden;
  box-sizing: border-box;
}

.contact-logo-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  display: block;
}

.contact-logo-tile--lockton img { transform: scale(1.1); }
.contact-logo-tile--incheck img { transform: scale(1.15); }
.contact-logo-tile--covenanthr img { transform: scale(1.2); }
.contact-logo-tile--vitalworklife img { transform: scale(1.05); }

.partner-contact-inner > .ap3-form {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.error-section {
  min-height: 56vh;
  text-align: center;
}

.error-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.error-code {
  margin-bottom: 0;
  color: rgba(27, 58, 107, 0.12);
  font-family: var(--font-heading);
  font-size: clamp(100px, 20vw, 220px);
  font-weight: 700;
  line-height: 0.9;
}

.error-heading {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
}

.error-body {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--gray-text);
}

@media (max-width: 900px) {
  .video-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-inner,
  .partner-contact-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-col--managed {
    grid-column: 1 / -1;
  }

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

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }

  .nav-hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    width: min(86vw, 360px);
    padding: 28px 22px;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -10px 0 28px rgba(27, 58, 107, 0.15);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .nav-dropdown-toggle,
  .nav-links > .btn {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .cta-band-inner,
  .newsletter-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sendfox-form {
    width: 100%;
    justify-content: stretch;
  }

  .sendfox-form input {
    max-width: none;
  }

  .solution-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 540px) {
  .nav-inner {
    min-height: 68px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-links {
    top: 68px;
  }

  .contact-form-card,
  .partner-contact-inner > .ap3-form,
  .modal-box {
    padding: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-col--managed {
    grid-column: auto;
  }

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

  .sendfox-form {
    align-items: stretch;
    flex-direction: column;
  }

  .sendfox-form .btn {
    width: 100%;
  }

  .partner-hero,
  .partner-hero-inner {
    min-height: 500px;
  }

  .hero-inner { padding: 88px 18px 80px; }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn { width: 100%; }
  .how-step { grid-template-columns: 52px 1fr; gap: 16px; padding: 24px 20px; }
  .how-step-num { font-size: 38px; }
  .accordion-trigger { padding: 16px; gap: 12px; }
  .accordion-count { display: none; }
}