.scv-more-reasons {
  position: relative;
  overflow-x: clip;
  background: #0a0a0a;
  padding: 96px 0 128px;
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.scv-more-reasons,
.scv-more-reasons * {
  box-sizing: border-box;
}

.scv-more-reasons[dir="rtl"],
.scv-more-reasons[dir="rtl"] * {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

.scv-more-reasons[dir="rtl"] h2,
.scv-more-reasons[dir="rtl"] h3,
.scv-more-reasons[dir="rtl"] .mr-eyebrow,
.scv-more-reasons[dir="rtl"] .mr-now strong {
  font-family: "IBM Plex Sans Arabic", sans-serif !important;
}

.scv-more-reasons .mr-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scv-more-reasons .mr-bg span {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 999px;
  filter: blur(140px);
  opacity: .55;
}

.scv-more-reasons .mr-bg span:first-child {
  left: -120px;
  top: 22%;
  background: rgba(38, 133, 153, .12);
}

.scv-more-reasons .mr-bg span:last-child {
  right: -120px;
  bottom: 22%;
  background: rgba(139, 92, 246, .10);
}

.scv-more-reasons .mr-container {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.scv-more-reasons .mr-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}

.scv-more-reasons .mr-sticky {
  position: sticky;
  top: 96px;
}

.scv-more-reasons .mr-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #14b8a6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scv-more-reasons .mr-eyebrow i {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #14b8a6);
}

.scv-more-reasons h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.scv-more-reasons .mr-sticky > p {
  max-width: 40rem;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
  line-height: 1.75;
}

.scv-more-reasons .mr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  background: #14b8a6;
  color: #06100f;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 36px -18px rgba(20, 184, 166, .9);
  transition: transform .2s ease, background .2s ease;
}

.scv-more-reasons .mr-cta:hover {
  transform: translateY(-2px);
  background: #2dd4bf;
  color: #06100f;
}

.scv-more-reasons .mr-progress {
  margin-top: 40px;
}

.scv-more-reasons .mr-now {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: end;
  margin-bottom: 12px;
}

.scv-more-reasons .mr-now small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scv-more-reasons .mr-now strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scv-more-reasons .mr-now em {
  color: rgba(255, 255, 255, .42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-style: normal;
}

.scv-more-reasons .mr-bars {
  display: flex;
  gap: 4px;
}

.scv-more-reasons .mr-bars button {
  position: relative;
  flex: 1 1 0;
  height: 6px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.scv-more-reasons .mr-bars span {
  position: absolute;
  inset: 0;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8a6, rgba(20, 184, 166, .62));
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}

.scv-more-reasons .mr-bars button.is-active span {
  transform: scaleX(1);
  opacity: 1;
}

.scv-more-reasons .mr-bars button.is-passed span {
  transform: scaleX(1);
  opacity: .4;
}

.scv-more-reasons .mr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.scv-more-reasons .mr-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .02);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease, opacity .55s ease, transform .55s ease;
  animation: mr-card-in .58s ease forwards;
}

.scv-more-reasons .mr-card:nth-child(2n) {
  animation-delay: .1s;
}

.scv-more-reasons .mr-card.is-wide {
  grid-column: span 2;
}

.scv-more-reasons .mr-card.is-active {
  border-color: rgba(20, 184, 166, .36);
  box-shadow: 0 0 40px -10px rgba(20, 184, 166, .42);
}

.scv-more-reasons .mr-card:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .04);
}

.scv-more-reasons .mr-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, .45), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.scv-more-reasons .mr-card:hover::after {
  opacity: 1;
}

.scv-more-reasons .mr-card-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(135deg, var(--mr-accent-soft), rgba(255, 255, 255, .02), transparent);
}

.scv-more-reasons .mr-card.is-wide .mr-card-preview {
  aspect-ratio: 16 / 7;
}

.scv-more-reasons .mr-card-body {
  padding: 20px;
}

.scv-more-reasons .mr-card-body > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.scv-more-reasons .mr-card-body span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  color: #14b8a6;
}

.scv-more-reasons .mr-card-body svg {
  width: 16px;
  height: 16px;
}

.scv-more-reasons .mr-card h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.scv-more-reasons .mr-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  line-height: 1.7;
}

.scv-more-reasons .mr-accent-teal { --mr-accent-soft: rgba(20, 184, 166, .20); }
.scv-more-reasons .mr-accent-blue { --mr-accent-soft: rgba(59, 130, 246, .20); }
.scv-more-reasons .mr-accent-rose { --mr-accent-soft: rgba(244, 63, 94, .20); }
.scv-more-reasons .mr-accent-emerald { --mr-accent-soft: rgba(16, 185, 129, .20); }
.scv-more-reasons .mr-accent-cyan { --mr-accent-soft: rgba(6, 182, 212, .20); }
.scv-more-reasons .mr-accent-violet { --mr-accent-soft: rgba(139, 92, 246, .20); }
.scv-more-reasons .mr-accent-pink { --mr-accent-soft: rgba(236, 72, 153, .20); }
.scv-more-reasons .mr-accent-amber { --mr-accent-soft: rgba(245, 158, 11, .20); }
.scv-more-reasons .mr-accent-indigo { --mr-accent-soft: rgba(99, 102, 241, .20); }
.scv-more-reasons .mr-accent-red { --mr-accent-soft: rgba(239, 68, 68, .15); }
.scv-more-reasons .mr-accent-fuchsia { --mr-accent-soft: rgba(217, 70, 239, .16); }

@keyframes mr-card-in {
  to { opacity: 1; transform: translateY(0); }
}

.scv-more-reasons .mr-preview {
  height: 100%;
  padding: 20px;
}

.mr-chat-preview,
.mr-tracker-preview,
.mr-keywords-preview,
.mr-designer-preview,
.mr-translate-preview,
.mr-share-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mr-chat-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mr-chat-row span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(20, 184, 166, .20);
  color: #14b8a6;
  font-size: 10px;
  font-weight: 900;
}

.mr-chat-row.user span {
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .72);
}

.mr-chat-row p {
  margin: 0;
  border-radius: 18px;
  border-top-left-radius: 4px;
  background: rgba(255, 255, 255, .055);
  padding: 10px 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.55;
}

.mr-chat-row:last-child p {
  border: 1px solid rgba(20, 184, 166, .20);
  background: rgba(20, 184, 166, .10);
  color: rgba(255, 255, 255, .84);
}

.mr-job-row,
.mr-keywords-preview div,
.mr-designer-preview li,
.mr-translate-preview p,
.mr-share-preview .mr-url {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  padding: 8px 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
}

.mr-job-row b,
.mr-keywords-preview span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mr-job-row em {
  border-radius: 6px;
  background: rgba(255, 255, 255, .10);
  padding: 2px 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.mr-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

.mr-dot.blue { background: #60a5fa; }
.mr-dot.amber { background: #fbbf24; }
.mr-dot.green { background: #34d399; }

.mr-interview-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mr-mic {
  position: relative;
  display: grid;
  place-items: center;
}

.mr-mic span {
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(20, 184, 166, .20);
  animation: mr-ping 1.8s infinite;
}

.mr-mic svg {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, rgba(20, 184, 166, .60));
  padding: 15px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(20, 184, 166, .30);
}

.mr-wave {
  display: flex;
  align-items: end;
  gap: 4px;
}

.mr-wave i {
  width: 4px;
  border-radius: 99px;
  background: rgba(20, 184, 166, .70);
  animation: mr-wave 1.4s ease-in-out infinite;
}

.mr-interview-preview small,
.mr-keywords-preview small {
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  padding: 5px 12px;
  color: rgba(255, 255, 255, .70);
  font-size: 10px;
  font-weight: 700;
}

@keyframes mr-ping { 75%, 100% { transform: scale(1.65); opacity: 0; } }
@keyframes mr-wave { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }

.mr-ats-preview {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mr-ats-ring {
  position: relative;
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
}

.mr-ats-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.mr-ats-ring circle {
  fill: none;
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 6;
}

.mr-ats-ring circle:last-child {
  stroke: #34d399;
  stroke-dasharray: 201;
  stroke-dashoffset: 12;
  stroke-linecap: round;
}

.mr-ats-ring strong,
.mr-ats-ring small {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.mr-ats-ring strong {
  top: 24px;
  color: #fff;
  font-size: 20px;
}

.mr-ats-ring small {
  top: 48px;
  color: rgba(255, 255, 255, .50);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.mr-score-bars {
  flex: 1;
  display: grid;
  gap: 9px;
}

.mr-score-bars span {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .70);
  font-size: 10px;
  font-weight: 700;
}

.mr-score-bars b {
  color: #34d399;
}

.mr-score-bars i,
.mr-designer-preview i {
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.mr-score-bars em,
.mr-designer-preview em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8a6, #34d399);
}

.mr-keywords-preview b {
  color: #34d399;
  font-size: 16px;
}

.mr-keywords-preview i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
}

.mr-market-preview {
  display: grid;
  gap: 12px;
}

.mr-market-preview div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mr-market-preview div b {
  color: #14b8a6;
  letter-spacing: 0;
}

.mr-market-preview svg {
  width: 100%;
  height: 64px;
}

.mr-market-preview path:first-child {
  fill: rgba(20, 184, 166, .18);
}

.mr-market-preview path:last-child {
  fill: none;
  stroke: #14b8a6;
  stroke-width: 2;
}

.mr-market-preview p,
.mr-designer-preview p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.mr-market-preview p span {
  border: 1px solid rgba(20, 184, 166, .20);
  border-radius: 7px;
  background: rgba(20, 184, 166, .10);
  padding: 2px 8px;
  color: #14b8a6;
  font-size: 10px;
  font-weight: 800;
}

.mr-designer-preview > div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mr-designer-preview > div b {
  border-radius: 6px;
  background: rgba(236, 72, 153, .15);
  padding: 2px 7px;
  color: #f9a8d4;
  letter-spacing: 0;
}

.mr-designer-preview p span {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
}

.mr-designer-preview p span:nth-child(2) {
  border-color: #fff;
}

.mr-designer-preview ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  list-style: none;
}

.mr-designer-preview li {
  display: grid;
  grid-template-columns: 1fr 70px;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

.mr-translate-preview div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.mr-translate-preview div span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.mr-translate-preview div .is-on {
  border-color: rgba(34, 211, 238, .42);
  background: rgba(6, 182, 212, .15);
}

.mr-translate-preview p {
  justify-content: space-between;
  color: rgba(255, 255, 255, .90);
}

.mr-translate-preview svg,
.mr-export-preview svg {
  width: 16px;
  height: 16px;
  color: #67e8f9;
}

.mr-stylion-preview {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mr-stylion-preview::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(245, 158, 11, .20);
  filter: blur(40px);
}

.mr-lion {
  position: relative;
  font-size: 72px;
  filter: drop-shadow(0 10px 24px rgba(245, 158, 11, .22));
}

.mr-stylion-preview p {
  position: absolute;
  top: 18px;
  right: 16px;
  max-width: 150px;
  margin: 0;
  border-radius: 18px 18px 4px;
  background: #fff;
  padding: 10px 12px;
  color: #1f2937;
  font-size: 11px;
  font-weight: 800;
}

.mr-stylion-preview b {
  position: absolute;
  bottom: 16px;
  left: 16px;
  border-radius: 999px;
  background: rgba(239, 68, 68, .9);
  padding: 5px 10px;
  color: #fff;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mr-templates-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
}

.mr-templates-preview div,
.mr-letter {
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.mr-templates-preview div:nth-child(2n) {
  transform: rotate(1.5deg);
}

.mr-templates-preview div:nth-child(2n+1) {
  transform: rotate(-1.5deg);
}

.mr-templates-preview span,
.mr-letter span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, #e8885e);
}

.mr-templates-preview i,
.mr-letter i {
  display: block;
  height: 5px;
  margin-top: 5px;
  border-radius: 4px;
  background: #e5e7eb;
}

.mr-templates-preview em {
  display: block;
  height: 26px;
  margin-top: 10px;
  border-radius: 6px;
  background: #f3f4f6;
}

.mr-export-preview {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
}

.mr-export-preview > div {
  display: inline-grid;
  gap: 6px;
  margin: 0 8px;
  text-align: center;
}

.mr-export-preview span {
  display: grid;
  width: 58px;
  height: 72px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.mr-export-preview .pdf { background: #ef4444; transform: rotate(-8deg); }
.mr-export-preview .docx { background: #3b82f6; transform: rotate(8deg); }
.mr-export-preview small { color: rgba(255, 255, 255, .62); font-size: 9px; font-weight: 800; }
.mr-export-preview p { display: flex; gap: 8px; margin: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.05); padding: 6px 12px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; }

.mr-share-preview {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-content: center;
  gap: 12px;
}

.mr-share-preview .mr-url {
  grid-column: 1 / -1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: rgba(255,255,255,.74);
}

.mr-share-preview .mr-url span { color: #14b8a6; }

.mr-qr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.mr-qr i {
  aspect-ratio: 1;
  background: #fff;
}

.mr-qr .on { background: #111827; }

.mr-share-preview p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.7;
}

.mr-share-preview p b {
  display: block;
  color: rgba(255,255,255,.72);
}

.mr-cover-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.mr-letter {
  max-width: 190px;
  transform: rotate(-2deg);
}

.mr-cover-preview ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mr-cover-preview li {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  padding: 9px 11px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 800;
}

[dir="rtl"] .scv-more-reasons .mr-eyebrow i {
  background: linear-gradient(270deg, transparent, #14b8a6);
}

@media (max-width: 980px) {
  .scv-more-reasons {
    padding: 72px 0 88px;
  }

  .scv-more-reasons .mr-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .scv-more-reasons .mr-sticky {
    position: relative;
    top: auto;
  }

  .scv-more-reasons .mr-progress {
    display: none;
  }
}

@media (max-width: 640px) {
  .scv-more-reasons .mr-grid {
    grid-template-columns: 1fr;
  }

  .scv-more-reasons .mr-card.is-wide {
    grid-column: auto;
  }

  .scv-more-reasons .mr-cover-preview {
    grid-template-columns: 1fr;
  }
}
