.si-page {
  --orange: #ff5c28;
  --orange-soft: #fff0eb;
  --orange-line: #ff5c2838;
  --ink: #1d2939;
  --ink-2: #344054;
  --muted: #344054;
  --line: #eaecf0;
  --line-2: #d0d5dd;
  --bg: #ffffff;
  --bg-alt: #fcfcfd;
  --dark: #101828;
  --radius: 16px;
  --radius-sm: 12px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
.si-page * {
  box-sizing: border-box;
}

.si-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 24px; */
}

.si-section {
  padding: 60px 24px;
}
.si-section--alt {
  background: var(--bg-alt);
}

.si-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18.43px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f15a2c;
  text-align: center;
  margin: 0 0 11px;
}
.si-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 51.84px;
  letter-spacing: -1.68px;
  text-align: center;
  margin: 0 auto 11px;
  max-width: 820px;
  color: inherit;
}
.si-h2 .hl {
  color: var(--orange);
}
.si-lede {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.56px;
  color: var(--muted);
  text-align: center;
  max-width: 710px;
  margin: 0 auto 52px;
}
.si-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  font-size: 0; /* hides the &rarr; text fallback */
  background-color: currentColor; /* inherits the link colour */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.333 8h9.334M8.667 4l4 4-4 4' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 16px 16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.333 8h9.334M8.667 4l4 4-4 4' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 16px 16px no-repeat;
  transition: transform 0.25s ease;
}
a:hover > .si-arrow {
  transform: translateX(3px);
}

/* ---------------- HERO ---------------- */
.si-hero {
  position: relative;
  text-align: center;
  padding: 67px 24px 60px;
}
.si-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    90% 82% at 40% 12%,
    rgba(255, 100, 42, 0.18) 0%,
    rgba(255, 130, 60, 0.05) 40%,
    rgba(255, 160, 80, 0.03) 65%,
    rgba(255, 160, 80, 0) 80%
  );
}
.si-hero .si-container {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  font-family: "DM Sans", "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 19.2px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border: 1px solid var(--orange-line);
  color: var(--orange);
  background: var(--orange-soft);
}
.hero-badge .hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.si-hero h1 {
  font-family: "DM Sans", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 14px auto 0;
  max-width: 720px;
  color: #0f1c2e;
}
.si-hero h1 span.highlight {
  font-family: "DM Sans", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #F15A2C;
}
.si-hero h1 .hl {
  color: var(--orange);
}
.si-hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 28.88px;
  color: #344054;
  max-width: 600px;
  margin: 8px auto;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.25s ease;
}
.hero-cta-primary:hover {
  color: #fff;
  box-shadow: 0 4px 20px 0 #ff5c2852;
  font-size: 15px;
  line-height: 1;
}
.hero-cta-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.hero-cta-primary:hover svg {
  transform: translateX(2px);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 28px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.hero-cta-secondary:hover {
  color: var(--orange);
  font-size: 15px;
  line-height: 1;
}
.si-hero-notes {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}
.si-hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: #64748b;
}
.si-hero-notes li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}
.si-hero-badges {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.si-hero-badges img {
  height: 99px;
  width: auto;
}

/* --- TRUSTED BY TEAMS SECTION --- */
.hero-trusted-section {
  padding: 30px 0;
  position: relative;
}

.hero-trusted-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17.6px;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
  color: #344054;
  margin-bottom: 25px;
}

.hero-trusted-logos {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  width: 100%;
}

.hero-trusted-logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: marquee 30s linear infinite;
  will-change: transform;
  flex-shrink: 0;
  padding-right: 64px;
}

.hero-trusted-logos img {
  max-height: 42px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.85;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.hero-trusted-logos img:hover {
  opacity: 1;
}

.hero-trusted-logos:hover .hero-trusted-logos-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---------------- FEATURE ROWS ---------------- */
.si-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.si-feature-row + .si-feature-row {
  margin-top: 64px;
}
.si-feature-row--imgleft .si-feature-text {
  order: 2;
}
.si-feature-row--imgleft .si-feature-media {
  order: 1;
}
.si-feature-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18.43px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f15a2c;
  margin: 0 0 18px;
}
.si-feature-heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.22px;
  color: var(--ink);
  margin: 0 0 18px;
}
.si-feature-heading .hl {
  color: var(--orange);
}
.si-feature-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21.25px;
  color: var(--muted);
  margin: 0 0 32px;
}
.si-feature-bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.si-feature-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21.25px;
  color: #344054;
}
.si-feature-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M12 6.75L7.76471 11.25L6 9.375' stroke='url(%23p0)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='9' r='6.75' stroke='url(%23p1)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cdefs%3E%3ClinearGradient id='p0' x1='6.2' y1='6.75' x2='12.5' y2='8.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF5722'/%3E%3Cstop offset='1' stop-color='%23FF8F6B'/%3E%3C/linearGradient%3E%3ClinearGradient id='p1' x1='2.7' y1='2.25' x2='17.3' y2='5.3' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF5722'/%3E%3Cstop offset='1' stop-color='%23FF8F6B'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
    center/18px no-repeat;
}
.si-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.25s ease;
}
.si-feature-link:hover {
  color: var(--orange);
  gap: 10px;
  font-size: 14px;
}
.si-feature-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.si-feature-media img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 48px -16px rgba(16, 24, 40, 0.18);
  display: block;
}

/* ---------------- MID CTA BANNER (dark) ---------------- */
.si-midcta {
  max-width: 1100px;
  margin: 0 auto;
}
.si-midcta-inner {
  background: #0f1117;
  border-radius: 14px;
  padding: 44px 38px;
  text-align: center;
}
.si-midcta-inner h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: #fff;
  margin: 0 0 10px;
}
.si-midcta-inner p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #d0d5dd;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ---------------- INTEGRATIONS (Home V2 parity) ---------------- */
.integration-section {
  background: #fcfcfd;
}
.integration-layout {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.integration-left {
  flex: 0 0 380px;
  max-width: 380px;
}
.integration-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18.43px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e8550a;
  margin-bottom: 13px;
}
.integration-header {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1.68px;
  color: #1d2939;
  margin: 0 0 24px;
}
.integration-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #344054;
  margin: 0 0 24px;
}
.integration-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f15a2c;
  box-shadow: 0 8px 32px 0 #e8550a38;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.integration-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.integration-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.integration-cta:hover svg {
  transform: translateX(1px);
}
.integration-right {
  flex: 1;
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ig-card,
.ig-card-more {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.ig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px -4px rgba(13, 21, 36, 0.12);
  border-color: #f4cbb7;
}
.ig-card-more:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px -4px rgba(13, 21, 36, 0.08);
}
.ig-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.ig-card:hover .ig-icon {
  transform: scale(1.1);
}
.ig-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.ig-name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #1d2939;
}
.ig-more-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-more-icon svg {
  width: 20px;
  height: 20px;
}
.ig-more-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #6b7280;
}
.integration-footer {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  line-height: 20px;
  color: #475467;
  text-align: center;
  margin-top: 21px;
}

/* ---------------- CASE STUDIES ---------------- */
.si-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 24px auto 0;
}
.si-case-card {
  position: relative; /* positioning context for the full-card click overlay */
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  padding: 0;
}
.si-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(16, 24, 40, 0.12);
}
.si-case-media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #eef2ff 0%, #dbe6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.si-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.si-case-media .si-case-ph {
  width: 38px;
  height: 38px;
  opacity: 0.7;
}
.si-case-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.si-case-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #98a2b3;
}
.si-case-meta {
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.si-case-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  color: var(--ink);
  margin: 0 0 16px;
  flex-grow: 1;
}
.si-case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.25s ease;
}
.si-case-link:hover {
  color: var(--orange);
  gap: 10px;
  font-size: 14px;
}

.si-case-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
/* Full-card click target: stretch the link over the whole card */
.si-case-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Animate the arrow when hovering anywhere on the card */
.si-case-card:hover .si-case-link {
  gap: 10px;
}
/* Case card content (company / tag / outcomes) */
.si-case-card h3 {
  flex-grow: 0;
}
.si-case-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
}
.si-case-company {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--ink);
}
.si-case-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.76px;
  text-transform: uppercase;
  color: #a3a3a3;
}
.si-case-outcomes {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.si-case-outcomes li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 19px;
  color: #344054;
}
.si-case-outcomes li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10.667 6L6.901 10L5.333 8.333' stroke='url(%23o0)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='8' cy='8' r='6' stroke='url(%23o1)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cdefs%3E%3ClinearGradient id='o0' x1='5.5' y1='6' x2='11.1' y2='7.56' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF5722'/%3E%3Cstop offset='1' stop-color='%23FF8F6B'/%3E%3C/linearGradient%3E%3ClinearGradient id='o1' x1='2.4' y1='2' x2='15.4' y2='4.72' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF5722'/%3E%3Cstop offset='1' stop-color='%23FF8F6B'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
    center / 16px no-repeat;
}
.si-case-link {
  margin-top: auto;
}

/* ---------------- FAQ (Industry Hub parity) ---------------- */
.faq-section {
  padding: 60px 24px;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
  background: transparent;
}
.faq-heading {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #1d2939;
  margin: 0;
}
.faq-subheading {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #64748b;
  max-width: 600px;
  margin: 12px auto 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid #1e285014;
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}
.faq-trigger:focus-visible {
  outline: 2px solid #ff5c28;
  outline-offset: 2px;
  border-radius: 4px;
}
.faq-question {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #1d2939;
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg {
  width: 24px;
  height: 24px;
}
.faq-icon-minus {
  display: none;
}
.faq-icon-plus {
  display: block;
}
.faq-item.active .faq-icon-minus {
  display: block;
}
.faq-item.active .faq-icon-plus {
  display: none;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.active .faq-answer {
  max-height: 600px;
}
.faq-answer-inner {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: #344054;
  padding: 0 0 20px;
}
.faq-answer-inner p {
  margin: 0 0 12px;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ---------------- FINAL CTA (matched to Industry Hub) ---------------- */
.trial-section {
  padding: 60px 30px;
  background: linear-gradient(107.35deg, #0f1117 0%, #1a1d24 100%);
  position: relative;
  overflow: hidden;
}
.trial-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 420px;
  height: 300px;
  background: radial-gradient(
    ellipse at bottom left,
    rgba(232, 85, 10, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.trial-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 300px;
  background: radial-gradient(
    ellipse at top right,
    rgba(232, 85, 10, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.si-final-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.si-final-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff8a5c;
  margin: 0 0 14px;
}
.trial-heading {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 58.57px;
  letter-spacing: -1.9px;
  color: #ffffff;
  margin: 0 0 16px 0;
}
.trial-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 27.72px;
  color: #f2f4f7;
  margin: 0 0 16px 0;
}
.si-final-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.si-final-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #e4e7ec;
}
.si-final-points li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}
.si-final-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5);
}
.si-final-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 6px;
}
.si-final-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #475467;
  margin: 0 0 18px;
}
.si-final-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.si-final-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: #f9fafb;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.si-final-form input[type="email"]:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-line);
  background: #fff;
}
.si-final-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
  text-decoration: none;
}
.si-final-submit:hover {
  color: #fff;
  box-shadow: 0 4px 20px 0 #ff5c2852;
}
.si-final-submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.si-final-submit:hover svg {
  transform: translateX(2px);
}
.si-final-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #98a2b3;
}
.si-final-divider::before,
.si-final-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.si-final-sso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.si-final-sso a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 11px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.si-final-sso a:hover {
  border-color: var(--orange);
  background: #fff7f4;
}
.si-final-sso a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.si-final-terms {
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  line-height: 18px;
  color: #98a2b3;
  margin: 4px 0 0;
  text-align: center;
}
.si-final-terms a {
  color: #667085;
  text-decoration: underline;
}

/* ---------------- SCROLL ANIMATION ---------------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes si-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------------- RESPONSIVE: 992 / 768 / 480 ---------------- */
@media (max-width: 992px) {
  .si-h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .si-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .si-feature-row {
    gap: 40px;
  }
  .integration-header {
    font-size: 38px;
    line-height: 1.2;
  }
  .integration-layout {
    gap: 40px;
  }
  .integration-left {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .trial-heading {
    font-size: 38px;
  }
  .faq-heading {
    font-size: 38px;
    line-height: 44px;
  }
  .si-final-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* base section uses 0 top padding — keep that on mobile */
  .si-section {
    padding: 48px 24px;
  }
  .si-h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .si-lede {
    margin-bottom: 28px;
  }
  .si-feature-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .si-feature-row + .si-feature-row {
    margin-top: 48px;
  }
  .si-feature-row--imgleft .si-feature-text,
  .si-feature-row .si-feature-text {
    order: 2;
  }
  .si-feature-row--imgleft .si-feature-media,
  .si-feature-row .si-feature-media {
    order: 1;
  }
  .si-feature-heading {
    font-size: 22px;
    line-height: 30px;
  }
  .si-cases-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .si-final-points {
    grid-template-columns: 1fr;
  }
  .si-final-sso {
    grid-template-columns: 1fr;
  }
  /* Integration */
  .integration-layout {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .integration-left {
    flex: none;
    max-width: 100%;
  }
  .integration-label,
  .integration-header,
  .integration-desc {
    text-align: center;
  }
  .integration-header {
    line-height: 36px;
  }
  .integration-grid {
    gap: 10px;
  }
  .ig-card,
  .ig-card-more {
    padding: 20px 12px 16px;
  }
  /* Mid CTA + Final */
  .si-midcta-inner {
    padding: 36px 24px;
  }
  .si-midcta-inner h2 {
    font-size: 26px;
  }
  .trial-section {
    padding: 48px 22px;
  }
  .trial-heading {
    font-size: 34px;
    line-height: 42px;
    letter-spacing: -1.1px;
  }
  .trial-desc {
    font-size: 17px;
    line-height: 25px;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  .faq-section {
    padding: 40px 24px;
  }
  .faq-heading {
    font-size: 32px;
    line-height: 38px;
  }
  .faq-question {
    font-size: 15px;
    line-height: 22px;
  }
  /* Trusted-by marquee */
  /* .hero-trusted-section {
    padding: 32px 0;
  } */
  .hero-trusted-logos-track {
    gap: 44px;
    padding-right: 44px;
  }
}

@media (max-width: 480px) {
  .si-hero {
    padding: 48px 24px 40px;
  }
  .si-hero-badges img {
    height: 64px;
  }
  .si-h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .hero-trusted-title {
    padding: 0 24px;
  }
  .si-feature-heading {
    font-size: 20px;
    line-height: 28px;
  }
  .integration-header {
    font-size: 26px;
    line-height: 32px;
  }
  .integration-desc {
    font-size: 15px;
  }
  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .ig-card,
  .ig-card-more {
    padding: 16px 8px 14px;
    border-radius: 12px;
  }
  .ig-icon,
  .ig-icon img,
  .ig-more-icon {
    width: 40px;
    height: 40px;
  }
  .ig-name,
  .ig-more-label {
    font-size: 11px;
  }
  .si-case-body {
    padding: 16px;
  }
  .si-final-card {
    padding: 22px;
  }
  .trial-section {
    padding: 40px 18px;
  }
  .trial-heading {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.8px;
  }
  .trial-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .faq-heading {
    font-size: 26px;
    line-height: 34px;
  }
  /* Trusted-by marquee */
  .hero-trusted-logos-track {
    gap: 32px;
    padding-right: 32px;
  }
  .hero-trusted-logos img {
    max-height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-trusted-logos-track {
    animation: none !important;
  }
  .si-page *,
  .si-page *::before,
  .si-page *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
