/**
 * LinkX competitor alternative landings — CoralBold
 * Scoped to .lx-dc-competitor (cream paper / coral / teal)
 */

.lx-dc-competitor {
  --coral: #FF6B4A;
  --coral-cta: #C2410C;
  --teal: #14806E;
  --bg: #FAF6F1;
  --paper: #fff;
  --ink: #2A211C;
  --muted: #756A60;
  --line: rgba(42, 33, 28, 0.08);
  --mint: #8FD8C6;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;

  background:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 0) 0 0 / 24px 24px,
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

.lx-dc-competitor ::selection {
  background: var(--coral);
  color: #fff;
}

.lx-dc-competitor a {
  color: #E85535;
  text-decoration: none;
}

.lx-dc-competitor a:hover {
  color: var(--coral);
}

/* ------------------------------------------------------------------ */
/* Layout                                                              */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .lx-ca-wrap {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.lx-dc-competitor .lx-ca-sec {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.lx-dc-competitor .lx-ca-sec-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.lx-dc-competitor .lx-ca-sec-head--wide {
  max-width: 680px;
}

.lx-dc-competitor .lx-ca-sec-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lx-dc-competitor .lx-ca-h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.03;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}

.lx-dc-competitor .lx-ca-sec-lead {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  margin: 12px 0 0;
}

/* ------------------------------------------------------------------ */
/* Type / eyebrows / buttons                                           */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .lx-ca-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 14px;
}

.lx-dc-competitor .lx-ca-eyebrow-teal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 20px;
}

.lx-dc-competitor .lx-ca-eyebrow-teal::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--teal);
  display: inline-block;
}

.lx-dc-competitor .lx-ca-h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--ink);
  text-wrap: pretty;
}

.lx-dc-competitor .lx-ca-h1-badge {
  position: relative;
  display: inline-block;
  color: #fff;
  background: var(--coral);
  padding: 0 12px 2px;
  border-radius: 12px;
  transform: rotate(-1.5deg);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.lx-dc-competitor .lx-ca-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 490px;
  margin: 0 0 26px;
  text-wrap: pretty;
}

.lx-dc-competitor .lx-ca-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.lx-dc-competitor .lx-ca-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 14px;
  border: 0;
  background: var(--coral);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 30px -14px var(--coral);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.lx-dc-competitor .lx-ca-btn:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.lx-dc-competitor .lx-ca-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 14px;
  border: 1px solid rgba(42, 33, 28, 0.14);
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.lx-dc-competitor .lx-ca-btn-ghost:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--coral) 35%, var(--line));
  transform: translateY(-1px);
}

.lx-dc-competitor .lx-ca-btn:focus-visible,
.lx-dc-competitor .lx-ca-btn-ghost:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.lx-dc-competitor .lx-ca-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lx-dc-competitor .lx-ca-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--paper);
  border: 1px solid rgba(42, 33, 28, 0.1);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
}

.lx-dc-competitor .lx-ca-chip-mark {
  color: var(--teal);
}

.lx-dc-competitor .lx-ca-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.lx-dc-competitor .lx-ca-pricing-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 18px 0 0;
  max-width: 470px;
}

.lx-dc-competitor .lx-ca-pricing-note a {
  font-weight: 600;
}

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .lx-ca-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
  /* Clear fixed #mainNav (~80px) — match deep-links hero offset */
  padding-top: clamp(128px, 16vh, 168px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.lx-dc-competitor .lx-ca-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.lx-dc-competitor .lx-ca-phone-backdrop {
  position: absolute;
  width: 76%;
  height: 80%;
  background: var(--teal);
  border-radius: 34px;
  transform: rotate(-4deg);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.2) 1px, transparent 0);
  background-size: 18px 18px;
}

.lx-dc-competitor .lx-ca-phone {
  position: relative;
  z-index: 3;
  width: 284px;
  height: 596px;
  background: #0F0B09;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(42, 33, 28, 0.6);
}

.lx-dc-competitor .lx-ca-phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: #0F0B09;
  border-radius: 0 0 14px 14px;
  z-index: 6;
}

.lx-dc-competitor .lx-ca-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--paper);
  border-radius: 34px;
  overflow: hidden;
}

.lx-dc-competitor .lx-ca-phone-banner {
  height: 100px;
  background: linear-gradient(140deg, #C4B5FF, #7B61C9);
}

.lx-dc-competitor .lx-ca-phone-body {
  padding: 0 22px 18px;
  margin-top: -40px;
}

.lx-dc-competitor .lx-ca-phone-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFB39E, #FF6B4A);
  border: 4px solid var(--paper);
  margin: 0 auto 10px;
  overflow: hidden;
}

.lx-dc-competitor .lx-ca-phone-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lx-dc-competitor .lx-ca-phone-user {
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
}

.lx-dc-competitor .lx-ca-phone-bio {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 16px;
}

.lx-dc-competitor .lx-ca-phone-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lx-dc-competitor .lx-ca-phone-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border: 1.5px solid rgba(42, 33, 28, 0.12);
  font-weight: 600;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 13px;
  color: var(--ink);
}

.lx-dc-competitor .lx-ca-phone-link--ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  justify-content: center;
  font-weight: 700;
}

.lx-dc-competitor .lx-ca-phone-link--coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  font-weight: 700;
}

.lx-dc-competitor .lx-ca-phone-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.lx-dc-competitor .lx-ca-phone-link--coral .lx-ca-phone-meta,
.lx-dc-competitor .lx-ca-phone-link--ink .lx-ca-phone-meta {
  color: rgba(255, 255, 255, 0.85);
}

.lx-dc-competitor .lx-ca-phone-pill {
  background: rgba(255, 255, 255, 0.24);
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
}

.lx-dc-competitor .lx-ca-phone-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

.lx-dc-competitor .lx-ca-float {
  position: absolute;
  z-index: 4;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 12px 15px;
}

.lx-dc-competitor .lx-ca-float--tl {
  top: 44px;
  left: -4%;
  box-shadow: 5px 5px 0 var(--ink);
}

.lx-dc-competitor .lx-ca-float--br {
  bottom: 70px;
  right: -6%;
  box-shadow: 5px 5px 0 var(--coral);
}

.lx-dc-competitor .lx-ca-float-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.lx-dc-competitor .lx-ca-float-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}

.lx-dc-competitor .lx-ca-float-value--teal {
  color: var(--teal);
}

/* ------------------------------------------------------------------ */
/* Trio / cards                                                        */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .lx-ca-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lx-dc-competitor .lx-ca-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
}

.lx-dc-competitor .lx-ca-card-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.lx-dc-competitor .lx-ca-card-kicker--coral { color: var(--coral); }
.lx-dc-competitor .lx-ca-card-kicker--muted { color: var(--muted); }
.lx-dc-competitor .lx-ca-card-kicker--teal { color: var(--teal); }

.lx-dc-competitor .lx-ca-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}

.lx-dc-competitor .lx-ca-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* ------------------------------------------------------------------ */
/* Inside / fit / steps / metrics                                      */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .lx-ca-inside {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}

.lx-dc-competitor .lx-ca-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lx-dc-competitor .lx-ca-bullet {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.lx-dc-competitor .lx-ca-bullet-mark {
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 800;
}

.lx-dc-competitor .lx-ca-stats-panel {
  background: var(--ink);
  border-radius: 22px;
  padding: 26px;
  color: #fff;
}

.lx-dc-competitor .lx-ca-stats-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFB39E;
  font-weight: 700;
  margin-bottom: 16px;
}

.lx-dc-competitor .lx-ca-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.lx-dc-competitor .lx-ca-stats-row span:first-child {
  color: rgba(255, 255, 255, 0.65);
}

.lx-dc-competitor .lx-ca-stats-row span:last-child {
  font-family: var(--mono);
  font-weight: 700;
  color: #fff;
}

.lx-dc-competitor .lx-ca-stats-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
  margin: 16px 0 0;
}

.lx-dc-competitor .lx-ca-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lx-dc-competitor .lx-ca-fit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lx-dc-competitor .lx-ca-fit-pill--yes {
  color: var(--teal);
  background: color-mix(in srgb, var(--teal) 10%, transparent);
}

.lx-dc-competitor .lx-ca-fit-pill--no {
  color: var(--muted);
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}

.lx-dc-competitor .lx-ca-fit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lx-dc-competitor .lx-ca-fit-item {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.lx-dc-competitor .lx-ca-fit-item--muted {
  color: var(--muted);
}

.lx-dc-competitor .lx-ca-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lx-dc-competitor .lx-ca-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}

.lx-dc-competitor .lx-ca-step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}

.lx-dc-competitor .lx-ca-step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
}

.lx-dc-competitor .lx-ca-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.lx-dc-competitor .lx-ca-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lx-dc-competitor .lx-ca-metrics h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 16px;
}

.lx-dc-competitor .lx-ca-footnote {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 0;
}

/* ------------------------------------------------------------------ */
/* Comparison table                                                    */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .lx-ca-table-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.lx-dc-competitor .lx-ca-table-wrap--wide {
  max-width: 1100px;
}

/* Scroll the table only — section head/notes sit outside this wrapper. */
.lx-dc-competitor .lx-ca-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -46px rgba(42, 33, 28, 0.5);
  background: var(--paper);
}

.lx-dc-competitor .lx-ca-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--paper);
}

.lx-dc-competitor .lx-ca-table thead th {
  background: var(--ink);
  color: #fff;
  padding: 18px 16px;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
}

.lx-dc-competitor .lx-ca-table thead th:first-child {
  padding-left: 22px;
}

.lx-dc-competitor .lx-ca-table thead th.lx-ca-col-linkx {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  background: color-mix(in srgb, var(--coral) 26%, var(--ink));
}

.lx-dc-competitor .lx-ca-table thead th.lx-ca-col-muted {
  color: rgba(255, 255, 255, 0.7);
}

.lx-dc-competitor .lx-ca-table tbody th,
.lx-dc-competitor .lx-ca-table tbody td {
  padding: 16px;
  font-size: 14px;
  border-top: 1px solid rgba(42, 33, 28, 0.07);
  vertical-align: top;
}

.lx-dc-competitor .lx-ca-table tbody th {
  padding-left: 22px;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
}

.lx-dc-competitor .lx-ca-table tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--ink) 3%, transparent);
}

.lx-dc-competitor .lx-ca-table tbody td.lx-ca-col-linkx {
  color: var(--ink);
  font-weight: 600;
}

.lx-dc-competitor .lx-ca-table tbody td.lx-ca-col-teal {
  color: var(--teal);
  font-weight: 700;
  text-align: center;
}

.lx-dc-competitor .lx-ca-table tbody td.lx-ca-col-center {
  text-align: center;
  color: var(--muted);
}

.lx-dc-competitor .lx-ca-table-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 0;
}

/* ------------------------------------------------------------------ */
/* Cases / reasons / honest / migrate                                  */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .lx-ca-cases,
.lx-dc-competitor .lx-ca-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lx-dc-competitor .lx-ca-case,
.lx-dc-competitor .lx-ca-reason {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
  transition: transform 0.18s ease;
}

.lx-dc-competitor .lx-ca-reason:hover {
  transform: translateY(-4px);
}

.lx-dc-competitor .lx-ca-reason-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
}

.lx-dc-competitor .lx-ca-case h3,
.lx-dc-competitor .lx-ca-reason h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
}

.lx-dc-competitor .lx-ca-case p,
.lx-dc-competitor .lx-ca-reason p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.lx-dc-competitor .lx-ca-honest {
  background: var(--ink);
  border-radius: 28px;
  padding: 44px;
  color: #fff;
}

.lx-dc-competitor .lx-ca-honest .lx-ca-eyebrow {
  color: #FFB39E;
}

.lx-dc-competitor .lx-ca-honest h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #fff;
}

.lx-dc-competitor .lx-ca-honest-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 620px;
}

.lx-dc-competitor .lx-ca-honest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
}

.lx-dc-competitor .lx-ca-honest-item {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.lx-dc-competitor .lx-ca-honest-item span:first-child {
  color: #FFB39E;
  flex-shrink: 0;
}

.lx-dc-competitor .lx-ca-migrate {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 28px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.lx-dc-competitor .lx-ca-migrate .lx-ca-eyebrow {
  color: #FFB39E;
}

.lx-dc-competitor .lx-ca-migrate h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0 0 16px;
  color: #fff;
}

.lx-dc-competitor .lx-ca-migrate-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 420px;
}

.lx-dc-competitor .lx-ca-migrate-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lx-dc-competitor .lx-ca-migrate-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lx-dc-competitor .lx-ca-migrate-n {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
}

.lx-dc-competitor .lx-ca-migrate-step h3 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 3px;
}

.lx-dc-competitor .lx-ca-migrate-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.lx-dc-competitor .lx-ca-crosslinks {
  margin-top: 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .faq-container.lx-ca-faq,
.lx-dc-competitor .lx-ca-faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.lx-dc-competitor .lx-ca-faq .faq-item,
.lx-dc-competitor .faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  box-shadow: none;
}

.lx-dc-competitor .lx-ca-faq .faq-question,
.lx-dc-competitor .faq-item > .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.lx-dc-competitor .lx-ca-faq .faq-question i,
.lx-dc-competitor .faq-item > .faq-question i {
  flex-shrink: 0;
  color: var(--coral);
  font-size: 14px;
  transition: transform 0.2s ease;
}

.lx-dc-competitor .lx-ca-faq .faq-item.active .faq-question i,
.lx-dc-competitor .faq-item.active > .faq-question i {
  transform: rotate(45deg);
}

.lx-dc-competitor .lx-ca-faq .faq-answer,
.lx-dc-competitor .faq-item > .faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  background: transparent;
  border: none;
}

.lx-dc-competitor .lx-ca-faq .faq-item.active .faq-answer,
.lx-dc-competitor .faq-item.active > .faq-answer {
  display: block;
}

/* ------------------------------------------------------------------ */
/* Bottom CTA — solid coral (no coral→teal gradient)                   */
/* ------------------------------------------------------------------ */

.lx-dc-competitor .lx-ca-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 28px;
  padding: clamp(48px, 7vw, 72px) clamp(24px, 5vw, 48px);
  background: var(--coral);
  color: #fff;
  box-shadow: 0 32px 64px -40px rgba(255, 107, 74, 0.55);
}

.lx-dc-competitor .lx-ca-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
}

.lx-dc-competitor .lx-ca-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 30px;
}

.lx-dc-competitor .lx-ca-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lx-dc-competitor .lx-ca-cta .lx-ca-btn {
  background: #fff;
  color: var(--coral-cta);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.4);
}

.lx-dc-competitor .lx-ca-cta .lx-ca-btn:hover {
  color: var(--coral-cta);
  background: #fff;
  filter: none;
}

.lx-dc-competitor .lx-ca-cta .lx-ca-btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: transparent;
  color: #fff;
}

.lx-dc-competitor .lx-ca-cta .lx-ca-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.lx-dc-competitor .lx-ca-cta-note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin: 20px 0 0;
}

.lx-dc-competitor .lx-ca-cta-sec {
  padding-bottom: 96px;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */

@media (max-width: 1100px) {
  .lx-dc-competitor .lx-ca-steps {
    grid-template-columns: 1fr 1fr;
  }

  .lx-dc-competitor .lx-ca-float--tl {
    left: 0;
  }

  .lx-dc-competitor .lx-ca-float--br {
    right: 0;
  }
}

@media (max-width: 991.98px) {
  .lx-dc-competitor .lx-ca-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lx-dc-competitor .lx-ca-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: clamp(112px, 14vh, 140px);
    padding-bottom: 56px;
  }

  .lx-dc-competitor .lx-ca-sec {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .lx-dc-competitor .lx-ca-h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .lx-dc-competitor .lx-ca-hero-visual {
    min-height: 520px;
  }

  .lx-dc-competitor .lx-ca-trio,
  .lx-dc-competitor .lx-ca-cases,
  .lx-dc-competitor .lx-ca-reasons,
  .lx-dc-competitor .lx-ca-inside,
  .lx-dc-competitor .lx-ca-fit,
  .lx-dc-competitor .lx-ca-metrics,
  .lx-dc-competitor .lx-ca-migrate,
  .lx-dc-competitor .lx-ca-honest-grid {
    grid-template-columns: 1fr;
  }

  .lx-dc-competitor .lx-ca-migrate {
    padding: 36px 24px;
    gap: 28px;
  }

  .lx-dc-competitor .lx-ca-cta h2 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .lx-dc-competitor .lx-ca-h2 {
    font-size: clamp(26px, 6vw, 32px);
  }
}

@media (max-width: 575.98px) {
  .lx-dc-competitor .lx-ca-steps {
    grid-template-columns: 1fr;
  }

  .lx-dc-competitor .lx-ca-phone {
    width: 260px;
    height: 540px;
  }

  .lx-dc-competitor .lx-ca-float {
    display: none;
  }

  .lx-dc-competitor .lx-ca-btn,
  .lx-dc-competitor .lx-ca-btn-ghost {
    width: 100%;
  }
}
