/* -- VARIABLES -- */
:root {
  --orange: #ff5c28;
  --orange-2: #f15a2c;
  --orange-soft: #fff0eb;
  --orange-line: #ff5c2838;
  --ink: #1d2939;
  --ink-2: #344054;
  --muted: #344054;
  --muted-2: #667085;
  --line: #eaecf0;
  --line-2: #d0d5dd;
  --bg: #ffffff;
  --bg-alt: #fcfcfd;
  --dark: #0f1117;
  --dark-card: #1a1d24;
  --dark-line: #ffffff1f;
  --green: #12b76a;
  --green-soft: #ecfdf3;
  --green-line: #d1fadf;
  --green-ink: #027a48;
  --amber-ink: #b54708;
  --red-ink: #d92d20;
  --font-main: "Inter", sans-serif;
}

.cmp-page {
  font-family: var(--font-main) !important;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

.cmp-page *,
.cmp-page *::before,
.cmp-page *::after {
  box-sizing: border-box;
}
.cmp-container {
  max-width: 1200px;
  margin: 0 auto;
}
.cmp-section {
  padding: 64px 24px;
}
.cmp-section--alt {
  background: #fafafa;
}
.cmp-section--dark {
  background: var(--dark);
  color: #fff;
  padding: 64px 24px;
}

.cmp-eyebrow {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  line-height: 16.8px;
  letter-spacing: 1.47px;
  text-transform: uppercase;
  color: #f15a29;
  text-align: center;
  margin: 0 0 16px;
}
.cmp-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto 11px;
  max-width: 820px;
  color: #0f1f38;
}
.cmp-lede {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #344054;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}
.cmp-section--dark .cmp-lede {
  color: #98a2b3;
}
.cmp-fa {
  color: var(--orange-2);
}

/* ---------------- HERO & METRICS TILES (From Case Study) ---------------- */
.cs-hero {
  padding: 80px 10px 60px 10px;
  position: relative;
  overflow: hidden;
}
.cs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    90% 42% at 30% 10%,
    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%
  );
}
.cs-hero > .cmp-container {
  position: relative;
  z-index: 1;
}
.cs-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-family: "DM Sans", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  border-radius: 100px;
  white-space: nowrap;
  color: var(--orange);
  background: var(--orange-soft);
  border: 1px solid var(--orange-line);
}
.cs-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--orange);
}

.cs-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
  margin-bottom: 48px;
  text-align: left;
}
.cs-hero__content {
  width: 700px;
  max-width: 100%;
}
.cs-hero__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -1.5px;
  color: #0f1c2e;
  margin: 0 0 16px;
  max-width: 100%;
}
.cs-hero__desc {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 28.88px;
  color: #344054;
  margin: 0 0 28px;
  max-width: 520px;
}

.cs-hero__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  border-radius: 16px;
}
.cs-hero__logo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 60px -24px rgba(16, 24, 40, 0.22);
}

.cs-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  padding: 0;
  overflow: hidden;
  margin-top: 24px;
}
.cs-metrics__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 2px;
  padding: 16px;
  border: 1px solid #f2f4f7;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  background: #fff;
}
.cs-metrics__item:hover {
  background: #fff7f4;
  border-color: #fff7f4;
}
.cs-metrics__value {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 27px;
  letter-spacing: -1.08px;
  color: #1d2939;
  transition: color 0.5s ease;
}
.cs-metrics__item:hover .cs-metrics__value {
  color: var(--orange-2);
}
.cs-metrics__label {
  font-size: 14px;
  line-height: 16.1px;
  color: #344054;
}

/* ---------------- UNIVERSAL BUTTONS (Replaces .btn-primary) ---------------- */
.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.2s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border: none;
  line-height: 1;
  white-space: nowrap;
}
.cs-btn--primary {
  background: var(--orange);
  color: #fff;
}
.cs-btn--primary:hover {
  color: #fff;
  box-shadow: 0px 4px 20px 0px #ff5c2852;
  font-size: 15px;
  line-height: 1;
}
.cs-btn--primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  stroke: #fff;
}
.cs-btn--primary:hover svg {
  transform: translateX(2px);
}

.cs-btn--outline {
  background: #fff;
  color: #344054;
  border: 1.5px solid #0f1c2e29;
}
.cs-btn--outline:hover {
  color: var(--orange);
  font-size: 15px;
  line-height: 1;
}
.cs-cta__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------------- LIST STYLES ---------------- */
.cmp-hero-notes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: var(--muted-2);
}
.cmp-hero-notes li {
  font-family: var(--font-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cmp-hero-notes li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}

/* ---------------- TRUST BAR (marquee) ---------------- */
.cmp-trusted {
  padding: 30px 0 56px;
  position: relative;
}
.cmp-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;
}
.cmp-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%;
}
.cmp-trusted-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: marquee 30s linear infinite;
  will-change: transform;
  flex-shrink: 0;
  padding-right: 64px;
}
.cmp-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;
}
.cmp-trusted-logos img:hover {
  opacity: 1;
}
.cmp-trusted-logos:hover .cmp-trusted-track {
  animation-play-state: paused;
}
@keyframes cmp-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---------------- VERDICT / SHORT VERSION (dark, left) ---------------- */
.cmp-verdict {
  background: transparent; /* was var(--dark) — band is now the inner card */
  color: #fff;
  padding: 40px 24px; /* white gap around the rounded card */
}
.cmp-verdict .cmp-container {
  background: #0f1117;
  border-radius: 8px;
  padding: 60px 68px; /* inner spacing inside the dark card */
}
.cmp-verdict .cmp-eyebrow {
  text-align: left;
}
.cmp-verdict-head {
  max-width: 920px;
}
.cmp-verdict-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 12px;
}
.cmp-verdict-sub {
  font-size: 16px;
  line-height: 25px;
  color: #98a2b3;
  margin: 0 0 4px;
  max-width: 760px;
}
.cmp-verdict-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.cmp-verdict-card {
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  padding: 17px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.cmp-verdict-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-line);
}
.cmp-verdict-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
}
.cmp-verdict-card p {
  margin: 0;
  font-size: 14px;
  line-height: 23px;
  color: #e9ecf1;
}
.cmp-verdict-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 820px;
}
.cmp-verdict-list li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #e9ecf1;
}
.cmp-verdict-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------------- COMPARISON TABLE ---------------- */
.cmp-table-wrap {
  margin-top: 28px;
  border-radius: 12px;
  border: 1px solid var(--line-2, #d0d5dd);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
}
table.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border: none;
  display: table;
  table-layout: fixed; /* Forces consistent column widths across multiple tables */
}

/* Enforce consistent column widths to ensure perfect alignment */
.cmp-table th:nth-child(1) {
  width: 40%;
}
.cmp-table th:nth-child(2) {
  width: 30%;
}
.cmp-table th:nth-child(3) {
  width: 30%;
}

.cmp-table th,
.cmp-table td {
  font-family: var(--font-main);
  padding: 15px 20px;
  text-align: left;
  font-size: 14px;
  vertical-align: middle;
  border: none !important;
  border-bottom: 1px solid #e4eaf2 !important;
}
.cmp-table thead th {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  color: #1d2939;
  background: #fff;
  border-bottom: 2px solid #cdd4df !important;
}
.cmp-table thead th.cmp-col-fa {
  background: #e8531a;
  color: #fff;
  border-bottom: 2px solid #e8531a !important;
}
.cmp-table tbody tr:last-child td {
  border-bottom: 0 !important;
}
.cmp-table tbody tr:hover td {
  background: #f9fafb;
}
.cmp-feature {
  font-weight: 400;
  color: #344054;
}
.cmp-table td.cmp-col-fa {
  background: #fff8f4;
}
.cmp-table tbody tr:hover td.cmp-col-fa {
  background: #fff3ec;
}
.cmp-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
}
.cmp-col-fa .cmp-cell {
  color: #039855;
}
.cmp-col-cp .cmp-cell {
  color: #dc9b03;
}
.cmp-col-cp.is-no .cmp-cell {
  color: #d92d20;
}
.cmp-ic {
  flex-shrink: 0;
}
.cmp-group-row td {
  font-family: var(--font-main);
  background: #f9fafb;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #344054;
  /* border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line) !important; */
}

.cmp-table-foot {
  font-family: var(--font-main);
  background: #f7f9fc;
  padding: 12px 20px;
  font-size: 12px;
  line-height: 18px;
  color: #7a8a9c;
  border-top: 1px solid #e4eaf2;
  margin: 0;
}
.cmp-table-foot strong {
  color: var(--ink-2);
}

.cmp-bottom-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.cmp-bottom-cta-link {
  font-family: var(--font-main);
  display: inline-block;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 14px 28px;
  border: 1px solid #ff5c28;
  border-radius: 12px;
  background: #ff5c28;
}
.cmp-bottom-cta-link:hover {
  background: var(--orange-2);
  color: #fff;
}

.cmp-expand {
  margin-top: 24px;
  text-align: center;
}
.cmp-expand-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--gra, #FF5722);
  border-radius: 10px;
  padding: 13px 20px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  color: #475467;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.cmp-expand-btn span {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  color: #475467;
}
.cmp-expand-btn:hover {
  background: #e9ecf1;
  color: var(--orange);
}
.cmp-expand-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}
.cmp-expand-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.cmp-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cmp-full.is-open {
  max-height: 6000px;
}
.cmp-full .cmp-table-wrap {
  margin-top: 20px;
}

/* ---------------- STRENGTHS (card grid) ---------------- */
.cmp-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.cmp-strength {
  background: #fff;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  padding: 22px 25px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.cmp-strength:hover {
  transform: translateY(-4px);
  box-shadow: 0px 2px 16px 0px #0f1f3812;
}
.cmp-strength-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}
.cmp-strength-ic {
  width: auto;
  height: auto;
  display: flex;
}
.cmp-strength-label {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #1d2939;
  margin: 0;
}
.cmp-bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 8px;
  margin-bottom: 18px;
}
.cmp-bar-row:last-child {
  margin-bottom: 0;
}
.cmp-bar-name {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: #344054;
}
.cmp-bar-val {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #1d2939;
  white-space: nowrap;
}
.cmp-bar {
  grid-column: 1 / -1;
  grid-row: 2;
  height: 10px;
  border-radius: 100px;
  background: #e9ecf1;
  overflow: hidden;
}
.cmp-bar-fill {
  display: block;
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.is-visible .cmp-bar-fill {
  width: var(--target-w, 0);
}
.cmp-bar-fill--fa {
  background: #ff5722;
}
.cmp-bar-fill--cp {
  background: #98a2b3;
}
.cmp-bar-val {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #1d2939;
  white-space: nowrap;
}

/* ---------------- VALUE PER SEAT ---------------- */
.cmp-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  align-items: stretch;
} /* stretch for equal height */
.cmp-value-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cmp-value-col--fa {
  border: 1px solid #e8531a;
  box-shadow:
    0px 0px 0px 4px #e8531a0f,
    0px 4px 32px 0px #0f1f381a;
}
.cmp-value-col--cp {
  border: 1px solid #cdd4df;
  box-shadow:
    0px 0px 0px 4px #e8531a0f,
    0px 4px 32px 0px #0f1f381a;
}
.cmp-value-head {
  padding: 20px 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cmp-value-col--fa .cmp-value-head {
  background: #e8531a;
  border-bottom: 1px solid #e8531a;
  color: #fff;
}
.cmp-value-col--cp .cmp-value-head {
  background: #e9ecf1;
  color: var(--ink);
  border-bottom: 1px solid #e9ecf1;
}
.cmp-value-head small {
  font-weight: 500;
  font-size: 12.5px;
  opacity: 0.9;
}
.cmp-value-body {
  padding: 8px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cmp-value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block; /* drop the grid gap; borders + padding do the spacing now */
}
.cmp-value-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 21px;
  color: var(--ink-2);
  padding: 11px 0;
}
.cmp-value-list li span {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 23px;
  color: #3d4e63;
}
.cmp-value-list li:last-child {
  border-bottom: none;
}

/* per-box divider colors */
.cmp-value-col--fa .cmp-value-list li {
  border-bottom: 1px solid #f7f9fc;
}
.cmp-value-col--cp .cmp-value-list li {
  border-bottom: 1px solid #f2f4f7;
}
.cmp-value-list .cmp-mark {
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
  line-height: 18px;
}
.cmp-value-col--fa-list .cmp-mark {
  color: var(--orange-2);
}
.cmp-seat--included .cmp-mark {
  color: var(--muted-2);
}
.cmp-seat--partial .cmp-mark {
  color: var(--amber-ink);
}
.cmp-seat--not_available {
  color: var(--muted-2);
}
.cmp-seat--not_available .cmp-mark {
  color: #98a2b3;
}
.cmp-value-closing {
  max-width: 100%;
  margin: 24px 0 0;
  background: #fef6ef;
  border: 1px solid #e8531a26;
  border-radius: 16px;
  padding: 23px 27px;
  text-align: left;
}
.cmp-value-closing-text {
  margin: 0 0 14px;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 24px;
  color: var(--ink-2);
}
.cmp-value-closing strong {
  font-weight: 700;
  color: var(--ink);
}
.cmp-value-closing p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 24px;
  color: var(--ink-2);
}
.cmp-value-closing-review {
  padding: 11px 15px;
  border: 1px solid #d97706;
  border-radius: 10px;
  border-style: dashed;
  background: #fffbeb;
}
.cmp-value-closing-review span {
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 21px;
  color: #b58108;
}
/* .cmp-review-pending {
  display: inline-block;
  border: 1px dashed var(--orange);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 16px;
  color: var(--orange-2);
} */

/* ---------------- WHY TEAMS MOVE ---------------- */
.cmp-moments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  align-items: stretch; /* equal-height cards */
}
.cmp-moment {
  position: relative;
  background: #fff;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  box-shadow: 0px 2px 16px 0px #0f1f3812;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  background-image: none !important;
}
.cmp-moment::before {
  content: none;
} /* kill the old full-height bar if present */

/* content area carries the orange bar */
.cmp-moment-body {
  position: relative;
  padding: 14px 26px;
  flex-grow: 1; /* pushes green panel to bottom */
}
.cmp-moment-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: #ff5722;
}
.cmp-moment h3,
.cmp-moment span,
.cmp-moment li {
  background: transparent !important;
}
.cmp-moment:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
}
.cmp-moment h3 {
  margin: 0 0 9px;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: #1d2939;
}
.cmp-moment-points {
  list-style: none;
  /* margin: 14px 0 0; */
  padding: 0;
  display: grid;
  gap: 9px;
}
.cmp-moment-points li {
  display: flex;
  align-items: flex-start; /* tick aligns to first line */
  gap: 9px; /* space between tick and text */
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 23px;
  color: #344054;
}
.cmp-moment-points li span {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 23px;
  color: #344054;
}
.cmp-moment-points .cmp-li-ic {
  flex-shrink: 0;
  margin-top: 1px; /* nudge tick to sit on the text baseline */
}
.cmp-moment-fix {
  margin: 0;
  margin-top: auto;
  min-height: 92px; /* keeps green panels visually even across the row */
  background: #d1fadf !important;
  border-top: 1px solid #15803d26;
  padding: 13px 26px;
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 21px;
  color: #027a48;
}
.cmp-moment-fix strong {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  line-height: 21px;
  color: #027a48;
}

/* ---------------- PLATFORM (Capabilities replacing original layout) ---------------- */
.cmp-platform .integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.cmp-platform .ig-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.cmp-platform .ig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
}
.cmp-platform .ig-icon {
  max-width: 56px;
  border-radius: 12px;
  overflow: hidden;
}
.cmp-platform .ig-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.cmp-platform .ig-name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.cmp-platform .integration-desc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.cmp-platform .integration-desc li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 21px;
  color: var(--ink-2);
}

/* ---------------- PLATFORM (alternating feature rows) ---------------- */
.cmp-plat-rows {
  margin-top: 48px;
  display: grid;
  gap: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.cmp-plat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cmp-plat-row--imgleft .cmp-plat-text {
  order: 2;
}
.cmp-plat-row--imgleft .cmp-plat-media {
  order: 1;
}
.cmp-plat-heading {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.22px;
  color: var(--ink);
  margin: 0 0 16px;
}
.cmp-plat-bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.cmp-plat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-2);
}
.cmp-plat-bullets li span {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 21.25px;
  color: #344054;
}
.cmp-plat-bullets .cmp-li-ic {
  flex-shrink: 0;
  margin-top: 1px;
}
.cmp-plat-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.cmp-plat-box {
  border-radius: 8px;
  padding: 10px;
}
.cmp-plat-box--cp {
  background: #f9fafb;
}
.cmp-plat-box--fa {
  background: #ecfdf3;
}
.cmp-plat-box-label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  line-height: 21.25px;
  color: #344054;
  margin: 0 0 10px;
}
.cmp-plat-box-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 21.25px;
  color: #344054;
  margin: 0;
}
.cmp-plat-media img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 48px -16px rgba(16, 24, 40, 0.18);
}

/* ---------------- RESULTS ---------------- */
.cmp-results {
  background: #0f1117;
  color: #fff;
}
.cmp-results-h2 {
  color: #fff;
}
.cmp-results-lede {
  color: #98a2b3;
}
.cmp-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}
.cmp-result-card {
  position: relative;
  cursor: pointer;
  background: #11151c;
  border: 1px solid #1a1d24;
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.cmp-result-card:hover {
  background: #1a1d24;
}
.cmp-result-label {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #f15a29;
  margin: 0 0 4px;
}
.cmp-result-value {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.44px;
  color: #f15a29;
  margin: 0 0 4px;
}
.cmp-result-caption {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0 0 6px;
}
.cmp-result-desc {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #e9ecf1;
  margin: 0 0 45px;
  flex-grow: 1;
}
.cmp-result-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #f15a2c;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.cmp-result-link:hover {
  color: #f15a2c;
  font-size: 14px;
  line-height: 20px;
  gap: 10px;
}
.cmp-result-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cmp-result-card:hover .cmp-result-link {
  gap: 10px;
}
.cmp-result-link .ih-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
/* ---------------- DEPLOYMENT / MIGRATION (light, centered) ---------------- */
.cmp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.cmp-step {
  background: #f9fafb;
  border: 1px solid #eaecf0;
  border-radius: 24px; /* was 16px */
  padding: 40px 30px 36px; /* was 30px 26px — match Home V2 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.cmp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 15px -4px #0d152414;
}

.cmp-step-num {
  width: 48px; /* was 40px */
  height: 48px;
  border-radius: 50%;
  background: #ff5c28; /* solid orange — was the gradient */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16.8px;
  line-height: 1;
  margin-bottom: 21px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cmp-step:hover .cmp-step-num {
  transform: scale(1.1);
  box-shadow: 0 4px 16px 0 rgba(232, 85, 10, 0.3);
}

.cmp-step h3 {
  margin: 0 0 9px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  color: #1d2939; /* dark text on light card */
}
.cmp-step p {
  font-family: var(--font-main);
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 23.8px;
  color: #344054;
  flex-grow: 1; /* pushes badge to a common baseline */
}

/* Badge → filled pill, matching Home V2's .dc-badge */
.cmp-step-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  padding: 7px 16px;
  border-radius: 6px;
  background: #fef0ea;
  border: 1px solid #fef0ea;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: #f15a2c;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.cmp-step:hover .cmp-step-meta {
  background: #fde8db;
  border-color: #f15a2c;
}
.cmp-step-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------------- CANDID TAKE ---------------- */
.cmp-candid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.cmp-candid-col {
  background: #fff;
  border: 4px solid #e4eaf2;
  box-shadow: 0px 4px 24px 0px #0f1f3814;
  border-radius: 16px;
  padding: 24px 28px;
}
.cmp-candid-col--fa {
  border: 4px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(101.82deg, #ff5722 2.73%, #ff8f6b 96.37%) border-box;
}
.cmp-candid-col h3 {
  margin: 0 0 14px;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.cmp-candid-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.cmp-candid-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-2);
}
.cmp-candid-list li span {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 24px;
  color: #475467;
}
.cmp-li-ic {
  flex-shrink: 0;
}
.cmp-candid-list .cmp-li-ic {
  margin-top: 1px;
}

/* ---------------- FAQ ---------------- */
.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 (dark) ---------------- */
.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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.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;
}
.trial-section .cmp-hero-notes {
  font-family: "Inter", sans-serif;
  color: #98a2b3;
  margin-top: 22px;
  justify-content: center;
}
.trial-section .cmp-hero-notes li {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #cdd4df;
}

/* ---------------- 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;
}

/* ---------------- RESPONSIVE (1280 / 992 / 768 / 480) ---------------- */
@media (max-width: 1280px) {
  .cs-hero__grid {
    gap: 48px;
  }
  .cs-hero__content {
    width: 100%;
  }
  .cs-hero__title {
    font-size: 50px;
    line-height: 56px;
  }
}
@media (max-width: 992px) {
  .cs-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cs-hero__title {
    font-size: 42px;
    line-height: 48px;
  }
  .cs-metrics__item {
    flex: 1 1 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  .cmp-verdict-cards {
    grid-template-columns: 1fr;
  }
  .cmp-strengths {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-heading {
    font-size: 38px;
    line-height: 44px;
  }
  .trial-heading {
    font-size: 38px;
  }
  .cmp-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cs-hero {
    padding: 36px 0 0;
  }
  .cs-hero__title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -1px;
  }
  .cs-hero__desc {
    font-size: 15px;
  }
  .cs-metrics__value {
    font-size: 26px;
  }
  .cmp-section,
  .cmp-section--dark {
    padding: 48px 24px;
  }
  .cmp-verdict .cmp-container {
    padding: 40px 32px;
  }
  .cmp-h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .cmp-verdict-h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .cmp-lede {
    font-size: 16px;
    line-height: 25px;
  }
  .cmp-value-grid,
  .cmp-moments,
  .cmp-steps,
  .cmp-candid-grid {
    grid-template-columns: 1fr;
  }
  .cmp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  table.cmp-table {
    min-width: 600px;
  } /* Updated to ensure good column widths on scroll */
  .cmp-table th,
  .cmp-table td {
    padding: 13px 16px;
    font-size: 13px;
  }
  .cmp-table-foot {
    padding: 13px 16px;
  }
  .cs-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  .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;
  }
  .faq-section {
    padding: 40px 24px;
  }
  .faq-heading {
    font-size: 32px;
    line-height: 38px;
  }
  .faq-question {
    font-size: 15px;
  }
  .cmp-trusted-title {
    padding: 0 24px;
  }
  .cmp-plat-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cmp-plat-row .cmp-plat-text,
  .cmp-plat-row--imgleft .cmp-plat-text {
    order: 2;
  }
  .cmp-plat-row .cmp-plat-media,
  .cmp-plat-row--imgleft .cmp-plat-media {
    order: 1;
  }
  .cmp-results-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .cs-hero__title {
    font-size: 28px;
    line-height: 34px;
  }
  .cs-metrics {
    flex-direction: column;
  }
  .cs-metrics__item {
    flex: 1 1 100%;
    min-width: 100%;
    margin: 0;
  }
  .cs-metrics__value {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cmp-section,
  .cmp-section--dark {
    padding: 40px 16px;
  }
  .cmp-verdict .cmp-container {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .cmp-strengths {
    grid-template-columns: 1fr;
  }
  .cmp-h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .cmp-value-body,
  .cmp-step,
  .cmp-candid-col,
  .cmp-verdict-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .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-section {
    padding: 36px 15px;
  }
  .faq-heading {
    font-size: 26px;
    line-height: 34px;
  }
  .faq-question {
    font-size: 15px;
  }
  .cmp-plat-compare {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .cmp-bar-fill {
    transition: none !important;
    width: var(--target-w, 0) !important;
  }
  .cmp-trusted-track {
    animation: none !important;
  }
  .cmp-page *,
  .cmp-page *::before,
  .cmp-page *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
