*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Source Sans Pro", sans-serif;
  color: #222e2e;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  color: #222e2e;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.st-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.st-header {
  background: #fff;
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.st-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
  gap: 28px;
  padding: 0 40px;
  max-width: none;
  margin: 0;
}
.st-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #285555;
  display: inline-flex;
  align-items: center;
  grid-column: 1;
  justify-self: start;
}
.st-logo img {
  height: 48px;
  width: auto;
}
.st-nav {
  grid-column: 2;
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-self: center;
  height: 100%;
}
.st-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.st-nav-item > a {
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  color: #222e2e;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}
.st-nav-item > a:hover {
  color: #647373;
}
.st-nav-item.is-active > a::after,
.st-nav-item:hover > a::after {
  display: none;
}
.st-nav-item.is-active::after,
.st-nav-item:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #42b757;
  border-radius: 0;
}
.st-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  background: #f4f4f4;
  border: 0;
  border-radius: 0 12px 12px 12px;
  padding: 18px 24px;
  gap: 32px;
  min-width: 280px;
  box-shadow: 0 24px 48px -16px rgba(40, 85, 85, 0.22);
  z-index: 30;
  grid-template-columns: repeat(1, minmax(200px, 1fr));
}
.st-mega[data-cols="2"] {
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  min-width: 520px;
}
.st-nav-item.has-mega:hover .st-mega {
  display: grid;
}
.st-mega[data-cols="2"] {
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  min-width: 520px;
}
.st-nav-item.has-mega:hover .st-mega {
  display: grid;
}
.st-mega-col h5 {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #647373;
  margin: 0 0 8px;
}
.st-mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-mega-col a {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #222e2e;
  padding: 4px 0;
}
.st-mega-col a:hover {
  color: #42b757;
}
.st-header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}
.st-header-collapse {
  display: contents;
}
.st-menu-toggle {
  display: none;
}
.st-menu-btn {
  display: none;
}
.st-menu-overlay {
  display: none;
}

/* Buttons */
.st-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #42b757;
  color: #fff;
  padding: 10px 24px;
  border-radius: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  box-shadow: 0 6px 18px -8px rgba(66, 183, 87, 0.6);
}
.st-header-actions .st-cta {
  color: #fff;
}
.st-header-actions .st-login,
.st-header-actions .st-cta {
  white-space: nowrap;
  flex: 0 0 auto;
}
.st-cta:hover {
  background: #399f4d;
}
.st-cta.lg {
  padding: 16px 32px;
  font-size: 17px;
}
.st-cta-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.15s ease;
}
.st-cta:hover .st-cta-arrow {
  transform: translateX(3px);
}
.st-cta-onDark {
  background: #ffffff;
  color: #285555;
}
.st-cta-onDark:hover {
  background: #f1f5f5;
  color: #285555;
}
/* Designed two-column color variants */
.st-d2c-col.st-d2c-var-soft-green {
  background: #eef7ef;
  color: #111;
}
.st-d2c-col.st-d2c-var-light {
  background: #f4f5f7;
  color: #111;
}
.st-d2c-col.st-d2c-var-white {
  background: #ffffff;
  color: #111;
}
.st-d2c-col.st-d2c-var-brand-green {
  background: #42b757;
  color: #ffffff;
}
.st-d2c-col.st-d2c-var-dark-teal {
  background: #285555;
  color: #ffffff;
}
.st-d2c-col.st-d2c-var-brand-green h2,
.st-d2c-col.st-d2c-var-dark-teal h2 {
  color: #ffffff;
}
.st-testimonials-sub {
  text-align: center;
  color: #4b5563;
  margin: -6px 0 24px;
  font-size: 16px;
}

.st-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #285555;
  padding: 10px 24px;
  border-radius: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid #d2d9da;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}
.st-login:hover {
  color: #647373;
  border-color: #d2d9da;
}

/* Language switcher (hover to open) */
.st-lang {
  position: relative;
  outline: none;
}
.st-lang .st-lang-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  color: #285555;
  font-weight: 600;
  padding: 6px 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  user-select: none;
}
.st-lang .st-lang-flag {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transform: translateY(1px);
}
.st-lang .st-lang-chev {
  transition: transform 0.15s ease;
  opacity: 0.7;
}
.st-lang:hover .st-lang-chev,
.st-lang:focus-within .st-lang-chev {
  transform: rotate(180deg);
}
.st-lang-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 6px;
  min-width: 100%;
  width: max-content;
  list-style: none;
  margin: 0;
  box-shadow: 0 20px 40px -16px rgba(40, 85, 85, 0.25);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition:
    opacity 0.12s ease,
    transform 0.12s ease,
    visibility 0.12s;
}
.st-lang:hover .st-lang-menu,
.st-lang:focus-within .st-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.st-lang-menu li {
  margin: 0;
}
.st-lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #285555;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.st-lang-menu a:hover {
  background: #f4f4f4;
  color: #285555;
}

/* Hero */
:root {
  --st-container: 1200px;
  --st-gutter: 24px;
}
.st-hero {
  padding: 76px 0 78px;
  background: #fff;
  overflow: hidden;
}
.st-hero-layout {
  display: grid;
  grid-template-columns:
    minmax(var(--st-gutter), 1fr)
    minmax(0, 660px)
    minmax(0, 520px)
    minmax(var(--st-gutter), 1fr);
  gap: 48px;
  align-items: center;
}
.st-hero-content {
  grid-column: 2;
  min-width: 0;
}
.st-hero-visual {
  grid-column: 3 / 5;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.st-hero-visual img {
  display: block;
  width: min(760px, 100%);
  height: auto;
}
.st-hero-visual .ph {
  color: #647373;
  font-size: 14px;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecf8ed;
  border-radius: 12px;
}
.st-hero h1 {
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 700;
}
.st-hero-lead {
  font-size: 17px;
  color: #647373;
  margin: 0 0 24px;
  max-width: 36em;
}
.st-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-hero-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 21px;
  color: #222e2e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.st-hero-bullets li > span {
  flex: 1;
  min-width: 0;
}
.st-hero-bullets:not(.has-icon) li {
  padding-left: 24px;
  display: block;
}
.st-hero-bullets:not(.has-icon) li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #42b757;
  font-weight: 700;
}
.st-hero-bullets.has-icon li {
  padding-left: 0;
}
.st-hero-bullet-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 30px;
  object-fit: contain;
  margin-top: 2px;
}
@media (max-width: 1024px) {
  .st-hero-layout {
    grid-template-columns: minmax(var(--st-gutter), 1fr) minmax(0, var(--st-container)) minmax(var(--st-gutter), 1fr);
    gap: 36px;
  }
  .st-hero-content,
  .st-hero-visual {
    grid-column: 2;
  }
  .st-hero-visual {
    justify-content: center;
  }
  .st-hero-visual img {
    width: min(720px, 100%);
  }
}

/* Two-column */
.st-twocol {
  padding: 80px 0;
  background: #fff;
}
.st-twocol + .st-twocol {
  border-top: 1px solid #d2d9da;
}
.st-twocol-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.st-twocol h2 {
  font-size: 32px;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  font-weight: 600;
}
.st-twocol p {
  font-size: 17px;
  color: #647373;
  margin: 0;
}

/* Footer */
.st-footer {
  background: #285555;
  color: #fff;
  padding: 64px 0 32px;
}
.st-footer .st-logo {
  color: #fff;
}
.st-footer-logo {
  display: inline-flex;
  margin-bottom: 40px;
}
.st-footer-logo img {
  height: 48px;
  width: auto;
}
.st-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.st-footer-contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 0;
  white-space: pre-line;
  line-height: 1.6;
}
.st-footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.st-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}
.st-footer-col a:hover {
  color: #fff;
}
.st-footer-certs {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.st-footer-certs img {
  width: 130px;
  height: auto;
  object-fit: contain;
  object-position: right center;
}
.st-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.st-footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.st-footer-legal {
  gap: 24px;
}
.st-footer a {
  color: #fff;
  font-size: 16px;
}
.st-footer a:hover {
  color: #42b757;
}
.st-footer-social {
  gap: 18px !important;
}
.st-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  transition:
    color 0.15s ease,
    opacity 0.15s ease;
  opacity: 0.85;
}
.st-footer-social a:hover {
  color: #fff;
  opacity: 1;
  background: transparent;
}
.st-footer-copy {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 8px 0 0;
}

/* Section headings */
.st-section-heading {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.st-section-sub {
  font-size: 18px;
  color: #647373;
  margin: 0 auto 48px;
  max-width: 36em;
  text-align: center;
}

/* Features */
.st-features {
  padding: 80px 0;
  background: #fff;
}
.st-features-grid {
  display: grid;
  gap: 32px;
}
.st-feature {
  background: #fff;
  border: 1px solid #d2d9da;
  border-radius: 12px;
  padding: 28px;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.st-feature:hover {
  border-color: #42b757;
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -20px rgba(40, 85, 85, 0.25);
}
.st-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ecf8ed;
  color: #42b757;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.st-feature h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
}
.st-feature p {
  color: #647373;
  font-size: 15px;
  margin: 0;
}

/* FAQ section */
.st-faq {
  padding: 96px 0;
  background: #fff;
}

.st-faq-container {
  max-width: 1000px;
}

/* FAQ heading */
.st-faq .st-section-heading {
  margin: 0 0 48px;
  text-align: left;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #285555;
}

/* Remove card gaps */
.st-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Individual FAQ row */
.st-faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d2d9da;
  border-radius: 0;
  overflow: visible;
}

.st-faq-item:first-child {
  border-top: 1px solid #d2d9da;
}

/* Question */
.st-faq-item summary {
  list-style: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;

  padding: 22px 0;

  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #285555;

  transition: color 0.15s ease;
}

.st-faq-item summary > span {
  flex: 1;
}

.st-faq-item summary:hover {
  color: #42b757;
}

.st-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Arrow (left of question) */
.st-faq-arrow {
  flex: 0 0 auto;
  color: #42b757;
  transition: transform 0.2s ease;
}

.st-faq-item[open] .st-faq-arrow {
  transform: rotate(90deg);
}

/* Answer */
.st-faq-answer {
  padding: 0 48px 24px 0;

  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #647373;
}

.st-faq-answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .st-faq {
    padding: 64px 0;
  }

  .st-faq .st-section-heading {
    margin-bottom: 32px;
    font-size: 30px;
  }

  .st-faq-item summary {
    padding: 18px 0;
    font-size: 16px;
  }

  .st-faq-answer {
    padding-right: 24px;
  }
}

/* Text block */
.st-text {
  padding: 80px 0;
  background: #fff;
}
.st-text-container {
  max-width: 820px;
}
.st-text h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-family: "Poppins", sans-serif;
}
.st-text p {
  font-size: 18px;
  color: #222e2e;
  margin: 0 0 18px;
  line-height: 1.7;
}
.st-text p:last-child {
  margin-bottom: 0;
}

/* CTA banner */
.st-ctablock {
  padding: 80px 0;
}
.st-ctablock-bare {
  padding: 32px 0;
  background: transparent;
  text-align: center;
}
.st-ctablock-teal {
  background: #285555;
  color: #fff;
}
.st-ctablock-green {
  background: #42b757;
  color: #fff;
}
.st-ctablock-soft {
  background: #ecf8ed;
}
.st-ctablock-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.st-ctablock h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-family: "Source Sans Pro", sans-serif;
}
.st-ctablock-teal h2,
.st-ctablock-green h2 {
  color: #fff;
}
.st-ctablock p {
  font-size: 18px;
  margin: 0 0 28px;
  opacity: 0.92;
}
.st-ctablock-teal .st-cta,
.st-ctablock-green .st-cta {
  background: #fff;
  color: #285555;
}
.st-ctablock-teal .st-cta:hover,
.st-ctablock-green .st-cta:hover {
  background: #ecf8ed;
  color: #285555;
}

/* Pricing */
.st-pricing {
  padding: 80px 0;
  background: #fff;
}
.st-pl-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.st-pl-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.st-pl-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ecf8ed;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #647373;
}
.st-pl-toggle .opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #647373;
  transition: color 0.15s ease;
}
.st-pl-toggle .opt.is-on {
  color: #285555;
}
.st-pl-toggle .hint {
  background: #42b757;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.st-pl-toggle .track {
  width: 44px;
  height: 24px;
  background: #d2d9da;
  border-radius: 999px;
  position: relative;
  transition: background 0.15s ease;
}
.st-pl-toggle .thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 999px;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.st-pl-toggle-input:checked ~ .st-pl-toggle-label .track {
  background: #42b757;
}
.st-pl-toggle-input:checked ~ .st-pl-toggle-label .thumb {
  transform: translateX(20px);
}
/* Toggle also controls displayed price via checkbox hack */
.st-pl-amount-annual {
  display: none;
}
.st-pl-toggle-input:checked ~ .st-pl-plans-scroller .st-pl-amount-monthly {
  display: none;
}
.st-pl-toggle-input:checked ~ .st-pl-plans-scroller .st-pl-amount-annual {
  display: inline;
}
.st-pl-toggle-input:checked ~ .st-pl-toggle-label .opt.opt-monthly {
  color: #647373;
}
.st-pl-toggle-input:checked ~ .st-pl-toggle-label .opt.opt-annual {
  color: #285555;
}
.st-pl-toggle-input:not(:checked) ~ .st-pl-toggle-label .opt.opt-monthly {
  color: #285555;
}
.st-pl-toggle-input:not(:checked) ~ .st-pl-toggle-label .opt.opt-annual {
  color: #647373;
}

.st-pl-plans-scroller {
  width: 100%;
}
.st-pl-plans {
  display: grid;
  gap: 0;
  align-items: stretch;
}
.st-pl-cols-1 {
  grid-template-columns: minmax(180px, 1.15fr) repeat(1, minmax(0, 1fr));
}
.st-pl-cols-2 {
  grid-template-columns: minmax(180px, 1.15fr) repeat(2, minmax(0, 1fr));
}
.st-pl-cols-3 {
  grid-template-columns: minmax(180px, 1.15fr) repeat(3, minmax(0, 1fr));
}
.st-pl-cols-4 {
  grid-template-columns: minmax(180px, 1.15fr) repeat(4, minmax(0, 1fr));
}
.st-pl-cols-5 {
  grid-template-columns: minmax(180px, 1.15fr) repeat(5, minmax(0, 1fr));
}
.st-pl-cols-6 {
  grid-template-columns: minmax(180px, 1.15fr) repeat(6, minmax(0, 1fr));
}

.st-pl-plan {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 34px 20px 28px;

  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;

  box-shadow: none;
  transform: none;
  transition: background-color 0.15s ease;
}
.st-pl-plan.is-featured {
  background: #eef8ef;
  border: 0;
  box-shadow: none;
  transform: none;
}
.st-pl-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);

  background: #3f4747;
  color: #fff;

  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;

  padding: 6px 12px;
  border-radius: 3px;

  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.st-pl-name {
  margin: 0 0 10px;

  font-family: "Open Sans", sans-serif;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;

  color: #222e2e;
}
.st-pl-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.st-pl-amount {
  font-family: "Open Sans", sans-serif;
  font-size: 46px;
  line-height: 1;
  font-weight: 600;
  color: #42b757;
}
.st-pl-suffix {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #647373;
}
.st-pl-tagline {
  margin: 0 0 38px;
  min-height: 3.2em;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #647373;
}
.st-pl-plan .st-cta {
  width: auto;
  min-width: 120px;
  align-self: center;
  margin-top: auto;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;

  padding: 9px 20px;
}
.st-pl-plan .st-cta-outline {
  background: transparent;
  color: #42b757;
  border: 1px solid #42b757;
  box-shadow: none;
}
.st-pl-plan .st-cta-outline:hover {
  background: #ecf8ed;
  color: #285555;
  border-color: #42b757;
}

.st-pl-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.st-pl-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d2d9da;
  transition:
    background 0.15s ease,
    width 0.15s ease;
}
.st-pl-dots .dot.is-active {
  background: #42b757;
  width: 20px;
}

.st-pl-plan-spacer {
  display: block;
}
.st-pl-table {
  margin-top: 8px;
}
.st-pl-table-heading {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #285555;
  margin: 24px 0 8px;
}
.st-pl-row {
  display: grid;
  align-items: stretch;
  gap: 0;

  padding: 0;
  border-bottom: 1px solid #d8dddd;

  transition: background-color 0.12s ease;
}
.st-pl-row:hover {
  background: #f3f4f4;
}

.st-pl-row:hover .st-pl-cell[data-plan="1"] {
  background: #e5f4e7;
}
.st-pl-row:nth-child(even) {
  background: transparent;
}
.st-pl-row-label {
  display: flex;
  align-items: center;

  padding: 12px 14px;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;

  color: #222e2e;
}
.st-pl-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #285555;
  opacity: 0.55;
  cursor: help;
  outline: none;
}
.st-pl-tip:hover,
.st-pl-tip:focus-visible {
  opacity: 1;
}
.st-pl-tip-bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  min-width: 160px;
  max-width: 260px;
  background: #285555;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 20;
  text-align: left;
}
.st-pl-tip:hover .st-pl-tip-bubble,
.st-pl-tip:focus-visible .st-pl-tip-bubble {
  opacity: 1;
  visibility: visible;
}

.st-pl-cell {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 10px 12px;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;

  color: #222e2e;
  text-align: center;
}
.st-pl-cell[data-plan="1"] {
  background: #eef8ef;
}
.st-pl-yes {
  color: #42b757;
  display: inline-flex;
}
.st-pl-no {
  color: #c93333;
  opacity: 0.55;
  display: inline-flex;
}
.st-pl-text {
  color: #222e2e;
}

.st-pl-modules {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;

  border-top: 1px solid #cfd6d6;
}
.st-pl-module {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.st-pl-module > summary {
  list-style: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 12px;

  border-bottom: 1px solid #cfd6d6;
  background: transparent;

  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;

  color: #222e2e;
}
.st-pl-module > summary::-webkit-details-marker {
  display: none;
}
.st-pl-chev {
  transition: transform 0.2s ease;
  color: #285555;
}
.st-pl-module[open] > summary .st-pl-chev {
  transform: rotate(180deg);
}
.st-pl-module > summary:hover {
  background: #f3f4f4;
}

.st-pl-module .st-pl-table {
  margin: 0;
  border: 0;
}

@media (max-width: 768px) {
  .st-header-inner {
    height: 72px;
  }
  .st-logo img {
    height: 40px;
  }
  .st-hero {
    padding: 56px 0 48px;
  }
  .st-twocol-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .st-hero h1 {
    font-size: 36px;
  }
  .st-hero-lead {
    font-size: 17px;
  }
  .st-hero-bullets li {
    font-size: 16px;
  }
  .st-twocol h2 {
    font-size: 26px;
  }
  .st-twocol {
    padding: 56px 0;
  }
  .st-header-inner {
    height: 72px;
    padding: 0 20px;
    gap: 12px;
    grid-template-columns: auto 1fr auto;
  }
  .st-logo img {
    height: 40px;
  }
  /* Mobile slide-in menu (CSS-only via checkbox hack) */
  .st-menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    justify-self: end;
    background: transparent;
    border-radius: 8px;
    z-index: 60;
  }
  .st-menu-btn span {
    display: block;
    height: 2px;
    background: #285555;
    border-radius: 2px;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
    transform-origin: center;
  }
  .st-menu-toggle:checked ~ .st-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .st-menu-toggle:checked ~ .st-menu-btn span:nth-child(2) {
    opacity: 0;
  }
  .st-menu-toggle:checked ~ .st-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .st-header-collapse {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 88vw);
    background: #fff;
    padding: 88px 24px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 55;
    box-shadow: -20px 0 40px -20px rgba(40, 85, 85, 0.3);
  }
  .st-menu-toggle:checked ~ .st-header-collapse {
    transform: translateX(0);
  }
  .st-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(40, 85, 85, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 50;
  }
  .st-menu-toggle:checked ~ .st-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .st-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
    justify-self: stretch;
  }
  .st-nav-item {
    display: block;
    align-items: stretch;
    border-bottom: 1px solid #ecf8ed;
  }
  .st-nav-item > a {
    padding: 14px 0;
    font-size: 17px;
    display: block;
  }
  .st-nav-item.is-active > a::after,
  .st-nav-item:hover > a::after {
    display: none;
  }
  .st-nav-item.is-active > a {
    color: #42b757;
  }
  /* Mega menu becomes inline accordion-like list on mobile */
  .st-mega,
  .st-nav-item.has-mega .st-mega {
    display: block !important;
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 12px 12px;
    min-width: 0;
    background: transparent;
    grid-template-columns: 1fr !important;
  }
  .st-mega-col {
    margin-bottom: 8px;
  }
  .st-mega-col h5 {
    margin: 8px 0 6px;
  }
  .st-mega-col a {
    font-size: 14px;
    padding: 6px 0;
  }
  .st-header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ecf8ed;
  }
  .st-header-actions .st-login,
  .st-header-actions .st-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .st-lang {
    align-self: flex-start;
  }
  .st-footer-bottom {
    justify-content: flex-start;
  }
  .st-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .st-section-heading {
    font-size: 28px;
  }
  .st-section-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .st-features {
    padding: 56px 0;
  }
  .st-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .st-faq {
    padding: 56px 0;
  }
  .st-text {
    padding: 56px 0;
  }
  .st-text h2 {
    font-size: 28px;
  }
  .st-ctablock {
    padding: 56px 0;
  }
  .st-ctablock h2 {
    font-size: 28px;
  }
  .st-pricing {
    padding: 56px 0;
  }
  .st-pricing .st-container {
    padding-right: 0;
    padding-left: 0;
  }
  .st-pricing > .st-container > .st-section-heading,
  .st-pricing > .st-container > .st-section-sub,
  .st-pricing > .st-container > .st-pl-toggle,
  .st-pricing > .st-container > .st-pl-modules,
  .st-pricing > .st-container > .st-pl-table {
    padding-left: 20px;
    padding-right: 20px;
  }
  .st-pl-plans-scroller {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px 20px 4px;
  }
  .st-pl-plans-scroller::-webkit-scrollbar {
    display: none;
  }
  .st-pl-plans {
    display: flex !important;
    gap: 16px;
    grid-template-columns: none !important;
  }
  .st-pl-plan-spacer {
    display: none !important;
  }
  .st-pl-plan {
    flex: 0 0 82%;
    scroll-snap-align: center;
    transform: none !important;
  }
  .st-pl-dots {
    display: flex;
  }
  .st-pl-row {
    grid-template-columns: 1fr auto !important;
  }
  .st-pl-cell {
    display: none;
  }
  .st-pl-cell.is-active {
    display: flex;
  }
  .st-pl-module > summary {
    padding: 16px;
    font-size: 16px;
  }
  .st-pl-module .st-pl-table {
    margin: 0 12px 12px;
  }
}

/* ---------------- Contact form ---------------- */
.st-cf {
  padding: 56px 0;
}
.st-cf-container {
  max-width: 720px;
}
.st-cf-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.st-cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .st-cf-row {
    grid-template-columns: 1fr;
  }
}
.st-cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.st-cf-label {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.st-cf-form input,
.st-cf-form textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #d4d4d8;
  border-radius: 8px;
  background: #fff;
  color: #111;
  width: 100%;
}
.st-cf-form input:focus,
.st-cf-form textarea:focus {
  outline: 2px solid #10b981;
  outline-offset: 1px;
  border-color: transparent;
}
.st-cf-form textarea {
  resize: vertical;
  min-height: 120px;
}
.st-cf-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.st-cf-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}
.st-cf-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 14px;
}
.st-cf-status.is-ok {
  color: #059669;
}
.st-cf-status.is-err {
  color: #dc2626;
}
.st-cf-recaptcha {
  margin-top: 4px;
}

/* Text + image block (contained width, no bleed) */
.st-textimg {
  padding: 72px 0;
  background: #fff;
}
.st-textimg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.st-textimg-grid[data-image="left"] .st-textimg-content {
  order: 2;
}
.st-textimg-grid[data-image="left"] .st-textimg-visual {
  order: 1;
}
.st-textimg-content h2 {
  font-size: 32px;
  margin: 0 0 16px;
}
.st-textimg-content p {
  font-size: 17px;
  margin: 0 0 20px;
  color: #4a5a5a;
}
.st-textimg-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.st-textimg-cta {
  margin-top: 8px;
}
@media (max-width: 900px) {
  .st-textimg-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .st-textimg-grid[data-image="left"] .st-textimg-content,
  .st-textimg-grid[data-image="left"] .st-textimg-visual {
    order: initial;
  }
}

/* Designed two-column: full-bleed background per side, bottom-aligned CTAs. */
.st-d2c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.st-d2c-col {
  padding: 72px 0;
  display: flex;
}
.st-d2c-inner {
  width: 100%;
  max-width: calc(var(--sb-container, 1200px) / 2);
  padding: 0 32px;
  display: flex;
  flex-direction: column;
}
.st-d2c-left .st-d2c-inner {
  margin-left: auto;
}
.st-d2c-right .st-d2c-inner {
  margin-right: auto;
}
.st-d2c h2 {
  font-size: 30px;
  margin: 0 0 16px;
}
.st-d2c p {
  font-size: 17px;
  margin: 0 0 20px;
}
.st-d2c-cta {
  margin-top: auto;
  padding-top: 8px;
}
@media (max-width: 900px) {
  .st-d2c {
    grid-template-columns: 1fr;
  }
  .st-d2c-col {
    padding: 48px 0;
  }
  .st-d2c-inner {
    max-width: none;
    padding: 0 24px;
    margin: 0 auto;
  }
}

/* Integrations block */
.st-integrations {
  padding: 64px 0;
  background: #fff;
}
.st-integrations-heading {
  text-align: center;
  font-size: 28px;
  margin: 0 0 8px;
}
.st-integrations-sub {
  text-align: center;
  color: #64748b;
  margin: 0 0 32px;
}
.st-integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
}
.st-integration {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.st-integration img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.st-integration:hover img {
  transform: scale(1.05);
}
.st-integration .ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 56px;
  padding: 0 16px;
  border: 1px dashed #d4d4d8;
  border-radius: 6px;
  color: #9ca3af;
  font-size: 12px;
}
.st-integrations-reel {
  overflow: hidden;
  position: relative;
}
.st-integrations-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: st-integrations-scroll 30s linear infinite;
}
.st-integrations-reel:hover .st-integrations-track {
  animation-play-state: paused;
}
@keyframes st-integrations-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Testimonials block */
.st-testimonials {
  position: relative;
  padding: 72px 0 96px;
  background: #f5f9f7;
}
.st-testimonials .st-container {
  position: relative;
}
.st-testimonials-heading {
  text-align: center;
  font-size: 32px;
  margin: 0 0 32px;
}
.st-testimonials-viewport {
  overflow: hidden;
  border-radius: 12px;
}
.st-testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
}
.st-testimonial {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.st-testimonial-text {
  position: relative;
  padding-top: 40px;
}
.st-testimonial-quote {
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 96px;
  line-height: 1;
  color: #42b757;
  font-family: Georgia, serif;
  opacity: 0.6;
}
.st-testimonial-text h3 {
  font-size: 22px;
  margin: 0 0 6px;
}
.st-testimonial-sub {
  font-size: 14px;
  color: #6b7c7c;
  margin: 0 0 12px;
  font-weight: 500;
}

.st-testimonial-text p {
  font-size: 17px;
  color: #4a5a5a;
  margin: 0 0 12px;
}
.st-testimonial-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.st-testimonial-image .ph {
  width: 100%;
  aspect-ratio: 4/3;
  background: #eef4f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}
.st-testimonials-dots {
  position: absolute;
  top: 60px;
  right: 72px;
  display: inline-flex;
  gap: 8px;
  z-index: 2;
}
.st-testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #cbd5d1;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease;
}
.st-testimonials-dot:hover {
  background: #94a3a0;
}
.st-testimonials-dot.is-active {
  background: #42b757;
}
.st-testimonials-cta {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .st-testimonial {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 24px;
  }
}

/* ============ Feature grid (2-col, upper tiles shift outside) ============ */
.st-fg {
  padding: 80px 0;
  overflow: hidden;
  background: #fff;
}

.st-fg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.st-fg-tiles {
  display: grid;
  grid-template-columns: repeat(2, 230px);
  gap: 30px;
}

/* Keep the slightly offset arrangement used on desktop */
.st-fg-tiles > .st-fg-tile:nth-child(1),
.st-fg-tiles > .st-fg-tile:nth-child(2) {
  transform: translateX(-50%);
}

.st-fg-tile {
  aspect-ratio: 1 / 1;
  min-width: 0;
  padding: 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  text-align: center;
  background: #f4f6f6;
  border-radius: 8px;
  box-shadow: 0 12px 32px -18px rgba(40, 85, 85, 0.3);
}

/* Different background for the first tile */
.st-fg-tile:nth-child(1) {
  background: rgba(66, 183, 87, 0.1);
}

/* Different background for the last tile */
.st-fg-tile:nth-child(4) {
  background: #295555;
}

/* Icon without a surrounding box */
.st-fg-tile-icon {
  width: auto;
  height: auto;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border-radius: 0;
  color: #42b757;
}

.st-fg-tile-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.6;
}

.st-fg-tile h3 {
  margin: 0;
  max-width: 180px;

  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: #285555;
}

.st-fg-right h2 {
  margin: 0 0 20px;

  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  color: #285555;
}

.st-fg-body {
  margin: 0 0 12px;

  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #4a5b5b;
}

.st-fg-right .st-hero-bullets {
  margin: 16px 0 24px;
}

/* Secondary CTA — same visual behaviour as header login button */
.st-fg-right .st-cta-outline {
  background: #fff;
  color: #285555;
  border: 1px solid #d2d9da;
  box-shadow: none;

  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.st-fg-right .st-cta-outline:hover {
  background: #fff;
  color: #647373;
  border-color: #d2d9da;
  transform: none;
}

@media (max-width: 900px) {
  .st-fg {
    padding: 64px 0;
  }

  .st-fg-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .st-fg-tiles > .st-fg-tile:nth-child(1),
  .st-fg-tiles > .st-fg-tile:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 520px) {
  .st-fg-tiles {
    gap: 12px;
  }

  .st-fg-tile {
    padding: 18px 12px;
    gap: 12px;
    border-radius: 14px;
  }

  .st-fg-tile-icon svg {
    width: 36px;
    height: 36px;
  }

  .st-fg-tile h3 {
    font-size: 15px;
  }
}

.st-fg-tile:nth-child(4) h3,
.st-fg-tile:nth-child(4) .st-fg-tile-icon {
  color: #f5f5f5;
}

/* ============ Feature tabs ============ */
.st-ftabs {
  padding: 64px 0;
}
.st-ftabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.st-ftabs-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.st-ftabs-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  min-width: 140px;
  border-radius: 14px;
  cursor: pointer;
  color: #285555;
  border: 2px solid transparent;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
  background: transparent;
  font: inherit;
}
.st-ftabs-tab:hover {
  background: #f2f7f5;
}
.st-ftabs-tab-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #eaf6ec;
  color: #42b757;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-ftabs-tab-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
}
/* Radios live at the top of .st-ftabs-wrap so the general-sibling combinator
   can reach both the nav labels and the panels. Visually hidden. */
.st-ftabs-wrap {
  position: relative;
}
.st-ftabs-radio {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}
/* Active tab: Nth radio checked -> Nth label inside .st-ftabs-nav. */
.st-ftabs-radio:nth-of-type(1):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(1),
.st-ftabs-radio:nth-of-type(2):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(2),
.st-ftabs-radio:nth-of-type(3):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(3),
.st-ftabs-radio:nth-of-type(4):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(4),
.st-ftabs-radio:nth-of-type(5):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(5),
.st-ftabs-radio:nth-of-type(6):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(6),
.st-ftabs-radio:nth-of-type(7):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(7),
.st-ftabs-radio:nth-of-type(8):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(8) {
  border-color: #42b757;
  background: #fff;
}
.st-ftabs-radio:nth-of-type(1):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(1) .st-ftabs-tab-icon,
.st-ftabs-radio:nth-of-type(2):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(2) .st-ftabs-tab-icon,
.st-ftabs-radio:nth-of-type(3):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(3) .st-ftabs-tab-icon,
.st-ftabs-radio:nth-of-type(4):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(4) .st-ftabs-tab-icon,
.st-ftabs-radio:nth-of-type(5):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(5) .st-ftabs-tab-icon,
.st-ftabs-radio:nth-of-type(6):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(6) .st-ftabs-tab-icon,
.st-ftabs-radio:nth-of-type(7):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(7) .st-ftabs-tab-icon,
.st-ftabs-radio:nth-of-type(8):checked ~ .st-ftabs-nav > .st-ftabs-tab:nth-of-type(8) .st-ftabs-tab-icon {
  background: #42b757;
  color: #fff;
}
/* Panels: default hide all, show the one matching the checked radio. */
.st-ftabs-panels {
  position: relative;
}
.st-ftabs-panel {
  display: none;
}
.st-ftabs-radio:nth-of-type(1):checked ~ .st-ftabs-panels > .st-ftabs-panel[data-tab-index="0"],
.st-ftabs-radio:nth-of-type(2):checked ~ .st-ftabs-panels > .st-ftabs-panel[data-tab-index="1"],
.st-ftabs-radio:nth-of-type(3):checked ~ .st-ftabs-panels > .st-ftabs-panel[data-tab-index="2"],
.st-ftabs-radio:nth-of-type(4):checked ~ .st-ftabs-panels > .st-ftabs-panel[data-tab-index="3"],
.st-ftabs-radio:nth-of-type(5):checked ~ .st-ftabs-panels > .st-ftabs-panel[data-tab-index="4"],
.st-ftabs-radio:nth-of-type(6):checked ~ .st-ftabs-panels > .st-ftabs-panel[data-tab-index="5"],
.st-ftabs-radio:nth-of-type(7):checked ~ .st-ftabs-panels > .st-ftabs-panel[data-tab-index="6"],
.st-ftabs-radio:nth-of-type(8):checked ~ .st-ftabs-panels > .st-ftabs-panel[data-tab-index="7"] {
  display: grid;
}
.st-ftabs-panel {
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.st-ftabs-content h3 {
  font-family: "Poppins", sans-serif;
  color: #285555;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px;
}
.st-ftabs-content p {
  font-family: "Open Sans", sans-serif;
  color: #4a5b5b;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.st-ftabs-content .st-hero-bullets {
  margin: 16px 0 24px;
}
.st-ftabs-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.st-ftabs-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.st-ftabs-visual .ph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  width: 100%;
  background: #f2f7f5;
  color: #7a8a8a;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
}
/* React preview uses button.st-ftabs-tab + is-active class instead of radio hack. */
.st-ftabs-tab.is-active {
  border-color: #42b757;
  background: #fff;
}
.st-ftabs-tab.is-active .st-ftabs-tab-icon {
  background: #42b757;
  color: #fff;
}
/* When React drives tabs, always show a single .st-ftabs-panel (no radio siblings). */
.st-ftabs-panels > .st-ftabs-panel:only-child {
  display: grid;
}
@media (max-width: 900px) {
  .st-ftabs-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .st-ftabs-tab {
    min-width: 120px;
    padding: 14px 16px;
  }
}

/* Hero marketing badge above the heading. */
.st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin: 0 0 16px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  line-height: 1;
}
.st-hero-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #4b5563;
}
.st-hero-badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Image grid block */
.st-imggrid {
  padding: 60px 0;
}
.st-imggrid-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px 0 32px;
}
.st-imggrid-grid {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .st-imggrid-grid[data-columns="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .st-imggrid-grid[data-columns="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.st-imggrid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
}
.st-imggrid-item img {
  max-width: 100%;
  height: auto;
  display: block;
}
.st-imggrid-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.st-imggrid-link:hover .st-imggrid-title {
  color: #42b757;
}
.st-imggrid-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: #285555;
}
.st-imggrid-ctas .st-cta-outline {
  background: transparent;
  color: #285555;
  border: 1px solid #285555;
  box-shadow: none;
}
.st-imggrid-ctas .st-cta-outline:hover {
  background: #285555;
  color: #fff;
}
.st-faq-arrow {
  transition: transform 0.2s ease;
}
img.st-faq-arrow {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.st-faq-item[open] .st-faq-arrow {
  transform: rotate(90deg);
}

/* Image block (centered, content-width) */
.st-fwimg {
  padding: 56px 0;
  background: #fff;
}
.st-fwimg-container {
  text-align: center;
}
.st-fwimg h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  font-family: "Poppins", sans-serif;
}
.st-fwimg-media {
  margin: 0 auto;
  max-width: 100%;
}
.st-fwimg-media img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .st-fwimg {
    padding: 40px 0;
  }
  .st-fwimg h2 {
    font-size: 28px;
  }
  .st-fwimg-media {
    width: 100% !important;
  }
}

/* Three-column */
.st-threecol {
  padding: 80px 0;
  background: #fff;
}
.st-threecol-heading {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}
.st-threecol-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.st-threecol-col h3 {
  font-size: 24px;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.st-threecol-col p {
  font-size: 17px;
  color: #647373;
  margin: 0;
  white-space: pre-line;
}
@media (max-width: 900px) {
  .st-threecol-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .st-threecol {
    padding: 56px 0;
  }
  .st-threecol-heading {
    font-size: 30px;
    margin-bottom: 28px;
  }
}

/* ---------------- Blog listing ---------------- */
.st-blog {
  padding: 72px 0 96px;
  background: #fff;
}
.st-blog-head {
  max-width: 820px;
  margin: 0 0 32px;
}
.st-blog-head h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.st-blog-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #222e2e;
  margin: 16px 0 0;
}
.st-blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.st-blog-cat {
  border: 1px solid #dfe6e4;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  color: #285555;
}
.st-blog-cat:hover,
.st-blog-cat.is-current {
  background: #42b757;
  border-color: #42b757;
  color: #fff;
}
.st-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}
.st-blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e7edeb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.st-blog-card:hover {
  box-shadow: 0 12px 32px rgba(40, 85, 85, 0.1);
  transform: translateY(-2px);
}
.st-blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f2f6f5;
  overflow: hidden;
}
.st-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.st-blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}
.st-blog-card-date {
  font-size: 13px;
  color: #6d8383;
}
.st-blog-card-title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.st-blog-card-title a {
  color: #285555;
}
.st-blog-card-title a:hover {
  color: #42b757;
}
.st-blog-card-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: #4a5f5f;
  margin: 0;
}
.st-blog-card-link {
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: #42b757;
}
.st-blog-empty {
  font-size: 16px;
  color: #6d8383;
}
.st-blog-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 56px;
}
.st-blog-pager-nums {
  display: inline-flex;
  gap: 6px;
}
.st-blog-pager-num,
.st-blog-pager-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #dfe6e4;
  border-radius: 8px;
  font-size: 15px;
  color: #285555;
}
.st-blog-pager-num.is-current {
  background: #285555;
  border-color: #285555;
  color: #fff;
}
.st-blog-pager-num:hover,
.st-blog-pager-nav:hover {
  border-color: #42b757;
  color: #42b757;
}

/* ---------------- Blog post ---------------- */
.st-post {
  padding: 64px 0 96px;
  background: #fff;
}
.st-post-head {
  max-width: 820px;
}
.st-post-cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #42b757;
  margin-bottom: 14px;
}
.st-post-head h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.st-post-date {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: #6d8383;
}
.st-post-media {
  max-width: 820px;
  margin-top: 32px;
}
.st-post-media img {
  width: 100%;
  border-radius: 12px;
}
.st-post-body .st-blog-block {
  padding: 32px 0 0;
}
.st-post-body .st-blog-block .st-container {
  max-width: 820px;
  margin: 0 auto;
}
.st-post-foot {
  max-width: 820px;
  margin-top: 48px;
}
.st-post-back {
  font-size: 15px;
  font-weight: 600;
  color: #42b757;
}

@media (max-width: 900px) {
  .st-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .st-blog {
    padding: 48px 0 64px;
  }
  .st-blog-head h1 {
    font-size: 32px;
  }
  .st-blog-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .st-post-head h1 {
    font-size: 30px;
  }
  .st-blog-pager {
    flex-wrap: wrap;
  }
}
