:root {
  --sw_primary: #004976;
  --sw_secondary: #2cccd3;
  --sw_tertiary: #47d7ac;
  --sw_quaternary: #ffa400;
  --sw_accent: #606060;
  --sw_accent-2: #97999b;
  --sw_black: #000;
  --sw_white: #fff;
  --sw_title: "Georgia", serif;
  --sw_body: Arial, Helvetica, sans-serif;
}

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

html,
body {
  overflow-x: hidden !important;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 1366px) / 554), 16px);
  line-height: 1.4;
  color: #1a1a1a;
  font-family: var(--sw_body) !important;
  background-color: var(--sw_white) !important;
}

.container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sw_title);
  line-height: 1.2;
  font-weight: normal;
  color: var(--sw_accent);
}

h1 {
  color: var(--sw_white);
  font-size: 4.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.375rem;
}

h4 {
  font-size: 1.625rem;
}

a {
  text-decoration: none !important;
  transition: 0.3s;
}

ul li,
ol li,
input,
select,
optgroup,
textarea,
p {
  font-size: 1rem;
}

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

.stonwood_icon {
  position: absolute;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  aspect-ratio: 1/3.08121827;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  min-width: 12.5rem;
  padding: 0 2rem;
  border: 0.125rem solid transparent;
  color: #000;
  border-radius: 100vmax;
  font-size: 1.125rem;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--sw_white);
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: var(--sw_quaternary);
  color: var(--sw_white);
  border-color: var(--sw_quaternary);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--sw_accent-2);
  letter-spacing: 0.02em;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  background: #1aafba;
  flex-shrink: 0;
}

@media (max-width: 1536px) {
  h1 {
    font-size: 4rem;
  }

  .btn {
    height: 3.375rem;
    padding: 0 1.75rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 1365px) {

  ul li,
  ol li,
  input,
  select,
  optgroup,
  textarea,
  p {
    font-size: 1.25rem;
  }

  html,
  body {
    font-size: 13px !important;
  }
}

@media (max-width: 1200px) {
  h1 {
    font-size: 3.25rem;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.75rem;
  }
}

@media (max-width: 768px) {
  .btn {
    height: 2.875rem;
    padding: 0 1.25rem;
    font-size: 1rem;
  }

  .section-eyebrow {
    font-size: 1.125rem;
  }

  h2 {
    font-size: 2.375rem;
  }

  h3 {
    font-size: 1.875rem;
  }
}

@media (max-width: 575px) {

  html,
  body {
    font-size: 16px !important;
  }

  ul li,
  ol li,
  input,
  select,
  optgroup,
  textarea,
  p {
    font-size: 1rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .btn {
    height: 2.625rem;
    padding: 0 0.625rem;
    font-size: 0.875rem;
    min-width: 9.75rem;
    letter-spacing: 0.0325em;
  }

  .section-eyebrow {
    font-size: 1rem;
    gap: 0.75rem;
  }

  .section-eyebrow::before {
    width: 0.375rem;
    height: 0.375rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

/* --- hero --- */
.main-hero {
  position: relative;
  background: #0a1628;
  height: 100vh;
  max-height: 60rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main-hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.075fr 1fr;
}

/* ---- Left content column ---- */
.main-hero-content-wp {
  position: relative;
  display: flex;
  flex-direction: column;
  /*   justify-content: flex-end; */
  justify-content: center;
  padding: 10rem 4.5rem 5.8rem 2rem;
  z-index: 10;
  overflow: hidden;
}

.main-hero-content {
  max-width: 48.125rem;
  margin-left: auto;
}

.main-hero-content-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://www.stonewoodfinancial.com/wp-content/uploads/2026/04/Blue-gradient-shape-for-hero-section-Desktop.webp");
  background-size: cover;
  background-position: center left;
  z-index: 0;
}

.main-hero-content>*:not(.main-hero-content-bg) {
  position: relative;
  z-index: 2;
}

.main-hero-content h1 {
  font-weight: unset;
  margin: 0 0 1.3rem;
}

.hero_primary_text,
.hero_secondary_text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0 0 3rem;
  font-size: 1.2rem;
  max-width: 45.625rem;
}

.hero_secondary_text {
  font-size: 1rem;
  margin: 0 0 2.2rem;
}

.main-hero-content h2 {
  font-size: 2rem;
  font-weight: unset;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.main-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  align-items: center;
}

/* ---- Right image panel ---- */
.hero-image-panel {
  position: relative;
  overflow: hidden;
}

/* Slider track â€” holds all slides side by side */
.hero-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* Each slide fills the panel exactly */
.hero-image-box {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

/* Both desktop + mobile imgs stacked; JS/CSS picks the right one */
.hero-image-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: none;
  /* hidden by default; JS activates correct one */
}

.hero-image-box img.img-desktop {
  display: block;
}

/* ---- Dots ---- */
.hero-dots {
  position: absolute;
  bottom: 7.03125rem;
  right: 12.375rem;
  display: flex;
  gap: 0.375rem;
  align-items: center;
  z-index: 10;
}

.hero-dot {
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 100vmax;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border: none;
  padding: 0;
  transition:
    width 0.4s ease,
    border-radius 0.4s ease,
    background 0.4s ease;
}

.hero-dot.active {
  width: 1.75rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.9);
}

/* cssrem-disable-next-line */
@media (max-width: 1365px) {
  .hero_primary_text {
    font-size: 1.05556rem;
  }

  .main-hero-content h2 {
    font-size: 1.6rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 991px) {
  .main-hero-content h2 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 3rem;
  }

  .main-hero-inner {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }

  .main-hero-content {
    max-width: 100%;
    width: 100%;
    margin: unset;
  }

  .hero_primary_text {
    max-width: 40.55556rem;
    max-width: 100%;
  }

  .main-hero-content-wp {
    padding: 12rem 2rem 3rem;
    height: auto;
  }

  .hero-image-panel {
    flex: 1 0 auto;
    min-height: 18.66667rem;
    aspect-ratio: 1/0.8;
    max-height: 41.66667rem;
  }

  .hero-dots {
    display: none;
  }

  .hero-image-box img.img-desktop {
    display: none;
  }

  .hero-image-box img.img-mobile {
    display: block;
  }

  .main-hero {
    height: unset;
    max-height: unset;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 768px) {
  h1 {
    font-size: clamp(2.111rem, 4.023vw + 1.172rem, 2.889rem);
    margin-bottom: 0.55556rem !important;
  }

  .main-hero-content h2 {
    font-size: 1.25rem;
  }

  .hero_primary_text {
    font-size: 1rem;
    ;
    margin-bottom: 2rem;
  }

  .hero_secondary_text {
    font-size: 0.875rem;
  }

  .main-hero-content-wp {
    padding: 7.5rem 1.25rem 3rem;
  }
}

/* --- stats-bar --- */
.stats-bar {
  margin-block: 3.9375rem;
  background: #ffffff;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.125rem 2.8125rem;
  flex: 1 0 auto;
  position: relative;
}

/* Vertical divider between items */
.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  height: 56%;
  width: 1px;
  background: linear-gradient(to bottom, black 70%, #d4d4d4 20%);
}

.stat-icon {
  display: flex;
  align-items: center;
}

.stat-item .num-wrap {
  font-size: 4.4375rem;
  font-family: var(--sw_title);
  line-height: 1.2;
  color: #b5b5b5;
  margin-bottom: 0.375rem;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.num-col {
  display: inline-block;
  overflow: hidden;
  /* â† this is what clips the digit strip */
  position: relative;
}

.num-strip {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  will-change: transform;
}

.num-strip span,
.num-sfx {
  display: flex;
  align-items: center;
  justify-content: center;
}

.num-sep {
  display: inline-flex;
  align-items: flex-end;
  padding-bottom: 0.125rem;
  line-height: 1;
}

.stat-item .desc {
  margin: 0;
  text-transform: capitalize;
  font-family: "Arial";
}

/* ── Shared: stats-bar-ctas & pricing-bar-ctas ── */
.stats-bar-ctas,
.pricing-bar-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  margin: 4.5rem auto 0;
}

/* Primary "Schedule" buttons */
.btn.schedule-demo,
.btn.schedule-a-demo {
  background: var(--sw_primary);
  color: var(--sw_white);
}

.btn.schedule-demo:hover,
.btn.schedule-a-demo:hover {
  background: var(--sw_secondary);
  border-color: var(--sw_secondary);
  box-shadow: 0 0 12px rgba(0 0 0 / 36%);
}

/* Amber secondary buttons */
.btn.become-mentor,
.btn.full-pricing {
  background: #ffa400;
  color: var(--sw_white);
}

.btn.become-mentor:hover,
.btn.full-pricing:hover {
  background: var(--sw_black);
  border-color: var(--sw_black);
  box-shadow: 0 0 6px rgba(0 0 0 / 30%);
}

/* Shared .btn sizing inside both CTA bars */
.stats-bar-ctas a.btn,
.pricing-bar-ctas a.btn {
  padding: 0 1.6rem;
  font-size: 1rem;
  height: 3.25rem;
  min-width: 8rem;
  font-weight: 600;
}

/* Shared arrow-text CTA link */
.stats-bar-ctas a.books-cta,
.pricing-bar-ctas a.buy-membership {
  --book_cta_color: var(--sw_black);
  font-size: 1rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--book_cta_color);
  border-bottom: 1px solid rgba(0 0 0 / 37.5%);
  margin-left: 0.8rem;
  transition: 0.3s;
}

a.books-cta:hover,
a.buy-membership:hover {
  --book_cta_color: var(--sw_accent);
  /* -webkit-text-stroke: 0.25px; */
}

/* Arrow span */
.stats-bar-ctas .books-cta .books-arrows,
.pricing-bar-ctas .buy-membership .membership-arrows {
  position: relative;
  width: 40px;
  height: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  transition: 0.3s;
}

.stats-bar-ctas .books-cta .books-arrows:before,
.stats-bar-ctas .books-cta .books-arrows:after,
.pricing-bar-ctas .buy-membership .membership-arrows:before,
.pricing-bar-ctas .buy-membership .membership-arrows:after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.stats-bar-ctas .books-cta .books-arrows:before,
.pricing-bar-ctas .buy-membership .membership-arrows:before {
  width: 26px;
  height: 100%;
  background-color: var(--book_cta_color);
}

.stats-bar-ctas a.books-cta:hover span:before,
.pricing-bar-ctas a.buy-membership:hover span:before {
  width: 30px;
}

.stats-bar-ctas a.books-cta:hover span:after,
.pricing-bar-ctas a.buy-membership:hover span:after {
  transform: translateX(-8px) rotate(-45deg);
}

.stats-bar-ctas .books-cta .books-arrows:after,
.pricing-bar-ctas .buy-membership .membership-arrows:after {
  width: 12px;
  height: 12px;
  border: 2px solid var(--sw_white);
  border-right: 2px solid var(--book_cta_color);
  border-bottom: 2px solid var(--book_cta_color);
  transform: translateX(-12px) rotate(-45deg);
}

.stats-bar-ctas a.books-cta:hover span,
.pricing-bar-ctas a.buy-membership:hover span {
  transform: translateX(2px);
}

/* cssrem-disable-next-line */
@media (max-width: 1536px) {
  .stat-item .num-wrap {
    /* font-size: calc(2.44444rem + 27 * (100vw - 66.66667rem) / 336); */
  }

  .stat-icon img {
    width: 5.55556rem;
  }

  .stat-item {
    padding: 1rem 1.75rem;
  }

  .card-content {
    padding: 1.66667rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 1200px) {
  .stat-icon img {
    width: 4.66667rem;
  }

  .stat-item .num-wrap {
    font-size: calc(2rem + 8 * (100vw - 56.88889rem) / 176);
  }

  .stat-item .desc {
    /* font-size: 0.94444rem; */
  }
}

/* cssrem-disable-next-line */
@media (max-width: 1024px) {
  .stats-bar-inner {
    flex-wrap: wrap;
    max-width: 33.33333rem;
    margin: auto;
    gap: 1.11111rem 0;
  }

  .stat-item {
    width: 50%;
    flex: 1 0 auto;
    padding: 0 1.55556rem 0 1rem;
  }

  .stat-item:nth-child(even) {
    padding-right: 0;
    margin-right: -1.66667rem;
  }

  .stat-item .num-wrap {
    font-size: 3.22222rem;
  }

  .stat-item .desc {
    font-size: 1rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 575px) {
  .stats-bar {
    margin: 3rem 0;
  }

  .stat-item {
    width: 100%;
    margin: 0 !important;
    padding: 0 0 1.66667rem 0;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .stat-item .num-wrap {
    font-size: 3.22222rem;
  }

  .stat-icon img {
    width: 4.44444rem;
  }

  .stat-item::before {
    width: 100%;
    height: 0.05556rem;
    background: linear-gradient(to right,
        #d4d4d4 0%,
        #d4d4d4 14%,
        black 14%,
        black 86%,
        #d4d4d4 86%,
        #d4d4d4 100%);
  }

  .stat-item:last-child {
    padding-bottom: 0;
  }

  .stat-item:last-child:before {
    content: none;
  }
}

/* --- build --- */
/* â”€â”€ Section â”€â”€ */
#what-we-build {
  padding: 4.44444rem 0;
}

/* â”€â”€ Cards grid â€” gap between cards â”€â”€ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-top: 2.5rem;
}

/* â”€â”€ Single card â”€â”€ */
.card {
  position: relative;
  aspect-ratio: 1 / 0.97244094;
  overflow: hidden;
}

.card-top h3 {
  color: var(--sw_white);
}

.card:before,
.card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0%);
  z-index: 1;
  transition: 0.3s;
}

.card:after {
  background: linear-gradient(45deg, #374a68 0%, #0d9eb3 100%);
  opacity: 0;
}

/* Background image layer */
.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

/* â”€â”€ Top content: title + divider + stat (always visible, at top) â”€â”€ */
.card-divider {
  width: 5.25rem;
  height: 0.0625rem;
  background: rgba(255 255 255 / 43.5%);
  margin: 0.625rem 0 0.875rem;
}

.card-stat {
  font-size: 1.125rem;
  /* color: #37aec4; */
  color: #ffffff;
}

/* Button â€” visible by default, hidden on hover */
.card-btn-wrap {}

.card:hover .card-btn-wrap {
  /* opacity: 0; */
  /* transform: translateY(0.33333rem); */
  /* pointer-events: none; */
}

/* Hover extras: tags + subtitle â€” hidden by default */
.card-hover-content {
  transform: translateY(-0.625rem);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  position: absolute;
  bottom: 6.25rem;
  left: 2.5rem;
  right: 0;
  transition: 0.3s;
}

/* Tags row â€” plain text with Â· separator, no pill styling */
.card-tags {
  font-family: Poppins;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0 0.5rem;
  flex-wrap: wrap;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.22222rem;
  position: relative;
  z-index: 2;
}

.card-tags li a {
  color: var(--sw_white);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  opacity: 0.875;
}

.card-tags li a:hover {
  text-decoration: underline !important;
  opacity: 1;
}

.card-tags li {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sw_title);
}

.card-tags li:not(:last-child):after {
  content: "";
  display: inline-flex;
  width: 0.1875rem;
  height: 0.1875rem;
  overflow: hidden;
  background-color: #fff;
}

/* Italic subtitle */
.card-subtitle {
  font-size: 1.25rem;
  font-style: italic;
  color: #37aec4;
  line-height: 1.25;
}

/* â”€â”€ Responsive â”€â”€ */
/* cssrem-disable-next-line */
@media (min-width: 992px) {
  .card:hover .card-hover-content {
    opacity: 1;
    transform: translateY(-1.25rem);
    pointer-events: auto;
  }

  .card:hover:after {
    opacity: 1;
  }

  .card:hover .card-bg {
    transform: scale(1.04);
  }
}

@media (max-width: 1536px) {
  .card-content {
    padding: 1.66667rem;
  }

  .card-btn-wrap .btn {
    height: 2.66667rem;
    padding: 0 1.11111rem;
    font-size: 1rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 1200px) {
  .card-btn-wrap .btn {
    height: 2.55556rem;
    font-size: 0.83333rem;
    min-width: auto;
  }

  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .card {
    grid-column: span 2;
  }

  .card:last-child {
    grid-column: 2/4;
  }
}

@media (max-width: 991px) {
  .card-hover-content {
    transform: unset;
    bottom: 6.75rem;
    opacity: 1;
    left: 2.125rem;
  }

  .card:after {
    opacity: 1;
    background: linear-gradient(to top,
        #0d9eb3,
        #374a68 32.5%,
        transparent 87.5%);
  }
}

/* cssrem-disable-next-line */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 28.88889rem;
    margin: 1.66667rem auto 0;
    gap: 0.66667rem;
  }

  .card {
    grid-column: unset !important;
  }

  .card-stat,
  .card-tags li a,
  .card-subtitle {
    font-size: 1rem;
  }

  #what-we-build {
    padding: 3rem 0;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 575px) {

  .card-stat,
  .card-tags li a,
  .card-subtitle {
    font-size: 0.77778rem;
  }

  .card-content {
    padding: 1.11111rem;
  }

  .card-hover-content {
    left: 1.11111rem;
    /* transform: unset; */
  }

  .card:hover .card-hover-content {
    /* transform: translateY(0.33333rem); */
    bottom: 5rem;
  }

  .card-btn-wrap .btn {
    height: 2.11111rem;
    font-size: 0.77778rem;
    min-width: auto;
  }
}

/* --- sample-report --- */
/* ===== Sample Report Section ===== */
.sample-report {
  padding: 4.44444rem 0;
  scroll-margin-top: 5.5rem;
  background-color: #f3f8fb;
}

.sample-report-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
}

.sample-report-image {
  width: 34.375rem;
  /* grid-row: 1/-1; */
}

.sample-report-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* object-fit: contain; */
  display: block;
}

.sample-report-right {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Content area */
.sample-report-content {
  padding: 2.25rem 2rem 3.75rem 4rem;
  flex: 1;
}

.sample-report-content h2 {
  margin-bottom: 1.25rem;
}

.sample-report-desc {
  /* font-size: 1rem; */
  line-height: 1.4;
  margin-bottom: 0;
}

.sample-report-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0ca7bb;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.0875em;
  text-transform: uppercase;
  transition: gap 0.3s;
  padding-bottom: 0.375rem;
  border-bottom: 0.125rem solid #0ca7bb;
}

.sample-report-cta-link:hover {
  gap: 1rem;
}

.sample-report-cta-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

.sample-report-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.sample-report-btn {
  display: inline-block;
  padding: 1.75rem 3.6rem;
  background-color: var(--sw_primary, #0d2839);
  color: var(--sw_white, #fff);
  text-decoration: none;
  border-radius: 100vmax;
  font-weight: 600;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.sample-report-btn:hover {
  opacity: 0.85;
}

/* Form area */
.sample-report-form-area {
  background-color: #0d2839;
  padding: 3rem;
  flex-grow: 0;
}

.sample-report-form-area h4 {
  margin-bottom: 2rem;
  color: var(--sw_white);
}

.sample-report-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 1.5rem;
  margin-bottom: 2rem;
}

form .btn {
  font-size: 1rem;
  height: 3.4375rem;
  min-width: 11.875rem;
  padding: 0 1rem;
}

.sample-report-input,
.sample-report-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.0625rem solid rgba(255 255 255 / 0.625);
  color: var(--sw_white);
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sample-report-input::placeholder {
  color: rgba(255 255 255 / 62.5%);
}

.sample-report-input:focus,
.sample-report-select:focus {
  border-bottom-color: #00b3a0;
}

.form-field--select {
  position: relative;
}

.form-field--select::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.375rem solid transparent;
  border-right: 0.375rem solid transparent;
  border-top: 0.375rem solid #8a9a9e;
  pointer-events: none;
}

.sample-report-select option {
  background: #1b3a4b;
  color: #8a9a9e;
}

/* cssrem-disable-next-line */
@media (max-width: 1536px) {
  .sample-report-image {
    width: 28.33333rem;
  }

  .sample-report-content {
    padding: 1.44444rem 1.44444rem 2.77778rem 2.55556rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 1200px) {
  .sample-report-image {
    width: 26.66667rem;
  }

  .sample-report-content {
    padding: 1.44444rem 1.11111rem 1.66667rem 2rem;
  }

  .sample-report-form-area {
    padding: 1.66667rem;
  }
}

/* Responsive */
/* cssrem-disable-next-line */
@media (max-width: 1024px) {
  .sample-report-wrapper {
    gap: 0 30px;
    align-items: center;
  }

  .sample-report-image,
  .sample-report-right {
    width: 100%;
  }

  .sample-report-image {
    max-width: 28.88889rem;
    aspect-ratio: 1/1.1559633;
    overflow: hidden;
    grid-row: unset;
  }

  .sample-report-content {
    padding: 2.22222rem 0.55556rem;
  }

  .sample-report-form-area {
    padding: 2.55556rem 1.77778rem;
    grid-column: 1/-1;
  }

  .sample-report-desc,
  .sample-report-cta-link {
    /* font-size: inherit; */
  }
}

/* cssrem-disable-next-line */
@media (max-width: 767px) {
  .sample-report-form-grid {
    grid-template-columns: 1fr;
  }

  .sample-report-content {
    padding-inline: 0;
  }

  .sample-report-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .sample-report {
    padding: 3.33333333rem 0;
  }
}

/* ── Our Partners Section ──────────────────────────────────────── */
.our-partners {
  padding: 4.44444rem 0;
  position: relative;
  z-index: 2;
}

.partners-header {
  margin-bottom: 2.22222rem;
}

.partners-eyebrow::before {
  background: #1a1a1a;
}

/* ── Grid Wrapper ──────────────────────────────────────────────── */
.partners-grid-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── Nav Buttons ───────────────────────────────────────────────── */
.partners-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #cccccc;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.3s;
}

.partners-nav-btn:hover {
  background-color: #b3b3b3;
}

.partners-nav-btn.prev {
  left: calc((100vw - 99.625rem) / -2 - 2.5rem);
}

.partners-nav-btn.next {
  right: calc((100vw - 99.625rem) / -2 - 2.5rem);
}

@media (max-width: 1700px) {
  .partners-nav-btn.prev {
    left: -2.22222rem;
  }

  .partners-nav-btn.next {
    right: -2.22222rem;
  }
}

/* ── Base grid (overridden by JS immediately on load) ──────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  width: 100%;
}

/* ── Single Card (base styles, shared across all modes) ────────── */
.partner-card {
  position: relative;
  aspect-ratio: 1 / 0.54232804;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #033a8c;
  transition: transform 0.3s ease;
}

.partner-logo {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/* ── Marquee keyframe ──────────────────────────────────────────── */
@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--marquee-shift));
  }
}

/* ── Marquee outer container (JS adds .marquee-wrapper) ────────── */
.partners-grid.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
  grid-template-columns: unset;
}

/* ── Each scrolling row ────────────────────────────────────────── */
.marquee-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.875rem;
  width: max-content;
  will-change: transform;
}

.marquee-row.marquee-running {
  animation: partners-marquee var(--marquee-dur, 20s) linear infinite;
}

/* Bottom row scrolls in reverse ───────────────────────────────── */
.marquee-row.row-bot {
  animation-direction: reverse;
}

/* ── Cards inside marquee rows ─────────────────────────────────── */
.marquee-row .partner-card {
  width: 21rem;
  aspect-ratio: unset;
  flex-shrink: 0;
}

/* ── Hide nav buttons when marquee is active ───────────────────── */
.partners-grid.marquee-wrapper~.partners-nav-btn,
.partners-nav-btn {
  display: none !important;
}

/* ── ≤ 768px ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .our-partners {
    padding: 2.77778rem 0;
  }
}

/* ── ≤ 575px: narrower cards on small phones ───────────────────── */
@media (max-width: 575px) {
  .our-partners {
    padding: 3rem 0;
  }

  .partners-title br {
    display: none;
  }

  .partners-title {
    font-size: 1.77778rem;
  }

  .marquee-row.row-single .partner-card {
    width: 14rem;
  }
}

/* â”€â”€ Comparison Section â”€â”€ */
#comparison-section {
  padding: 5.55556rem 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

#comparison-section .stonwood_icon {
  width: 28rem;
  top: -62%;
  left: 6rem;
  background-color: #eef9fb;
}

#comparison-section .container {
  position: relative;
  z-index: 1;
}

.comparison-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.comparison-content {
  width: 38%;
  padding-right: 2.5rem;
}

.compare-eyebrow {
  /* color: #686868; */
}

.compare-eyebrow::before {
  background: #1aafba;
}

.comparison-title {
  margin-bottom: 1.5rem;
}

.comparison-desc {
  margin-bottom: 2.5rem;
}

.comparison-btn {
  background-color: #115764;
  color: #fff;
  padding: 0 1.875rem;
  border-color: #115764;
}

.comparison-btn:hover {
  /* background-color: #3eafb8;
  color: #0b4549;
  border-color: #3eafb8; */
}

.comparison-cards-wrapper {
  width: 60%;
  display: flex;
  align-items: center;
}

/* â”€â”€ Cards â”€â”€ */
.compare-card {
  border-radius: 0;
  padding: 3.75rem 2.5rem;
  display: flex;
  flex-direction: column;
}

span.card-stonewood-sub-title {
  font-size: 1rem;
  margin: 0 0 0.6rem;
}

.card-title {
  font-size: 2rem;
  margin-bottom: 1.875rem;
  /* font-family: inherit; */
  /* font-weight: normal; */
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.compare-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.875rem;
  padding-bottom: 0.625rem;
}

.compare-list li:last-child {
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}

.compare-list li svg {
  flex-shrink: 0;
  margin-right: 0.5rem;
  width: 2.125rem;
  height: 2.125rem;
}

/* Stonewood Card specific */
.card-stonewood {
  background: linear-gradient(45deg, #124970 0%, #3a8495 100%);
  color: #fff;
  width: 52%;
  z-index: 2;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.15);
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.card-stonewood .card-title {
  color: #fff;
}

.card-stonewood .compare-list li {
  border-bottom: 0.05556rem solid rgba(255, 255, 255, 0.15);
}

.card-stonewood .card-footer-text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.625;
}

/* IMO Card specific */
.card-imo {
  background: #e4e6eb;
  color: #333;
  width: 48%;
  z-index: 1;
  margin: 0;
  /* Align directly next to Stonewood card */
  padding: 3.125rem 2rem;
}

.card-imo .card-title {
  color: #4a4a4a;
}

.card-imo .compare-list li {
  border-bottom: 0.05556rem solid rgba(0, 0, 0, 0.1);
}

/* â”€â”€ Responsive 66.61111rem â”€â”€ */
/* cssrem-disable-next-line */
@media (max-width: 1199px) {
  #comparison-section {
    padding: 3.33333rem 0;
  }

  .comparison-wrapper {
    flex-direction: column;
  }

  #comparison-section .stonwood_icon {
    top: -28%;
    width: 18rem;
  }

  .comparison-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2.77778rem;
  }

  .comparison-title {
    /* font-size: 2.22222rem; */
  }

  .comparison-btn {
    background-color: #123e66;
    color: #fff;
  }

  .comparison-btn:hover {
    background-color: #0b2a47;
  }

  .comparison-cards-wrapper {
    width: 100%;
    /* flex-direction: column; */
    gap: 0.77778rem;
  }

  .card-stonewood {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 1.66667rem;
  }

  .card-imo {
    width: 100%;
    margin: 0;
    padding-left: 2.22222rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 768px) {
  #comparison-section .stonwood_icon {
    top: 0;
    width: 12rem;
  }

  #comparison-section {
    padding: 2.77778rem 0;
  }

  .comparison-cards-wrapper {
    /* width: 100%; */
    flex-direction: column;
    /* gap: 0.77778rem; */
  }

  .comparison-title {
    /* font-size: 2.11111rem; */
  }

  .card-title {
    font-size: 1.44444rem;
  }

  .compare-list li svg {
    width: 1.44444rem;
    height: 1.44444rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 575px) {
  #comparison-section {
    padding: 3rem 0;
  }

  .comparison-title {
    font-size: 1.77778rem;
  }

  .comparison-desc {
    /* font-size: 1rem; */
    /* margin-bottom: 1.66667rem; */
  }

  .card-title {
    font-size: 1.33333rem;
  }

  .compare-card {
    padding: 1.66667rem 1.11111rem;
  }

  .card-imo {
    padding-left: 1.11111rem;
  }

  .compare-list li {
    font-size: 1rem;
    ;
  }
}

/* --- spotlight --- */
/* â”€â”€ Spotlight Section â”€â”€ */
.spotlight-section {
  padding: 0;
  position: relative;
  /* background-color: #165171; */
  /* Fallback solid color */
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  /* Prevent arrows from causing scroll */
}

.spotlight-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.spotlight-bg--desktop {
  display: block;
}

.spotlight-bg--mobile {
  display: none;
}

.spotlight-section .container {
  position: relative;
  z-index: 2;
}

.spotlight-content {
  width: calc(660px + 195 * (100vw - 992px) / 928);
  margin-left: auto;
  /* Ensure it aligns to the right half of the container */
  padding: 6.66667rem 2.22222rem 6.66667rem 2.22222rem;
}

.spotlight-eyebrow {
  color: #fff;
}

.spotlight-eyebrow::before {
  background: #fff;
  /* Override the default teal square */
}

/* Force H2 to be white and use appropriate sizing */
.spotlight-title {
  color: #fff !important;
  margin-bottom: 1.33333rem;
}

.spotlight-desc {
  color: #fff;
  margin-bottom: 2.22222rem;
  line-height: 1.8;
}

/* Custom button style to match image */
.spotlight-btn {
  background-color: #e6e6e6;
  color: #104857;
  border-color: #e6e6e6;
}

.spotlight-btn:hover {
  /* background-color: #52c5d7;
  color: #104857;
  border-color: #52c5d7; */
}

@media screen and (max-width: 1550px) {
  .spotlight-content {
    width: calc(525px + 195 * (100vw - 992px) / 928);
  }

  p.spotlight-desc {
    font-size: 1.1rem;
  }
}

/* â”€â”€ Responsive Mobile View â”€â”€ */
/* cssrem-disable-next-line */
@media (max-width: 991px) {
  .spotlight-section {
    background-position: center top;
    padding: 10rem 0 4rem;
  }

  .spotlight-overlay {
    /* Mobile Gradient: transparent top fading to solid blue bottom */
    /* background: linear-gradient(
      to bottom,
      rgba(22, 81, 113, 0.1) 0%,
      rgba(22, 81, 113, 0.8) 40%,
      rgba(22, 81, 113, 1) 50%,
      #165171 100%
    ); */
  }

  .spotlight-content {
    width: 100%;
    margin-left: 0;
    /* Padding pushed down to allow the background image to show clearly above text */
    padding: 0;
    max-width: 470px;
    margin-left: auto;
  }

  .spotlight-title {
    font-size: 2.33333rem;
  }

  .spotlight-nav-btn {
    display: none !important;
    /* Typically hide arrows on mobile */
  }
}

/* cssrem-disable-next-line */
@media (max-width: 768px) {
  .spotlight-section {
    padding: 18rem 0 3rem;
  }

  .spotlight-title {
    font-size: 2.11111rem !important;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 575px) {
  .spotlight-title {
    font-size: 1.77778rem !important;
  }

  .spotlight-desc {
    margin-bottom: 1.66667rem;
  }

  .spotlight-btn {
    height: 2.55556rem;
    font-size: 0.77778rem;
    padding-inline: 1.38889rem;
  }

  .spotlight-content {
    max-width: 100%;
  }

  .spotlight-bg--desktop {
    display: none;
  }

  .spotlight-bg--mobile {
    display: block;
  }
}

/* --- products --- */
/* â”€â”€ Products Section â”€â”€ */
.products-section {
  padding: 5.55556rem 0;
  background-color: #fff;
}

.products-header {
  text-align: center;
  max-width: 47.22222rem;
  margin: 0 auto 1.33333rem auto;
}

.products-eyebrow {
  justify-content: center;
  /* color: #a3a3a3; */
}

/* Ensure the dot stays teal */
.products-eyebrow::before {
  background-color: #1aafba;
}

.products-title {
  margin-bottom: 1.33333rem;
}

.products-desc {
  color: #4a4a4a;
  /* font-size: 1rem; */
  line-height: 1.6;
  margin: 0;
}

/* â”€â”€ Grid â”€â”€ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* â”€â”€ Card â”€â”€ */
.product-card {
  display: flex;
  flex-direction: column;
  /* Elevated box shadow as requested */
  border: 0.05556rem solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 1.44444rem 1.66667rem rgba(0, 0, 0, 0.08);
  background-color: rgb(55 174 196 / 6%);
}

.product-image {
  width: 100%;
  aspect-ratio: 1/0.708;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 2.22222rem 1.66667rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-family: var(--sw_title);
  font-size: 1.88889rem;
  margin-bottom: 0.22222rem;
  font-weight: normal;
}

.product-subtext {
  color: #8c8c8c;
  font-size: 1.11111rem;
  margin-bottom: 1.22222rem;
}

.product-bottom-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.product-price {
  font-family: var(--sw_title);
  color: #37aec4;
  font-size: 1.66667rem;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #123e66;
  color: #fff;
  padding: 0 1.55556rem;
  height: 2.66667rem;
  border-radius: 5.55556rem;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s;
}

.product-btn:hover {
  background-color: var(--sw_quaternary);
}

@media (max-width: 1200px) {
  .product-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* â”€â”€ Responsive Mobile View â”€â”€ */
/* cssrem-disable-next-line */
@media (max-width: 991px) {
  .products-section {
    padding: 3.33333rem 0;
  }

  .products-header {
    text-align: left;
    margin-bottom: 2.22222rem;
  }

  .products-eyebrow {
    justify-content: flex-start;
  }

  .products-title {
    font-size: 2.33333rem;
  }

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

/* cssrem-disable-next-line */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 24.44444rem;
    margin-inline: auto;
  }

  .product-bottom-row {
    flex-direction: row;
  }

  .products-section {
    padding: 2.77778rem 0;
  }

  .products-title {
    font-size: 2.11111rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 575px) {
  .products-section {
    padding: 3rem 0;
  }

  .products-title {
    font-size: 1.77778rem;
  }

  .products-desc {
    /* font-size: 1rem; */
  }

  .product-content {
    padding: 1.33333rem 1.11111rem;
  }

  .product-image {
    height: 14.44444rem;
  }

  .product-price {
    font-size: 1.33333rem;
  }
}

/* --- equip-advisor --- */
/* â”€â”€ Equip Advisor Section â”€â”€ */
.equip-advisor-section {
  padding: 3.88889rem 0;
  background: linear-gradient(to bottom, #185173 0%, #206e8e 100%);
  position: relative;
  overflow: hidden;
}

.equip-container {
  /* flex-wrap: wrap; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.equip-title {
  color: #fff;
  font-size: 3.6rem;
  flex: 1;
  min-width: 460px;
}

.equip-desc {
  color: #fff;
  font-size: 1.4rem;
  margin: 0;
  max-width: 27.6rem;
  letter-spacing: 0.025em;
}

.equip-btn-wrapper {
  flex: 1 0 auto;
  text-align: right;
}

.equip-btn-wrapper .btn:not(:hover) {
  background-color: #f4f6f8;
  color: #3b505c;
}

.equip-btn-wrapper .btn:hover {
  /* background-color: #37aec4;
  color: #fff;
  border-color: #37aec4; */
}

@media (max-width: 1366px) {
  .equip-title {
    font-size: 3rem;
  }

  .equip-container {
    gap: 2rem;
  }

  .equip-btn-wrapper .btn {
    height: 3.175rem;
    padding: 0 1.5rem;
    font-size: 1rem;
    ;
  }
}

@media (max-width: 1200px) {
  .equip-container {
    flex-direction: column;
  }

  .equip-title {
    text-align: center;
  }

  .equip-desc {
    text-align: center;
  }
}

/* â”€â”€ Responsive Mobile View â”€â”€ */
/* cssrem-disable-next-line */
@media (max-width: 991px) {
  .equip-advisor-section {
    padding: 3.33333rem 0;
    background: linear-gradient(180deg, #1e6787 0%, #154664 100%);
  }

  .equip-advisor-section::before {
    border-left-width: 16.66667rem;
    border-right-width: 16.66667rem;
    border-bottom-width: 13.88889rem;
  }

  .equip-container {
    flex-direction: column;
    text-align: center;
    gap: 1.38889rem;
  }

  .equip-title {
    font-size: 2.11111rem;
    flex: auto;
  }

  .equip-desc {
    flex: auto;
    max-width: 22.22222rem;
    font-size: 0.94444rem;
  }

  .equip-btn-wrapper {
    margin-top: 0.83333rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 768px) {
  .equip-advisor-section {
    padding: 2.77778rem 0;
  }

  .equip-title {
    font-size: 1.88889rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 575px) {
  .equip-advisor-section {
    padding: 3rem 0;
  }

  /* .equip-title {
    font-size: 1.55556rem;
  } */

  .equip-desc {
    /* font-size: 1rem; */
  }

  .equip-btn-wrapper,
  .equip-btn-wrapper .btn {
    /* width: 100%; */
    /* padding-inline: 1.33333rem; */
  }
}

/* --- testimonials --- */
/* â”€â”€ Testimonials Section â”€â”€ */
.testimonials-section {
  padding: 6.25rem 0 7.25rem;
  background-color: #f2edea;
  /* Soft beige background */
  overflow: hidden;
  /* Prevents overflow from leaky track */
  position: relative;
  /* Custom background flare seen on left side optionally? Omitted for pure matching */
}

.testimonials-section .stonwood_icon {
  top: 56%;
  transform: translate(0, -50%);
  left: -3.125rem;
  width: 31.25rem;
  background-color: #ebe6e3;
}

.testimonials-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.33333rem;
  position: relative;
  z-index: 2;
}

.testimonials-eyebrow {
  /* color: #8c8c8c; */
}

.testimonials-eyebrow::before {
  background-color: #37aec4;
}

.testimonials-title {
  font-family: var(--sw_title);
  font-size: 2.77778rem;
  color: #686868;
  margin: 0;
  font-weight: normal;
}

/* Nav Arrows */
.testimonials-nav {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 3;
}

.nav-btn {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #d4d8d7;
  border: none;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.2s;
}

.nav-btn:hover:not(:disabled) {
  background-color: #d2d4d8;
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.625;
  cursor: not-allowed;
}

.nav-btn svg {
  width: 1.875rem;
  height: 1.875rem;
}

/* Slider Track */
.slider-wrapper {
  position: relative;
  z-index: 3;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 4.75rem;
  width: max-content;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* â”€â”€ Individual Slides â”€â”€ */
.slide {
  min-height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  background-color: #fff;
  padding: 1.875rem 4rem;
  width: 47rem;
  /* Small inactive width */
  flex-shrink: 0;
  box-shadow: 0 0.55556rem 2.22222rem rgba(0, 0, 0, 0.02);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* Ensure varied heights don't stretch */
  border: 0.05556rem solid rgba(0, 0, 0, 0.03);
  cursor: grab;
}

/* Quote Icon */
.quote-icon {
  margin-bottom: 1.11111rem;
}

.quote-icon svg {
  transition: all 0.6s;
  width: 5.11111rem;
  height: 3.88889rem;
}

/* Body Text Options */
.slide-text {
  position: relative;
  /* padding-right: 1.38889rem; */
  /* Offset space for scrollbar */
  margin-bottom: 2.5rem;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-text p {
  /* color: #383838; */
  font-size: 1.3125rem;
  line-height: 1.6;
  margin: 0;
  /* max-height: 4.11111rem; */
  /* Trigger limit for inactive content */
  /* overflow-y: auto; */
  /* scrollbar-width: none; */
  /* Firefox custom hider */
  /* -ms-overflow-style: none; */
  /* IE custom hider */
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-text p::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari custom hider */
}

/* Custom Scrollbar Elements */
/* .slider-scrollbar {
  position: absolute;
  right: 0;
  top: 0.27778rem;
  bottom: 0.27778rem;
  width: 0.33333rem;
  background-color: rgb(77 211 170 / 30%);
  border-radius: 0.22222rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.slider-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(77 211 170 / 60%);
  border-radius: 0.22222rem;
  cursor: grab;
  transition: background-color 0.2s;
}

.slider-scrollbar-thumb:hover {
  background-color: #37aec4;
}

.slider-scrollbar-thumb:active {
  cursor: grabbing;
  background-color: #174868;
} */

/* Author Row */
.author-info {
  display: flex;
  align-items: center;
  gap: 0.83333rem;
}

.author-img {
  width: 3.33333rem;
  height: 3.33333rem;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.6s;
  filter: grayscale(100%);
}

.author-text {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  color: #4a4a4a;
  font-size: 1rem;
  transition: all 0.6s;
}

.author-role {
  color: #8c8c8c;
  font-size: 0.9rem;
  transition: all 0.6s;
}

/* Mobile Settings */
.mobile-nav {
  display: none;
  justify-content: center;
  margin-top: 2.77778rem;
}

@media (min-width: 1201px) {
  .slide.active .slide-content {
    width: 67rem;
    /* Large active width */
    padding: 2.55556rem 3.33333rem;
    box-shadow: 0 0.83333rem 2.77778rem rgba(0, 0, 0, 0.05);
  }

  .slide.active .slide-text {
    margin-bottom: 3.87rem;
  }
}

@media (min-width: 992px) {
  .slide.active .author-info {
    gap: 1.11111rem;
  }

  .slide.active .author-img {
    width: 4.77778rem;
    height: 4.77778rem;
  }

  .slide.active .author-name {
    font-size: 1.22222rem;
    color: #222;
  }

  .slide.active .author-role {
    font-size: 1rem;
  }

  .slide.active .slide-text p {
    font-size: 1.75rem;
    line-height: 1.5;
    /* max-height: 5rem; */
    /* Expanded limit for active content */
  }

  .slide.active .quote-icon svg {
    width: 7.33333rem;
    height: 5.22222rem;
  }

  .slide.active .slide-content {
    width: 60rem;
  }
}

@media (max-width: 1200px) {
  .slide {
    min-height: 24rem;
  }

  .slider-track {
    gap: 3rem;
  }

  .slide-content {
    width: 42rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 3.88889rem 0;
  }

  .desktop-nav {
    display: none;
    /* Hide top arrows */
  }

  .mobile-nav {
    display: flex;
    /* Show bottom arrows */
    margin-top: 1.6rem;
  }

  .testimonials-head-row {
    margin-bottom: 2.22222rem;
  }

  .testimonials-title {
    font-size: 2.33333rem;
  }

  /* Track gap slightly smaller */
  .slider-track {
    gap: 1rem;
  }

  .slide {
    min-height: unset;
    width: calc(100vw - 4rem);
    flex: 1 0 auto;
  }

  .slide .slide-content {
    width: 70vw;
    max-width: 40rem;
    padding: 2rem;
  }

  .slide .slide-content {
    width: 100%;
    max-width: unset;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 2.77778rem 0;
  }

  .testimonials-title {
    font-size: 2.11111rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 575px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-title {
    font-size: 1.77778rem;
  }

  .testimonials-head-row {
    margin-bottom: 1.66667rem;
  }

  .slide-text p {
    /* max-height: 5.4rem; */
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .slide .slide-content {
    padding: 1.6rem;
  }

  .quote-icon svg {
    width: 4rem;
    aspect-ratio: 1/1;
    height: auto;
  }

  .nav-btn {
    width: 4rem;
    height: 4rem;
  }

  .nav-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* --- pricing --- */
.pricing-section {
  padding: 6.25rem 0;
  background-color: #fff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.pricing-eyebrow {
  justify-content: center;
  /* color: #a3a3a3; */
}

.pricing-eyebrow::before {
  background-color: #37aec4;
}

.pricing-title {
  margin-bottom: 1rem;
  font-weight: normal;
}

.pricing-desc {
  color: #555;
  /* font-size: 1.125rem; */
  line-height: 1.6;
  margin: 0 auto;
}

/* â”€â”€ Grid â”€â”€ */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Aligns items across middle */
  gap: 3.75rem;
  margin: 0 auto;
  max-width: 77.5rem;
}

/* â”€â”€ Cards â”€â”€ */
.pricing-card {
  flex: 0 0 21.875rem;
  background: #fff;
  border: 0.0625rem solid #e5e5e5;
  padding: 1.875rem 1.5rem;
  display: flex;
  flex-direction: column;

  /* Equalizes bases if content varies */
  min-height: 30.625rem;
}

.pricing-card.highlighted {
  flex: 1 0 26.25rem;
  background: #f2fdff;
  border: none;
  /* Removing border for the prominent item */
  padding: 2.5rem 1.875rem;
  box-shadow: 0 0.875rem 7.5rem rgba(55, 174, 196, 0.5);
  position: relative;
  z-index: 2;
  min-height: 33.25rem;
}

.pricing-card .btn {
  background-color: var(--sw_black);
  border-color: var(--sw_black);
  color: var(--sw_white);
  min-width: unset;
  font-size: 1rem;
  justify-content: flex-start;
  align-self: flex-start;
  height: 3.375rem;
}

.pricing-card .btn:hover {
  background-color: var(--sw_quaternary) !important;
  border-color: var(--sw_quaternary) !important;
}

/* Most Popular Badge */
.badge-popular {
  position: absolute;
  top: -1.125rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fca000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 6.25rem;
  letter-spacing: 0.0625rem;
}

/* Text Elements */
.card-head h4 {
  font-size: 1.625rem;
  color: #383838;
}

.card-head .sub-tier {
  font-size: 1rem;
  color: #888;
  display: block;
  margin-bottom: 1.875rem;
}

.card-price-wrap {
  margin-bottom: 2.1875rem;
}

.price {
  font-family: var(--sw_title);
  font-size: 2.875rem;
  color: #383838;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.pricing-card.highlighted .price {
  color: #37aec4;
}

.sub-price {
  font-size: 1.2375rem;
  color: #999;
}

/* Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.8125rem 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4a4a4a;
}

.plan-features li:last-child {
  margin: 0;
}

.pricing-card.highlighted .plan-features li {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.plan-features svg {
  width: 1.625rem;
  height: 1.625rem;
  flex-shrink: 0;
}

.pricing-card.highlighted .plan-btn {
  background-color: var(--sw_primary);
  border-color: var(--sw_primary);
}

.pricing-card.highlighted .plan-btn:hover {
  background-color: #10344d;
}

/* --- bottom-cta --- */
.bottom-cta-section {
  position: relative;
  /* height: 130vh; */
  height: 45vh;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8vh;
  color: #fff;
  text-align: center;
  background-color: #346e90;
}

.bottom-cta-bg {
  position: absolute;
  inset: 0 0 0 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center top;
}

.bottom-cta-bg.for-mob {
  display: none;
}

.bottom-cta-bg.for-des {
  display: block;
}

.bottom-cta-content {
  position: relative;
  padding: 0 1.11111rem;
  z-index: 4;
}

.bottom-cta-title {
  font-size: 3.11111rem;
  margin: 0 0 1.11111rem 0;
  color: #fff;
}

.bottom-cta-desc {
  font-size: 1.33333rem;
  margin: 0 0 2.77778rem 0;
}

/* Button Group */
.bottom-cta-buttons {
  display: flex;
  gap: 1.11111rem;
  justify-content: center;
  margin-bottom: 1.94444rem;
}

.bottom-cta-btn.btn-demo {
  background-color: var(--sw_primary);
  border-color: var(--sw_primary);
}

.home .footer-wrap footer {
  /* padding-top: 0; */
}

.bottom-cta-section:before {
  display: none;
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, #050f19, transparent 10%);
  z-index: 1;
  pointer-events: none;
}

.bottom-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.66667rem;
  height: 3.11111rem;
  border-radius: 5.55556rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08333rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-demo {
  background-color: #173b5a;
  color: #fff;
  border: 0.05556rem solid #173b5a;
}

.bottom-cta-btn.btn-demo:hover {
  background-color: var(--sw_quaternary);
  border-color: var(--sw_quaternary);
}

.btn-membership {
  background-color: var(--sw_white);
  color: var(--sw_black);
}

.btn-membership:hover {
  background-color: var(--sw_primary);
  color: var(--sw_white);
}

/* Buy Books Link */
.buy-books-link {
  display: inline-flex;
  align-items: center;
  color: #1a1a1a;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.33333rem;
  transition: 0.3s;
}

.buy-books-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.08333rem;
  background-color: #1a1a1a;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.buy-books-link:hover svg {
  /* width: 60%; */
  margin-left: 0.77778rem;
}

.buy-books-link svg {
  margin-left: 0.55556rem;
  width: 2rem;
  height: 0.66667rem;
  transition: 0.3s;
}

/* ── pricing-bar-ctas styles merged into stats-bar-ctas block above ── */

/* â”€â”€ Responsive Mobile View â”€â”€ */
/* cssrem-disable-next-line */

@media (max-width: 1550px) {
  .sample-report-image {
    width: auto;
  }
}

@media (max-width: 1300px) {
  .pricing-grid {
    gap: 1.11111rem;
    max-width: 100%;
  }

  .pricing-card {
    flex: 0 1 33.33333333% !important;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 991px) {

  .sample-report-btn {
    font-size: 18px;
    padding: 15px 25px;
    font-weight: 600;
  }

  .stwd-submit-btn {
    padding: 18px 35px;
  }

  .bottom-cta-section {
    height: 45vh;
  }

  button#sample-report-submit {
    width: 100%;
  }

  .pricing-section {
    padding: 3.33333rem 0;
  }

  .pricing-title {
    font-size: 2.22222rem;
  }

  .pricing-grid {
    flex-direction: column;
    gap: 2.22222rem;
  }

  .pricing-card {
    width: 100%;
    max-width: 22.22222rem;
    min-height: auto;
  }

  .pricing-card.highlighted {
    padding: 2.77778rem 2.22222rem;
    min-height: auto;
  }

  .bottom-cta-bg {
    width: 1170px;
    height: 100%;
  }

  .bottom-cta-section {
    /* height: 108vh; */
    /* Standard mobile mapping */
  }

  .bottom-cta-title {
    font-size: 2.22222rem;
    margin-bottom: 1.38889rem;
  }

  .bottom-cta-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .desktop-br {
    display: none;
    /* Flow naturally on mobile boundaries */
  }

  .bottom-cta-btn {
    display: flex !important;
    margin: 0;
  }


  .stwd-submit-btn {
    font-size: 0.77778rem;
    padding: 15px 18px;
    margin: 0 auto;
  }

  p.stwd-disclaimer {
    font-size: 0.9rem;
  }

  .sw-cs__lede {
    font-size: 1.1rem;
  }

  .equip-btn-wrapper,
  .equip-btn-wrapper .btn {
    padding-inline: unset;
    padding: 10px 17px;
  }

  .bottom-cta-btn.btn-demo {
    font-size: 0.77778rem;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 768px) {
  .pricing-section {
    padding: 2.77778rem 0;
  }

  .pricing-title {
    font-size: 2.11111rem;
  }

  .pricing-desc br {
    display: none;
  }

  .bottom-cta-title {
    font-size: 2.11111rem;
  }

  .main-hero-content {
    margin-top: 1.66667rem;
  }

  section#bottom-cta a.buy-books-link:after {
    display: none;
  }
}

/* cssrem-disable-next-line */
@media (max-width: 575px) {
  .plan-features li {
    font-size: 0.875rem;
  }

  .plan-features svg {
    width: 1.22222rem;
    height: 1.22222rem;
  }

  .pricing-card .btn {
    font-size: 0.77778rem;
    height: 2.55556rem;
    padding-inline: 1.33333rem;
  }

  .pricing-card.highlighted .plan-features li {
    font-size: 1rem;
  }

  .pricing-section {
    padding: 3rem 0;
  }

  .pricing-title {
    font-size: 1.77778rem;
  }

  .pricing-desc {
    /* font-size: 0.77778rem; */
  }

  .pricing-header {
    margin-bottom: 2.77778rem;
  }

  .pricing-card.highlighted {
    padding: 2.22222rem 1.33333rem;
  }

  .pricing-card {
    padding: 1.66667rem 1.11111rem;
  }

  .price {
    font-size: 2rem;
  }

  .card-head h4 {
    font-size: 1.22222rem;
  }

  .bottom-cta-title {
    font-size: 1.77778rem;
  }

  .bottom-cta-desc {
    font-size: 1rem;
    margin-bottom: 2.22222rem;
  }

  .bottom-cta-btn {
    height: 2.77778rem;
    font-size: 0.77778rem;
  }

  .bottom-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .bottom-cta-bg.for-mob {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center calc(clamp(-15.625rem, -142.857vw + 35.714rem, 0rem));
  }

  .bottom-cta-bg.for-des {
    display: none;
  }
}

/* ==========================================
   AS SEEN AT
   ========================================== */

.as-seen-section {
  padding: 4rem 0;
  background-color: var(--sw_white);
}

.as-seen-heading {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sw_accent);
  margin-bottom: 2.5rem;
}

.as-seen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.as-seen-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-seen-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-seen-logo {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.as-seen-placeholder {
  width: 160px;
  height: 60px;
  background: linear-gradient(90deg, #e0e0e0 25%, #ececec 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: as-seen-shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes as-seen-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 1024px) {
  .as-seen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .as-seen-section {
    padding: 3rem 0;
  }

  .as-seen-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .as-seen-logo {
    max-height: 50px;
  }

  .card-hover-content {
    position: unset;
  }
}

@media (max-width: 515px) {
  .stwd-submit-btn {
    font-size: 0.77778rem;
    padding: 15px 18px;
    margin: 0 auto;
  }

  p.stwd-disclaimer {
    font-size: 0.9rem;
  }

  .sw-cs__lede {
    font-size: 1.1rem;
  }

  .equip-btn-wrapper,
  .equip-btn-wrapper .btn {
    padding-inline: unset;
    padding: 10px 17px;
  }

  .bottom-cta-btn.btn-demo {
    font-size: 0.77778rem;
  }

  a.sample-report-btn,
  button.stwd-submit-btn,
  a.schedule-demo,
  .stats-bar-ctas a.btn,
  .pricing-bar-ctas a.btn {
    font-size: 14px;
    font-weight: 400 !important;
    padding: 15px 25px;
  }
}

@media (max-width: 550px) {
  h2 {
    font-size: 28px !important;
  }

  .btn {
    font-size: 14px;
    font-weight: 400 !important;
    padding: 15px 25px;
    height: auto;
  }

  p {
    font-size: 16px !important;
  }

  h3 {
    font-size: 24px !important;
  }

  h4 {
    font-size: 24px !important;
  }

  section#bottom-cta {
    height: auto;
    padding: 15px 0px;
  }

  .as-seen-slider-wrapper {
    padding: 20px 0px;
  }

  h2.sw-cs__title {
    margin-bottom: 19px !important;
  }

  h2 br {
    display: none;
}
.main-hero {
    height: max-content;
    max-height: fit-content;
  }
}

@media screen and (max-width: 400px) {
  section#bottom-cta {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}