@charset "UTF-8";
.seo-body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.seo-body *,
.seo-body *::before,
.seo-body *::after {
  box-sizing: border-box;
}
.seo-body h1, .seo-body h2, .seo-body h3, .seo-body h4, .seo-body h5, .seo-body h6 {
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: #0a2540;
  font-weight: 700;
}
.seo-body p {
  margin: 0 0 1em;
}
.seo-body a {
  color: #0a2540;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-body a:hover, .seo-body a:focus-visible {
  color: #d99e00;
}
.seo-body img,
.seo-body svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.seo-body button {
  font-family: inherit;
  cursor: pointer;
}
.seo-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.seo-body :focus-visible {
  outline: 3px solid #f5b800;
  outline-offset: 2px;
  border-radius: 6px;
}

.seo-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.seo-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #d99e00;
  margin: 0 0 0.75em;
}

.seo-section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.seo-section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.seo-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.5em;
}

.seo-section-lead {
  font-size: 1.125rem;
  color: #475569;
  margin: 0;
}

.seo-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #0a2540;
}
.seo-link-arrow span {
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-link-arrow:hover span {
  transform: translateX(4px);
}

.seo-body .seo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.seo-body .seo-btn:hover {
  transform: translateY(-1px);
}
.seo-body .seo-btn:active {
  transform: translateY(0);
}
.seo-body .seo-btn--lg {
  padding: 16px 28px;
  font-size: 1rem;
}
.seo-body .seo-btn--primary {
  background: #f5b800;
  color: #051529;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
}
.seo-body .seo-btn--primary:hover, .seo-body .seo-btn--primary:focus-visible {
  background: #d99e00;
  color: #051529;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
}
.seo-body .seo-btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.seo-body .seo-btn--ghost:hover, .seo-body .seo-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}
.seo-body .seo-btn--solid-navy {
  background: #0a2540;
  color: #ffffff;
}
.seo-body .seo-btn--solid-navy:hover, .seo-body .seo-btn--solid-navy:focus-visible {
  background: #16345a;
  color: #ffffff;
}

.seo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid #e2e8f0;
}
.seo-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.seo-header__brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  margin-right: auto;
}
.seo-header__brand:hover {
  color: #0a2540;
}
.seo-header__logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: #0a2540;
  letter-spacing: -0.01em;
}
.seo-header__tagline {
  font-size: 0.8rem;
  color: #475569;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.seo-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .seo-header__nav {
    display: block;
  }
}
.seo-header__nav-list {
  display: flex;
  gap: 22px;
  align-items: center;
}
.seo-header__nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f172a;
}
.seo-header__nav-list a:hover, .seo-header__nav-list a:focus-visible {
  color: #d99e00;
}
.seo-header__ctas {
  display: none;
  align-items: center;
  gap: 14px;
}
@media (min-width: 820px) {
  .seo-header__ctas {
    display: inline-flex;
  }
}
.seo-header__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a2540;
}
.seo-header__link:hover {
  color: #d99e00;
}
.seo-header__menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 10px;
  margin-left: auto;
}
@media (min-width: 820px) {
  .seo-header__menu-toggle {
    display: none;
  }
}
.seo-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0a2540;
  border-radius: 2px;
}
.seo-header__mobile {
  display: block;
  padding: 12px 24px 18px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}
.seo-header__mobile[hidden] {
  display: none;
}
.seo-header__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seo-header__mobile a {
  display: block;
  padding: 10px 6px;
  font-weight: 500;
  border-radius: 6px;
}
.seo-header__mobile a.seo-btn {
  padding: 12px 18px;
  text-align: center;
}
@media (min-width: 820px) {
  .seo-header__mobile {
    display: none !important;
  }
}
.seo-header__admin-shortcut {
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
  margin-left: 8px;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
@media (min-width: 820px) {
  .seo-header__admin-shortcut {
    display: block;
  }
}

.seo-footer {
  background: #051529;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 0;
  margin-top: 80px;
}
.seo-footer a {
  color: rgba(255, 255, 255, 0.78);
}
.seo-footer a:hover {
  color: #f5b800;
}
.seo-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 820px) {
  .seo-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.seo-footer__brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
}
.seo-footer__address, .seo-footer__contact {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 12px;
}
.seo-footer__heading {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.seo-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seo-footer__col ul a {
  font-size: 0.95rem;
}
.seo-footer__bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.seo-footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.56);
}

.seo-body .seo-hero {
  position: relative;
  padding: 80px 0 64px;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 820px) {
  .seo-body .seo-hero {
    padding: 120px 0 96px;
  }
}
.seo-body .seo-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 80% 20%, rgba(245, 184, 0, 0.18), transparent 60%), linear-gradient(135deg, #051529 0%, #0a2540 60%, #16345a 100%);
  z-index: -1;
}
.seo-body .seo-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 75%);
          mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 75%);
}
.seo-body .seo-hero__inner {
  position: relative;
  max-width: 880px;
}
.seo-body .seo-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f5b800;
  margin: 0 0 18px;
}
.seo-body .seo-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 24px;
}
.seo-body .seo-hero__title span {
  color: #f5b800;
  white-space: nowrap;
}
.seo-body .seo-hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 0 36px;
}
@media (min-width: 820px) {
  .seo-body .seo-hero__subtitle {
    font-size: 1.25rem;
  }
}
.seo-body .seo-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 68px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.seo-body .seo-hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f5b800;
  font-weight: 600;
  font-size: 0.95rem;
}
.seo-body .seo-hero__badges li span {
  color: rgba(255, 255, 255, 0.92);
}

.seo-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.seo-ctas--hero {
  margin-bottom: 8px;
}
.seo-ctas--banner {
  justify-content: flex-end;
}
.seo-ctas--inline {
  justify-content: center;
}

.seo-body .seo-numbers {
  padding: 96px 0;
  background: #f7fafc;
}
.seo-body .seo-numbers .seo-section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}
.seo-body .seo-numbers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .seo-body .seo-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-body .seo-numbers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.seo-body .seo-numbers__footnote {
  text-align: center;
  max-width: 760px;
  margin: 60px auto 32px;
  color: #475569;
  font-size: 1rem;
}
.seo-body .seo-numbers__cta {
  display: flex;
  justify-content: center;
}
.seo-body .seo-numbers__cta .seo-btn--ghost {
  color: #0a2540;
  border-color: #cbd5e1;
}
.seo-body .seo-numbers__cta .seo-btn--ghost:hover, .seo-body .seo-numbers__cta .seo-btn--ghost:focus-visible {
  background: rgba(10, 37, 64, 0.05);
  color: #0a2540;
  border-color: #0a2540;
}

.seo-number {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-number:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}
.seo-number__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569;
  margin: 0 0 8px;
  font-weight: 700;
}
.seo-number__value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 12px;
  color: #0a2540;
  letter-spacing: -0.02em;
}
.seo-number__value span {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  margin-left: 4px;
}
.seo-number__caption {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
}
.seo-number__caption strong {
  color: #0f172a;
}
.seo-number--problem .seo-number__value {
  color: #DC2626;
}
.seo-number--solution .seo-number__value {
  color: #10B981;
}
.seo-number--gain .seo-number__value {
  color: #16A34A;
}

.seo-services {
  padding: 96px 0;
  background: #ffffff;
}
.seo-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 820px) {
  .seo-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-service-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}
.seo-service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(255, 227.1142857143, 143), #f5b800);
  color: #051529;
  margin-bottom: 20px;
}
.seo-service-card__icon svg {
  width: 32px;
  height: 32px;
}
.seo-service-card h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.seo-service-card p {
  color: #475569;
  margin: 0 0 18px;
}
.seo-service-card__list {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-service-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: #0f172a;
}
.seo-service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #2ec27e;
  border-bottom: 2px solid #2ec27e;
  transform: rotate(-45deg);
}
.seo-service-card .seo-link-arrow {
  margin-top: auto;
}

.seo-why {
  padding: 96px 0;
  background: #f7fafc;
}
.seo-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 820px) {
  .seo-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.seo-why__item {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
}
.seo-why__item h3 {
  font-size: 1.15rem;
  margin: 14px 0 12px;
}
.seo-why__item p {
  color: #475569;
  margin: 0;
}
.seo-why__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0a2540;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.seo-process {
  padding: 96px 0;
  background: #ffffff;
}
.seo-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: process;
}
@media (min-width: 820px) {
  .seo-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.seo-process__steps li {
  position: relative;
  padding: 28px;
  background: #f7fafc;
  border-radius: 16px;
  border-top: 4px solid #f5b800;
}
.seo-process__steps li h3 {
  font-size: 1.1rem;
  margin: 12px 0;
}
.seo-process__steps li p {
  color: #475569;
  margin: 0;
  font-size: 0.95rem;
}
.seo-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a2540;
  color: #ffffff;
  font-weight: 800;
}

.seo-incentives {
  padding: 96px 0;
  background: #051529;
  color: #ffffff;
}
.seo-incentives .seo-section-title {
  color: #ffffff;
}
.seo-incentives .seo-section-lead {
  color: rgba(255, 255, 255, 0.78);
}
.seo-incentives .seo-eyebrow {
  color: #f5b800;
}
.seo-incentives__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 820px) {
  .seo-incentives__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-incentives__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-incentive {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}
.seo-incentive h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 12px;
}
.seo-incentive p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.seo-body .seo-locations {
  padding: 96px 0;
  background: #ffffff;
}
.seo-body .seo-locations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 820px) {
  .seo-body .seo-locations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-body .seo-locations__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.seo-body .seo-locations__note {
  text-align: center;
  margin-top: 52px;
  color: #475569;
}
.seo-body .seo-locations__note a {
  font-weight: 600;
  color: #0a2540;
  text-decoration: underline;
}

.seo-location-card {
  display: block;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  color: #0f172a;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-location-card:hover {
  border-color: #f5b800;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
  color: #0f172a;
}
.seo-location-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: #0a2540;
}
.seo-location-card p {
  color: #475569;
  margin: 0;
  font-size: 0.95rem;
}
.seo-location-card--all {
  background: #0a2540;
  border-color: #0a2540;
  color: #ffffff;
}
.seo-location-card--all h3 {
  color: #ffffff;
}
.seo-location-card--all p {
  color: rgba(255, 255, 255, 0.78);
}
.seo-location-card--all:hover {
  background: #16345a;
  border-color: #16345a;
  color: #ffffff;
}
.seo-location-card--all:hover h3 {
  color: #f5b800;
}

.seo-breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.seo-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.seo-breadcrumbs li + li::before {
  content: "›";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.5);
}
.seo-breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.seo-breadcrumbs a:hover {
  color: #f5b800;
}
.seo-breadcrumbs [aria-current=page] {
  color: #ffffff;
}

.seo-loc-hero,
.seo-loc-show-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  padding: 72px 0 64px;
}
@media (min-width: 820px) {
  .seo-loc-hero,
  .seo-loc-show-hero {
    padding: 96px 0 80px;
  }
}
.seo-loc-hero__bg,
.seo-loc-show-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(900px 500px at 70% 30%, rgba(245, 184, 0, 0.16), transparent 60%), linear-gradient(135deg, #051529 0%, #0a2540 60%, #16345a 100%);
}
.seo-loc-hero__inner,
.seo-loc-show-hero__inner {
  max-width: 920px;
}
.seo-loc-hero h1,
.seo-loc-show-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px;
}
.seo-loc-hero h1 span,
.seo-loc-show-hero h1 span {
  color: #f5b800;
}
.seo-loc-hero__lead,
.seo-loc-show-hero__lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 0 32px;
}
.seo-loc-hero__lead strong,
.seo-loc-show-hero__lead strong {
  color: #f5b800;
}

.seo-loc-show-hero__lead {
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.seo-loc-show-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding: 24px 0 32px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 820px) {
  .seo-loc-show-hero__facts {
    grid-template-columns: repeat(4, 1fr);
  }
}
.seo-loc-show-hero__facts li strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f5b800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.seo-loc-show-hero__facts li span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seo-loc-region {
  padding: 32px 0;
  border-top: 1px solid #e2e8f0;
}
.seo-loc-region:first-of-type {
  border-top: none;
  padding-top: 16px;
}
.seo-loc-region__title {
  font-size: 1.25rem;
  margin: 0 0 20px;
  color: #0a2540;
}
.seo-loc-region__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .seo-loc-region__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 820px) {
  .seo-loc-region__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-loc-region__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 820px) {
  .seo-loc-region__grid--counties {
    grid-template-columns: repeat(3, 1fr);
  }
}
.seo-loc-region__grid li {
  list-style: none;
}

.seo-loc-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.seo-loc-card:hover, .seo-loc-card:focus-visible {
  border-color: #f5b800;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
  color: #0f172a;
}
.seo-loc-card__name {
  font-weight: 600;
  color: #0a2540;
  font-size: 1rem;
}
.seo-loc-card__meta {
  font-size: 0.8rem;
  color: #475569;
}
.seo-loc-card--county {
  background: #f7fafc;
}

.seo-loc-cities,
.seo-loc-counties {
  padding: 80px 0;
}

.seo-loc-cities {
  background: #ffffff;
}

.seo-loc-counties {
  background: #f7fafc;
}

.seo-loc-why,
.seo-loc-industries,
.seo-loc-incentives {
  padding: 72px 0;
}

.seo-loc-why {
  background: #ffffff;
}

.seo-loc-why__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}
.seo-loc-why__body p {
  margin: 0 0 1em;
}
.seo-loc-why__body strong {
  color: #0a2540;
  font-weight: 700;
}
.seo-loc-why__body ul {
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}
.seo-loc-why__body ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid #e2e8f0;
}
.seo-loc-why__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #2ec27e;
  border-bottom: 2px solid #2ec27e;
  transform: rotate(-45deg);
}

.seo-loc-climate {
  padding: 56px 0;
  background: #051529;
  color: #ffffff;
}
.seo-loc-climate .seo-eyebrow {
  color: #f5b800;
}
.seo-loc-climate__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 820px) {
  .seo-loc-climate__inner {
    grid-template-columns: 280px 1fr;
    gap: 64px;
  }
}
.seo-loc-climate__inner h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
}
.seo-loc-climate__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.seo-loc-industries {
  background: #f7fafc;
}
.seo-loc-industries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 820px) {
  .seo-loc-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-loc-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-loc-industry {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 26px;
}
.seo-loc-industry h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: #0a2540;
}
.seo-loc-industry p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.seo-loc-incentives {
  background: #ffffff;
}
.seo-loc-incentives__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 820px) {
  .seo-loc-incentives__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-loc-incentives__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.seo-loc-incentives .seo-incentive {
  background: #f7fafc;
  border-color: #e2e8f0;
}
.seo-loc-incentives .seo-incentive h3 {
  color: #0a2540;
}
.seo-loc-incentives .seo-incentive p {
  color: #475569;
}

.seo-loc-ahj {
  padding: 56px 0 72px;
  background: #f7fafc;
}
.seo-loc-ahj__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.seo-loc-ahj__inner h2 {
  font-size: 1.4rem;
  margin: 8px 0 16px;
}
.seo-loc-ahj__inner p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.seo-loc-related {
  padding: 64px 0;
  background: #ffffff;
}
.seo-loc-related--peers {
  background: #f7fafc;
}

.seo-loc-news {
  padding: 80px 0;
  background: #ffffff;
}
.seo-loc-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 820px) {
  .seo-loc-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-loc-news__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.seo-loc-news__item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-loc-news__item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}
.seo-loc-news__image {
  display: block;
  aspect-ratio: 16/9;
  background: #f7fafc;
  overflow: hidden;
}
.seo-loc-news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.seo-loc-news__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 24px;
  flex: 1;
}
.seo-loc-news__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.8rem;
  color: #475569;
}
.seo-loc-news__source {
  font-weight: 700;
  color: #d99e00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seo-loc-news__sep {
  color: #cbd5e1;
}
.seo-loc-news__title {
  margin: 0 0 4px;
  font-size: 1.05rem;
  line-height: 1.35;
}
.seo-loc-news__title a {
  color: #0a2540;
  text-decoration: none;
}
.seo-loc-news__title a:hover, .seo-loc-news__title a:focus-visible {
  color: #d99e00;
}
.seo-loc-news__excerpt {
  margin: 0 0 8px;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.55;
}
.seo-loc-news .seo-link-arrow {
  margin-top: auto;
  font-size: 0.85rem;
}

.seo-svc-hero,
.seo-svc-show-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  padding: 72px 0 64px;
}
@media (min-width: 820px) {
  .seo-svc-hero,
  .seo-svc-show-hero {
    padding: 112px 0 88px;
  }
}
.seo-svc-hero__bg,
.seo-svc-show-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(900px 480px at 80% 20%, rgba(43, 179, 243, 0.15), transparent 60%), linear-gradient(135deg, #051529 0%, #0a2540 60%, #16345a 100%);
}
.seo-svc-hero__inner,
.seo-svc-show-hero__inner {
  max-width: 920px;
}
.seo-svc-hero h1,
.seo-svc-show-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px;
}
.seo-svc-hero h1 span,
.seo-svc-show-hero h1 span {
  color: #f5b800;
}
.seo-svc-hero__lead,
.seo-svc-show-hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 0 32px;
}

.seo-svc-show-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding: 24px 0 32px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 820px) {
  .seo-svc-show-hero__facts {
    grid-template-columns: repeat(4, 1fr);
  }
}
.seo-svc-show-hero__facts li strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #f5b800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.seo-svc-show-hero__facts li span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seo-svc-grid-section {
  padding: 96px 0;
  background: #ffffff;
}

.seo-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 820px) {
  .seo-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-svc-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  color: #0f172a;
  text-decoration: none;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-svc-card:hover, .seo-svc-card:focus-visible {
  border-color: #f5b800;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
  color: #0f172a;
}
.seo-svc-card h3 {
  font-size: 1.35rem;
  margin: 0;
  color: #0a2540;
}
.seo-svc-card__tagline {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}
.seo-svc-card__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin: 0;
}
.seo-svc-card__highlights li {
  list-style: none;
}
.seo-svc-card__highlights li strong {
  display: block;
  color: #0a2540;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 2px;
  line-height: 1.1;
}
.seo-svc-card__highlights li span {
  color: #64748b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.seo-svc-card .seo-link-arrow {
  margin-top: auto;
}

.seo-svc-overview {
  padding: 80px 0;
  background: #ffffff;
}
.seo-svc-overview__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.seo-svc-overview__inner h2 {
  margin-bottom: 18px;
}
.seo-svc-overview__inner p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.seo-svc-offers {
  padding: 96px 0;
  background: #f7fafc;
}
.seo-svc-offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 820px) {
  .seo-svc-offers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-svc-offers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-svc-offer {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 26px;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-svc-offer:hover {
  border-color: #cbd5e1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
}
.seo-svc-offer h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: #0a2540;
}
.seo-svc-offer p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.seo-svc-specs {
  padding: 80px 0;
  background: #ffffff;
}
.seo-svc-specs__list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.seo-svc-spec {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
}
.seo-svc-spec:first-child {
  border-top: 1px solid #e2e8f0;
}
@media (min-width: 820px) {
  .seo-svc-spec {
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: baseline;
  }
}
.seo-svc-spec dt {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.seo-svc-spec dd {
  margin: 0;
  color: #0f172a;
  font-weight: 600;
  font-size: 1.02rem;
}

.seo-svc-process {
  padding: 96px 0;
  background: #f7fafc;
}
.seo-svc-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 820px) {
  .seo-svc-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .seo-svc-process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.seo-svc-process__steps li {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 26px;
  border-top: 4px solid #f5b800;
}
.seo-svc-process__steps li h3 {
  font-size: 1.05rem;
  margin: 12px 0 10px;
}
.seo-svc-process__steps li p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}
.seo-svc-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a2540;
  color: #ffffff;
  font-weight: 800;
}

.seo-svc-faq {
  padding: 96px 0;
  background: #ffffff;
}
.seo-svc-faq__list {
  max-width: 880px;
  margin: 0 auto;
}

.seo-svc-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-svc-faq-item[open] {
  border-color: #cbd5e1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
}
.seo-svc-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: #0a2540;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.seo-svc-faq-item summary::-webkit-details-marker {
  display: none;
}
.seo-svc-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: #d99e00;
  line-height: 1;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.seo-svc-faq-item[open] summary::after {
  content: "−";
}
.seo-svc-faq-item__answer {
  padding: 0 22px 22px;
  color: #475569;
  line-height: 1.7;
}
.seo-svc-faq-item__answer p {
  margin: 0;
}

.seo-svc-related {
  padding: 80px 0;
  background: #eef2f7;
}
.seo-svc-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 820px) {
  .seo-svc-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-res-hero {
  position: relative;
  color: #ffffff;
  padding: 72px 0 64px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 820px) {
  .seo-res-hero {
    padding: 104px 0 80px;
  }
}
.seo-res-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(900px 480px at 75% 25%, rgba(46, 194, 126, 0.18), transparent 60%), linear-gradient(135deg, #051529 0%, #0a2540 60%, #16345a 100%);
}
.seo-res-hero__inner {
  max-width: 920px;
}
.seo-res-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 22px;
}
.seo-res-hero h1 span {
  color: #f5b800;
}
.seo-res-hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 0 32px;
}
.seo-res-hero__lead strong {
  color: #f5b800;
}
.seo-res-hero__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 640px) {
  .seo-res-hero__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
.seo-res-hero__nav a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-res-hero__nav a:hover, .seo-res-hero__nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  transform: translateY(-1px);
}
.seo-res-hero__nav a strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f5b800;
  line-height: 1;
}
.seo-res-hero__nav a span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.seo-res-cat {
  padding: 80px 0;
}
.seo-res-cat:nth-of-type(odd) {
  background: #ffffff;
}
.seo-res-cat:nth-of-type(even) {
  background: #f7fafc;
}
.seo-res-cat .seo-section-head--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  max-width: 800px;
}

.seo-res-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 820px) {
  .seo-res-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-res-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-res-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}
.seo-res-item__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-res-item__title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}
.seo-res-item__title a {
  color: #0a2540;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
.seo-res-item__title a:hover, .seo-res-item__title a:focus-visible {
  color: #d99e00;
}
.seo-res-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  font-size: 0.8rem;
}
.seo-res-item__publisher {
  color: #475569;
  font-weight: 600;
}
.seo-res-item__frequency {
  display: inline-flex;
  padding: 3px 10px;
  background: #eef2f7;
  color: #0f172a;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.seo-res-item__eeat {
  display: inline-flex;
  padding: 3px 10px;
  background: rgba(46, 194, 126, 0.12);
  color: rgb(32.315, 136.285, 88.515);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.seo-res-item__why {
  margin: 0;
  color: #0f172a;
  line-height: 1.65;
  font-size: 0.95rem;
}
.seo-res-item__audience {
  margin: 0;
  font-size: 0.85rem;
  color: #475569;
}
.seo-res-item__audience strong {
  color: #0f172a;
  font-weight: 600;
}
.seo-res-item .seo-link-arrow {
  margin-top: 4px;
  font-size: 0.9rem;
}

.seo-cta-banner {
  padding: 56px 0;
}
.seo-cta-banner--navy {
  background: #0a2540;
  color: #ffffff;
}
.seo-cta-banner--navy .seo-cta-banner__title {
  color: #ffffff;
}
.seo-cta-banner--navy .seo-cta-banner__subtitle {
  color: rgba(255, 255, 255, 0.78);
}
.seo-cta-banner--light {
  background: #eef2f7;
}
.seo-cta-banner--light .seo-cta-banner__title {
  color: #0a2540;
}
.seo-cta-banner--light .seo-cta-banner__subtitle {
  color: #475569;
}
.seo-cta-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 820px) {
  .seo-cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
}
.seo-cta-banner__copy {
  flex: 1;
}
.seo-cta-banner__title {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  margin: 0 0 8px;
  line-height: 1.2;
}
.seo-cta-banner__subtitle {
  margin: 0;
  font-size: 1rem;
}
.seo-cta-banner__actions {
  flex-shrink: 0;
}
.seo-cta-banner--light .seo-cta-banner__actions .seo-btn--ghost {
  color: #0a2540;
  border-color: #cbd5e1;
}
.seo-cta-banner--light .seo-cta-banner__actions .seo-btn--ghost:hover, .seo-cta-banner--light .seo-cta-banner__actions .seo-btn--ghost:focus-visible {
  background: rgba(10, 37, 64, 0.05);
  color: #0a2540;
  border-color: #0a2540;
}

.seo-body .seo-cta {
  padding: 96px 0;
  background: #eef2f7;
}
.seo-body .seo-cta__inner {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 32px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  text-align: center;
}
@media (min-width: 820px) {
  .seo-body .seo-cta__inner {
    padding: 64px 56px;
  }
}
.seo-body .seo-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 12px;
}
.seo-body .seo-cta__lead {
  color: #475569;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  max-width: 640px;
}
.seo-body .seo-cta__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.seo-body .seo-cta__actions .seo-btn--ghost {
  color: #0a2540;
  border-color: #cbd5e1;
}
.seo-body .seo-cta__actions .seo-btn--ghost:hover, .seo-body .seo-cta__actions .seo-btn--ghost:focus-visible {
  background: rgba(10, 37, 64, 0.05);
  color: #0a2540;
  border-color: #0a2540;
}
.seo-body .seo-cta__signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}
.seo-body .seo-cta__signals li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}
.seo-body .seo-cta__signals li::before {
  content: "";
  width: 14px;
  height: 8px;
  border-left: 2px solid #2ec27e;
  border-bottom: 2px solid #2ec27e;
  transform: rotate(-45deg);
  display: inline-block;
}

.seo-lead-section {
  padding: 96px 0;
  background: #ffffff;
}

.seo-lead-form {
  max-width: 760px;
  margin: 0 auto;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
}
@media (min-width: 820px) {
  .seo-lead-form {
    padding: 40px 44px;
  }
}
.seo-lead-form__head {
  margin-bottom: 24px;
  text-align: left;
}
.seo-lead-form__title {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: #0a2540;
}
.seo-lead-form__subtitle {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}
.seo-lead-form__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.seo-lead-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .seo-lead-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.seo-lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seo-lead-form__field > span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}
.seo-lead-form__field > span small {
  color: #64748b;
  font-weight: 400;
}
.seo-lead-form__field input,
.seo-lead-form__field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  color: #0f172a;
  width: 100%;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-lead-form__field input:focus,
.seo-lead-form__field textarea:focus {
  outline: none;
  border-color: #f5b800;
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.18);
}
.seo-lead-form__field input::-moz-placeholder, .seo-lead-form__field textarea::-moz-placeholder {
  color: #64748b;
}
.seo-lead-form__field input::placeholder,
.seo-lead-form__field textarea::placeholder {
  color: #64748b;
}
.seo-lead-form__field textarea {
  resize: vertical;
  min-height: 88px;
}
.seo-lead-form__captcha {
  margin: 4px 0;
  min-height: 78px;
}
.seo-lead-form__submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.seo-lead-form__legal {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  max-width: 460px;
}
.seo-lead-form__success {
  text-align: center;
  padding: 32px 16px;
}
.seo-lead-form__success svg {
  color: #2ec27e;
  margin: 0 auto 12px;
}
.seo-lead-form__success h4 {
  margin: 0 0 8px;
  color: #0a2540;
  font-size: 1.25rem;
}
.seo-lead-form__success p {
  margin: 0;
  color: #475569;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.seo-lead-form__errors {
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.28);
  color: #b91c1c;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.seo-lead-form__errors strong {
  display: block;
  margin-bottom: 6px;
  color: #991b1b;
}
.seo-lead-form__errors ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
.seo-lead-form__errors li {
  margin: 2px 0;
}
