/* Static landing — mirrors NewHome/MainPage (hero, nav, who we serve, FAQ, footer) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.5;
}

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

a:hover {
  text-decoration: underline;
}

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

/* —— Header (matches NewHome/Header: dropdowns + mobile drawer) —— */
.sl-menu-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.sl-header {
  position: sticky;
  top: 0;
  z-index: 100000;
  background: #fff;
  overflow: visible;
  /* Matches .sl-header__inner: 0.5rem + 0.5rem vertical padding + 2.25rem logo */
  --sl-header-h: 3.25rem;
}

.sl-header__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 4px 16px 0 rgba(154, 170, 207, 0.2);
  overflow: visible;
}

@media (min-width: 768px) {
  .sl-header__inner {
    padding: 0.5rem 2rem;
  }
}

.sl-logo {
  height: 2.25rem;
  width: auto;
  max-width: 11.75rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .sl-logo {
    height: 2.25rem;
    max-width: none;
    width: 11.75rem;
  }
}

.sl-nav {
  display: none;
  align-items: center;
  gap: 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #212121;
}

.sl-nav__link {
  color: #212121;
  text-decoration: none;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: color 0.15s ease;
}

.sl-nav__link:hover {
  color: #2053c5;
  text-decoration: none;
}

/* Dropdown — flush to header bottom (no gap above mega menu) */
.sl-dd {
  position: relative;
}

.sl-dd__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #212121;
  cursor: pointer;
  padding: 0;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  transition: color 0.15s ease;
}

.sl-dd__trigger:hover,
.sl-dd:hover .sl-dd__trigger {
  color: #2053c5;
}

.sl-dd__chev {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.sl-dd:hover .sl-dd__chev {
  transform: rotate(180deg);
}

/* Full-width mega panels — overlap header + top padding so the pointer path from trigger to links stays inside .sl-dd */
.sl-dd__panel {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--sl-header-h) - 10px);
  padding-top: 10px;
  z-index: 100003;
  background: transparent;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.sl-dd__panel .sl-dd__panelInner {
  background: #fff;
  box-shadow: 0 6px 12px 0 rgba(108, 108, 108, 0.16);
}

.sl-dd:hover .sl-dd__panel,
.sl-dd:focus-within .sl-dd__panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sl-dd__panelInner {
  max-width: 90rem;
  margin: 0 auto;
}

/* Features mega menu */
.sl-feat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.25rem 2rem;
  align-items: flex-start;
  border-radius: 0 0 0.5rem 0.5rem;
}

@media (min-width: 900px) {
  .sl-feat-grid {
    padding: 1.25rem 4.12rem 2rem;
  }
}

.sl-feat-col {
  flex: 1 1 45%;
  min-width: 12rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .sl-feat-col {
    flex: 1 1 22%;
    width: 25%;
  }
}

.sl-feat-head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: #4d4d4d;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem;
  border-bottom: 1px solid #ededed;
  text-decoration: none;
}

.sl-feat-head:hover {
  background: #f7fbff;
  border-bottom: 0.85px solid #0084ef;
  text-decoration: none;
}

.sl-feat-sub {
  color: #4d4d4d;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1rem;
  margin-left: 0.25rem;
  width: 90%;
  max-width: 14rem;
  text-decoration: none;
  border-radius: 0.25rem;
}

.sl-feat-sub:hover {
  color: #0084ef;
  background: #f3f7fc;
  text-decoration: none;
}

/* Who we serve mega menu */
.sl-wws-dd {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 960px) {
  .sl-wws-dd {
    flex-direction: row;
    align-items: stretch;
  }
}

.sl-wws-dd__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.75rem;
  padding: 1.25rem 1.25rem 2rem;
  flex: 1 1 auto;
  max-width: 69.2rem;
}

@media (min-width: 768px) {
  .sl-wws-dd__grid {
    padding: 1.25rem 2rem 2rem 4.12rem;
  }
}

.sl-wws-dd__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 20rem;
  padding: 8px;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 640px) {
  .sl-wws-dd__item {
    width: 30%;
  }
}

.sl-wws-dd__item:hover {
  background: #f0f8ff;
  text-decoration: none;
}

.sl-wws-dd__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sl-wws-dd__title {
  color: #4d4d4d;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.012rem;
}

.sl-wws-dd__desc {
  color: #4d4d4d;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.35;
}

.sl-wws-dd__blog {
  flex: 0 0 auto;
  background: #f0f8ff;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 24rem;
}

@media (min-width: 960px) {
  .sl-wws-dd__blog {
    padding: 2.5rem 4rem 2.25rem 2rem;
    width: 25%;
    min-width: 18rem;
  }
}

.sl-wws-dd__blogImg {
  width: 100%;
  max-width: 13.75rem;
  height: auto;
  border-radius: 0.25rem;
}

.sl-wws-dd__blogHead {
  color: #3d3d3d;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}

.sl-wws-dd__blogTeaser {
  color: #4d4d4d;
  font-size: 0.75rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.4;
}

.sl-wws-dd__readMore {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #0084ef;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  text-decoration: none;
}

.sl-wws-dd__readMore:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* CTAs */
.sl-header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .sl-header__actions {
    display: flex;
  }
}

.sl-link-signup {
  font-size: 1rem;
  font-weight: 600;
  color: #2053c5;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.sl-link-signup:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Base CTA (hero + elsewhere); header uses tighter chrome below */
.sl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.sl-header__actions .sl-btn {
  height: 40px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0.75rem;
}

.sl-btn--primary {
  background: #0084ef;
  color: #fff;
}

.sl-btn--primary:hover {
  background: #0082eb;
  box-shadow: 0 6px 16px rgba(172, 173, 174, 0.2);
  text-decoration: none;
}

.sl-btn--dark {
  background: #2053c5;
  color: #fff;
}

.sl-btn--dark:hover {
  background: #1a47a8;
  text-decoration: none;
}

/* Mobile burger */
.sl-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 20px;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem 0;
  box-sizing: content-box;
}

.sl-burger span {
  width: 24px;
  height: 2px;
  background: #212121;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 768px) {
  .sl-burger {
    display: none;
  }
}

.sl-menu-check:checked ~ .sl-header__inner .sl-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sl-menu-check:checked ~ .sl-header__inner .sl-burger span:nth-child(2) {
  opacity: 0;
}

.sl-menu-check:checked ~ .sl-header__inner .sl-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer + scrim */
.sl-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(280px, 88vw);
  height: 100vh;
  background: #fff;
  z-index: 100003;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 3rem 1.25rem 2rem;
  overflow-y: auto;
}

.sl-menu-check:checked ~ .sl-mobile-drawer {
  transform: translateX(0);
}

.sl-mobile-drawer__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #212121;
  user-select: none;
}

.sl-mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sl-mobile-details summary {
  cursor: pointer;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  list-style: none;
  color: #212121;
}

.sl-mobile-details summary::-webkit-details-marker {
  display: none;
}

.sl-mobile-details__body {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 0.75rem 0.75rem;
  gap: 0.5rem;
}

.sl-mobile-details__body a {
  color: #2053c5;
  font-size: 0.9375rem;
  text-decoration: none;
}

.sl-mobile-details__body a:hover {
  text-decoration: underline;
}

.sl-mobile-drawer__link {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #212121;
  font-weight: 500;
  text-decoration: none;
}

.sl-mobile-drawer__link:hover {
  color: #2053c5;
}

.sl-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sl-menu-check:checked ~ .sl-scrim {
  opacity: 1;
  pointer-events: auto;
}

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

  .sl-mobile-drawer,
  .sl-scrim {
    display: none !important;
  }

  .sl-menu-check {
    display: none;
  }
}

/* —— Hero —— */
.sl-hero {
  position: relative;
  width: 100%;
}

.sl-hero__media {
  position: relative;
  display: block;
  width: 100%;
}

.sl-hero__img {
  width: 100%;
  height: 42.5rem;
  object-fit: cover;
  display: block;
}

.sl-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.sl-hero__content {
  position: absolute;
  top: 9.38rem;
  left: 6.12rem;
  z-index: 4;
  max-width: 40rem;
  color: #fff;
}

.sl-hero__badge {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  background: #245cdb59;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875rem;
  text-transform: uppercase;
  color: #f1f1f1;
}

.sl-hero__title {
  margin: 1.5rem 0 1.25rem;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 649px;
}

.sl-hero__desc {
  margin: 0 0 2.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 34.1875rem;
}

.sl-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.sl-hero__links {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.sl-hero__links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(255, 255, 255, 0.65);
}

.sl-hero__links a:hover {
  text-decoration-color: #fff;
}

.sl-hero__linksSep {
  color: rgba(255, 255, 255, 0.55);
  user-select: none;
}

@media (max-width: 767px) {
  .sl-hero__img {
    height: 368px;
  }

  .sl-hero__gradient {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .sl-hero__content {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sl-hero__badge {
    font-size: 0.625rem;
    line-height: 0.875rem;
  }

  .sl-hero__title {
    font-size: 22px;
    width: 90%;
  }

  .sl-hero__desc {
    font-size: 0.8125rem;
    width: 19.25rem;
    max-width: 100%;
  }

  .sl-hero__ctas {
    width: 100%;
    justify-content: center;
  }

  .sl-hero__ctas .sl-btn {
    width: 85%;
  }

  .sl-hero__links {
    justify-content: center;
    max-width: 22rem;
    text-align: center;
    line-height: 1.5;
  }
}

/* —— Section titles —— */
.sl-section {
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.sl-section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 2rem;
}

@media (max-width: 767px) {
  .sl-section__title {
    font-size: 1.5rem;
  }
}

/* —— Who we serve (WhoWeServe.jsx: inline title overrides module .heading) —— */
.sl-wws {
  margin-top: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: #fff;
}

.sl-wws__pageTitle {
  color: #333333;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1.5rem; /* 24px mobile — matches isDesktop ? 32px : 24px */
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin: 0 auto 3rem; /* WhoWeServe.module.css .heading margin-bottom */
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .sl-wws__pageTitle {
    font-size: 2rem; /* 32px desktop */
  }
}

@media (max-width: 767px) {
  .sl-wws {
    margin-top: 0;
    padding-top: 1rem;
    background: #f5faff; /* WhoWeServe.module .mainContainer mobile */
  }

  .sl-wws__pageTitle {
    margin-bottom: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.025rem;
  }
}

/* WhoWeServe.jsx: imagesContainer + innerFlexContainer (nowrap row on tablet/desktop) */
.sl-wws__imagesContainer {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.56rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 7.4rem;
  max-width: 100%;
}

.sl-wws__innerRow {
  display: flex;
  gap: 1.56rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .sl-wws__imagesContainer {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
  }

  .sl-wws__innerRow {
    flex-shrink: 0;
    align-items: center;
  }
}

.sl-wws__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  width: 14.3125rem;
  max-width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.sl-wws__card:hover {
  border-color: #ededed;
  background: #fff;
  box-shadow: 0 8px 16px 0 rgba(129, 130, 133, 0.25);
  text-decoration: none;
}

.sl-wws__card img {
  width: 14.22rem;
  max-width: 100%;
  height: 10.6875rem;
  object-fit: cover;
  border-radius: 0.75rem 0.75rem 0 0;
  box-shadow: 0 1.005px 2.01px 0 rgba(0, 0, 0, 0.1);
  display: block;
}

.sl-wws__label {
  margin: 0.87rem 0.25rem 0.87rem;
  color: #333;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 767px) {
  .sl-wws__imagesContainer {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: visible;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 4rem;
    margin-bottom: 0;
  }

  .sl-wws__innerRow {
    gap: 1rem;
    width: 100%;
  }

  .sl-wws__innerRow .sl-wws__card {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    border-radius: 0.49125rem;
  }

  .sl-wws__card.sl-wws__card--first {
    width: 100%;
  }

  .sl-wws__card img {
    width: 100%;
    height: auto;
    border-radius: 0.20406rem 0.20406rem 0 0;
    box-shadow: 0 0.658px 1.317px 0 rgba(0, 0, 0, 0.1);
  }

  .sl-wws__card--first img {
    height: 8.75rem;
    object-fit: cover;
  }

  .sl-wws__label {
    margin-top: 0.62rem;
    margin-bottom: 0.88rem;
    font-size: 0.75rem;
    text-transform: capitalize;
  }
}

/* FAQ: see main-page.css (.sl-faq__*) */

/* —— Footer (legacy .sl-footer unused — see main-page.css .sl-nf) —— */
.sl-footer {
  background: #f5faff;
  padding: 3rem 1.5rem 2rem;
  margin-top: 2rem;
}

.sl-footer__inner {
  max-width: 75rem;
  margin: 0 auto;
}

.sl-footer__logo {
  width: 14.4rem;
  max-width: 100%;
  height: auto;
}

.sl-footer__intro {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 28rem;
  color: #555;
}

.sl-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .sl-footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sl-footer__col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  margin: 0 0 1rem;
}

.sl-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sl-footer__col li {
  margin-bottom: 0.5rem;
}

.sl-footer__col a {
  color: #555;
  font-size: 0.9375rem;
}

.sl-footer__col a:hover {
  color: #2053c5;
}

.sl-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dde4ef;
  font-size: 0.875rem;
  color: #777;
  text-align: center;
}

/* —— Static pricing page (static-pricing.html) —— */
.sl-pricing {
  padding: 2.5rem 1rem 2rem;
  background: linear-gradient(180deg, #f4f8fb 0%, #fff 32%);
}

.sl-pricing__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.sl-pricing__title {
  color: #212121;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .sl-pricing__title {
    font-size: 1.75rem;
  }
}

.sl-pricing__lead {
  color: #454545;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 40rem;
}

.sl-pricing__tableWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sl-pricing__tableWrap--desktop {
  display: none;
}

@media (min-width: 768px) {
  .sl-pricing__tableWrap--desktop {
    display: block;
  }
}

.sl-pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.sl-pricing__table th,
.sl-pricing__table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.sl-pricing__table thead th {
  background: #e5f4ff;
  color: #212121;
  font-weight: 600;
}

.sl-pricing__table tbody tr:last-child td {
  border-bottom: none;
}

.sl-pricing__table td:last-child {
  font-weight: 600;
  color: #2053c5;
  text-align: right;
}

.sl-pricing__cards {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sl-pricing__cards--mobile {
  display: flex;
}

@media (min-width: 768px) {
  .sl-pricing__cards--mobile {
    display: none;
  }
}

.sl-pricing__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sl-pricing__cardRow {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sl-pricing__cardRow--price {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

.sl-pricing__cardLabel {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #666;
}

.sl-pricing__cardValue {
  font-weight: 600;
  color: #212121;
  font-size: 1rem;
}

.sl-pricing__cardPrice {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2053c5;
}

.sl-pricing__note {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #555;
  margin: 0 0 1.75rem;
  padding: 1rem 1.1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border-left: 4px solid #2053c5;
}

.sl-pricing__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.sl-pricing .sl-btn--outline {
  background: transparent;
  color: #2053c5;
  border: 2px solid #2053c5;
}

.sl-pricing .sl-btn--outline:hover {
  background: rgba(32, 83, 197, 0.08);
  text-decoration: none;
}

.sl-pricing__home {
  text-align: center;
  margin: 0;
  font-size: 0.9375rem;
}

.sl-pricing__home a {
  color: #2053c5;
  font-weight: 600;
  text-decoration: none;
}

.sl-pricing__home a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sl-pricing {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sl-pricing__ctas {
    gap: 0.65rem;
  }
}

@media (min-width: 1024px) {
  .sl-pricing {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }
}
