:root {
  --header-color: #00478A;
  --header-shadow-color: rgba(0, 0, 0, 0.25);
  --header-text-color: #FFF;
  --header-font-size: 24px;
  --body-font-size: 24px;
  --text-color: #000;
  --secondary-color: #666;
  --link-color: var(--text-color);
  --input-color: var(--text-color);
  --placeholder-color: var(--secondary-color);
  --h1-size: 60px;
  --h1-mobile-size: 42px;
  --global-max-width: 1440px;
  --transition-speed: 0.3s;
  --default-gap: 20px;
}

body {
  margin-inline: auto;
  max-width: var(--global-max-width);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color);
  font-size: var(--body-font-size);
}

a {
  cursor: pointer;
  position:relative;
  text-decoration: underline;;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.09375rem;
  text-underline-offset: .2ch;
  transition: color var(--transition-speed) ease-in-out, text-decoration-color var(--transition-speed) ease-in-out;
  color: var(--link-color);
}
a:visited {
  color: var(--link-color);
}
a:hover {
  color: var(--link-color);
  text-decoration-color: currentColor;
  transition: color var(--transition-speed) ease-in-out, text-decoration-color var(--transition-speed) ease-in-out;
}

header.top_nav_container {
  --link-color: var(--header-text-color);
  background: var(--header-color);
  box-shadow: 0px 4px 4px 0px var(--header-shadow-color);
  color: var(--header-text-color);
  width: 100%;
  font-size: var(--header-font-size);
  z-index: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-inline: clamp(17px, calc(5.94vw - 37.54px), 42px);
}

.main-nav .logo {
  font-size: 30px;
  margin-right: auto;
  padding-block: 16px 14px;
  text-decoration: none;
  color: var(--link-color);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--link-color);
  padding: 6px 12px;
  cursor: pointer;
  background: none;
  font-size: 16px;
}

.menu-toggle::after {
  content: "MENU";
  color: var(--link-color);
}

.menu-checkbox:checked + .menu-toggle::after {
  content: "CLOSE";
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, calc(5.94vw - 37.54px), 48px);
  justify-content: flex-end;
  flex: 1;
  padding-block: 14px 17px;
}

.nav-links a {
  text-decoration: none;
  color: var(--link-color);
  font-size: var(--header-font-size);
  white-space: nowrap;
}

.nav-links .search {
  display: flex;
}
.nav-links .search img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1 / 1;
}

main {
  width: 100%;
}
footer {
  --link-color: #333;
  --column-gap: clamp(32px, calc(32px + ((112 - 32) * ((100vw - 767px) / 673))), 112px);
  width: 100%;
  background: #F5F5F5;
  color: #333;
  margin-block: 112px 0px;
  margin-inline: 0px;
  padding-block: 58px 111px;
  padding-inline: var(--column-gap); 
  display: flex;
  flex-wrap: wrap;
  row-gap: 11px;
  column-gap: var(--column-gap);
  color: #333;
  font-size: 20px;
  text-align: left;
}
footer p {
  font-size: 20px;
  line-height: normal;
}
footer .logo_header {
    width: 100%;
    font-weight: 600;
}
footer div.col {
  width: calc((100% - (var(--column-gap) * 2)) / 3);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer div.col.col1 {
  gap: 2rem;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--default-gap);
}
footer ul li {
}



.company-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #CCC;
  background: #FFF;
  height: 200px;
  justify-content: flex-end;
  padding-block: 18px;
  padding-inline: 23px;
}
.company-card .logo_container {
  display: flex;
  gap: 0px;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 11px;
  height: 100%;
}
.company-card:hover {
  box-shadow: 0 4px 4px 0 rgb(0,0,0,.25);
}
.company-card:hover .logo_container {
  border-bottom-color: var(--text-color);
}
.company-card img.logo {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  margin-inline: auto;
}
.company-card h3 {
  font-size: 16px;
  font-weight: 600;
}
.company-card p {
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
a.company-card:hover,
.company-card:hover a {
  text-decoration-color: transparent;
}

.star-rating {
  width: 100px;
  height: 20px;
  position: relative;
  margin: 4px 0;
  min-height: 20px;
}

.stars-outer {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg fill="%23ddd" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polygon points="10,1 12.59,7.36 19.51,7.36 13.96,11.63 16.58,18 10,13.92 3.42,18 6.04,11.63 0.49,7.36 7.41,7.36"/></svg>') repeat-x;
  background-size: 20px 20px;
}

.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg fill="%23f5a623" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polygon points="10,1 12.59,7.36 19.51,7.36 13.96,11.63 16.58,18 10,13.92 3.42,18 6.04,11.63 0.49,7.36 7.41,7.36"/></svg>') repeat-x;
  background-size: 20px 20px;
  width: 0%;
  overflow: hidden;
}

.case-study-card {
  flex: 1;
  min-width: 0;
  min-height: 240px;
  border-radius: 10px;
  background: #F7F7F7;
  box-shadow: 0px 2px 5px 0px var(--header-shadow-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.case-study-card h3 {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-family: "IBM Plex Sans";
  font-size: 24px;
  font-weight: 500;
  padding: 14px 32px;
  flex: 1;
  justify-self: flex-start;
}
.case-study-card .case-study-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 14px 16px;
  gap: calc(2 * var(--default-gap));
}

.case-study-card .case-study-logos .logo_container {
  display: flex;
  align-items:center;
  justify-content: center;
  flex-basis: 50%;
}

.case-study-card .case-study-logos .logo_container p {
  font-size: 14px;
  color: #666;
}

.case-study-card .case-study-logos .logo_container p.customer {
  font-weight: 600;
}

.case-study-card .case-study-logos .logo_container.spacer {
  height: 49px;
  min-height: 49px;
}

.case-study-card .case-study-logos .logo_container.no_logo {
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
}

.case-study-card .case-study-logos .logo_container.no_logo p {
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.case-study-card .case-study-logos .logo_container.no_logo.full_width {
  overflow: visible;
}
.case-study-card .case-study-logos .logo_container.no_logo.full_width p {
  overflow-x: visible;
  text-overflow: unset;
}

.case-study-card .case-study-logos img {
  max-height: 49px;
  height: 49px;
  object-fit: contain;
  max-width: 100%;
}

.case-study-card .star-rating {
  width: 100px;
  height: 20px;
  position: relative;
  margin: 14px 18px;
  align-self: flex-end;
}

.case-study-card .stars-outer {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg fill="%23ddd" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polygon points="10,1 12.59,7.36 19.51,7.36 13.96,11.63 16.58,18 10,13.92 3.42,18 6.04,11.63 0.49,7.36 7.41,7.36"/></svg>') repeat-x;
  background-size: 20px 20px;
}

.case-study-card .stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg fill="%23f5a623" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polygon points="10,1 12.59,7.36 19.51,7.36 13.96,11.63 16.58,18 10,13.92 3.42,18 6.04,11.63 0.49,7.36 7.41,7.36"/></svg>') repeat-x;
  background-size: 20px 20px;
  width: 0%;
  overflow: hidden;
}


:root {
  --padding-inline: 112px;
  --hr-padding-inline: calc(var(--padding-inline) - 20px);
  --hr-width: calc(100% - (2 * var(--hr-padding-inline)));
}
main {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

hr {
  width: var(--hr-width);
  margin-inline: auto;
  margin-block-start: 83px;
}

.home_hero {
  padding-block: 87px 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "IBM Plex Sans", sans-serif;
}

h1 {
  --h1-size: 52px;
  font-family: 'IBM Plex Sans', sans-serif;
  text-align: center;
  font-size: var(--h1-size);
  font-weight: 500;
  line-height: 62px; /* 119.231% */
  width: 99%;
  text-wrap-style: balance;
}
h1 span {
  white-space: nowrap;
}

a.btn {
  background: #fff;
  border: 1px solid #666;
  padding-inline: 20px 17px;
  padding-block: 17px 20px;
  display: flex;
  font-weight: 700;
  white-space: nowrap;
  width: min-content;
  justify-content: center;
  align-items: center;
}

.home_hero p {
  margin-top: 40px;
  width: 60%;
  text-wrap-style: pretty;
  text-align: center;
}
.home_hero a.btn {
  margin-top: 42px;
  padding-inline: calc(33px + 20px) calc(32px + 17px);
}

.float_quote {
  --border-color: red;
  --shadow-color: rgba(0, 0, 0, 0.25);
  border-radius: 65px;
  border: 2px solid var(--border-color);
  background: #FFF;
  box-shadow: 1px 2px 4px 0px var(--shadow-color);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  padding-block: 18px 22px;
  padding-inline: 37px;
  text-align: center;
}

.fq1 {
  --border-color: #FF7E57;
  position: absolute;
  top: 95px;
  left: calc(-34px - (var(--global-max-width) - 100%) * 0.5);
}
.fq2 {
  --border-color: #EB4865;
  position: absolute;
  top: 295px;
  left: calc(-1px - (var(--global-max-width) - 100%) * 0.5);
}
.fq3 {
  --border-color: #00C8C9;
  position: absolute;
  top: 52px;
  right: calc(-10ch - (var(--global-max-width) - 100%) * 0.5);
}
.fq4 {
  --border-color: #FCE7DA;
  position: absolute;
  top: 212px;
  right: calc(-13ch - (var(--global-max-width) - 100%) * 0.5);
}
.fq5 {
  --border-color: #14BAF6;
  position: absolute;
  top: 376px;
  right: calc(-5ch - (var(--global-max-width) - 100%) * 0.5);
  padding-block: 20px;
}

div.row {
  display: flex;
}

.featured_vendors {
  background: var(--header-color);
  color: var(--header-text-color);
  padding-block: 47px 91px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.featured_vendors div.row {
  width: 100%;
  gap: var(--default-gap);
  padding-inline: clamp(32px, calc(32px + (80 * ((100vw - 767px) / 673))), var(--padding-inline));
  padding-block: 26px 0px;
}

.featured_vendors .company-card-container {
  flex: 1;
  min-width: 0;
}

.company-card:hover {
    box-shadow: 0 4px 4px 0 rgb(255, 255, 255, 0.25);
}

.vendor_cta {
  width: 100%;
  padding-block: 69px;
  padding-inline: var(--padding-inline);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 58px;
  position: relative;
  overflow: hidden;
}

.vendor_cta_content {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* tighter vertical spacing */
  flex: 1;
  max-width: 50%;
}

.vendor_cta h2 {
  text-wrap-style: balance;
  font-weight: 500;
  font-size: 36px;
}

.vendor_cta p {
  text-wrap-style: balance;
  margin-top: 14px;
}

.vendor_cta img {
  max-width: 50%;
  height: auto;
  max-height: 455px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: start;
}

.vendor_cta a.btn {
  margin-top: 31px;
}

.vendor_cta hr {
  position: absolute;
  bottom: 6rem;
  left: var(--hr-padding-inline);
  width: var(--hr-width);
  border: none;
  border-top: 1px solid #000;
  z-index: -1;
}

.featured_studies {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.featured_studies div.row {
  width: 100%;
  gap: 20px;
  padding-inline: clamp(32px, calc(32px + (80 * ((100vw - 767px) / 673))), var(--padding-inline));
  margin-bottom: 32px;
}
.case-study-card {
  flex: 1;
  min-width: 0;
  min-height: 240px;
  border-radius: 10px;
  background: #F7F7F7;
  box-shadow: 0px 2px 5px 0px var(--header-shadow-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-study-card h3 {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-family: "IBM Plex Sans";
  font-size: 24px;
  font-weight: 500;
  padding: 14px 32px;
}
.case-study-card .case-study-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 14px 16px;
}

.case-study-card .case-study-logos .logo_container {
  display: flex;
  align-items:center;
  justify-content: center;
}

.case-study-card .case-study-logos img {
  max-height: 49px;
  object-fit: contain;
  max-width: 100%;
}


.faq-section {
  padding-inline: clamp(32px, calc(32px + (80 * ((100vw - 767px) / 673))), var(--padding-inline));
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--default-gap);
  margin-top: 67px;
}

.faq-section h2 {
  font-weight: 500;
  margin-bottom: var(--default-gap);
}

.faq-section details {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: var(--default-gap);
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.faq-section details[open] {
  gap: var(--default-gap);
}

.faq-section details:hover {
  background-color: #f0f0f0;
}

.faq-section summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  font-weight: 500;
}

.faq-section summary::marker {
  display: none;
}

.faq-section summary::after {
  content: "";
  display: inline-block;
  background-image: url("/sstat/cssite/img/icon/angle_down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  right: 32px;
    top: 8px;
    position: absolute;
}

.faq-section details[open] summary::after {
  transform: scaleY(-1);
}

.faq-section p {
  font-size: 20px;
  line-height: 1.3;
}


 


.search-toggle {
  cursor: pointer;
}

.nav-links form {
  display: flex;;
  align-items: center;
  gap: 24px;
  position: relative;
}
.nav-links button {
  display: none;
  position: absolute;
  color: #666;
  text-align: center;
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: white;
  border: 2px solid #666;
  right: 6px;
  height: 38px;
  width: 90px;
  top: 6px;
}

.nav-links button:hover {
  color: #000;
  border-color: #000;
}

.nav-search-input {
  display: none;
  font-size: var(--header-font-size);
  padding: 2px 12px;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  font-family: "DM Sans", sans-serif;
  height: 38px;
  outline: none;
}
.nav-search-input:focus {
  box-shadow: 0 4px 4px 0 rgb(255,255,255,.25);
}

.search-checkbox {
  display: none;
}

.search-checkbox:checked ~ .nav-search-input {
  display: inline-block;
}

.search-checkbox:checked ~ button {
  display: inline-block;
  height: auto;
  top: 4px;
}

@media (max-width: 1079.98px) {
  
}

@media(max-width: 767.98px) {

  .logo {
    padding-block: 0px;
  }
  .main-nav {
    padding-inline: 17px 15px;
    padding-block: 8px 10px;
  }
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    --header-font-size: 30px;
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding-block: 10px;
    justify-content: flex-end;
    flex: unset;
  }

  .nav-links form {
    position: relative;
    width: 100%;
    margin-top: 6px;
  }
  
  .menu-checkbox:checked ~ .nav-links {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 29px;
    margin-inline: 2px;
  }
  .menu-checkbox:checked ~ .nav-links a {
    line-height: 1.3;
  }

  .menu-checkbox:checked ~ .nav-links .search-toggle {
    position: absolute;
    top: 12px;
    left: 12px;
  }
  .menu-checkbox:checked ~ .nav-links .search-toggle img {
    filter: invert(0.6);
  }
  .menu-checkbox:checked ~ .nav-links button {
    display: inline-block;
    height: 38px;
    right: 12px;
    top: 6px;
  }
  .menu-checkbox:checked ~ .nav-links .nav-search-input {
    display: inline-block;
    margin-left -25px;
    padding-left: 48px;
    padding-right: 102px;
    width: 100%;
    height: 50px;
  }

  footer {
    flex-direction: column;
  }
  footer div.col {
    width: 100%;
    gap: 6px;
    margin-top: 1em;
  }

  h1 {
    --h1-size: var(--h1-mobile-size);
  }
  

  main {
    --padding-inline: 32px;
  }

  .home_hero {
    padding-block: 54px 48px;
  }
  h1 {
    --h1-size: 42px;
    line-height: 1.4;
    padding-inline: 30px 21px;
  }
  .home_hero p {
    width: 100%;
    padding-inline: 26px 24px;
  }

  div.row {
    flex-direction: column;
  }

  .featured_vendors div.row {
    padding-block: 25px 0px;
    padding-inline: 17px 17px;
    gap: 17px;
  }

  .vendor_cta {
    flex-direction: column-reverse;
    padding-inline: 0px;
    border-bottom: 1px solid #000;
  }

  .vendor_cta_content {
    max-width: 100%;
    margin-inline: 22px 28px;
  }

  .vendor_cta h2 {
    text-align: center;
  }

  hr {
    display: none;
  }

  .vendor_cta p {
    text-align: center;
  } 
  .vendor_cta img {
    width: 100%;
    max-width: 100%;
  }
  .vendor_cta a.btn {
    margin-inline: auto;
    width: 100%;
    text-align: center;
    white-space: normal;
    text-wrap-style: balance;
  }

  .featured_studies {
    margin-top: 24px;
  }

  .featured_studies h2 {
    margin-inline: 25px;
    padding-inline: 1em; /* to force line break */
    white-space: normal;
    text-align: center;
    text-wrap-style: balance;
  }

  .featured_studies div.row {
    padding-inline: 23px 23px;
  }
 
  .case-study-card h3 {
    padding-block: 38px;
  }

  .quote-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 6rem; /* Adjust as needed */
    margin-top: 41px;
  }

  .quote-slider .float_quote {
    position: absolute;
    top: 0;
    left: 18px;
    width: calc(100% - 36px);
    padding-inline: 6px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
  }

  .quote-slider .float_quote.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
  }

  .quote-slider .float_quote.exit-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
  }

  .faq-section summary::after {
    display: none;
    background-image: none;
  }

}


