/* Conversion helpers for internal commercial pages. Isolated from homepage blocks. */
.cro-conversion {
  position: relative;
  isolation: isolate;
}

.cro-conversion__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: clamp(24px, 3vw, 40px);
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.028));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

[data-theme="light"] .cro-conversion__card {
  border-color: rgba(5,5,5,.1);
  background:
    radial-gradient(circle at 88% 10%, rgba(5,5,5,.075), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.42));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.cro-conversion__text {
  max-width: 860px;
}

.cro-conversion__kicker {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .55;
}

.cro-conversion__title {
  margin: 0;
  color: currentColor;
  font-size: clamp(34px, 4.8vw, 84px);
  font-weight: 820;
  line-height: .92;
  letter-spacing: -.06em;
}

.cro-conversion__lead {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.64);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 340;
  line-height: 1.55;
}

[data-theme="light"] .cro-conversion__lead {
  color: rgba(5,5,5,.62);
}

.cro-conversion__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cro-conversion__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease;
}

.cro-conversion__button--primary {
  border-color: #f7f7f2;
  background: #f7f7f2;
  color: #050505;
}

[data-theme="light"] .cro-conversion__button {
  border-color: rgba(5,5,5,.18);
  color: rgba(5,5,5,.82);
}

[data-theme="light"] .cro-conversion__button--primary {
  border-color: #050505;
  background: #050505;
  color: #f7f7f2;
}

.cro-conversion__button:hover,
.cro-conversion__button:focus-visible {
  transform: translateY(-2px);
}

.cro-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.cro-proof-list li {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255,255,255,.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

[data-theme="light"] .cro-proof-list li {
  border-color: rgba(5,5,5,.12);
  color: rgba(5,5,5,.58);
}

.cro-form-note {
  margin-top: 14px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.45;
}

[data-theme="light"] .cro-form-note {
  color: rgba(5,5,5,.58);
}

@media (max-width: 768px) {
  .cro-conversion__card {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 22px;
    border-radius: 24px;
  }

  .cro-conversion__title {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1;
  }

  .cro-conversion__actions {
    display: grid;
    width: 100%;
    justify-content: stretch;
  }

  .cro-conversion__button {
    width: 100%;
    min-height: 48px;
  }
}
