@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

.cr-home {
  position: relative;
  --cr-primary: #5B5BD6;
  --cr-primary-dark: #4040B8;
  --cr-secondary: #8B5CF6;
  --cr-accent: #F59E0B;
  --cr-dark: #101226;
  --cr-dark-soft: #191C35;
  --cr-heading: #17182F;
  --cr-text: #5F6478;
  --cr-light: #F7F7FC;
  --cr-light-purple: #F0EEFF;
  --cr-white: #FFFFFF;
  --cr-success: #16A36A;
  --cr-border: rgba(23, 24, 47, 0.10);
  --cr-shadow: 0 24px 70px rgba(34, 35, 75, 0.12);
  overflow: hidden;
  color: var(--cr-text);
  background: var(--cr-white);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.cr-home *,
.cr-home *::before,
.cr-home *::after {
  box-sizing: border-box;
}

.cr-home a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease, border-color .25s ease, background .25s ease;
}

.cr-home a:focus-visible,
.cr-home button:focus-visible {
  outline: 3px solid rgba(91, 91, 214, .35);
  outline-offset: 4px;
}

.cr-home .cr-home-container {
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: 24px;
}

.cr-home .cr-home-hero,
.cr-home .cr-home-logo-section,
.cr-home .cr-home-features-intro,
.cr-home .cr-home-feature,
.cr-home .cr-home-how,
.cr-home .cr-home-why,
.cr-home .cr-home-use-cases,
.cr-home .cr-home-testimonials,
.cr-home .cr-home-faq,
.cr-home .cr-home-final-cta {
  padding-block: clamp(58px, 7vw, 116px);
}

.cr-home .cr-home-hero {
  min-height: 860px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(91,91,214,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,91,214,.035) 1px, transparent 1px),
    #fbfbff;
  background-size: 38px 38px;
}

.cr-home .cr-home-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cr-home .cr-home-glow,
.cr-home .cr-home-curve,
.cr-home .cr-home-dot {
  position: absolute;
  display: block;
  pointer-events: none;
}

.cr-home .cr-home-glow-one {
  width: 520px;
  height: 520px;
  left: 8%;
  top: 8%;
  background: radial-gradient(circle, rgba(139,92,246,.28), transparent 68%);
  filter: blur(12px);
}

.cr-home .cr-home-glow-two {
  width: 440px;
  height: 440px;
  right: 7%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(245,158,11,.12), transparent 70%);
  filter: blur(10px);
}

.cr-home .cr-home-curve-one,
.cr-home .cr-home-curve-two {
  width: 300px;
  height: 94px;
  border: 2px solid rgba(91,91,214,.12);
  border-color: transparent transparent rgba(91,91,214,.15) transparent;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.cr-home .cr-home-curve-one {
  top: 18%;
  right: 17%;
}

.cr-home .cr-home-curve-two {
  bottom: 21%;
  left: 15%;
  transform: rotate(12deg);
}

.cr-home .cr-home-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(91,91,214,.28);
}

.cr-home .cr-home-dot-one { left: 12%; top: 35%; }
.cr-home .cr-home-dot-two { right: 18%; top: 44%; background: rgba(245,158,11,.45); }
.cr-home .cr-home-dot-three { left: 52%; bottom: 18%; }

.cr-home .cr-home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.cr-home .cr-home-eyebrow,
.cr-home .cr-home-section-kicker,
.cr-home .cr-home-feature-label,
.cr-home .cr-home-final-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--cr-primary-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.cr-home .cr-home-eyebrow {
  padding: 9px 14px;
  border: 1px solid rgba(91,91,214,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 34px rgba(91,91,214,.08);
}

.cr-home .cr-home-hero-title,
.cr-home .cr-home-section-title,
.cr-home .cr-home-feature-title,
.cr-home .cr-home-final-inner h2 {
  margin: 0;
  color: var(--cr-heading);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

.cr-home .cr-home-hero-title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  max-width: 930px;
  margin-inline: auto;
}

.cr-home .cr-home-hero-title span {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--cr-primary), var(--cr-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cr-home .cr-home-hero-title span::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 3px;
  height: 10px;
  border-radius: 8px;
  background: rgba(245,158,11,.25);
  z-index: -1;
}

.cr-home .cr-home-hero-text,
.cr-home .cr-home-section-text,
.cr-home .cr-home-feature-text,
.cr-home .cr-home-final-inner p {
  margin: 22px auto 0;
  max-width: 760px;
  color: var(--cr-text);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.75;
}

.cr-home .cr-home-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.cr-home .cr-home-btn-link {
  display: inline-block;
}

.cr-home .cr-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.cr-home .cr-home-btn i {
  transition: transform .25s ease;
}

.cr-home .cr-home-btn-link:hover .cr-home-btn {
  transform: translateY(-2px);
}

.cr-home .cr-home-btn-link:hover .cr-home-btn i {
  transform: translateX(4px);
}

.cr-home .cr-home-btn-primary {
  color: var(--cr-white);
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-primary-dark));
  box-shadow: 0 16px 36px rgba(91,91,214,.25);
}

.cr-home .cr-home-btn-secondary {
  color: var(--cr-heading);
  background: var(--cr-white);
  border-color: var(--cr-border);
  box-shadow: 0 14px 36px rgba(23,24,47,.08);
}

.cr-home .cr-home-btn-light {
  color: var(--cr-white);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}

.cr-home .cr-home-trust {
  display: flex;
  justify-content: center;
  gap: 12px 22px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: var(--cr-heading);
  font-size: 15px;
  font-weight: 700;
}

.cr-home .cr-home-trust span,
.cr-home .cr-home-final-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cr-home .cr-home-trust i,
.cr-home .cr-home-final-points i,
.cr-home .cr-home-check-list i {
  color: var(--cr-success);
}

.cr-home .cr-home-process-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center;
  gap: 14px;
  max-width: 840px;
  margin: 52px auto 0;
  padding: 18px;
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--cr-shadow);
  backdrop-filter: blur(14px);
}

.cr-home .cr-home-process-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  color: var(--cr-heading);
  font-weight: 800;
  background: var(--cr-light);
  border: 1px solid rgba(91,91,214,.10);
  border-radius: 8px;
}

.cr-home .cr-home-process-step i {
  color: var(--cr-primary);
}

.cr-home .cr-home-process-line {
  height: 2px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(91,91,214,.28), transparent);
}

.cr-home .cr-home-process-line::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: var(--cr-accent);
  animation: cr-home-connector 2.8s ease-in-out infinite;
}

.cr-home .cr-home-section-head {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.cr-home .cr-home-section-head-compact {
  max-width: 760px;
}

.cr-home .cr-home-section-title {
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 800;
}

.cr-home .cr-home-logo-section {
  background: var(--cr-white);
  padding-top: 82px;
}

.cr-home .cr-home-marquee-wrap {
  position: relative;
  margin-top: 42px;
  display: grid;
  gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.cr-home .cr-home-marquee {
  overflow: hidden;
}

.cr-home .cr-home-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: cr-home-marquee-left 34s linear infinite;
}

.cr-home .cr-home-marquee-right .cr-home-marquee-track {
  animation-name: cr-home-marquee-right;
}

.cr-home .cr-home-marquee:hover .cr-home-marquee-track,
.cr-home .cr-home-testimonial-row:hover .cr-home-testimonial-track {
  animation-play-state: paused;
}

.cr-home .cr-home-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 14px 18px;
  border: 1px solid var(--cr-border);
  border-radius: 8px;
  background: #fff;
  color: #707589;
  filter: grayscale(1);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(23,24,47,.05);
  transition: color .25s ease, filter .25s ease, border-color .25s ease, transform .25s ease;
}

.cr-home .cr-home-marquee span:hover {
  color: var(--cr-primary);
  filter: grayscale(0);
  border-color: rgba(91,91,214,.24);
  transform: translateY(-2px);
}

.cr-home .cr-home-chip-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cr-home .cr-home-chip-row span {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cr-light-purple);
  color: var(--cr-primary-dark);
  font-weight: 800;
  font-size: 15px;
}

.cr-home .cr-home-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(38px, 5vw, 82px);
}

.cr-home .cr-home-feature-alt .cr-home-feature-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.cr-home .cr-home-feature-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
}

.cr-home .cr-home-feature-text {
  margin-inline: 0;
  max-width: 660px;
}

.cr-home .cr-home-check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
  color: var(--cr-heading);
  font-weight: 700;
}

.cr-home .cr-home-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.cr-home .cr-home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cr-primary-dark);
  font-weight: 900;
}

.cr-home .cr-home-text-link i {
  transition: transform .25s ease;
}

.cr-home .cr-home-text-link:hover i {
  transform: translateX(5px);
}

.cr-home .cr-home-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--cr-border);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f8f8ff);
  box-shadow: var(--cr-shadow);
  overflow: hidden;
}

.cr-home .cr-home-recognition-visual {
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: center;
  gap: 18px;
  padding: 32px;
}

.cr-home .cr-home-paper-panel,
.cr-home .cr-home-text-panel {
  min-height: 260px;
  padding: 24px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid rgba(23,24,47,.09);
  box-shadow: 0 16px 36px rgba(23,24,47,.08);
}

.cr-home .cr-home-panel-label,
.cr-home .cr-home-review-panels span {
  display: block;
  margin-bottom: 18px;
  color: var(--cr-primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cr-home .cr-home-cursive-sample {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: #3d3e55;
  font-size: 25px;
  line-height: 1.55;
}

.cr-home .cr-home-scan-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 120px;
  border-radius: 10px;
  color: var(--cr-primary);
  background: var(--cr-light-purple);
  overflow: hidden;
}

.cr-home .cr-home-scan-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 3px;
  background: var(--cr-accent);
  box-shadow: 0 0 18px rgba(245,158,11,.65);
  animation: cr-home-scan 2.4s ease-in-out infinite;
}

.cr-home .cr-home-status,
.cr-home .cr-home-ready-label,
.cr-home .cr-home-file-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--cr-success);
  background: rgba(22,163,106,.10);
  font-size: 13px;
  font-weight: 900;
}

.cr-home .cr-home-text-panel p {
  margin: 24px 0 0;
  color: var(--cr-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7;
}

.cr-home .cr-home-image-visual {
  min-height: 460px;
  background: radial-gradient(circle at 25% 20%, rgba(91,91,214,.12), transparent 35%), #fff;
}

.cr-home .cr-home-phone-frame {
  position: absolute;
  left: 56px;
  top: 50px;
  width: 210px;
  height: 340px;
  border: 10px solid var(--cr-dark);
  border-radius: 30px;
  background: #f4f5fb;
  box-shadow: 0 24px 54px rgba(16,18,38,.18);
}

.cr-home .cr-home-phone-bar {
  width: 54px;
  height: 5px;
  margin: 10px auto 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
}

.cr-home .cr-home-photo-page {
  position: relative;
  margin: 0 auto;
  width: 158px;
  height: 254px;
  padding: 28px 18px;
  border-radius: 7px;
  background: #fffef8;
  color: #5e5f75;
  transform: rotate(-2deg);
  box-shadow: 0 10px 24px rgba(23,24,47,.10);
}

.cr-home .cr-home-photo-page span,
.cr-home .cr-home-mini-doc span {
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  background: rgba(91,91,214,.15);
}

.cr-home .cr-home-photo-page p {
  margin: 18px 0 0;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 18px;
  line-height: 1.5;
}

.cr-home .cr-home-scan-sheet {
  position: absolute;
  right: 54px;
  top: 105px;
  width: 220px;
  height: 248px;
  padding: 34px 24px;
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(23,24,47,.10);
}

.cr-home .cr-home-scan-sheet i {
  color: var(--cr-primary);
  font-size: 32px;
}

.cr-home .cr-home-scan-sheet span {
  display: block;
  margin-top: 20px;
  color: var(--cr-heading);
  font-weight: 900;
}

.cr-home .cr-home-crop-corner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--cr-accent);
  border-style: solid;
}

.cr-home .cr-home-crop-a {
  right: 242px;
  top: 82px;
  border-width: 3px 0 0 3px;
}

.cr-home .cr-home-crop-b {
  right: 42px;
  bottom: 84px;
  border-width: 0 3px 3px 0;
}

.cr-home .cr-home-file-badge {
  position: absolute;
  color: var(--cr-primary-dark);
  background: var(--cr-light-purple);
}

.cr-home .cr-home-file-jpg { left: 56px; bottom: 36px; }
.cr-home .cr-home-file-png { left: 122px; bottom: 36px; }

.cr-home .cr-home-ready-label {
  position: absolute;
  right: 40px;
  bottom: 46px;
}

.cr-home .cr-home-review-visual {
  padding: 28px;
  background: var(--cr-dark);
}

.cr-home .cr-home-review-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.72);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.cr-home .cr-home-review-toolbar div {
  display: flex;
  gap: 14px;
  color: var(--cr-accent);
}

.cr-home .cr-home-review-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.cr-home .cr-home-review-panels > div {
  min-height: 276px;
  padding: 22px;
  border-radius: 9px;
  background: #fff;
}

.cr-home .cr-home-review-panels p {
  margin: 0;
  color: var(--cr-heading);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 700;
}

.cr-home .cr-home-review-panels mark {
  padding: 2px 5px;
  border-radius: 5px;
  color: #6a4100;
  background: rgba(245,158,11,.24);
}

.cr-home .cr-home-confidence {
  margin-top: 28px;
  color: var(--cr-text);
  font-weight: 800;
  font-size: 14px;
}

.cr-home .cr-home-confidence span {
  display: inline-block;
  width: 68%;
  height: 8px;
  margin: 0 0 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--cr-success), var(--cr-accent));
}

.cr-home .cr-home-bento-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
  background: #fff;
}

.cr-home .cr-home-mini-doc {
  padding: 22px;
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fbfbff);
  min-height: 180px;
}

.cr-home .cr-home-mini-doc i {
  color: var(--cr-primary);
  font-size: 24px;
}

.cr-home .cr-home-mini-doc h3 {
  margin: 13px 0 16px;
  color: var(--cr-heading);
  font: 800 18px/1.25 "Plus Jakarta Sans", sans-serif;
}

.cr-home .cr-home-how {
  position: relative;
  background: var(--cr-light-purple);
}

.cr-home .cr-home-how::before,
.cr-home .cr-home-how::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  background: var(--cr-white);
}

.cr-home .cr-home-how::before {
  top: 0;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}

.cr-home .cr-home-how::after {
  bottom: 0;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

.cr-home .cr-home-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.cr-home .cr-home-steps::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 56px;
  height: 56px;
  border-top: 2px dashed rgba(91,91,214,.32);
  border-radius: 50%;
}

.cr-home .cr-home-step-card {
  position: relative;
  z-index: 1;
  padding: 34px 28px;
  border: 1px solid rgba(91,91,214,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 42px rgba(91,91,214,.10);
}

.cr-home .cr-home-step-number {
  color: rgba(91,91,214,.28);
  font: 800 34px/1 "Plus Jakarta Sans", sans-serif;
}

.cr-home .cr-home-step-card > i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-top: 20px;
  border-radius: 9px;
  background: var(--cr-primary);
  color: #fff;
  font-size: 22px;
}

.cr-home .cr-home-step-card h3,
.cr-home .cr-home-benefit-card h3,
.cr-home .cr-home-help-card h3 {
  margin: 22px 0 10px;
  color: var(--cr-heading);
  font: 800 21px/1.25 "Plus Jakarta Sans", sans-serif;
}

.cr-home .cr-home-step-card p,
.cr-home .cr-home-benefit-card p,
.cr-home .cr-home-help-card p {
  margin: 0;
}

.cr-home .cr-home-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.cr-home .cr-home-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.cr-home .cr-home-benefit-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23,24,47,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cr-home .cr-home-benefit-card:hover,
.cr-home .cr-home-use-card:hover,
.cr-home .cr-home-faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(91,91,214,.22);
  box-shadow: var(--cr-shadow);
}

.cr-home .cr-home-benefit-card > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 9px;
  color: var(--cr-primary);
  background: var(--cr-light-purple);
  transition: transform .25s ease;
}

.cr-home .cr-home-benefit-card:hover > i {
  transform: translateY(-3px) rotate(-5deg);
}

.cr-home .cr-home-benefit-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff, #f5f3ff);
}

.cr-home .cr-home-use-cases {
  background: var(--cr-light);
}

.cr-home .cr-home-use-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.cr-home .cr-home-use-heading {
  position: sticky;
  top: 30px;
}

.cr-home .cr-home-use-list {
  display: grid;
  gap: 16px;
}

.cr-home .cr-home-use-card {
  display: grid;
  grid-template-columns: 54px 1fr 32px;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  background: #fff;
  color: var(--cr-text);
  box-shadow: 0 12px 32px rgba(23,24,47,.05);
}

.cr-home .cr-home-use-card > i:first-child {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 9px;
  color: var(--cr-primary);
  background: var(--cr-light-purple);
}

.cr-home .cr-home-use-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cr-heading);
  font: 800 20px/1.25 "Plus Jakarta Sans", sans-serif;
}

.cr-home .cr-home-use-card > i:last-child {
  color: var(--cr-primary);
  transition: transform .25s ease;
}

.cr-home .cr-home-use-card:hover > i:last-child {
  transform: translateX(5px);
}

.cr-home .cr-home-testimonials {
  background:
    radial-gradient(circle at 18% 16%, rgba(139,92,246,.24), transparent 34%),
    linear-gradient(180deg, var(--cr-dark), var(--cr-dark-soft));
  color: rgba(255,255,255,.74);
}

.cr-home .cr-home-section-head-dark .cr-home-section-title {
  color: #fff;
}

.cr-home .cr-home-section-head-dark .cr-home-section-text {
  color: rgba(255,255,255,.72);
}

.cr-home .cr-home-testimonial-marquee {
  display: grid;
  gap: 18px;
  margin-top: 50px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cr-home .cr-home-testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: cr-home-testimonial-left 42s linear infinite;
}

.cr-home .cr-home-testimonial-right .cr-home-testimonial-track {
  animation-name: cr-home-testimonial-right;
}

.cr-home .cr-home-testimonial-card {
  width: 360px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.cr-home .cr-home-stars {
  display: flex;
  gap: 4px;
  color: var(--cr-accent);
  font-size: 14px;
}

.cr-home .cr-home-testimonial-card p {
  margin: 18px 0 22px;
  color: rgba(255,255,255,.84);
}

.cr-home .cr-home-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cr-home .cr-home-person span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  font-weight: 900;
}

.cr-home .cr-home-person strong,
.cr-home .cr-home-person small {
  display: block;
}

.cr-home .cr-home-person strong {
  color: #fff;
}

.cr-home .cr-home-person small {
  color: rgba(255,255,255,.62);
}

.cr-home .cr-home-sample-note {
  margin: 28px 0 0;
  text-align: center;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.cr-home .cr-home-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 34px;
  align-items: start;
  margin-top: 52px;
}

.cr-home .cr-home-faq-list {
  display: grid;
  gap: 14px;
}

.cr-home .cr-home-faq-item {
  border: 1px solid var(--cr-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23,24,47,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cr-home .cr-home-faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--cr-heading);
  font: 800 17px/1.35 "Plus Jakarta Sans", sans-serif;
  text-align: left;
  cursor: pointer;
}

.cr-home .cr-home-faq-question i {
  flex: 0 0 auto;
  color: var(--cr-primary);
}

.cr-home .cr-home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.cr-home .cr-home-faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 16px;
}

.cr-home .cr-home-faq-open .cr-home-faq-answer {
  max-height: 260px;
}

.cr-home .cr-home-help-card {
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(91,91,214,.18);
  background: linear-gradient(180deg, #fff, #f4f2ff);
  box-shadow: var(--cr-shadow);
}

.cr-home .cr-home-help-card > i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 9px;
  color: #fff;
  background: var(--cr-primary);
}

.cr-home .cr-home-help-card .cr-home-btn-link {
  margin-top: 24px;
}

.cr-home .cr-home-final-cta {
  position: relative;
  background:
    radial-gradient(circle at 20% 22%, rgba(139,92,246,.42), transparent 31%),
    linear-gradient(135deg, #101226, #191C35 54%, #30236d);
  color: rgba(255,255,255,.76);
}

.cr-home .cr-home-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.85) 1px, transparent 1px);
  background-size: 5px 5px;
  pointer-events: none;
}

.cr-home .cr-home-final-decor span,
.cr-home .cr-home-final-decor i {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.cr-home .cr-home-final-decor span:nth-child(1) {
  left: 13%;
  top: 26%;
  width: 260px;
  height: 84px;
  border-bottom: 2px solid rgba(255,255,255,.17);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.cr-home .cr-home-final-decor span:nth-child(2) {
  right: 16%;
  top: 18%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(91,91,214,.22);
  filter: blur(30px);
}

.cr-home .cr-home-final-decor span:nth-child(3) {
  right: 10%;
  bottom: 22%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cr-accent);
}

.cr-home .cr-home-final-decor i:nth-of-type(1) {
  left: 18%;
  bottom: 22%;
  color: rgba(255,255,255,.18);
  font-size: 42px;
}

.cr-home .cr-home-final-decor i:nth-of-type(2) {
  right: 24%;
  top: 31%;
  color: rgba(245,158,11,.55);
  font-size: 18px;
}

.cr-home .cr-home-final-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  text-align: center;
}

.cr-home .cr-home-final-kicker {
  color: #d8d2ff;
}

.cr-home .cr-home-final-inner h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
}

.cr-home .cr-home-final-inner p {
  color: rgba(255,255,255,.76);
}

.cr-home .cr-home-final-points {
  display: flex;
  justify-content: center;
  gap: 14px 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
}

.cr-home [data-cr-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.cr-home [data-cr-animate="fade-left"] {
  transform: translateX(28px);
}

.cr-home [data-cr-animate="fade-right"] {
  transform: translateX(-28px);
}

.cr-home [data-cr-animate="zoom-in"] {
  transform: scale(.96);
}

.cr-home .cr-home-animate-in {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@keyframes cr-home-connector {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

@keyframes cr-home-scan {
  0%, 100% { top: 16px; }
  50% { top: 100px; }
}

@keyframes cr-home-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes cr-home-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes cr-home-testimonial-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes cr-home-testimonial-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1024px) {
  .cr-home .cr-home-hero {
    min-height: auto;
  }

  .cr-home .cr-home-feature-grid,
  .cr-home .cr-home-feature-alt .cr-home-feature-grid,
  .cr-home .cr-home-use-grid,
  .cr-home .cr-home-faq-grid {
    grid-template-columns: 1fr;
  }

  .cr-home .cr-home-feature-alt .cr-home-visual {
    order: 2;
  }

  .cr-home .cr-home-feature-alt .cr-home-feature-copy {
    order: 1;
  }

  .cr-home .cr-home-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cr-home .cr-home-use-heading {
    position: static;
  }

  .cr-home .cr-home-steps {
    grid-template-columns: 1fr;
  }

  .cr-home .cr-home-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .cr-home .cr-home-container {
    padding-inline: 18px;
  }

  .cr-home .cr-home-actions,
  .cr-home .cr-home-final-actions {
    flex-direction: column;
  }

  .cr-home .cr-home-btn-link,
  .cr-home .cr-home-btn {
    width: 100%;
  }

  .cr-home .cr-home-process-strip {
    grid-template-columns: 1fr;
  }

  .cr-home .cr-home-process-line {
    width: 2px;
    height: 28px;
    margin-inline: auto;
  }

  .cr-home .cr-home-recognition-visual,
  .cr-home .cr-home-review-panels {
    grid-template-columns: 1fr;
  }

  .cr-home .cr-home-scan-core {
    width: 100%;
    height: 58px;
  }

  .cr-home .cr-home-visual {
    min-height: auto;
  }

  .cr-home .cr-home-recognition-visual,
  .cr-home .cr-home-review-visual,
  .cr-home .cr-home-bento-visual {
    padding: 18px;
  }

  .cr-home .cr-home-image-visual {
    min-height: 430px;
  }

  .cr-home .cr-home-phone-frame {
    left: 24px;
    width: 186px;
  }

  .cr-home .cr-home-scan-sheet {
    right: 20px;
    width: 178px;
  }

  .cr-home .cr-home-benefit-grid,
  .cr-home .cr-home-bento-visual {
    grid-template-columns: 1fr;
  }

  .cr-home .cr-home-benefit-large {
    grid-column: auto;
  }

  .cr-home .cr-home-use-card {
    grid-template-columns: 48px 1fr;
  }

  .cr-home .cr-home-use-card > i:last-child {
    display: none;
  }

  .cr-home .cr-home-testimonial-right {
    display: none;
  }

  .cr-home .cr-home-testimonial-track {
    animation: none;
    overflow-x: auto;
    width: auto;
    padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  .cr-home .cr-home-testimonial-card {
    min-width: 300px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .cr-home .cr-home-hero-title {
    font-size: clamp(36px, 12vw, 46px);
  }

  .cr-home .cr-home-trust,
  .cr-home .cr-home-final-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .cr-home .cr-home-image-visual {
    min-height: 510px;
  }

  .cr-home .cr-home-phone-frame,
  .cr-home .cr-home-scan-sheet,
  .cr-home .cr-home-ready-label,
  .cr-home .cr-home-file-badge {
    position: relative;
    inset: auto;
    margin: 16px auto 0;
  }

  .cr-home .cr-home-crop-corner {
    display: none;
  }

  .cr-home .cr-home-faq-question {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cr-home *,
  .cr-home *::before,
  .cr-home *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .cr-home [data-cr-animate] {
    opacity: 1;
    transform: none;
  }
}